A.J. Simon Chris Edwards

Size: px
Start display at page:

Download "A.J. Simon Chris Edwards"

Transcription

1 Handout #3 Fall 2009 R.E. Mitchell ME 370A Cantera Tutorial and Installation Instructions * A.J. Simon Chris Edwards Cantera and Stanford-Cantera (SCTv2) are being distributed to the ME370A class to enable thermodynamic property calculation in the MATLAB environment. Cantera is an open-source, object-oriented software package which performs chemical and thermodynamic equilibrium and kinetics calculations. Interfaces to the Cantera package exist for MATLAB, Python, C++ and FORTRAN. Cantera is able to retrieve thermodynamic properties (enthalpy, entropy, pressure, etc.) for some pure simple, compressible substances. It is also able to retrieve properties, compute equilibrium compositions and perform kinetic simulations for mixtures of ideal gases. For those of you familiar with other thermodynamics packages, you will find that Cantera replicates much of the functionality of TPSA, STANJAN and CHEMKIN, but it does all of this within the MATLAB environment. Stanford-Cantera (also referred to as SCTv2) is a layer on top of the MATLAB-Cantera interface which is in development here at Stanford. SCT Cantera fixes some of the shortcomings of the base Cantera package. However, the functionality of Stanford- Cantera is limited to property and equilibrium calculations (not kinetics). More information on Cantera can be found at: Stanford-Cantera vs. Cantera Stanford-Cantera does NOT replicate the full functionality of Cantera, but it DOES extend some functionality which is missing in the current release of Cantera. Cantera is open-source software and is considered to be "under development." The software which this document accompanies (both Stanford-Cantera and Cantera) is stable to the best of our knowledge. However, Stanford-Cantera is being distributed under the same license as Cantera and should be used with the same caution as any other prerelease software. The version of Cantera being distributed to ME370A is "crippled" because you are not being asked to install Python. Python is a very general scripting language, and is used by Cantera to translate thermodynamic data files into a form that Cantera can use. Pretranslated thermodynamic data files will be available through the course website. You may install Python and its required accessories for use with Cantera, but you do not need to do so. * A modified version of the original Cantera Primer designed for ME 370B in Fall

2 How is Stanford-Cantera better than Cantera? Stanford-Cantera was written specifically to enable keeping track of multiple thermodynamic states. In the original Cantera package, a gas mixture is represented by a large programming object in the computer's memory. In order to compare thermodynamic properties between states, a programmer had two choices: (1) create multiple gas objects (a time and resource intensive process) or (2) continually update a single "gas object," but extract all relevant thermodynamic properties from each state and store them in separate variables. Neither of these options results in efficient or readable code, so we programmed a set of wrapper functions into the Stanford-Cantera package. Stanford-Cantera also fills in some gaps in the original Cantera code. Most notably, Cantera is unable to set some combinations of thermodynamic properties. With Stanford- Cantera, for example, the user can simultaneously set Temperature and Entropy. This was impossible under Cantera. What is missing in this distribution of Cantera/Stanford Cantera? The ability to import thermodynamic input files is absent from this distribution of Cantera. This distribution includes the GRI 3.0 thermodynamic data set, which should be sufficient for most students to work problems on the H, C, O, N system. It also includes a data set suitable for coal gasification simulations, as well as an input file which enables access to Cantera's liquid/vapor water calculations.

3 Cantera and Ideal Gas Mixtures (cantera_primer1.m) This tutorial explains how Cantera works with properties and equilibrium states of ideal gas mixtures. First, be sure to close all figures and clear the variable space: close all You can initialize a gas mixture by typing: mygasmixture = IdealGasMix('gri30.xml'); 'mygasmixture' is the variable in the workspace that points to the gas mixture. 'IdealGasMix' is Cantera's initialization command. 'gri30.xml' is the file which contains thermodynamic data about a mixture of gases with a pre-specified set of possible components. You can display the state of the gas mixture by typing the variable name: mygasmixture Note that the pressure, temperature and composition have been set somewhat arbitrarily during initialization. You can change the composition to that of "engineering air" (21% O2, 79% N2) using the 'setmolefractions' command. setmolefractions(mygasmixture,'o2:0.21,n2:0.79'); Note that you must first reference the gas mixture, and then input a string representing the new composition. That string could just have easily been: 'O2:21,N2:79' or 'O2:42,N2:158' and Cantera would have normalized the mole fractions such that their sum equals unity. You can also specify the mole fractions with a vector, but you must know which index in the vector corresponds to which to which gas component. The functions 'nspecies', 'speciesindex', and 'getmolefractions' are useful here. However, if you examine the state of the gas: mygasmixture You will note that the pressure changed along with the composition. Thermodynamics tells us that we can always specify two independent intensive properties, and Cantera gives us a way to do this. The 'set' command: set(mygasmixture,'t',300,'p',101325); can set the state of this 'air' to ambient conditions. Temperature is specified in Kelvin; pressure is specified in Pascals. Note the syntax: you must first reference the gas

4 mixture, then specify a property, then its value, then another property, then that other property's value. NOT ALL PROPERTY PAIRS WILL WORK! (This is one of the things that is fixed in SCT Cantera.) You query individual properties of the gas mixture: T1 = temperature(mygasmixture); stores the temperature in the variable T1. H1 = enthalpy_mass(mygasmixture) retrieves the enthalpy (referenced to molecular species at K, 1 atm) per unit mass of the mixture and S1 = entropy_mole(mygasmixture) retrieves the entropy per unit mole of the mixture. You can set properties other than T and P. For example, you can set enthalpy and pressure. The following code simulates adding 100 kj/kg enthalpy to our air mixture at constant pressure: H1 = enthalpy_mass(mygasmixture); P1 = pressure(mygasmixture); set(mygasmixture,'h',h e3,'P',P1); mygasmixture IMPORTANT: whenever a state variable is set, it is done on a per unit mass basis. However, whenever a state variable is retrieved, you have the option to do so on a per unit mass OR mole basis. To illustrate Cantera's equilibrium solver, we will create a new gas: close all cleanup G = idealgasmix('gri30.xml'); set (G,'T',300.0,'P',101325,'X','CH4:0.95,O2:2,N2:7.52') We now have a slightly lean methane/air mixture represented by the gas object 'g'. We can allow the composition to go to equilibrium at constant Temperature and Pressure by typing: equilibrate(g,'tp') If you change the 'TP' to 'HP', you end up with constant enthalpy and pressure equilibration. Other options are 'SV', 'UV', and 'SP'.

5 Cantera and Simple Compressible Substances (cantera_primer2.m) Cantera has the ability to perform thermodynamic calculations on liquid/vapor mixtures of pure water. For example, you could represent water at 300 K and 100 kpa by typing: close all cleanup W = importphase('liquidvapor.xml','water'); set(w,'t',300,'p',100000) There is now an object representing water in Matlab's memory space. The variable W points to that object, and its state has been set to 300 K and 100 kpa. However, this object cannot be copied, and once its state has been modified, any information associated with the 300 K, 100 kpa state will be lost. You could retrieve the density of the water by typing: rho1 = density(w) The density should be approximately the density of liquid water at room temperature, and it is now stored in the variable 'rho1'. You can find the internal energy (per unit mass) by typing: u1 = intenergy_mass(w) The internal energy is referenced to molecular reference species at K and Pa, and in this case, stored in the variable 'u1'. You could also change the temperature (to 500 K) and pressure (to 150 kpa), but you will lose all of the information about the initial state. set(w,'t',500,'p',150000) Or, you could double the initial specific volume, while holding the initial specific internal energy constant: set(w,'v',2*(1/rho1),'u',u1); Note that now, some of the water is in the vapor phase. To determine how much, type: vaporfraction(w)

6 You can also set the state to that of a saturated mixture at a specific pressure or temperature: setstate_psat(w,[ ]') setstate_tsat(w,[ ]') Note that the vapor fraction of the mixture must be specified by the 2 nd entry in the state input vector. Here is a list of all of the functions that operate on Cantera gas objects. Many are selfexplanatory and some contain good help text. Others are somewhat cryptic, but you are encouraged to explore To get this list (with some extra functions you will not use) type methods solution full at the command prompt. atomicmasses chempotentials clear cp_r cp_mass cp_mole critdensity critpressure crittemperature cv_mass cv_mole density display elementindex elementname enthalpies_rt enthalpy_mass enthalpy_mole entropies_r entropy_mass entropy_mole eostype equilibrate gibbs_rt gibbs_mass gibbs_mole hndl intenergy_mass intenergy_mole isidealgas massfractions maxtemp meanmolarmass meanmolecularweight mintemp molardensity molarmasses molefraction molefractions molecularweights natoms nelements nspecies ph pressure refpressure satpressure sattemperature set setdensity setmassfractions setmolefractions setpressure setstate setstate_hp setstate_psat setstate_sp setstate_sv setstate_tsat setstate_uv setstate_satliquid setstate_satvapor settemperature soundspeed speciesindex speciesname speciesnames temperature thermo_hndl vaporfraction

7 Stanford Cantera (SCTv2_primer.m) Stanford Cantera is able to store information about multiple states of gases and simple compressible substances in "lightweight" objects in the Matlab workspace. Each gas mixture or substance "model" must be initialized and assigned an identifier (ID). Once that ID has been created, a state can be built on that model, and subsequent or new states can be created, copied and manipulated. close all cleanup gri30id = newidealgasmix('gri30.xml') To build the state, call the IdealGasMixState constructor, and give it the model identifier, the identifier of the properties which define the state (here 'moletp' means that you will specifiy composition on a mole basis, and then supply Temperature and Pressure), and the properties of the state. State01 = IdealGasMixState(gri30ID,... 'moletp','n2:0.79,o2:0.21',300,100000); State proerties can be retrieved using the 'get' functions. Below, both mass-specific volume and enthalpy per unit mass are retrieved and stored in local variables. v01 = getvolume_mass(state01) h01 = getenthalpy_mass(state01) A new state can be created from the first state by changing temperature (to 400 K) and pressure (to 200 kpa). The nice thing about SCTv2 is that the ALL of the properties from both State01 and State02 are available to be queried, even after creating a new state. State02 = setstate_tp(state01, 400, ); A third state can be created, this time holding the specific volume constant at that of State1, and adding 100 kj/kg to the internal energy (a simulation of, for example, constant volume heat addition). State03 = setstate_vu(state01, getvolume_mass(state01),... getintenergy_mass(state01) ); All three states that have been created can be viewed here: State01 State02 State03

8 A new gas model can be initialized. After that is done, this example creates a new mixture with equal parts carbon monoxide and water. gasificationid = newidealgasmix('gasification.xml') State10 = IdealGasMixState(gasificationID,... 'moletp','h2o:1,co:1', 1000, ); The mixture can be equilibrated. CO and H2O are not in equilibrium at 1000K, but the following line creates a new, equilibrated state. Again, the state information from the non-equilibrium mixture is not lost. It is still stored in State10: State11 = Equilibrate(State10, 'TP'); State10 State11 The functionality of SCTv2 extends to multi-phase pure substances, as in the following example with water: waterid = newpuresubstance('water','liquidvapor.xml'); Note that mole fraction no longer needs to be specified (it's a PURE substance!), but two independent, intensive properties are still needed to define the state: State20 = PureSubstanceState(waterID,'TP',300,101325); Saturated states can be set by defining the vapor fraction, along with pressure or temperature: State21 = setstate_tx(state20, 400, 0.33); State22 = setstate_px(state20, , 1); Thermodynamic properties can be retrieved from any state that resides in Matlab's memory space: h21 = getenthalpy_mass(state21) h22 = getenthalpy_mass(state22) cleanup Notes on Stanford Cantera Functions For the most part, the Stanford Cantera functions do what you would think they do, given their names. All functions have help-text associated with them, and so should be fairly self explanatory once you are in the Matlab programming environment. All properties can be retrieved on a mass- or mole-basis. However, properties of a mixture or substance must be set on a mass basis.

9 Cantera Installation Instructions 1) Download the 'Cantera.msi' file from the Coursework site 2) Run the Cantera.msi installer. When the installer asks for a directory to install to, enter: C:\Cantera161 (Cantera can be installed anywhere, but it's easiest to put it in your root directory). 3) Start Matlab 4) Select File->Set Path 5) Click 'Add With Subfolders...' 6) Browse to C:\Cantera161\MATLAB\toolbox (or the appropriate \toolbox subdirectory where you installed Cantera) 7) Click 'OK' 8) Click 'Save' (in the Set Path dialog box) 9) Click 'Close' (in the Set Path dialog box) You are now ready to use Cantera from Matlab. To test the installation, run the following commands at the Matlab prompt: cantera_primer1 cantera_primer2 SCTv2_primer If a bunch of stuff executes without errors, then Cantera and Stanford Cantera are installed properly.

PURE SUBSTANCE. Nitrogen and gaseous air are pure substances.

PURE SUBSTANCE. Nitrogen and gaseous air are pure substances. CLASS Third Units PURE SUBSTANCE Pure substance: A substance that has a fixed chemical composition throughout. Air is a mixture of several gases, but it is considered to be a pure substance. Nitrogen and

More information

ENGR 292 Fluids and Thermodynamics

ENGR 292 Fluids and Thermodynamics ENGR 292 Fluids and Thermodynamics Scott Li, Ph.D., P.Eng. Mechanical Engineering Technology Camosun College Pure Substances Phase-Change Process of Pure Substances Specific Volume Saturation Temperature

More information

1. A pure substance has a specific volume of 0.08 L/mol at a pressure of 3 atm and 298 K. The substance is most likely:

1. A pure substance has a specific volume of 0.08 L/mol at a pressure of 3 atm and 298 K. The substance is most likely: Name: September 19, 2014 EXAM 1 P a g e 1 1. A pure substance has a specific volume of 0.08 L/mol at a pressure of 3 atm and 298 K. The substance is most likely: a. Liquid b. Gas c. Supercritical Fluid

More information

Thermodynamics ERT 206 Properties of Pure Substance HANNA ILYANI ZULHAIMI

Thermodynamics ERT 206 Properties of Pure Substance HANNA ILYANI ZULHAIMI Thermodynamics ERT 206 Properties of Pure Substance HANNA ILYANI ZULHAIMI Outline: Pure Substance Phases of pure substance Phase change process of pure substance Saturation temperature and saturation pressure

More information

Figure Vapor-liquid equilibrium for a binary mixture. The dashed lines show the equilibrium compositions.

Figure Vapor-liquid equilibrium for a binary mixture. The dashed lines show the equilibrium compositions. Another way to view this problem is to say that the final volume contains V m 3 of alcohol at 5.93 kpa and 20 C V m 3 of air at 94.07 kpa and 20 C V m 3 of air plus alcohol at 100 kpa and 20 C Thus, the

More information

Chapter 7 Single Point Calculations

Chapter 7 Single Point Calculations Chapter 7 Single Point Calculations Objectives By this point we have learned a great deal about the thermodynamics of the OLI Software and the internal workings of the simulation engine. We have also learned

More information

Chapter 2: Pure Substances a) Phase Change, Property Tables and Diagrams

Chapter 2: Pure Substances a) Phase Change, Property Tables and Diagrams Chapter 2: Pure Substances a) Phase Change, Property Tables and Diagrams In this chapter we consider the property values and relationships of a pure substance (such as water) which can exist in three phases

More information

Chapter 10 Gases. Characteristics of Gases. Pressure. The Gas Laws. The Ideal-Gas Equation. Applications of the Ideal-Gas Equation

Chapter 10 Gases. Characteristics of Gases. Pressure. The Gas Laws. The Ideal-Gas Equation. Applications of the Ideal-Gas Equation Characteristics of Gases Chapter 10 Gases Pressure The Gas Laws The Ideal-Gas Equation Applications of the Ideal-Gas Equation Gas mixtures and partial pressures Kinetic-Molecular Theory Real Gases: Deviations

More information

Ch. 11 Mass transfer principles

Ch. 11 Mass transfer principles Transport of chemical species in solid, liquid, or gas mixture Transport driven by composition gradient, similar to temperature gradients driving heat transport We will look at two mass transport mechanisms,

More information

Chapter 10: Gases. Characteristics of Gases

Chapter 10: Gases. Characteristics of Gases Chapter 10: Gases Learning Outcomes: Calculate pressure and convert between pressure units with an emphasis on torr and atmospheres. Calculate P, V, n, or T using the ideal-gas equation. Explain how the

More information

Chapter 13 Gases, Vapors, Liquids, and Solids

Chapter 13 Gases, Vapors, Liquids, and Solids Chapter 13 Gases, Vapors, Liquids, and Solids Property is meaning any measurable characteristic of a substance, such as pressure, volume, or temperature, or a characteristic that can be calculated or deduced,

More information

Chapter 11. Recall: States of Matter. Properties of Gases. Gases

Chapter 11. Recall: States of Matter. Properties of Gases. Gases Chapter 11 Gases Recall: States of Matter Solids and Liquids: are closely related because in each case the particles are interacting with each other Gases: Properties of Gases Gases can be compressed Gases

More information

GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT

GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT v. 10.0 GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT Objectives Learn how to simulate the effects of viscosity and how pressure impacts

More information

Chapter 4, Problem 30.

Chapter 4, Problem 30. Chapter 4, Problem 30. A well-insulated rigid tank contains 5 kg of a saturated liquid vapor mixture of water at l00 kpa. Initially, three-quarters of the mass is in the liquid phase. An electric resistor

More information

SEAWAT Viscosity and Pressure Effects. Objectives Learn how to simulate the effects of viscosity and how pressure impacts the fluid density in SEAWAT.

SEAWAT Viscosity and Pressure Effects. Objectives Learn how to simulate the effects of viscosity and how pressure impacts the fluid density in SEAWAT. v. 10.4 GMS 10.4 Tutorial Examine the Effects of Pressure on Fluid Density with SEAWAT Objectives Learn how to simulate the effects of viscosity and how pressure impacts the fluid density in SEAWAT. Prerequisite

More information

States of Matter Review

States of Matter Review States of Matter Review May 13 8:16 PM Physical States of Matter (Phases) Solid Liquid Melting Gas Condensation Freezing Evaporation Deposition Sublimation Sep 13 6:04 PM 1 May 13 8:11 PM Gases Chapter

More information

PROPERTIES OF GASES. [MH5; Ch 5, (only)]

PROPERTIES OF GASES. [MH5; Ch 5, (only)] PROPERTIES OF GASES [MH5; Ch 5, 5.1-5.5 (only)] FEATURES OF A GAS Molecules in a gas are a long way apart (under normal conditions). Molecules in a gas are in rapid motion in all directions. The forces

More information

Basic Autoclave #1 Ideal Gas Law, Inert Gas

Basic Autoclave #1 Ideal Gas Law, Inert Gas 11. Autoclaves 40 Overview An autoclave is a high pressure, high temperature hydrometallurgy unit with carefully controlled conditions. In this chapter, we will simulate an autoclave using two different

More information

Reactor Networks. D. G. Goodwin Division of Engineering and Applied Science California Institute of Technology. Cantera Workshop July 25, 2004

Reactor Networks. D. G. Goodwin Division of Engineering and Applied Science California Institute of Technology. Cantera Workshop July 25, 2004 Reactor Networks D. G. Goodwin Division of Engineering and Applied Science California Institute of Technology Cantera Workshop July 25, 2004 A Batch Reactor Continuously-Stirred Tank Reactors In a CSTR,

More information

Unit 9 Packet: Gas Laws Introduction to Gas Laws Notes:

Unit 9 Packet: Gas Laws Introduction to Gas Laws Notes: Name: Unit 9 Packet: Gas Laws Introduction to Gas Laws Notes: Block: In chemistry, the relationships between gas physical properties are described as gas laws. Some of these properties are pressure, volume,

More information

ME 200 Thermodynamics I Spring 2010 (Last) (First) Thermo Number: CIRCLE YOUR LECTURE BELOW

ME 200 Thermodynamics I Spring 2010 (Last) (First) Thermo Number: CIRCLE YOUR LECTURE BELOW ME 200 Thermodynamics I Name: Spring 2010 Thermo Number: CIRCLE YOUR LECTURE BELOW Div. 1 8:30 am Div. 2 10:30 am Div. 3 12:30 pm Naik Tree Clark Div. 4 1:30 pm Kim Div. 5 3:30 pm Mathison EXAM 2 INSTRUCTIONS

More information

Lecture Presentation. Chapter 10. Gases. John D. Bookstaver St. Charles Community College Cottleville, MO Pearson Education, Inc.

Lecture Presentation. Chapter 10. Gases. John D. Bookstaver St. Charles Community College Cottleville, MO Pearson Education, Inc. Lecture Presentation Chapter 10 John D. Bookstaver St. Charles Community College Cottleville, MO Characteristics of Unlike liquids and solids, gases Expand to fill their containers. Are highly compressible.

More information

Gas Law Worksheets - WS: Boyle s and Charles Law

Gas Law Worksheets - WS: Boyle s and Charles Law Gas Law Worksheets - WS: Boyle s and Charles Law Boyle s Law states that the volume of a gas varies inversely with its pressure if temperature is held constant. (If one goes up the, other goes down.) We

More information

Chapter 14-Gases. Dr. Walker

Chapter 14-Gases. Dr. Walker Chapter 14-Gases Dr. Walker State of Matter Gases are one of the four states of matter along with solids, liquids, and plasma Conversion to Gases From liquids Evaporation Example: Boiling water From solids

More information

Flash Point Calculation by UNIFAC

Flash Point Calculation by UNIFAC Flash Point Calculation by UNIFAC Short Introduction and Tutorial DDBSP - Dortmund Data Bank Software Package DDBST - Dortmund Data Bank Software & Separation Technology GmbH Marie-Curie-Straße 10 D-26129

More information

Gilbert Kirss Foster. Chapter 10. Properties of Gases The Air We Breathe

Gilbert Kirss Foster. Chapter 10. Properties of Gases The Air We Breathe Gilbert Kirss Foster Chapter 10 Properties of Gases The Air We Breathe Chapter Outline 10.1 The Properties of Gases 10.2 Effusion and the Kinetic Molecular Theory of Gases 10.3 Atmospheric Pressure 10.4

More information

Kyoung-Su Im, Z.-C Zhang, and Grant Cook, Jr. LSTC, Livermore, CA USA. 06/14/2016, Dearborn, MI

Kyoung-Su Im, Z.-C Zhang, and Grant Cook, Jr. LSTC, Livermore, CA USA. 06/14/2016, Dearborn, MI Kyoung-Su Im, Z.-C Zhang, and Grant Cook, Jr. LSTC, Livermore, CA 94551 USA 06/14/2016, Dearborn, MI New Inflator Models! Inflator models In LS-DYNA: Pyrotechnic inflator (PI) model. Hybrid cold flow model

More information

Elements that exist as gases at 25 o C and 1 atmosphere H 2, N 2, O 2, F 2, Cl 2, He, Ne, Ar, Kr, Xe, Rn

Elements that exist as gases at 25 o C and 1 atmosphere H 2, N 2, O 2, F 2, Cl 2, He, Ne, Ar, Kr, Xe, Rn AP Chemistry Chapter 5 Sections 5. 5.9 Note Organizer Pressure, The Gas Laws of Boyle, Charles, and Avogadro, The Ideal Gas Law, Gas Stoichiometry, Dalton s Law of Partial Pressure, The Kinetic olecular

More information

THE BEHAVIOR OF GASES

THE BEHAVIOR OF GASES 14 THE BEHAVIOR OF GASES SECTION 14.1 PROPERTIES OF GASES (pages 413 417) This section uses kinetic theory to explain the properties of gases. This section also explains how gas pressure is affected by

More information

CHM 111 Unit 5 Sample Questions

CHM 111 Unit 5 Sample Questions Name: Class: Date: As you work these problems, consider and explain: A. What type of question is it? B. How do you know what type of question it is? C. What information are you looking for? D. What information

More information

Under pressure pushing down

Under pressure pushing down Under pressure pushing down on me When Dalton was conducting his studies, which led him to the atomic-molecular theory of matter, he also included studies of the behaviour of gases. These led him to propose,

More information

Honors Chemistry Unit 7 Gas Laws Notes

Honors Chemistry Unit 7 Gas Laws Notes Honors Chemistry Unit 7 Gas Laws Notes Kinetic Molecular Theory 1. List the five assumptions: Assumption Description Extra Info 1 Basically means: the particles themselves have compared to the space between

More information

Section 8: Gases. The following maps the videos in this section to the Texas Essential Knowledge and Skills for Science TAC (c).

Section 8: Gases. The following maps the videos in this section to the Texas Essential Knowledge and Skills for Science TAC (c). Section 8: Gases The following maps the videos in this section to the Texas Essential Knowledge and Skills for Science TAC 112.35(c). 8.01 Simple Gas Laws Chemistry (9)(A) 8.02 Ideal Gas Law Chemistry

More information

The Kinetic-Molecular Theory of Gases based on the idea that particles are always in motion

The Kinetic-Molecular Theory of Gases based on the idea that particles are always in motion The Kinetic-Molecular Theory of Gases based on the idea that particles are always in motion Five assumptions: 1. Most of the volume occupied dby a gas is empty space 2. Collisions between gas particles

More information

Chemistry: It s a gas

Chemistry: It s a gas Chemistry: It s a gas Part IV Molar mass of a gas Density of a gas Dalton s Law: high altitudes and scuba diving Kinetic Molecular Theory: fast gases are hot! I have a chemistry test on Friday, there is

More information

HOW TO MANAGE VAPORIZATION IN AN ANALYTICAL SYSTEM By Dean Slejko and Tony Waters

HOW TO MANAGE VAPORIZATION IN AN ANALYTICAL SYSTEM By Dean Slejko and Tony Waters HOW TO MANAGE VAPORIZATION IN AN ANALYTICAL SYSTEM By Dean Slejko and Tony Waters If the analyzer in your analytical system requires gas but your sample is liquid, the only option is to convert the liquid

More information

1 PIPESYS Application

1 PIPESYS Application PIPESYS Application 1-1 1 PIPESYS Application 1.1 Gas Condensate Gathering System In this PIPESYS Application, the performance of a small gascondensate gathering system is modelled. Figure 1.1 shows the

More information

MoLE Gas Laws Activities

MoLE Gas Laws Activities MoLE Gas Laws Activities To begin this assignment you must be able to log on to the Internet using Internet Explorer (Microsoft) 4.5 or higher. If you do not have the current version of the browser, go

More information

Example: 25 C = ( ) K = 298 K. Pressure Symbol: p Units: force per area 1Pa (Pascal) = 1 N/m 2

Example: 25 C = ( ) K = 298 K. Pressure Symbol: p Units: force per area 1Pa (Pascal) = 1 N/m 2 Chapter 6: Gases 6.1 Measurements on Gases MH5, Chapter 5.1 Let s look at a certain amount of gas, i.e. trapped inside a balloon. To completely describe the state of this gas one has to specify the following

More information

You should be able to: Describe Equipment Barometer Manometer. 5.1 Pressure Read and outline 5.1 Define Barometer

You should be able to: Describe Equipment Barometer Manometer. 5.1 Pressure Read and outline 5.1 Define Barometer A P CHEMISTRY - Unit 5: Gases Unit 5: Gases Gases are distinguished from other forms of matter, not only by their power of indefinite expansion so as to fill any vessel, however large, and by the great

More information

Chapter 13 Gases and Pressure. Pressure and Force. Pressure is the force per unit area on a surface. Force Area. Pressure =

Chapter 13 Gases and Pressure. Pressure and Force. Pressure is the force per unit area on a surface. Force Area. Pressure = Chapter 13 Gas Laws Chapter 13 Gases and Pressure Pressure and Force Pressure is the force per unit area on a surface. Pressure = Force Area Chapter 13 Gases and Pressure Gases in the Atmosphere The atmosphere

More information

Unit 8: Gases and States of Matter

Unit 8: Gases and States of Matter Unit 8: Gases and States of Matter Gases Particles that have no definite shape or volume. They adapt to the shape and volume of their container. Ideal gases are imaginary gases that comply with all the

More information

Chem 110 General Principles of Chemistry

Chem 110 General Principles of Chemistry CHEM110 Worksheet - Gases Chem 110 General Principles of Chemistry Chapter 9 Gases (pages 337-373) In this chapter we - first contrast gases with liquids and solids and then discuss gas pressure. - review

More information

Unit C-2: List of Subjects

Unit C-2: List of Subjects ES12 Energy Transfer Fundamentals Unit C: Thermodynamic ROAD MAP... C-1: p-v-t Relations C-2: Thermodynamic Property Tables Unit C-2: List of Subjects Thermodynamic Property Tables Saturated Liquid and

More information

NOTES: Behavior of Gases

NOTES: Behavior of Gases NOTES: Behavior of Gases Properties of Gases Gases have weight Gases take up space Gases exert pressure Gases fill their containers Gases are mostly empty space The molecules in a gas are separate, very

More information

Chemistry 51 Chapter 7 PROPERTIES OF GASES. Gases are the least dense and most mobile of the three phases of matter.

Chemistry 51 Chapter 7 PROPERTIES OF GASES. Gases are the least dense and most mobile of the three phases of matter. ROERIES OF GASES Gases are the least dense and most mobile of the three phases of matter. articles of matter in the gas phase are spaced far apart from one another and move rapidly and collide with each

More information

CALCULATING THE SPEED OF SOUND IN NATURAL GAS USING AGA REPORT NO Walnut Lake Rd th Street Houston TX Garner, IA 50438

CALCULATING THE SPEED OF SOUND IN NATURAL GAS USING AGA REPORT NO Walnut Lake Rd th Street Houston TX Garner, IA 50438 CALCULATING THE SPEED OF SOUND IN NATURAL GAS USING AGA REPORT NO. 10 Jerry Paul Smith Joel Clancy JPS Measurement Consultants, Inc Colorado Engineering Experiment Station, Inc (CEESI) 13002 Walnut Lake

More information

Gas Pressure. Pressure is the force exerted per unit area by gas molecules as they strike the surfaces around them.

Gas Pressure. Pressure is the force exerted per unit area by gas molecules as they strike the surfaces around them. Chapter 5 Gases Gas Gases are composed of particles that are moving around very fast in their container(s). These particles moves in straight lines until they collides with either the container wall or

More information

AP TOPIC 6: Gases. Revised August General properties and kinetic theory

AP TOPIC 6: Gases. Revised August General properties and kinetic theory AP OPIC 6: Gases General properties and kinetic theory Gases are made up of particles that have (relatively) large amounts of energy. A gas has no definite shape or volume and will expand to fill as much

More information

Kinetic Molecular Theory imaginary Assumptions of Kinetic Molecular Theory: Problems with KMT:

Kinetic Molecular Theory imaginary Assumptions of Kinetic Molecular Theory: Problems with KMT: AP Chemistry Ms. Ye Name Date Block Kinetic Molecular Theory Explains properties of gases, liquids, and solids in terms of energy using an ideal gas, an imaginary which fits all the assumptions of kinetic

More information

Name /74. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

Name /74. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Ch 11 Gases STUDY GUIDE Accelerated Chemistry SCANTRON Name /74 MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) Which of the following statements

More information

Unit 8: Kinetic Theory Homework Packet (90 points)

Unit 8: Kinetic Theory Homework Packet (90 points) Name: Key Period: By the end of Unit 8, you should be able to: Kinetic Theory Chapter 13-14 4. Define kinetic theory of gases including collisions 5. Define pressure, including atmospheric pressure, vapor

More information

GLOSSARY OF TERMS. Adiabatic Compression Compression process when all heat of compression is retained in the gas being compressed.

GLOSSARY OF TERMS. Adiabatic Compression Compression process when all heat of compression is retained in the gas being compressed. GLOSSARY OF TERMS Absolute pressure Total pressure measured from absolute zero i.e. a perfect vacuum. As a practical matter, gauge pressure plus atmospheric pressure. Absolute temperature Temperature measured

More information

Chapter 13 Temperature, Kinetic Theory, and the Gas Laws 497

Chapter 13 Temperature, Kinetic Theory, and the Gas Laws 497 Chapter 13 Temperature, Kinetic Theory, and the Gas Laws 497 Figure 13.25 This photograph of Apollo 17 Commander Eugene Cernan driving the lunar rover on the Moon in 1972 looks as though it was taken at

More information

Behavior of Gases. Gases are mostly The molecules in a gas are separate, very small and very

Behavior of Gases. Gases are mostly The molecules in a gas are separate, very small and very Properties of Gases Gases have Gases Gases exert Gases fill their containers Behavior of Gases Gases are mostly The molecules in a gas are separate, very small and very Kinetic Theory of Matter: Gas molecules

More information

Kinetic Molecular Theory Gases. Behavior of gases. Postulate two. Postulate one. Postulate three. Postulate four

Kinetic Molecular Theory Gases. Behavior of gases. Postulate two. Postulate one. Postulate three. Postulate four Kinetic Molecular Theory Gases Gas particles are so small that their individual volume can be considered to be negligible Gas particles are in constant motion and the collisions of the particles with the

More information

LOW PRESSURE EFFUSION OF GASES revised by Igor Bolotin 03/05/12

LOW PRESSURE EFFUSION OF GASES revised by Igor Bolotin 03/05/12 LOW PRESSURE EFFUSION OF GASES revised by Igor Bolotin 03/05/ This experiment will introduce you to the kinetic properties of low-pressure gases. You will make observations on the rates with which selected

More information

T H E R M O P T I M CALCULATION OF MOIST GAS FROM EXTERNAL CLASSES VERSION JAVA 1.5 R. GICQUEL MARCH 2007

T H E R M O P T I M CALCULATION OF MOIST GAS FROM EXTERNAL CLASSES VERSION JAVA 1.5 R. GICQUEL MARCH 2007 1 T H E R M O P T I M CALCULATION OF MOIST GAS FROM EXTERNAL CLASSES VERSION JAVA 1.5 R. GICQUEL MARCH 2007 2 CONTENTS CALCULATIONS OF MOIST GAS IN THERMOPTIM... 3 INTRODUCTION... 3 METHODS AVAILABLE IN

More information

16. Studio ScaleChem Calculations

16. Studio ScaleChem Calculations 16. Studio ScaleChem Calculations Calculations Overview Calculations: Adding a new brine sample Studio ScaleChem can be used to calculate scaling at one or more user specified temperatures and pressures.

More information

Determination of Dissolved Gases in Ground Waters. By Ray Martrano Laboratory Director Seewald Laboratories Inc.

Determination of Dissolved Gases in Ground Waters. By Ray Martrano Laboratory Director Seewald Laboratories Inc. Determination of Dissolved Gases in Ground Waters By Ray Martrano Laboratory Director Seewald Laboratories Inc. Overview of Presentation What is a dissolved gas? Why do we want to study dissolved gases?

More information

Expand to fill their containers, are highly compressible, have extremely low densities.

Expand to fill their containers, are highly compressible, have extremely low densities. Chem150 week6 Handout 1 Gases Characteristics of Gases: Unlike liquids and solids, they Expand to fill their containers, are highly compressible, have extremely low densities. Pressure is the amount of

More information

CP Chapter 13/14 Notes The Property of Gases Kinetic Molecular Theory

CP Chapter 13/14 Notes The Property of Gases Kinetic Molecular Theory CP Chapter 13/14 Notes The Property of Gases Kinetic Molecular Theory Kinetic Molecular Theory of Gases The word kinetic refers to. Kinetic energy is the an object has because of its motion. Kinetic Molecular

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Test General Chemistry CH116 UMass Boston Summer 2013 Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) The pressure exerted by a column of

More information

Chapter 5. Pressure. Atmospheric Pressure. Gases. Force Pressure = Area

Chapter 5. Pressure. Atmospheric Pressure. Gases. Force Pressure = Area Chapter 5 Gases Water for many homes is supplied by a well The pump removes air from the pipe, decreasing the air pressure in the pipe The pressure then pushes the water up the pipe Pressure Atmospheric

More information

Chemistry 1B Chapter 10 Worksheet - Daley. Name

Chemistry 1B Chapter 10 Worksheet - Daley. Name Name 1) The National Weather Service routinely supplies atmospheric pressure data to help pilots set their altimeters. The units the NWS uses for atmospheric pressure are inches of mercury. A barometric

More information

*MAT GAS MIXTURE, a new gas mixture model for airbag applications

*MAT GAS MIXTURE, a new gas mixture model for airbag applications 4 th European LS-DYNA Users Conference Occupant III / Airbag *MAT GAS MIXTURE, a new gas mixture model for airbag applications Author: Lars Olovsson LSTC Correspondence: tel/fax: +46-852 030 881 e-mail:

More information

Experiment. THE RELATIONSHIP BETWEEN VOLUME AND TEMPERATURE, i.e.,charles Law. By Dale A. Hammond, PhD, Brigham Young University Hawaii

Experiment. THE RELATIONSHIP BETWEEN VOLUME AND TEMPERATURE, i.e.,charles Law. By Dale A. Hammond, PhD, Brigham Young University Hawaii Experiment THE RELATIONSHIP BETWEEN VOLUME AND TEMPERATURE, i.e.,charles Law By Dale A. Hammond, PhD, Brigham Young University Hawaii The objectives of this experiment are to... LEARNING OBJECTIVES introduce

More information

Kinetic Molecular Theory

Kinetic Molecular Theory Kinetic Molecular Theory Name Period Unit 7 HW 1 Worksheet (Goals 1 & 2) 1. Describe how gases, liquids, and solids compare using the following table. Volume (definite or indefinite) Molecular Motion (high,

More information

Phase Changes * OpenStax

Phase Changes * OpenStax OpenStax-CNX module: m42218 1 Phase Changes * OpenStax This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Interpret a phase diagram. State Dalton's

More information

Sandy Hook #1: Produced Water Volume Inversion

Sandy Hook #1: Produced Water Volume Inversion Brine evaporates Gas condenses Sandy Hook #1: Produced Water Volume Inversion Overview This chapter discusses the common client application of producing gas at a low water cut. In these cases, the production

More information

In the name of Allah

In the name of Allah In the name of Allah Physical chemistry- 2 nd state semester 1 Petroleum and petrochemical engineering. Lecture No. 1 General Introduction In Physical Chemistry 16-10-2016 Assistance prof. Dr. Luma Majeed

More information

ISO INTERNATIONAL STANDARD. Natural gas Calculation of compression factor Part 2: Calculation using molar-composition analysis

ISO INTERNATIONAL STANDARD. Natural gas Calculation of compression factor Part 2: Calculation using molar-composition analysis INTERNATIONAL STANDARD ISO 12213-2 Second edition 2006-11-15 Natural gas Calculation of compression factor Part 2: Calculation using molar-composition analysis Gaz naturel Calcul du facteur de compression

More information

Indian Institute of Technology Kanpur. National Programme on Technology Enhanced Learning (NPTEL) Course Title Engineering Thermodynamics

Indian Institute of Technology Kanpur. National Programme on Technology Enhanced Learning (NPTEL) Course Title Engineering Thermodynamics Indian Institute of Technology Kanpur National Programme on Technology Enhanced Learning (NPTEL) Course Title Engineering Thermodynamics Lecture 34 Non-Reacting Mixture and Psychrometry by Prof. D. P.

More information

Honors Chemistry - Problem Set Chapter 13 Classify each of these statements as always true, AT; sometimes true, ST; or never true, NT.

Honors Chemistry - Problem Set Chapter 13 Classify each of these statements as always true, AT; sometimes true, ST; or never true, NT. Honors Chemistry - Problem Set Chapter 13 Classify each of these statements as always true, AT; sometimes true, ST; or never true, NT. 1. Atmospheric pressure is 760 mm Hg. 2. The SI unit of pressure is

More information

Workshop 1: Bubbly Flow in a Rectangular Bubble Column. Multiphase Flow Modeling In ANSYS CFX Release ANSYS, Inc. WS1-1 Release 14.

Workshop 1: Bubbly Flow in a Rectangular Bubble Column. Multiphase Flow Modeling In ANSYS CFX Release ANSYS, Inc. WS1-1 Release 14. Workshop 1: Bubbly Flow in a Rectangular Bubble Column 14. 5 Release Multiphase Flow Modeling In ANSYS CFX 2013 ANSYS, Inc. WS1-1 Release 14.5 Introduction This workshop models the dispersion of air bubbles

More information

4.) There are no forces of attraction or repulsion between gas particles. This means that

4.) There are no forces of attraction or repulsion between gas particles. This means that KINETIC MOLECULAR (K-M) THEORY OF MATTER NOTES - based on the idea that particles of matter are always in motion - assumptions of the K-M Theory 1.) Gases consist of large numbers of tiny particles that

More information

Using MATLAB with CANoe

Using MATLAB with CANoe Version 2.0 2017-03-09 Application Note AN-IND-1-007 Author Restrictions Abstract Vector Informatik GmbH Public Document This application note describes the usage of MATLAB /Simulink combined with CANoe.

More information

Chapter 10. Physical Characteristics of Gases

Chapter 10. Physical Characteristics of Gases Chapter 10 Physical Characteristics of Gases Kinetic Molecular Theory An understanding of the behavior of atoms that make up matter Ideal gas: an imaginary gas that perfectly fits all assumptions of the

More information

Introduction to Matlab for Engineers

Introduction to Matlab for Engineers Introduction to Matlab for Engineers Instructor: Anh Thai Nhan Math 111, Ohlone Introduction to Matlab for Engineers Ohlone, Fremont 1/23 Reading materials Chapters 1, 2, and 3, Moore s textbook Introduction

More information

Example: Calculate the density of methane at 50 psig and 32 ⁰F. H.W. In previous example calculate the density of methane in gm/m 3.

Example: Calculate the density of methane at 50 psig and 32 ⁰F. H.W. In previous example calculate the density of methane in gm/m 3. Gas density Because the density of a substance is defined as mass per unit volume, the density of gas (ρ g ), at given temperature and pressure can be derived as follows: If P in psia, T in ⁰R and R =

More information

@GAS USER S MANUAL VERSION 4.0 COPYRIGHT NOTICE

@GAS USER S MANUAL VERSION 4.0 COPYRIGHT NOTICE @GAS USER S MANUAL VERSION 4.0 COPYRIGHT NOTICE The @Gas software and manual are copyrighted and licensed for use by one user per copy purchased. This manual and the software described in it are copyrighted

More information

Gases. Edward Wen, PhD

Gases. Edward Wen, PhD Gases Edward Wen, PhD Properties of Gases expand to completely fill their container take the shape of their container low density much less than solid or liquid state compressible when pressure is changed.

More information

UNIT 4 IB MATERIAL PARTICLE BEHAVIOR OF MATTER PHASES & ATTRACTIONS

UNIT 4 IB MATERIAL PARTICLE BEHAVIOR OF MATTER PHASES & ATTRACTIONS UNIT 4 IB MATERIAL Name: PARTICLE BEHAVIOR OF MATTER PHASES & ATTRACTIONS ESSENTIALS: Know, Understand, and Be Able To Apply Avogadro s law to calculate reacting volumes of gases. Apply the concept of

More information

Heat of Vaporization with Aspen Plus V8.0

Heat of Vaporization with Aspen Plus V8.0 Heat of Vaporization with Aspen Plus V8.0 1. Lesson Objectives Learn how to calculate heat of vaporization using the Flash2 block in Aspen Plus Understand the impact of heat of vaporization on distillation

More information

Chapter 13: The Behavior of Gases

Chapter 13: The Behavior of Gases Chapter 13: The Behavior of Gases I. First Concepts a. The 3 states of matter most important to us: solids, liquids, and gases. b. Real Gases and Ideal Gases i. Real gases exist, ideal gases do not ii.

More information

Gas Laws V 1 V 2 T 1. Gas Laws.notebook. May 05, T = k P 1 V 1 = P 2 V 2. = 70 kpa. P. V = k. k = 1 atm = kpa

Gas Laws V 1 V 2 T 1. Gas Laws.notebook. May 05, T = k P 1 V 1 = P 2 V 2. = 70 kpa. P. V = k. k = 1 atm = kpa Gas Laws At constant temperature, all gases behave the same when compressed As increasing pressure is applied to a gas in a closed container, the volume of the gas decreases he product of pressure and

More information

THE GAS STATE. Unit 4. CHAPTER KEY TERMS HOME WORK 9.1 Kinetic Molecular Theory States of Matter Solid, Liquid, gas.

THE GAS STATE. Unit 4. CHAPTER KEY TERMS HOME WORK 9.1 Kinetic Molecular Theory States of Matter Solid, Liquid, gas. Unit 4 THE GAS STATE CHAPTER KEY TERMS HOME WORK 9. Kinetic Molecular Theory States of Matter Solid, Liquid, gas Page 4 # to 4 9. Boyles Law P α /V PV = Constant P V = P V Pressure Atmospheric Pressure

More information

University of Cincinnati

University of Cincinnati Mapping the Design Space of a Recuperated, Recompression, Precompression Supercritical Carbon Dioxide Power Cycle with Intercooling, Improved Regeneration, and Reheat Andrew Schroder Mark Turner University

More information

ASSIGNMENT 2 CHE 3473

ASSIGNMENT 2 CHE 3473 DUE: May 23 ASSIGNMENT 2 CHE 3473 #Problem 1: 3.3 #Problem 2: 3.4 #Problem 3: 3.5 #Problem 4: 3.6 #Problem 5: 3.7 #Problem 6: 3.8 #Problem 7: 3.11 #Problem 8: 3.15 #Problem 9: 3.22 #Problem 10: 3.32 #Problem

More information

Process Modeling using UniSim Design

Process Modeling using UniSim Design Process Modeling using UniSim Design 4526/UDS-100 2009 Honeywell All rights reserved. UniSim is a U.S. registered trademark of Honeywell International Inc 4526.R380.02 Copyright The information in this

More information

University of Cincinnati

University of Cincinnati Mapping the Design Space of a Recuperated, Recompression, Precompression Supercritical Carbon Dioxide Power Cycle with Intercooling, Improved Regeneration, and Reheat Andrew Schroder Mark Turner University

More information

Chapter 6 10/14/13. Gas Law. Volume change with temperature and pressure.

Chapter 6 10/14/13. Gas Law. Volume change with temperature and pressure. Chapter 6 10/14/13 Gas Law 1. Properties of a Gas a. Neither definite shape nor volume i. Uniformly fills any container i Exerts pressure on surroundings Volume change with temperature and pressure. b.

More information

ASSIGNMENT 2 CHE 3473

ASSIGNMENT 2 CHE 3473 DUE: May 21 ASSIGNMENT 2 CHE 3473 #Problem 1 Read Chapter 3. ALL OF IT. Time yourself and report the time. #Problem 2: 3.2 #Problem 3: 3.3 #Problem 4: 3.5 #Problem 5: 3.6 #Problem 6: 3.7 #Problem 7: 3.8

More information

Boyle s Law VC 09. Experiment 9: Gas Laws. Abstract

Boyle s Law VC 09. Experiment 9: Gas Laws. Abstract Experiment 9: Gas Laws VC 09 Abstract In this laboratory activity, you will experimentally confirm Boyle s Law, determine absolute zero from Gay-Lussac's Law, and determine the molecular weight of acetone,

More information

Separation of Acetone-Water with Aspen HYSYS V8.0

Separation of Acetone-Water with Aspen HYSYS V8.0 Separation of Acetone-Water with Aspen HYSYS V8.0 Liquid-Liquid Extraction with 3-Methylhexane as the Solvent 1. Lesson Objectives Learn how to build an extraction and solvent recovery flowsheet. Learn

More information

GAS MIXTURES. Department of Mechanical Engineering

GAS MIXTURES. Department of Mechanical Engineering Chapter 13 GAS MIXTURES Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University it 2 Objectives Develop rules for determining nonreacting gas mixture properties from knowledge of mixture

More information

UNIVERSITY OF WATERLOO

UNIVERSITY OF WATERLOO UNIVERSITY OF WATERLOO Department of Chemical Engineering ChE 524 Process Control Laboratory Instruction Manual January, 2001 Revised: May, 2009 1 Experiment # 2 - Double Pipe Heat Exchanger Experimental

More information

CHEM1901/3 Worksheet 8: The Ideal Gas Law: PV = nrt

CHEM1901/3 Worksheet 8: The Ideal Gas Law: PV = nrt CHEM1901/3 Worksheet 8: The Ideal Gas Law: PV = nrt The Ideal Gas Law Model 1: The Gas Laws T (K) Kelvin or absolute temperature = T ( C) + 273. T(K) is always 0 K Boyle s Law (1660). The volume of a gas

More information

Worksheet 1.7: Gas Laws. Charles Law. Guy-Lassac's Law. Standard Conditions. Abbreviations. Conversions. Gas Law s Equation Symbols

Worksheet 1.7: Gas Laws. Charles Law. Guy-Lassac's Law. Standard Conditions. Abbreviations. Conversions. Gas Law s Equation Symbols Name Block Worksheet 1.7: Gas Laws Boyle s Law Charles Law Guy-Lassac's Law Combined Gas Law For a given mass of gas at constant temperature, the volume of a gas varies inversely with pressure PV = k The

More information

Chapter 14 Coal Boiler Flue Gas Scrubber II

Chapter 14 Coal Boiler Flue Gas Scrubber II Chapter 14 Coal Boiler Flue Gas Scrubber II The Application The following case study is a continuation of the base case scenario created previous chapter. The base case scenario contained four process

More information