Chapter 3. Solution

Size: px
Start display at page:

Download "Chapter 3. Solution"

Transcription

1 Chapter 3 Eample In an eperimental stud of the absorption of ammonia b water in a wetted-wall column, the value of K G was found to be kmol/m 2 s kpa. t one point in the column, the composition of the gas and liquid phases were 8.0 and mole % NH 3, respectivel. The temperature was 300 K and the total pressure was 1 atm. Eight-five percent of the total resistance to mass transfer was found to be in the gas phase. t 300 K, ammonia-water solution follow Henr s law up to 5 mole % ammonia in the liquid, with m = 1.64 when the total pressure is 1 atm. Calculate the individual film coefficients and the interfacial concentrations. Solution N = K G (p p * ) = K G P( * ) = K ( * ) K = K G P = ( )(101.3) = kmol/m 2 s Since 1 K resistance: = 1 k + m k for gas phase resistance that accounts for 85% of the total 1/ k 1/ K m / k 1/ K = 0.85 k = K /0.85 = /0.85 = kmol/m 2 s = 0.15 k = mk /0.15 = /0.15 = kmol/m 2 s * = m = = N = K ( * ) = ( ) = kmol/m 2 s N = k ( i ) i = N k = = i = m i i = i m = = Benitez, J. Principle and Modern pplications of Mass Transfer Operations, Wile, 2009, p

2 Eample wetted-wall absorption tower is fed with water as the wall liquid and an ammonia-air miture as the central-core gas. t a particular point in the tower, the ammonia concentration in the bulk gas is 0.6 mole fraction, that in the bulk liquid is 0.12 mole fraction. The temperature is 300 K and the pressure is 1 atm. Ignoring the vaporization of water, calculate the local ammonia mass-transfer flu. Data: k = 3.5/(1 ) lm mol/m 2 s, and k = 2.0/(1 ) lm mol/m 2 s; equilibrium relation: i = 10.5 i [ i (5.765 i 1)]. Solution The molar flu of ammonia () is given b i N = k (1 i ) (1 ) i ln 1 i = k (1 ) (1 i ) ln 1 i k ln 1 i = k ln 1 i 1 1 i = 1 i k / k i = 1 (1 i ) 1 i k / k 0.88 = i 1.75 (E-1) i and i are the solutions of Eq. (E-1) and the equilibrium relation: i = 10.5 i [ i (5.765 i 1)] (E-2) The following Matlab codes solve Eqs. (E-1) and (E-2) and plot out these equations. The intersection of the two curves from these equations also provides the solution. v=fminsearch('f3d2d3',[ ]); i=v(1);i=v(2); fprintf('i = %8.3f, i = %8.3f\n',i,i) =0:0.01:0.28; 1=1-0.4*(0.88./(1-)).^1.75; 2=10.5*.*( *.*(5.765*-1)); plot(,1,,2) label('_');label('_') grid on function ff=f3d2d3(v) i=v(1);i=v(2); f1=i-1+0.4*(0.88/(1-i))^1.75; f2=i-10.5*i*( *i*(5.765*i-1)); 2 Benitez, J. Principle and Modern pplications of Mass Transfer Operations, Wile, 2009, p

3 ff=f1*f1+f2*f2; >> e3d2d3 i = 0.231, i = The interfacial concentrations are: i = and i = The molar flu of is then N = k ln 1 i = 2 ln = 4.7 mol/m2 s Eample miture of methanol (substance 1, the more volatile) and water (substance 2) is being distilled in a packed tower. t a point along the tower where the temperature is 360 K, the methanol content of the bulk of the gas phase is 36 mol%; that of the bulk of the liquid phase is 20 mol%. ssume equimolar counter diffusion with mass transfer coefficients k = kmol/m 2 s and k = kmol/m 2 s, estimate the local flu of methanol from the liquid to the gas phase. Solve the problem b plotting equilibrium curve at 360 K. The activit coefficients for this sstem are given b: ln γ 1 = ln( ) V2 ; 12 = V ep a12 1 RT 3 Benitez, J. Principle and Modern pplications of Mass Transfer Operations, Wile, 2009, p

4 12 21 ln γ 2 = ln( ) V1 ; 21 = V ep a21 2 RT Recommended values of the parameter for this sstem are: V 1 = cm 3 /mol, V 2 = cm 3 /mol, a 12 = cal/mol, and a 21 = cal/mol. The vapor pressure for methanol and water can be determined from the following equations: ln P 1 vap = T 33 ln P 2 vap = T 47 Solution The equilibrium curve at 360 K is obtained from the following steps: 1) Choose a value of mole fraction in the liquid phase, 1, between 0.1 and 0.25; 2) Evaluate the activit coefficients; 3) Evaluate the vapor pressures 4) Evaluate the partial pressures: p 1 = γ 1 1 P 1 vap, and p 2 = γ 2 2 P 2 vap 5) The mole fraction in the vapor phase, 1, is then p 1 /( p 1 + p 2 ) The local flu is obtained from the following epressions: N 1 = k ( i ) = k ( i ) k i = + k ( i) = (0.2 i) (E-1) The above equation is a straight line that can be plotted on the graph with the equilibrium curve. The intersection of flu equation (E-1) and the equilibrium curve provides the interfacial compositions i and i. The Matlab codes, listed in Table E-1, plots the equilibrium curve and flu equation (E-1). From the closed up view of the graph (Figure E-2), the interfacial compositions are i = and i = The local flu is then N 1 = k ( i ) = ( ) = kmol/m 2 s 3-22

5 Table E-1 Matlab codes to plot equilibrium curve and flu equation R=1.987;T=360;v1=40.73;v2=18.07;a12=107.38;a21=469.55; RT=R*T; d12=v2*ep(-a12/(rt))/v1;d21=v1*ep(-a21/(rt))/v2; 1=0.1:0.01:0.25;2=1-1; con=d12./(1+2*d12)-d21./(2+1*d21); gam1=ep(-log(1+2*d12)+2.*con); gam2=ep(-log(2+1*d21)-1.*con); pv1=ep( /(t-33)); pv2=ep( /(t-47)); p1=pv1*gam1.*1;p2=pv2*gam2.*2; 1=p1./(p1+p2); plot(1,1) =0.15; =0.36+(0.2-)*.0149/.0017; plot(1,1,[ 0.2],[ 0.36],'--') label('_');label('_') grid on legend('equilibrium','flu equation') Figure E-1 Graphical solution 3-23

6 Figure E-2 Graphical solution (closed-up view) The interfacial compositions i and i can be obtained directl from the following Matlab codes without graphing: function ff=f3d2d4(v) 1=v(1);1=v(2);2=1-1; R=1.987;T=360;v1=40.73;v2=18.07;a12=107.38;a21=469.55; RT=R*T; d12=v2*ep(-a12/(rt))/v1;d21=v1*ep(-a21/(rt))/v2; con=d12/(1+2*d12)-d21/(2+1*d21); gam1=ep(-log(1+2*d12)+2*con); gam2=ep(-log(2+1*d21)-1*con); pv1=ep( /(t-33)); pv2=ep( /(t-47)); p1=pv1*gam1*1;p2=pv2*gam2*2; f1=1-p1/(p1+p2); f2= *(0.2-1)/0.0017; ff=f1*f1+f2*f2; >> fminsearch('f3d2d4',[ ]) ans =

Mass Transfer Operations

Mass Transfer Operations College of Engineering Tutorial # 1 Chemical Engineering Dept. 14/9/1428 1. Methane and helium gas mixture is contained in a tube at 101.32 k Pa pressure and 298 K. At one point the partial pressure methane

More information

Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati

Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Module - 4 Absorption Lecture - 3 Packed Tower Design Part 2 (Refer Slide

More information

EXAMPLE 2: Visualization and Animation of Enthalpy Method in Binary Distillation

EXAMPLE 2: Visualization and Animation of Enthalpy Method in Binary Distillation EXAMPLE 2: Visualization and Animation of Enthalp Method in Binar Distillation A graphical method that includes energ balances as well as material balances and phase equilibrium relations is the Ponchon-Savarit

More information

2 Copyright Pearson Education, Inc., or its affiliates. All Rights Reserved.

2 Copyright Pearson Education, Inc., or its affiliates. All Rights Reserved. CHEMISTRY & YOU Chapter 17 Thermochemistry 17.1 The Flow of Energy 17. Measuring and Expressing Enthalpy Changes 17.3 Heat in Changes of State 17.4 Calculating Heats of Reaction Why does sweating help

More information

McCabe Thiele Graphical Equilibrium-Stage

McCabe Thiele Graphical Equilibrium-Stage Limiting condition McCabe Thiele Graphical Equilibrium-Stage When analzing or designing a process, it is useful to look at limiting cases to assess the possible values of process parameters. In distillation

More information

Topic 5: Energetics. Heat & Calorimetry. Thursday, March 22, 2012

Topic 5: Energetics. Heat & Calorimetry. Thursday, March 22, 2012 Topic 5: Energetics Heat & Calorimetry 1 Heat is energy that is transferred from one object to another due to a difference in temperature Temperature is a measure of the average kinetic energy of a body

More information

ERT 216 HEAT & MASS TRANSFER SEM2, 2013/2014

ERT 216 HEAT & MASS TRANSFER SEM2, 2013/2014 ERT 16 HET & MSS TRNSFER SEM, 01/014 Tutorial: Principles of Mass Transfer (Part 1) gas of CH 4 and He is contained in a tube at 10 kpa pressure and 98 K. t one point the partial pressure of methane is

More information

Introduction to Mass Transfer

Introduction to Mass Transfer Introduction to Mass Transfer Introduction Three fundamental transfer processes: i) Momentum transfer ii) iii) Heat transfer Mass transfer Mass transfer may occur in a gas mixture, a liquid solution or

More information

Initial amounts: mol Amounts at equilibrium: mol (5) Initial amounts: x mol Amounts at equilibrium: x mol

Initial amounts: mol Amounts at equilibrium: mol (5) Initial amounts: x mol Amounts at equilibrium: x mol 4. CHEMICAL EQUILIBRIUM n Equilibrium Constants 4.1. A Y + Z Initial amounts: 4 0 0 mol Amounts at equilibrium: 1 1.5 3.0 mol Concentrations at equilibrium: 1 5 1.5 5 3.0 5 mol dm 3 K c (1.5/5) (3.0/5)

More information

Analysis of Performance of Packed Columns

Analysis of Performance of Packed Columns Analysis of Performance of Packed Columns There are two packed column experiments in the Unit Operations lab: Liquid-Liquid Extraction (LLE) and Gas Absorption (GA). In both of these experiments, a solute

More information

Part I.

Part I. Part I bblee@unimp . Introduction to Mass Transfer and Diffusion 2. Molecular Diffusion in Gasses 3. Molecular Diffusion in Liquids Part I 4. Molecular Diffusion in Biological Solutions and Gels 5. Molecular

More information

There are five problems on the exam. Do all of the problems. Show your work

There are five problems on the exam. Do all of the problems. Show your work CHM 3400 Fundamentals of Physical Chemistry Second Hour Exam March 8, 2017 There are five problems on the exam. Do all of the problems. Show your work R = 0.08206 L atm/mole K N A = 6.022 x 10 23 R = 0.08314

More information

CHAPTER 3 MODELLING AND ANALYSIS OF THE PACKED COLUMN

CHAPTER 3 MODELLING AND ANALYSIS OF THE PACKED COLUMN 37 CHAPTER 3 MODELLING AND ANALYSIS OF THE PACKED COLUMN Absorption in a chemical process refers to a mass transfer between gas and liquid which transfers one or more components from the gas phase to the

More information

Problem Appendix Antoine constants Important properties of unordered packings... 22

Problem Appendix Antoine constants Important properties of unordered packings... 22 Contents Sample problems and eercises Distillation... 3 Sample problems... 3 Sample : Calculating vapor phase composition for immiscible liquids... 3 Sample 2: Calculating boiling point and vapor phase

More information

Steady-State Molecular Diffusion

Steady-State Molecular Diffusion Steady-State Molecular Diffusion This part is an application to the general differential equation of mass transfer. The objective is to solve the differential equation of mass transfer under steady state

More information

= = 10.1 mol. Molar Enthalpies of Vaporization (at Boiling Point) Molar Enthalpy of Vaporization (kj/mol)

= = 10.1 mol. Molar Enthalpies of Vaporization (at Boiling Point) Molar Enthalpy of Vaporization (kj/mol) Ch 11 (Sections 11.1 11.5) Liquid Phase Volume and Density - Liquid and solid are condensed phases and their volumes are not simple to calculate. - This is different from gases, which have volumes that

More information

Absorption/Stripping

Absorption/Stripping Absorption/Stripping Gas-liquid separation processes (Ch. 10) Cooling (condenser) Feed A+B Distillation(Ch.11) Absorption (Ch.10) Stripping (Ch.10) B COUNTER-CURRENT MULTISTAGE CONTACT OF GAS AND LIQUID

More information

Distillation. This is often given as the definition of relative volatility, it can be calculated directly from vapor-liquid equilibrium data.

Distillation. This is often given as the definition of relative volatility, it can be calculated directly from vapor-liquid equilibrium data. Distillation Distillation may be defined as the separation of the components of a liquid mixture by a process involving partial vaporization. The vapor evolved is usually recovered by condensation. Volatility

More information

Lecture 8. Mole balance: calculations of microreactors, membrane reactors and unsteady state in tank reactors

Lecture 8. Mole balance: calculations of microreactors, membrane reactors and unsteady state in tank reactors Lecture 8 Mole balance: calculations of microreactors, membrane reactors and unsteady state in tank reactors Mole alance in terms of oncentration and Molar low Rates Working in terms of number of moles

More information

CHEMISTRY Topic #2: Thermochemistry and Electrochemistry What Makes Reactions Go? Fall 2018 Dr. Susan Findlay See Exercises in Topic 8

CHEMISTRY Topic #2: Thermochemistry and Electrochemistry What Makes Reactions Go? Fall 2018 Dr. Susan Findlay See Exercises in Topic 8 CHEMISTRY 2000 Topic #2: Thermochemistry and Electrochemistry What Makes Reactions Go? Fall 208 Dr. Susan Findlay See Exercises in Topic 8 Vapour Pressure of Pure Substances When you leave wet dishes on

More information

Steady One-Dimensional Diffusion of One Species A through a Second Non-Transferring Species B. z y x. Liquid A

Steady One-Dimensional Diffusion of One Species A through a Second Non-Transferring Species B. z y x. Liquid A Steady One-Dimensional Diffusion of One Species through a Second on-transferring Species B R. Shankar Subramanian Department of Chemical and Biomolecular Engineering Clarkson University Consider a simple

More information

Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati

Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Module - 4 Absorption Lecture - 4 Packed Tower Design Part - 3 Welcome to

More information

Introduction: Introduction. material is transferred from one phase (gas, liquid, or solid) into another.

Introduction: Introduction. material is transferred from one phase (gas, liquid, or solid) into another. Introduction: Virtually all commercial chemical processes involve operations in which material is transferred from one phase (gas, liquid, or solid) into another. rewing a cup of Coffee (Leaching) Removal

More information

a) Write the expression for the equilibrium constant, K eq

a) Write the expression for the equilibrium constant, K eq Chemistry 12 K eq Calculations Worksheet Name: Date: Block: 1. Given the equilibrium equation below: A 2(g) + B 2(g) 2AB (g) If, at equilibrium, the concentrations are as follows: [A 2] = 3.45 M, [B 2]

More information

Wastewater Treatment with Ammonia Recovery System

Wastewater Treatment with Ammonia Recovery System Vol:2, No:8, 28 Wastewater Treatment with Ammonia Recovery ystem M. Örvös, T. Balázs, and K. F. Both igital Open cience Index, Environmental and Ecological Engineering Vol:2, No:8, 28 waset.org/publication/6217

More information

Name: First three letters of last name

Name: First three letters of last name Name: First three letters of last name Chemistry 342 Third Exam April 22, 2005 2:00 PM in C6 Lecture Center Write all work you want graded in the spaces provided. Both the logical solution to the problem

More information

CHEMISTRY. Chapter 15 Chemical Equilibrium

CHEMISTRY. Chapter 15 Chemical Equilibrium CHEMISTRY The Central Science 8 th Edition Chapter 15 Chemical Kozet YAPSAKLI The Concept of Chemical equilibrium is the point at which the concentrations of all species are constant. Chemical equilibrium

More information

Liquids, Solids, and Phase Changes

Liquids, Solids, and Phase Changes C h a p t e r 10 Liquids, Solids, and Phase Changes KMT of Liquids and Solids 01 Gases have little or no interactions. Liquids and solids have significant interactions. Liquids and solids have well-defined

More information

Temperature C. Heat Added (Joules)

Temperature C. Heat Added (Joules) Now let s apply the heat stuff to real-world stuff like phase changes and the energy or cost it takes to carry it out. A heating curve...a plot of temperature of a substance vs heat added to a substance.

More information

The Chemical Potential

The Chemical Potential CHEM 331 Physical Chemistry Fall 2017 The Chemical Potential Here we complete our pivot towards chemical thermodynamics with the introduction of the Chemical Potential ( ). This concept was first introduced

More information

HTU of Acetone-Toluene-Water Extraction in a Pulsed Column

HTU of Acetone-Toluene-Water Extraction in a Pulsed Column HU of Acetone-oluene-Water Etraction in a Pulsed Column erdthai Vatanatham*, Pisan erasukaporn, and Paisan Lorpongpaiboon Department of Chemical Engineering, Kasetsart University ABSRAC he mass transfer

More information

Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati

Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Module - 5 Distillation Lecture - 5 Fractional Distillation Welcome to the

More information

Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati

Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Mass Transfer Operations I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Module - 5 Distillation Lecture - 6 Fractional Distillation: McCabe Thiele

More information

Mass Transfer Operations-I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati

Mass Transfer Operations-I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Mass Transfer Operations-I Prof. Bishnupada Mandal Department of Chemical Engineering Indian Institute of Technology, Guwahati Module - 2 Mass Transfer Coefficients Lecture - 1 Concept of Mass Transfer

More information

DATA THAT YOU MAY USE UNITS Conventional Volume ml or cm 3 = cm 3 or 10-3 dm 3 Liter (L) = dm 3 Pressure atm = 760 torr = Pa CONSTANTS

DATA THAT YOU MAY USE UNITS Conventional Volume ml or cm 3 = cm 3 or 10-3 dm 3 Liter (L) = dm 3 Pressure atm = 760 torr = Pa CONSTANTS DATA THAT YOU MAY USE UNITS Conventional S.I. Volume ml or cm 3 = cm 3 or 0-3 dm 3 Liter (L) = dm 3 Pressure atm = 760 torr =.03 0 5 Pa torr = 33.3 Pa Temperature C 0 C = 73.5 K PV L-atm =.03 0 5 dm 3

More information

Ex Problem 10 - Countercurrent Packed Tower for Absorption of Ammonia Gas (Pilat)

Ex Problem 10 - Countercurrent Packed Tower for Absorption of Ammonia Gas (Pilat) Ex Problem 10 - Countercurrent Packed Tower for Absorption of Ammonia Gas (Pilat) Given Gas (air flow) upward of 4,000 acfm at 68F or 528R and 1 atm pressure Inlet gaseous conc. of 6,000 ppm NH 3 (dry

More information

Chapter-5 CHEMICAL EQUILIBRIUM

Chapter-5 CHEMICAL EQUILIBRIUM hapter-5 HEMIAL EQUILIBRIUM On the basis of etent of reactions, chemical reactions can be classified in two categories reversible and irreversible reactions. Irreversible reactions goes for completion

More information

PX-III Chem 1411 Chaps 11 & 12 Ebbing

PX-III Chem 1411 Chaps 11 & 12 Ebbing PX-III Chem 1411 Chaps 11 & 12 Ebbing 1. What is the name for the following phase change? I 2 (s) I 2 (g) A) melting B) condensation C) sublimation D) freezing E) vaporization 2. Which of the following

More information

CE427 Fall Semester, 2000 Unit Operations Lab 3 September 24, 2000 COOLING TOWER THEORY

CE427 Fall Semester, 2000 Unit Operations Lab 3 September 24, 2000 COOLING TOWER THEORY CE427 Fall Semester, 2000 Unit Operations Lab 3 September 24, 2000 Introduction COOLING TOWER THEORY Cooling towers are used etensivel in the chemical and petroleum industries. We also know from the thermodnamics

More information

ChE 344 Winter 2011 Mid Term Exam I + Solution. Closed Book, Web, and Notes

ChE 344 Winter 2011 Mid Term Exam I + Solution. Closed Book, Web, and Notes ChE 344 Winter 011 Mid Term Exam I + Thursday, February 17, 011 Closed Book, Web, and Notes Name Honor Code (sign at the end of exam) 1) / 5 pts ) / 5 pts 3) / 5 pts 4) / 15 pts 5) / 5 pts 6) / 5 pts 7)

More information

Lecture 6. NONELECTROLYTE SOLUTONS

Lecture 6. NONELECTROLYTE SOLUTONS Lecture 6. NONELECTROLYTE SOLUTONS NONELECTROLYTE SOLUTIONS SOLUTIONS single phase homogeneous mixture of two or more components NONELECTROLYTES do not contain ionic species. CONCENTRATION UNITS percent

More information

Equilibrium. Reversible Reactions. Chemical Equilibrium

Equilibrium. Reversible Reactions. Chemical Equilibrium Equilibrium Reversible Reactions Chemical Equilibrium Equilibrium Constant Reaction Quotient Le Chatelier s Principle Reversible Reactions In most chemical reactions, the chemical reaction can be reversed,

More information

"Mathematics is a language in which one cannot express unprecise or nebulous thoughts." - Henri Poincaire

Mathematics is a language in which one cannot express unprecise or nebulous thoughts. - Henri Poincaire CHM 3400 Problem Set 1 Due date: Tuesday, September 2 nd Do all of the following problems. Show your work. (NOTE: Conversion factors between different pressure units are given in Table 0.1 of Atkins. Values

More information

2/18/2013. Spontaneity, Entropy & Free Energy Chapter 16. The Dependence of Free Energy on Pressure Sample Exercises

2/18/2013. Spontaneity, Entropy & Free Energy Chapter 16. The Dependence of Free Energy on Pressure Sample Exercises Spontaneity, Entropy & Free Energy Chapter 16 16.7 The Dependence of Free Energy on Pressure Why is free energy dependent on pressure? Isn t H, enthalpy independent of pressure at constant pressure? No

More information

Chapter 11 Spontaneous Change and Equilibrium

Chapter 11 Spontaneous Change and Equilibrium Chapter 11 Spontaneous Change and Equilibrium 11-1 Enthalpy and Spontaneous Change 11-2 Entropy 11-3 Absolute Entropies and Chemical Reactions 11-4 The Second Law of Thermodynamics 11-5 The Gibbs Function

More information

Calculations Involving the Equilibrium Constant K eq )

Calculations Involving the Equilibrium Constant K eq ) Calculations Involving the Equilibrium Constant K eq ) 1. Given the equilibrium equation below: A 2(g) + B 2(g) 2AB (g) If, at equilibrium, the concentrations are as follows: [A 2 ] = 3.45 M, [B 2 ] =

More information

Why study gases? A Gas 10/17/2017. An understanding of real world phenomena. An understanding of how science works.

Why study gases? A Gas 10/17/2017. An understanding of real world phenomena. An understanding of how science works. Kinetic Theory and the Behavior of Ideal & Real Gases Why study gases? n understanding of real world phenomena. n understanding of how science works. Gas Uniformly fills any container. Mixes completely

More information

CHAPTER 9: LIQUIDS AND SOLIDS

CHAPTER 9: LIQUIDS AND SOLIDS CHAPTER 9: LIQUIDS AND SOLIDS Section 9.1 Liquid/Vapor Equilibrium Vaporization process in which a liquid vapor open container - evaporation continues until all liquid evaporates closed container 1) Liquid

More information

Physicochemical Processes

Physicochemical Processes Lecture 3 Physicochemical Processes Physicochemical Processes Air stripping Carbon adsorption Steam stripping Chemical oxidation Supercritical fluids Membrane processes 1 1. Air Stripping A mass transfer

More information

CHAPTER 10. States of Matter

CHAPTER 10. States of Matter CHAPTER 10 States of Matter Kinetic Molecular Theory Kinetikos - Moving Based on the idea that particles of matter are always in motion The motion has consequences Explains the behavior of Gases, Liquids,

More information

CHAPTER 10. Kinetic Molecular Theory. Five Assumptions of the KMT. Atmospheric Pressure

CHAPTER 10. Kinetic Molecular Theory. Five Assumptions of the KMT. Atmospheric Pressure Kinetic Molecular Theory CHAPTER 10 States of Matter Kinetikos - Moving Based on the idea that particles of matter are always in motion The motion has consequences Explains the behavior of Gases, Liquids,

More information

Solid-Liquid Extraction

Solid-Liquid Extraction Chapter (10) Solid-Liquid Extraction (( Leaching )) Leaching: is the separation of a solute from solid mixture by dissolving it in a liquid phase. Leaching occurs in two steps: 1. Contacting solvent and

More information

For the reaction: A B R f = R r. Chemical Equilibrium Chapter The Concept of Equilibrium. The Concept of Equilibrium

For the reaction: A B R f = R r. Chemical Equilibrium Chapter The Concept of Equilibrium. The Concept of Equilibrium Chemical Equilibrium Chapter 15.1-4 This is the last unit of the year, and it contains quite a lot of material. Do not wait until the end of the unit to begin studying. Use what you have learned about

More information

Mass Transfer Fundamentals. Chapter#3

Mass Transfer Fundamentals. Chapter#3 Mass Transfer Fundamentals Chapter#3 Mass Transfer Co-efficient Types of Mass Transfer Co-efficient Convective mass transfer can occur in a gas or liquid medium. Different types of mass transfer coefficients

More information

Colligative Properties. Vapour pressure Boiling point Freezing point Osmotic pressure

Colligative Properties. Vapour pressure Boiling point Freezing point Osmotic pressure Colligative Properties Vapour pressure Boiling point Freezing point Osmotic pressure Learning objectives Describe meaning of colligative property Use Raoult s law to determine vapor pressure of solutions

More information

Chemistry 112 Spring 2007 Prof. Metz Practice Exam 1 Solutions

Chemistry 112 Spring 2007 Prof. Metz Practice Exam 1 Solutions Chemistry 112 Spring 2007 Prof. Metz Practice Exam 1 Solutions 1. The intermolecular attractive forces would be greatest in which of the following molecules: CH 4, CH 2 Cl 2 and CO 2. (A) CH 4 (B) CH 2

More information

Ch. 19 Entropy and Free Energy: Spontaneous Change

Ch. 19 Entropy and Free Energy: Spontaneous Change Ch. 19 Entropy and Free Energy: Spontaneous Change 19-1 Spontaneity: The Meaning of Spontaneous Change 19-2 The Concept of Entropy 19-3 Evaluating Entropy and Entropy Changes 19-4 Criteria for Spontaneous

More information

Exam 3, Chemistry 481, 8 December 2017

Exam 3, Chemistry 481, 8 December 2017 1 Exam 3, Chemistry 481, 8 December 2017 Show all work for full credit Useful constants: k B = 1.3807 10 23 J K 1 ; R (molar gas constant) = 8.314 J K 1 mol 1 Helmholz free energy: A = U S, so that da

More information

Unit 12 Study Notes 1 Systems of Equations

Unit 12 Study Notes 1 Systems of Equations You should learn to: Unit Stud Notes Sstems of Equations. Solve sstems of equations b substitution.. Solve sstems of equations b graphing (calculator). 3. Solve sstems of equations b elimination. 4. Solve

More information

PROBLEM 14.6 ( )( ) (b) Applying a species balance to a control volume about the hydrogen, dt 6 dt 6RAT dt 6RT dt

PROBLEM 14.6 ( )( ) (b) Applying a species balance to a control volume about the hydrogen, dt 6 dt 6RAT dt 6RT dt PROBLEM 14.6 KNOWN: Pressure and temperature of hydrogen stored in a spherical steel tank of prescribed diameter and thickness. FIND: (a) Initial rate of hydrogen mass loss from the tank, (b) Initial rate

More information

PRINCIPLES AND MODERN APPLICATIONS OF MASS TRANSFER OPERATIONS

PRINCIPLES AND MODERN APPLICATIONS OF MASS TRANSFER OPERATIONS PRINCIPLES AND MODERN APPLICATIONS OF MASS TRANSFER OPERATIONS Jaime Benitez iwiley- INTERSCIENCE A JOHN WILEY & SONS, INC., PUBLICATION Preface Nomenclature xiii xv 1. FUNDAMENTALS OF MASS TRANSFER 1

More information

Stoichiometric Reactor Module

Stoichiometric Reactor Module Reactor Analysis Types of Reactors Stoichiometric Reactor Module Stoichiometric Reactors (1) Stoichiometric Reactors (2) Stoichiometric Reactors (3) Equilibrium Reactors Gibbs Reactor RGibbs Module Equilibrium

More information

WINTER-15 EXAMINATION Model Answer

WINTER-15 EXAMINATION Model Answer Subject code :(735) Page of 9 Important Instructions to examiners: ) The answers should be examined by key words and not as word-to-word as given in the model answer scheme. ) The model answer and the

More information

Chemical Reaction Engineering

Chemical Reaction Engineering Chemical Reaction Engineering Dr. Yahia Alhamed Chemical and Materials Engineering Department College of Engineering King Abdulaziz University General Mole Balance Batch Reactor Mole Balance Constantly

More information

Chemical Reaction Engineering. Dr. Yahia Alhamed

Chemical Reaction Engineering. Dr. Yahia Alhamed Chemical Reaction Engineering Dr. Yahia Alhamed 1 Kinetics and Reaction Rate What is reaction rate? It is the rate at which a species looses its chemical identity per unit volume. The rate of a reaction

More information

Chemical Thermodynamics. Chapter 18

Chemical Thermodynamics. Chapter 18 Chemical Thermodynamics Chapter 18 Thermodynamics Spontaneous Processes Entropy and Second Law of Thermodynamics Entropy Changes Gibbs Free Energy Free Energy and Temperature Free Energy and Equilibrium

More information

Chapter 11. Intermolecular Forces and Liquids and Solids. Chemistry, Raymond Chang 10th edition, 2010 McGraw-Hill

Chapter 11. Intermolecular Forces and Liquids and Solids. Chemistry, Raymond Chang 10th edition, 2010 McGraw-Hill Chemistry, Raymond Chang 10th edition, 2010 McGraw-Hill Chapter 11 Intermolecular Forces and Liquids and Solids Ahmad Aqel Ifseisi Assistant Professor of Analytical Chemistry College of Science, Department

More information

Chapter 13: Chemical Equilibrium

Chapter 13: Chemical Equilibrium Chapter 13: Chemical Equilibrium 13.1 The Equilibrium Condition Equilibrium: a state in which no observable changes occur H 2 O (l) H 2 O (g) Physical equilibrium: no chemical change. N 2(g) + 3H 2(g)

More information

Phase Separation Degree of Freedom Analysis. Binary Vapor-Liquid Systems. Azeotropic Systems. - Gibbs phase rule F C P 2 -General analysis

Phase Separation Degree of Freedom Analysis. Binary Vapor-Liquid Systems. Azeotropic Systems. - Gibbs phase rule F C P 2 -General analysis Lecture 5. Single Equilibrium Stages (1) Phase Separation [Ch. 4] Degree of Freedom Analysis - Gibbs phase rule F CP2 -General analysis Binary Vapor-Liquid Systems - Examples of binary system - Phase equilibrium

More information

Theory. Humidity h of an air-vapor mixture is defined as the mass ratio of water vapor and dry air,

Theory. Humidity h of an air-vapor mixture is defined as the mass ratio of water vapor and dry air, Theory Background In a cooling tower with open water circulation, heat is removed from water because of the material and heat exchange between the water and the ambient air. The cooling tower is a special

More information

Liquids and Solids. H fus (Heat of fusion) H vap (Heat of vaporization) H sub (Heat of sublimation)

Liquids and Solids. H fus (Heat of fusion) H vap (Heat of vaporization) H sub (Heat of sublimation) Liquids and Solids Phase Transitions All elements and compounds undergo some sort of phase transition as their temperature is increase from 0 K. The points at which these phase transitions occur depend

More information

Quantity Relationships in Chemical Reactions

Quantity Relationships in Chemical Reactions Chapter 10 Relationships in Chemical Reactions Section 10.1 Conversion Factors from a Chemical Equation Goal 1 The coefficients in a chemical equation give us the conversion factors to get from the number

More information

Copyright 2017 Dan Dill 1

Copyright 2017 Dan Dill 1 TP The order of normal boiling points is Acetone, CH 3 C O CH 3 30.8 Diethyl ether, CH 3 CH 2 2 O 71.7 Ethanol, CH 3 CH 2 OH 7.87 Water, H 2 O 3.17 0 Lecture 13 CH1 A1 (MWF 9:05 am) Friday, October 6,

More information

LINEARIZATION OF GRAPHS

LINEARIZATION OF GRAPHS LINEARIZATION OF GRAPHS Question 1 (**) The table below shows eperimental data connecting two variables and y. 1 2 3 4 5 y 12.0 14.4 17.3 20.7 27.0 It is assumed that and y are related by an equation of

More information

MODULE 4: ABSORPTION

MODULE 4: ABSORPTION MODULE 4: ABSORPTION LECTURE NO. 3 4.4. Deign of packed tower baed on overall ma tranfer coefficient * From overall ma tranfer equation, N K ( y y ) one can write for packed tower a N A K y (y-y*) Then,

More information

Chapter 17.3 Entropy and Spontaneity Objectives Define entropy and examine its statistical nature Predict the sign of entropy changes for phase

Chapter 17.3 Entropy and Spontaneity Objectives Define entropy and examine its statistical nature Predict the sign of entropy changes for phase Chapter 17.3 Entropy and Spontaneity Objectives Define entropy and examine its statistical nature Predict the sign of entropy changes for phase changes Apply the second law of thermodynamics to chemical

More information

is more suitable for a quantitative description of the deviation from ideal gas behaviour.

is more suitable for a quantitative description of the deviation from ideal gas behaviour. Real and ideal gases (1) Gases which obey gas laws or ideal gas equation ( PV nrt ) at all temperatures and pressures are called ideal or perfect gases. Almost all gases deviate from the ideal behaviour

More information

10/15/2015. Why study gases? An understanding of real world phenomena. An understanding of how science works.

10/15/2015. Why study gases? An understanding of real world phenomena. An understanding of how science works. 0/5/05 Kinetic Theory and the Behavior of Ideal & Real Gases Why study gases? An understanding of real world phenomena. An understanding of how science works. 0/5/05 A Gas fills any container. completely

More information

BAE 820 Physical Principles of Environmental Systems

BAE 820 Physical Principles of Environmental Systems BAE 820 Physical Principles of Environmental Systems Inter phase mass transfer Dr. Zifei Liu Mass transfer between two phases For a two phase system not at equilibrium (concentrations in the two phases

More information

1 Model for gas-liquid reactions Based on film model

1 Model for gas-liquid reactions Based on film model 1 Model for gas-liquid reactions Based on film model A(g >l) +νb(l) Products Governing equations are as follows: d 2 C A dx 2 = k 2 C A C B (1) D B d 2 C B dx 2 = νk 2 C A C B (2) Here x is the actual

More information

Homework 01. Phase Changes and Solutions

Homework 01. Phase Changes and Solutions HW01 - Phase Changes and Solu!ons! This is a preview of the published version of the quiz Started: Jan 16 at 1:pm Quiz Instruc!ons Homework 01 Phase Changes and Solutions Question 1 Given that you have

More information

Chapter 17: Spontaneity, Entropy, and Free Energy

Chapter 17: Spontaneity, Entropy, and Free Energy Chapter 17: Spontaneity, Entropy, and Free Energy Review of Chemical Thermodynamics System: the matter of interest Surroundings: everything in the universe which is not part of the system Closed System:

More information

WEEK 6. Multiphase systems

WEEK 6. Multiphase systems WEEK 6 Multiphase systems Multiphase systems P 237. Processes usually deal with material being transferred from one phase (gas, liquid, or solid) to another. 6.1a Phase diagrams F = force on piston Water

More information

Name: Class: Date: SHORT ANSWER Answer the following questions in the space provided.

Name: Class: Date: SHORT ANSWER Answer the following questions in the space provided. CHAPTER 10 REVIEW States of Matter SECTION 1 SHORT ANSWER Answer the following questions in the space provided. 1. Identify whether the descriptions below describe an ideal gas or a real gas. a. The gas

More information

8-1 Exploring Exponential Models

8-1 Exploring Exponential Models 8- Eploring Eponential Models Eponential Function A function with the general form, where is a real number, a 0, b > 0 and b. Eample: y = 4() Growth Factor When b >, b is the growth factor Eample: y =

More information

Lecture 8. Mole balance: calculations of microreactors, membrane reactors and unsteady state in tank reactors

Lecture 8. Mole balance: calculations of microreactors, membrane reactors and unsteady state in tank reactors Lecture 8 Mole balance: calculations of microreactors, membrane reactors and unsteady state in tank reactors Mole alance in terms of Concentration and Molar Flow Rates Working in terms of number of moles

More information

Systems of Linear Equations: Solving by Graphing

Systems of Linear Equations: Solving by Graphing 8.1 Sstems of Linear Equations: Solving b Graphing 8.1 OBJECTIVE 1. Find the solution(s) for a set of linear equations b graphing NOTE There is no other ordered pair that satisfies both equations. From

More information

Chapter 7: Stoichiometry - Mass Relations in Chemical Reactions

Chapter 7: Stoichiometry - Mass Relations in Chemical Reactions Chapter 7: Stoichiometry - Mass Relations in Chemical Reactions How do we balance chemical equations? How can we used balanced chemical equations to relate the quantities of substances consumed and produced

More information

Thinking Like a Chemist About Phase Changes UNIT 5 DAY 3

Thinking Like a Chemist About Phase Changes UNIT 5 DAY 3 Thinking Like a Chemist About Phase Changes UNIT 5 DAY 3 What are we going to learn today? First day? Get a handout from a TA after class. Thinking Like a Chemist in the context of Phase Changes Vapor

More information

CFD SIMULATIONS OF FLOW, HEAT AND MASS TRANSFER IN THIN-FILM EVAPORATOR

CFD SIMULATIONS OF FLOW, HEAT AND MASS TRANSFER IN THIN-FILM EVAPORATOR Distillation Absorption 2010 A.B. de Haan, H. Kooijman and A. Górak (Editors) All rights reserved by authors as per DA2010 copyright notice CFD SIMULATIONS OF FLOW, HEAT AND MASS TRANSFER IN THIN-FILM

More information

Mass transfer and separation technology Massöverföring och separationsteknik ( MÖF-ST ) , 7 sp

Mass transfer and separation technology Massöverföring och separationsteknik ( MÖF-ST ) , 7 sp 42432 Mass transfer and separation technology Massöverföring och separationsteknik ( MÖF-ST ) 4432, 7 sp. Batch distillation Ron Zevenhoven Åbo Akademi University Thermal and Flow Engineering Laboratory

More information

Convective Mass Transfer

Convective Mass Transfer Convective Mass Transfer Definition of convective mass transfer: The transport of material between a boundary surface and a moving fluid or between two immiscible moving fluids separated by a mobile interface

More information

BCIT Fall Chem Exam #2

BCIT Fall Chem Exam #2 BCIT Fall 2017 Chem 3310 Exam #2 Name: Attempt all questions in this exam. Read each question carefully and give a complete answer in the space provided. Part marks given for wrong answers with partially

More information

SOLUTION CONCENTRATIONS

SOLUTION CONCENTRATIONS SOLUTION CONCENTRATIONS The amount of solute in a solution (concentration) is an important property of the solution. A dilute solution contains small quantities of solute relative to the solvent, while

More information

STATES OF MATTER STATES OF MATTER. The Four States of Matter 3/5/2015. Solid. Liquid Commonly found on Gas Earth Plasma

STATES OF MATTER STATES OF MATTER. The Four States of Matter 3/5/2015. Solid. Liquid Commonly found on Gas Earth Plasma Unit 10: States of Matter Lesson 10.1: States and Their Changes (Review) STATES OF MATTER The Four States of Matter Solid } Liquid Commonly found on Gas Earth Plasma STATES OF MATTER Based upon particle

More information

STATES OF MATTER STATES OF MATTER. The Four States of Matter 3/5/2015

STATES OF MATTER STATES OF MATTER. The Four States of Matter 3/5/2015 The Four States of Matter Unit 10: States of Matter Lesson 10.1: States and Their Changes (Review) Solid } Liquid Commonly found on Gas Earth Plasma Based upon particle arrangement Based upon energy of

More information

Nestor S. Valera Ateneo de Manila. Chapter 12 - Intermolecular Forces

Nestor S. Valera Ateneo de Manila. Chapter 12 - Intermolecular Forces Nestor S. Valera Ateneo de Manila Chapter 12 - Intermolecular Forces 1 A phase is a region that differs in structure and/or composition from another region. 2 Phases Solid phase - ice Liquid phase - water

More information

Chapter 12 INTERMOLECULAR FORCES. Covalent Radius and van der Waals Radius. Intraand. Intermolecular Forces. ½ the distance of non-bonded

Chapter 12 INTERMOLECULAR FORCES. Covalent Radius and van der Waals Radius. Intraand. Intermolecular Forces. ½ the distance of non-bonded Chapter 2 INTERMOLECULAR FORCES Intraand Intermolecular Forces Covalent Radius and van der Waals Radius ½ the distance of bonded ½ the distance of non-bonded Dipole Dipole Interactions Covalent and van

More information

There are five problems on the exam. Do all of the problems. Show your work.

There are five problems on the exam. Do all of the problems. Show your work. CHM 3410 - Physical Chemistry 1 Second Hour Exam October 22, 2010 There are five problems on the exam. Do all of the problems. Show your work. R = 0.08206 L. atm/mole. K N A = 6.022 x 10 23 R = 0.08314

More information

12.1 Systems of Linear equations: Substitution and Elimination

12.1 Systems of Linear equations: Substitution and Elimination . Sstems of Linear equations: Substitution and Elimination Sstems of two linear equations in two variables A sstem of equations is a collection of two or more equations. A solution of a sstem in two variables

More information