F, {z} Isothermal Flash Tank

Size: px
Start display at page:

Download "F, {z} Isothermal Flash Tank"

Transcription

1 Exam III dministered: Thursday, November 7, points For each problem part: points i not attempted or no work shown, point or partial credit, i work is shown, 2 points or correct numerical value o solution Problem. ( points) Consider an isothermal lash tank: F, {z} Isothermal Flash Tank V, {y} {x} This unit takes a pressurized liquid, two-component eed stream and exposes it to a low pressure vessel maintained under isothermal conditions. The net result is that some o the luid is orized, while some luid remains liquid. The compositions o the liquid and or phase are determined by the combined analysis o mass balances and Raoult s Law or or-liquid equilibrium. The temperature in the lash tank is T 298K and the pressure in the tank is P kpa. F mol / hr z z.4.6 V 4mol / hr y y?? L F - V mol / hr x? x? You have our unknowns, the compositions o the liquid stream, stream, y and y. You also have our equations. x and x, and the composition o the or material balance on moles o : liquid mole raction constraint: or mole raction constraint: one equilibrium constraint: Fz Lx Vy x x y y xp yp (Raoults law or or-liquid equilibrium) where T 298K P (a) Is the system o equations linear or nonlinear in the unknowns? (b) Solve or the our unknown mole ractions. Show your work. Emphasize the steps in the procedure.

2 Solution (a) Equations are linear in the unknowns. Thereore, use linear algebra to solve. (b) Solve. Put equations in linear orm Lx Vy Fz x x y y x P y P Put equations in matrix orm matrix o coeicients,, (4x4) eqn/var x x y L V P P vector o right hand sides, b, (4x) eqn b Fz I then created a matlab script to solve this problem, xm3p_4.m. clear all; F = ; mol/hr V = 4; mol/hr L = F - V; mol/hr z =.4; z =.6; P = 6; kpa P = ; kpa = [L V P -P ] b =[F*z; ; ; ] det = det() x = \b; x = x() x = x(2) y 2

3 y = x(3) y = x(4) Upon execution, the output o this script was as ollows, >> xm3p_4 = b = 4 det = 846 x =.4775 x =.5225 y =.2837 y =.763 The mole ractions are provided above. 3

4 Problem 2. ( points) Consider the same system given in Problem. In a more realistic version o the problem, not only are the the compositions o the liquid stream, x and x, and the composition o the or stream, y and y, unknown, but the liquid and or stream lowrates, L and V respectively are also unknown. In this case, you have six unknowns and six equations. The equations are material balance on total moles: material balance on moles o : liquid mole raction constraint: or mole raction constraint: equilibrium constraint on : equilibrium constraint on : F L V Fz Lx Vy x x y y xp yp (Raoults law or ) xp yp (Raoults law or ) where P T 298K and P T 298K (a) Is this set o equations linear or nonlinear in the unknowns? (b) Come up with a good set o initial guesses or the solution. (c) Solve or the lowrates and compositions o the liquid and or streams. Show your work. Emphasize the steps in the procedure. Solution (a) Equations are nonlinear in the unknowns. Thereore, use a multivariate rootinding technique, such as the multivariate Newton-Raphson method with numerical derivatives to solve. (b) Come up with a good set o initial guesses or the solution. good set o initial conditions comes rom the solution to Problem. x =.4775 x =.5225 y =.2837 y =.763 L = 6 V = 4 (c) Solve or the lowrates and compositions o the liquid and or streams. Show your work. Emphasize the steps in the procedure. Put equations in appropriate orm x, x2, y, V F L V x, x2, y, V Fz Lx Vy x x, y, y, V x x, 2 2 x, x2, y, V y y x, x2, y, V x P yp x x, y, y, V x P y P , 2 2 4

5 I then created a matlab script to solve this problem, xm3p2_4.m. Note that this script irst solves problem again in order to obtain a consistent guess or the six variables. clear all; come up with good initial guess rom problem x =.4775; x =.5225; y =.2837; y =.763; L = 6; V = 4; create initial guess vector x=[x,x,y,y,v]; tol =.e-6; iprint = ; call multivariate Newton-Raphson with Numerical derivatives [x,err,] = nrndn(x,tol,iprint); identiy solutions x = x() x = x(2) y = x(3) y = x(4) L = x(5) V = x(6) The input ile or nrndn.m is given by unction = unkeval(x) n = max(size(x)); = zeros(n,); identiy variables x = x(); x = x(2); y = x(3); y = x(4); L = x(5); V = x(6); assign constants F = ; mol/hr z =.4; P = 6; kpa P = 4; kpa P = ; kpa write equations () = F - L - V; 5

6 (2) = F*z - L*x - V*y; (3) = x + x - ; (4) = y + y - ; (5) = x*p - y*p; (6) = x*p - y*p; Upon execution, the output o this script was as ollows, >> xm3p2_4 iter = iter = iter =, err = 2.48e+ = 3.25e- 2, err = 5.8e-2 = 7.e-3 3, err = 3.e-4 = 4.35e-5 x =.4875 x =.525 y =.2896 y =.74 L = V = The mole ractions are provided above. The lowrates, L and V, are also given with units o mol/hr. Problem 3. (2 points) n even more realistic version o this problem occurs when the lash tank is operated under adiabatic rather than isothermal conditions. In this case, the temperature o the system is unknown. Discuss briely how one might solve this problem. What kind o equation would be added to account or the new variable? What kind o additional parameters would be needed? What technique could you use to solve this? Solution The new equation would be an energy balance. We would need or pressures or pure components as a unction o temperature, not just at one point, rom something like the ntoine equation. The system o seven equations and seven unknowns (at least or a binary system) would be nonlinear and would require a technique like the multivariate Newton Raphson method with numerical derivatives as used in problem 2. 6

CinChE Problem-Solving Strategy Chapter 4 Development of a Mathematical Algorithm. partitioning. procedure

CinChE Problem-Solving Strategy Chapter 4 Development of a Mathematical Algorithm. partitioning. procedure Development o a Mathematical Algorithm Transormation Process Mathematical Model partitioning procedure Mathematical Algorithm The mathematical algorithm is a plan (or blueprint) that identiies the independent

More information

Homework Assignment Number Two. where, for the oxygen molecule κ = ,

Homework Assignment Number Two. where, for the oxygen molecule κ = , D. eer, MSE 506, Dept. o Materials Siene & Engineering, University o Tennessee, noville Homework Assignment Numer Two Prolem. Consider the Peng-Roinson Equation o state as given elow. The ritial temperature

More information

Problem Set #10 Assigned November 8, 2013 Due Friday, November 15, 2013 Please show all work for credit. To Hand in

Problem Set #10 Assigned November 8, 2013 Due Friday, November 15, 2013 Please show all work for credit. To Hand in Problem Set #10 Assigned November 8, 013 Due Friday, November 15, 013 Please show all work or credit To Hand in 1. 1 . A least squares it o ln P versus 1/T gives the result 3. Hvaporization = 5.8 kj mol

More information

Curve Sketching. The process of curve sketching can be performed in the following steps:

Curve Sketching. The process of curve sketching can be performed in the following steps: Curve Sketching So ar you have learned how to ind st and nd derivatives o unctions and use these derivatives to determine where a unction is:. Increasing/decreasing. Relative extrema 3. Concavity 4. Points

More information

Asymptote. 2 Problems 2 Methods

Asymptote. 2 Problems 2 Methods Asymptote Problems Methods Problems Assume we have the ollowing transer unction which has a zero at =, a pole at = and a pole at =. We are going to look at two problems: problem is where >> and problem

More information

( x) f = where P and Q are polynomials.

( x) f = where P and Q are polynomials. 9.8 Graphing Rational Functions Lets begin with a deinition. Deinition: Rational Function A rational unction is a unction o the orm ( ) ( ) ( ) P where P and Q are polynomials. Q An eample o a simple rational

More information

Chem142 Introduction to Physical Chemistry

Chem142 Introduction to Physical Chemistry Chem4 Introduction to hysical Chemistry Exam # (50 minutes) Name 00 points September 5, 07 Units and Constants R = 8.34 J/K*mol = 0.0834 L*bar/K*mol = 0.0806 L*atm/K*mol dm 3 = L K = 73.5 + C bar = 00

More information

Lecture 8 Optimization

Lecture 8 Optimization 4/9/015 Lecture 8 Optimization EE 4386/5301 Computational Methods in EE Spring 015 Optimization 1 Outline Introduction 1D Optimization Parabolic interpolation Golden section search Newton s method Multidimensional

More information

Topic 4b. Open Methods for Root Finding

Topic 4b. Open Methods for Root Finding Course Instructor Dr. Ramond C. Rump Oice: A 337 Phone: (915) 747 6958 E Mail: rcrump@utep.edu Topic 4b Open Methods or Root Finding EE 4386/5301 Computational Methods in EE Outline Open Methods or Root

More information

(One Dimension) Problem: for a function f(x), find x 0 such that f(x 0 ) = 0. f(x)

(One Dimension) Problem: for a function f(x), find x 0 such that f(x 0 ) = 0. f(x) Solving Nonlinear Equations & Optimization One Dimension Problem: or a unction, ind 0 such that 0 = 0. 0 One Root: The Bisection Method This one s guaranteed to converge at least to a singularity, i not

More information

PES 2130 Exam 1/page 1. PES Physics 3 Exam 1. Name: SOLUTIONS Score: / 100

PES 2130 Exam 1/page 1. PES Physics 3 Exam 1. Name: SOLUTIONS Score: / 100 PES 2130 Exam 1/page 1 PES 2130 - Physics 3 Exam 1 Name: SOLUTIONS Score: / 100 Instructions Time allowed or this is exam is 1 hours 15 minutes 10 written problems For written problems: Write all answers

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

Math-3 Lesson 1-4. Review: Cube, Cube Root, and Exponential Functions

Math-3 Lesson 1-4. Review: Cube, Cube Root, and Exponential Functions Math- Lesson -4 Review: Cube, Cube Root, and Eponential Functions Quiz - Graph (no calculator):. y. y ( ) 4. y What is a power? vocabulary Power: An epression ormed by repeated Multiplication o the same

More information

ENERGY ANALYSIS: CLOSED SYSTEM

ENERGY ANALYSIS: CLOSED SYSTEM ENERGY ANALYSIS: CLOSED SYSTEM A closed system can exchange energy with its surroundings through heat and work transer. In other words, work and heat are the orms that energy can be transerred across the

More information

Ph.D. Qualifying Examination In Thermodynamics

Ph.D. Qualifying Examination In Thermodynamics Ph.D. Qualifying Examination In Thermodynamics May 2014 University of Texas at Austin Department of Chemical Engineering The exam is a closed book examination. There are five equally weighed problems on

More information

Chapter 6: Functions with severable variables and Partial Derivatives:

Chapter 6: Functions with severable variables and Partial Derivatives: Chapter 6: Functions with severable variables and Partial Derivatives: Functions o several variables: A unction involving more than one variable is called unction with severable variables. Eamples: y (,

More information

RESOLUTION MSC.362(92) (Adopted on 14 June 2013) REVISED RECOMMENDATION ON A STANDARD METHOD FOR EVALUATING CROSS-FLOODING ARRANGEMENTS

RESOLUTION MSC.362(92) (Adopted on 14 June 2013) REVISED RECOMMENDATION ON A STANDARD METHOD FOR EVALUATING CROSS-FLOODING ARRANGEMENTS (Adopted on 4 June 203) (Adopted on 4 June 203) ANNEX 8 (Adopted on 4 June 203) MSC 92/26/Add. Annex 8, page THE MARITIME SAFETY COMMITTEE, RECALLING Article 28(b) o the Convention on the International

More information

Algebra II Notes Inverse Functions Unit 1.2. Inverse of a Linear Function. Math Background

Algebra II Notes Inverse Functions Unit 1.2. Inverse of a Linear Function. Math Background Algebra II Notes Inverse Functions Unit 1. Inverse o a Linear Function Math Background Previously, you Perormed operations with linear unctions Identiied the domain and range o linear unctions In this

More information

Objectives. By the time the student is finished with this section of the workbook, he/she should be able

Objectives. By the time the student is finished with this section of the workbook, he/she should be able FUNCTIONS Quadratic Functions......8 Absolute Value Functions.....48 Translations o Functions..57 Radical Functions...61 Eponential Functions...7 Logarithmic Functions......8 Cubic Functions......91 Piece-Wise

More information

Modeling of Reactor Furnace of Sulfur Recovery Units from Acidic Gases

Modeling of Reactor Furnace of Sulfur Recovery Units from Acidic Gases 0 nd International Conerence on Chemical Engineering and Applications IPCBEE vol. (0 (0 IACSIT Press, Singapore Modeling o Reactor Furnace o Sulur Recovery Units rom Acidic Gases Maryam Otadi, Mahdi Goharrokhi,

More information

University of Washington Department of Chemistry Chemistry 453 Winter Quarter 2014

University of Washington Department of Chemistry Chemistry 453 Winter Quarter 2014 Lecture 10 1/31/14 University o Washington Department o Chemistry Chemistry 453 Winter Quarter 014 A on-cooperative & Fully Cooperative inding: Scatchard & Hill Plots Assume binding siteswe have derived

More information

AP* Bonding & Molecular Structure Free Response Questions page 1

AP* Bonding & Molecular Structure Free Response Questions page 1 AP* Bonding & Molecular Structure Free Response Questions page 1 Essay Questions 1991 a) two points ΔS will be negative. The system becomes more ordered as two gases orm a solid. b) two points ΔH must

More information

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

There are eight problems on the exam. Do all of the problems. Show your work CHM 3400 Fundamentals o Physical Chemistry Final Exam April 23, 2012 There are eight problems on the exam. Do all o the problems. Show your work R = 0.08206 L. atm/mole. K N A = 6.022 x 10 23 R = 0.08314

More information

1036: Probability & Statistics

1036: Probability & Statistics 1036: Probabilit & Statistics Lecture 4 Mathematical pectation Prob. & Stat. Lecture04 - mathematical epectation cwliu@twins.ee.nctu.edu.tw 4-1 Mean o a Random Variable Let be a random variable with probabilit

More information

How to simulate in Simulink: DAE, DAE-EKF, MPC & MHE

How to simulate in Simulink: DAE, DAE-EKF, MPC & MHE How to simulate in Simulink: DAE, DAE-EKF, MPC & MHE Tamal Das PhD Candidate IKP, NTNU 24th May 2017 Outline 1 Differential algebraic equations (DAE) 2 Extended Kalman filter (EKF) for DAE 3 Moving horizon

More information

Fluctuationlessness Theorem and its Application to Boundary Value Problems of ODEs

Fluctuationlessness Theorem and its Application to Boundary Value Problems of ODEs Fluctuationlessness Theorem and its Application to Boundary Value Problems o ODEs NEJLA ALTAY İstanbul Technical University Inormatics Institute Maslak, 34469, İstanbul TÜRKİYE TURKEY) nejla@be.itu.edu.tr

More information

Numerical Solution of Ordinary Differential Equations in Fluctuationlessness Theorem Perspective

Numerical Solution of Ordinary Differential Equations in Fluctuationlessness Theorem Perspective Numerical Solution o Ordinary Dierential Equations in Fluctuationlessness Theorem Perspective NEJLA ALTAY Bahçeşehir University Faculty o Arts and Sciences Beşiktaş, İstanbul TÜRKİYE TURKEY METİN DEMİRALP

More information

9.3 Graphing Functions by Plotting Points, The Domain and Range of Functions

9.3 Graphing Functions by Plotting Points, The Domain and Range of Functions 9. Graphing Functions by Plotting Points, The Domain and Range o Functions Now that we have a basic idea o what unctions are and how to deal with them, we would like to start talking about the graph o

More information

Julkaisu 112. Freezing Point Depressions of Dilute Solutions of Alkali Metal Chlorides and Bromides. Jaakko I. Partanen [ ] γ ) ln( m d(ln ± I = ±)

Julkaisu 112. Freezing Point Depressions of Dilute Solutions of Alkali Metal Chlorides and Bromides. Jaakko I. Partanen [ ] γ ) ln( m d(ln ± I = ±) Julkaisu 112 Freezing Point Depressions o Dilute Solutions o Alkali Metal Chlorides and Bromides Jaakko I. Partanen = = + + + + ) / ( ) ( 2 ) ( 2 us 1 1 H I m RM I m M R [ ] ) / ( ) ( 2 / ) ) ln ( ( us

More information

Phys102 First Major-162 Zero Version Coordinator: Saleem Rao Sunday, March 19, 2017 Page: 1

Phys102 First Major-162 Zero Version Coordinator: Saleem Rao Sunday, March 19, 2017 Page: 1 Phys0 First Major-6 Zero Version Coordinator: Saleem Rao Sunday, March 9, 07 Page: Q. A transverse wave travelling along a string (x-axis) has a orm given by equation y ym sin( kxt). FIGURE shows the displacement

More information

PVTpetro: A COMPUTATIONAL TOOL FOR ISOTHERM TWO- PHASE PT-FLASH CALCULATION IN OIL-GAS SYSTEMS

PVTpetro: A COMPUTATIONAL TOOL FOR ISOTHERM TWO- PHASE PT-FLASH CALCULATION IN OIL-GAS SYSTEMS PVTpetro: A COMPUTATIONAL TOOL FOR ISOTHERM TWO- PHASE PT-FLASH CALCULATION IN OIL-GAS SYSTEMS A. M. BARBOSA NETO 1, A. C. BANNWART 1 1 University of Campinas, Mechanical Engineering Faculty, Energy Department

More information

MEAN VALUE THEOREM. Section 3.2 Calculus AP/Dual, Revised /30/2018 1:16 AM 3.2: Mean Value Theorem 1

MEAN VALUE THEOREM. Section 3.2 Calculus AP/Dual, Revised /30/2018 1:16 AM 3.2: Mean Value Theorem 1 MEAN VALUE THEOREM Section 3. Calculus AP/Dual, Revised 017 viet.dang@humbleisd.net 7/30/018 1:16 AM 3.: Mean Value Theorem 1 ACTIVITY A. Draw a curve (x) on a separate sheet o paper within a deined closed

More information

MODULE 5: DISTILLATION

MODULE 5: DISTILLATION MOULE 5: ISTILLATION LECTURE NO. 3 5.2.2. Continuous distillation columns In contrast, continuous columns process a continuous feed stream. No interruptions occur unless there is a problem with the column

More information

H 0 r = -18,000 K cal/k mole Assume specific heats of all solutions are equal to that of water. [10]

H 0 r = -18,000 K cal/k mole Assume specific heats of all solutions are equal to that of water. [10] Code No: RR320802 Set No. 1 III B.Tech II Semester Supplementary Examinations, November/December 2005 CHEMICAL REACTION ENGINEERING-I (Chemical Engineering) Time: 3 hours Max Marks: 80 Answer any FIVE

More information

Lecture Notes on Thermochemistry A Chemistry 141 Laboratory Professor Abrash

Lecture Notes on Thermochemistry A Chemistry 141 Laboratory Professor Abrash Q: What is this experiment about? Lecture Notes on Thermochemistry A Chemistry 141 Laboratory Proessor Abrash It s an introduction to concepts, experimental techniques and techniques o data analysis used

More information

COMPUTATIONAL STUDY OF CHEMICALLY REACTING HYPERSONIC FLOW

COMPUTATIONAL STUDY OF CHEMICALLY REACTING HYPERSONIC FLOW COMPUTATIONAL STUDY OF CHEMICALLY REACTING HYPERSONIC FLOW Yoshiuru Funahashi Department o Aeronautics and Astronautics, Graduate School o Engineering, The University o Tokyo, Tokyo, JAPAN Keywords: Hypersonic

More information

Class 4 Fractions. Answer t he quest ions. For more such worksheets visit

Class 4 Fractions. Answer t he quest ions. For more such worksheets visit ID : infractions [] Class Fractions For more such worksheets visit www.edugain.com Answer t he quest ions () Which mixed f raction is shown by the f igure given below? () If sum of both horizontal and

More information

Lecture 25: Heat and The 1st Law of Thermodynamics Prof. WAN, Xin

Lecture 25: Heat and The 1st Law of Thermodynamics Prof. WAN, Xin General Physics I Lecture 5: Heat and he 1st Law o hermodynamics Pro. WAN, Xin xinwan@zju.edu.cn http://zimp.zju.edu.cn/~xinwan/ Latent Heat in Phase Changes Latent Heat he latent heat o vaporization or

More information

DISTILLATION. Keywords: Phase Equilibrium, Isothermal Flash, Adiabatic Flash, Batch Distillation

DISTILLATION. Keywords: Phase Equilibrium, Isothermal Flash, Adiabatic Flash, Batch Distillation 25 DISTILLATION Keywords: Phase Equilibrium, Isothermal Flash, Adiabatic Flash, Batch Distillation Distillation refers to the physical separation of a mixture into two or more fractions that have different

More information

39.1 Gradually Varied Unsteady Flow

39.1 Gradually Varied Unsteady Flow 39.1 Gradually Varied Unsteady Flow Gradually varied unsteady low occurs when the low variables such as the low depth and velocity do not change rapidly in time and space. Such lows are very common in

More information

«Develop a better understanding on Partial fractions»

«Develop a better understanding on Partial fractions» «Develop a better understanding on Partial ractions» ackground inormation: The topic on Partial ractions or decomposing actions is irst introduced in O level dditional Mathematics with its applications

More information

Thermodynamics Heat & Work The First Law of Thermodynamics

Thermodynamics Heat & Work The First Law of Thermodynamics Thermodynamics Heat & Work The First Law o Thermodynamics Lana Sheridan De Anza College April 26, 2018 Last time more about phase changes work, heat, and the irst law o thermodynamics Overview P-V diagrams

More information

Structure and Evolution of Stars Lecture 13: Homology Solutions (#1)

Structure and Evolution of Stars Lecture 13: Homology Solutions (#1) Structure and Evolution o Stars Lecture 13: Homology Solutions (#1) Equations o Stellar Structure with mass as the independent variable Review o Observed relations between L, T and M Homology sel-similar

More information

NON-LINEAR ALGEBRAIC EQUATIONS Lec. 5.1: Nonlinear Equation in Single Variable

NON-LINEAR ALGEBRAIC EQUATIONS Lec. 5.1: Nonlinear Equation in Single Variable NON-LINEAR ALGEBRAIC EQUATIONS Lec. 5.1: Nonlinear Equation in Single Variable Dr. Niket Kaisare Department of Chemical Engineering IIT Madras NPTEL Course: MATLAB Programming for Numerical Computations

More information

Chemical Engineering 140. Chemical Process Analysis C.J. Radke Tentative Schedule Fall 2013

Chemical Engineering 140. Chemical Process Analysis C.J. Radke Tentative Schedule Fall 2013 Chemical Process Analysis C.J. Radke Tentative Schedule Fall 2013 Week 0 *8/30 1. Definition of Chemical Engineering: flow sheet, reactor trains and separation processes, raw materials, power production

More information

Practice Examinations Chem 393 Fall 2005 Time 1 hr 15 min for each set.

Practice Examinations Chem 393 Fall 2005 Time 1 hr 15 min for each set. Practice Examinations Chem 393 Fall 2005 Time 1 hr 15 min for each set. The symbols used here are as discussed in the class. Use scratch paper as needed. Do not give more than one answer for any question.

More information

CONVECTIVE HEAT TRANSFER CHARACTERISTICS OF NANOFLUIDS. Convective heat transfer analysis of nanofluid flowing inside a

CONVECTIVE HEAT TRANSFER CHARACTERISTICS OF NANOFLUIDS. Convective heat transfer analysis of nanofluid flowing inside a Chapter 4 CONVECTIVE HEAT TRANSFER CHARACTERISTICS OF NANOFLUIDS Convective heat transer analysis o nanoluid lowing inside a straight tube o circular cross-section under laminar and turbulent conditions

More information

The Derivation of a Drag Coefficient Formula from Velocity-Voidage Correlations

The Derivation of a Drag Coefficient Formula from Velocity-Voidage Correlations 1 The Derivation o a Drag Coeicient Formula rom Velocity-Voidage Correlations By M. Syamlal EG&G, T.S.W.V, Inc. P.O. Box 880 Morgantown, West Virginia 6507-0880 T.J. O Brien U.S. Department o Energy Morgantown

More information

The 2nd Texas A&M at Galveston Mathematics Olympiad. September 24, Problems & Solutions

The 2nd Texas A&M at Galveston Mathematics Olympiad. September 24, Problems & Solutions nd Math Olympiad Solutions Problem #: The nd Teas A&M at Galveston Mathematics Olympiad September 4, 00 Problems & Solutions Written by Dr. Lin Qiu A runner passes 5 poles in 30 seconds. How long will

More information

All rights reserved. Armando B. Corripio, PhD, PE Flash Distillation Flash Drum Variables and Specifications... 2

All rights reserved. Armando B. Corripio, PhD, PE Flash Distillation Flash Drum Variables and Specifications... 2 Flash Distillation All rights reserved. Armando B. Corripio, PhD, PE. 2013 Contents Flash Distillation... 1 1 Flash Drum Variables and Specifications... 2 2 Flash Drum Balances and Equations... 4 2.1 Equilibrium

More information

RATIONAL FUNCTIONS. Finding Asymptotes..347 The Domain Finding Intercepts Graphing Rational Functions

RATIONAL FUNCTIONS. Finding Asymptotes..347 The Domain Finding Intercepts Graphing Rational Functions RATIONAL FUNCTIONS Finding Asymptotes..347 The Domain....350 Finding Intercepts.....35 Graphing Rational Functions... 35 345 Objectives The ollowing is a list o objectives or this section o the workbook.

More information

Paper-II Chapter- TS-equation, Maxwell s equation. z = z(x, y) dz = dx + dz = Mdx + Ndy. dy Now. = 2 z

Paper-II Chapter- TS-equation, Maxwell s equation. z = z(x, y) dz = dx + dz = Mdx + Ndy. dy Now. = 2 z aper-ii Chapter- S-equation, Maxwell s equation Let heorem: Condition o exact dierential: Where M Hence, z x dz dx and N Q. Derive Maxwell s equations z x z zx, z dx + dz Mdx + Nd z d Now 2 z x M N x x

More information

FLOW CHARACTERISTICS OF HFC-134a IN AN ADIABATIC HELICAL CAPILLARY TUBE

FLOW CHARACTERISTICS OF HFC-134a IN AN ADIABATIC HELICAL CAPILLARY TUBE E HEFAT7 5 th International Conerence on Heat Transer, Fluid Mechanics and Thermodynamics Sun City, South Arica Paper number: KM1 FLOW CHARACTERISTICS OF HFC-1a IN AN ADIABATIC HELICAL CAPILLARY TUBE Khan

More information

Polynomials, Linear Factors, and Zeros. Factor theorem, multiple zero, multiplicity, relative maximum, relative minimum

Polynomials, Linear Factors, and Zeros. Factor theorem, multiple zero, multiplicity, relative maximum, relative minimum Polynomials, Linear Factors, and Zeros To analyze the actored orm o a polynomial. To write a polynomial unction rom its zeros. Describe the relationship among solutions, zeros, - intercept, and actors.

More information

4.1 & 4.2 Student Notes Using the First and Second Derivatives. for all x in D, where D is the domain of f. The number f()

4.1 & 4.2 Student Notes Using the First and Second Derivatives. for all x in D, where D is the domain of f. The number f() 4.1 & 4. Student Notes Using the First and Second Derivatives Deinition A unction has an absolute maimum (or global maimum) at c i ( c) ( ) or all in D, where D is the domain o. The number () c is called

More information

Quadratic Functions. The graph of the function shifts right 3. The graph of the function shifts left 3.

Quadratic Functions. The graph of the function shifts right 3. The graph of the function shifts left 3. Quadratic Functions The translation o a unction is simpl the shiting o a unction. In this section, or the most part, we will be graphing various unctions b means o shiting the parent unction. We will go

More information

Buoyancy Driven Heat Transfer of Water-Based CuO Nanofluids in a Tilted Enclosure with a Heat Conducting Solid Cylinder on its Center

Buoyancy Driven Heat Transfer of Water-Based CuO Nanofluids in a Tilted Enclosure with a Heat Conducting Solid Cylinder on its Center July 4-6 2012 London U.K. Buoyancy Driven Heat Transer o Water-Based CuO Nanoluids in a Tilted Enclosure with a Heat Conducting Solid Cylinder on its Center Ahmet Cihan Kamil Kahveci and Çiğdem Susantez

More information

Physics 121. Tuesday, February 19, Physics 121. Tuesday, February 19, Physics 121. Course announcements. Topics:

Physics 121. Tuesday, February 19, Physics 121. Tuesday, February 19, Physics 121. Course announcements. Topics: Physics 121. Tuesday, ebruary 19, 2008. avy Lt. Ron Candiloro's /A-18 Hornet creates a shock wave as he breaks the sound barrier July 7. The shock wave is visible as a large cloud o condensation ormed

More information

Analog Computing Technique

Analog Computing Technique Analog Computing Technique by obert Paz Chapter Programming Principles and Techniques. Analog Computers and Simulation An analog computer can be used to solve various types o problems. It solves them in

More information

Earlier Lecture. Basics of Refrigeration/Liquefaction, coefficient of performance and importance of Carnot COP.

Earlier Lecture. Basics of Refrigeration/Liquefaction, coefficient of performance and importance of Carnot COP. 9 1 Earlier Lecture Basics o Rerigeration/Liqueaction, coeicient o perormance and importance o Carnot COP. Throttling, heat exchanger, compression/expansion systems. Deinition o a rerigerator, liqueier

More information

FILM STACKING IMPREGNATION MODEL FOR THERMOPLASTIC COMPOSITES APPLIED TO A NOVEL NET-SHAPE PREFORMING PROCESS

FILM STACKING IMPREGNATION MODEL FOR THERMOPLASTIC COMPOSITES APPLIED TO A NOVEL NET-SHAPE PREFORMING PROCESS The 8 th International Conerence on Flow Processes in Composite Materials (FPCM8) FILM STACKING IMPREGNATION MODEL FOR THERMOPLASTIC COMPOSITES APPLIED TO A NOVEL NET-SHAPE PREFORMING PROCESS S.T.Jespersen

More information

University of Washington Department of Chemistry Chemistry 452/456 Summer Quarter 2011

University of Washington Department of Chemistry Chemistry 452/456 Summer Quarter 2011 Homework Assignment #: Due at 500 pm Wednesday July 6. University of Washington Department of Chemistry Chemistry 45/456 Summer Quarter 0 ) he respiratory system uses oxygen to degrade glucose to carbon

More information

Special types of Riemann sums

Special types of Riemann sums Roberto s Notes on Subject Chapter 4: Deinite integrals and the FTC Section 3 Special types o Riemann sums What you need to know already: What a Riemann sum is. What you can learn here: The key types o

More information

Chemistry 360 Spring 2017 Dr. Jean M. Standard April 19, Exam points

Chemistry 360 Spring 2017 Dr. Jean M. Standard April 19, Exam points Chemistry 360 pring 2017 Dr. Jean M. tandard April 19, 2017 Name Exam 3 100 points Note: You must show your work on problems in order to receive full credit for any answers. You must turn in your equation

More information

Sec 3.1. lim and lim e 0. Exponential Functions. f x 9, write the equation of the graph that results from: A. Limit Rules

Sec 3.1. lim and lim e 0. Exponential Functions. f x 9, write the equation of the graph that results from: A. Limit Rules Sec 3. Eponential Functions A. Limit Rules. r lim a a r. I a, then lim a and lim a 0 3. I 0 a, then lim a 0 and lim a 4. lim e 0 5. e lim and lim e 0 Eamples:. Starting with the graph o a.) Shiting 9 units

More information

This is only a list of questions use a separate sheet to work out the problems. 1. (1.2 and 1.4) Use the given graph to answer each question.

This is only a list of questions use a separate sheet to work out the problems. 1. (1.2 and 1.4) Use the given graph to answer each question. Mth Calculus Practice Eam Questions NOTE: These questions should not be taken as a complete list o possible problems. The are merel intended to be eamples o the diicult level o the regular eam questions.

More information

IV B.Tech. I Semester Supplementary Examinations, February/March PROCESS MODELING AND SIMULATION (Chemical Engineering)

IV B.Tech. I Semester Supplementary Examinations, February/March PROCESS MODELING AND SIMULATION (Chemical Engineering) www..com www..com Code No: M0824/R07 Set No. 1 IV B.Tech. I Semester Supplementary Examinations, February/March - 2011 PROCESS MODELING AND SIMULATION (Chemical Engineering) Time: 3 Hours Max Marks: 80

More information

Syllabus Objective: 2.9 The student will sketch the graph of a polynomial, radical, or rational function.

Syllabus Objective: 2.9 The student will sketch the graph of a polynomial, radical, or rational function. Precalculus Notes: Unit Polynomial Functions Syllabus Objective:.9 The student will sketch the graph o a polynomial, radical, or rational unction. Polynomial Function: a unction that can be written in

More information

AspenTech: VAPOR PRESSURES

AspenTech: VAPOR PRESSURES AspenTech: VAPOR PRESSURES Technical Memo No. XX-1 Subject: Vapor pressure interpolation error analysis To: Ms. Sam K. Safobeen Submitted by: Student 2 Date: May 11, 2010 Summary: I have compiled vapor

More information

36.1 Why is it important to be able to find roots to systems of equations? Up to this point, we have discussed how to find the solution to

36.1 Why is it important to be able to find roots to systems of equations? Up to this point, we have discussed how to find the solution to ChE Lecture Notes - D. Keer, 5/9/98 Lecture 6,7,8 - Rootndng n systems o equatons (A) Theory (B) Problems (C) MATLAB Applcatons Tet: Supplementary notes rom Instructor 6. Why s t mportant to be able to

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

2SO 2(g) + O 2(g) Increasing the temperature. (Total 1 mark) Enthalpy data for the reacting species are given in the table below.

2SO 2(g) + O 2(g) Increasing the temperature. (Total 1 mark) Enthalpy data for the reacting species are given in the table below. Q1.Which change would alter the value of the equilibrium constant (K p) for this reaction? 2SO 2(g) + O 2(g) 2SO 3(g) A Increasing the total pressure of the system. Increasing the concentration of sulfur

More information

University of Washington Department of Chemistry Chemistry 355 Spring Quarter 2003

University of Washington Department of Chemistry Chemistry 355 Spring Quarter 2003 University o Washington Department o Chemistry Chemistry 355 Spring Quarter 3 Homework Assignment : Due no later than 5 pm on 4/14 Text Problems:.4,.8,.1,.11,.17.4) Carbohydrate: Select sucrose C1 HO11

More information

Vapor-liquid Separation Process MULTICOMPONENT DISTILLATION

Vapor-liquid Separation Process MULTICOMPONENT DISTILLATION Vapor-liquid Separation Process MULTICOMPONENT DISTILLATION Outline: Introduction to multicomponent distillation Phase Equilibria in Multicomponent Distillation (Pg. 737) Bubble-point and dew-point calculation

More information

Definition: Let f(x) be a function of one variable with continuous derivatives of all orders at a the point x 0, then the series.

Definition: Let f(x) be a function of one variable with continuous derivatives of all orders at a the point x 0, then the series. 2.4 Local properties o unctions o several variables In this section we will learn how to address three kinds o problems which are o great importance in the ield o applied mathematics: how to obtain the

More information

Physics 5153 Classical Mechanics. Solution by Quadrature-1

Physics 5153 Classical Mechanics. Solution by Quadrature-1 October 14, 003 11:47:49 1 Introduction Physics 5153 Classical Mechanics Solution by Quadrature In the previous lectures, we have reduced the number o eective degrees o reedom that are needed to solve

More information

Polymath Examples: Nonlinear Algebraic Equation and Regression Problems

Polymath Examples: Nonlinear Algebraic Equation and Regression Problems Polymath Examples: Nonlinear Algebraic Equation and Regression Problems Problem Flash evaporation of an ideal multicomponent mixture Concept Calculation of bubble point and dew point temperatures and associated

More information

UNIT #6 EXPONENTS, EXPONENTS, AND MORE EXPONENTS REVIEW QUESTIONS

UNIT #6 EXPONENTS, EXPONENTS, AND MORE EXPONENTS REVIEW QUESTIONS Answer Key Name: Date: UNIT # EXPONENTS, EXPONENTS, AND MORE EXPONENTS REVIEW QUESTIONS Part I Questions. Te epression 0 can be simpliied to () () 0 0. Wic o te ollowing is equivalent to () () 8 8? 8.

More information

Micro-canonical ensemble model of particles obeying Bose-Einstein and Fermi-Dirac statistics

Micro-canonical ensemble model of particles obeying Bose-Einstein and Fermi-Dirac statistics Indian Journal o Pure & Applied Physics Vol. 4, October 004, pp. 749-757 Micro-canonical ensemble model o particles obeying Bose-Einstein and Fermi-Dirac statistics Y K Ayodo, K M Khanna & T W Sakwa Department

More information

Controlling the Heat Flux Distribution by Changing the Thickness of Heated Wall

Controlling the Heat Flux Distribution by Changing the Thickness of Heated Wall J. Basic. Appl. Sci. Res., 2(7)7270-7275, 2012 2012, TextRoad Publication ISSN 2090-4304 Journal o Basic and Applied Scientiic Research www.textroad.com Controlling the Heat Flux Distribution by Changing

More information

CS 221 Lecture 9. Tuesday, 1 November 2011

CS 221 Lecture 9. Tuesday, 1 November 2011 CS 221 Lecture 9 Tuesday, 1 November 2011 Some slides in this lecture are from the publisher s slides for Engineering Computation: An Introduction Using MATLAB and Excel 2009 McGraw-Hill Today s Agenda

More information

Physics 1301, Exam 4 Review

Physics 1301, Exam 4 Review c V Andersen, 2006 1 Physics 1301, Exam 4 Review The following is a list of things you should definitely know for the exam, however, the list is not exhaustive. You are responsible for all the material

More information

Note: items marked with * you should be able to perform on a closed book exam. Chapter 10 Learning Objective Checklist

Note: items marked with * you should be able to perform on a closed book exam. Chapter 10 Learning Objective Checklist Note: items marked with * you should be able to perform on a closed book exam. Chapter 10 Learning Objective Checklist Sections 10.1-10.13 find pure component properties on a binary P-x-y or T-x-y diagram.*

More information

A method to determine relative stroke detection efficiencies from multiplicity distributions

A method to determine relative stroke detection efficiencies from multiplicity distributions A ethod to deterine relative stroke detection eiciencies ro ultiplicity distributions Schulz W. and Cuins K. 2. Austrian Lightning Detection and Inoration Syste (ALDIS), Kahlenberger Str.2A, 90 Vienna,

More information

Math-3 Lesson 8-5. Unit 4 review: a) Compositions of functions. b) Linear combinations of functions. c) Inverse Functions. d) Quadratic Inequalities

Math-3 Lesson 8-5. Unit 4 review: a) Compositions of functions. b) Linear combinations of functions. c) Inverse Functions. d) Quadratic Inequalities Math- Lesson 8-5 Unit 4 review: a) Compositions o unctions b) Linear combinations o unctions c) Inverse Functions d) Quadratic Inequalities e) Rational Inequalities 1. Is the ollowing relation a unction

More information

Fs (30.0 N)(50.0 m) The magnitude of the force that the shopper exerts is f 48.0 N cos 29.0 cos 29.0 b. The work done by the pushing force F is

Fs (30.0 N)(50.0 m) The magnitude of the force that the shopper exerts is f 48.0 N cos 29.0 cos 29.0 b. The work done by the pushing force F is Chapter 6: Problems 5, 6, 8, 38, 43, 49 & 53 5. ssm Suppose in Figure 6. that +1.1 1 3 J o work is done by the orce F (magnitude 3. N) in moving the suitcase a distance o 5. m. At what angle θ is the orce

More information

Function Operations. I. Ever since basic math, you have been combining numbers by using addition, subtraction, multiplication, and division.

Function Operations. I. Ever since basic math, you have been combining numbers by using addition, subtraction, multiplication, and division. Function Operations I. Ever since basic math, you have been combining numbers by using addition, subtraction, multiplication, and division. Add: 5 + Subtract: 7 Multiply: (9)(0) Divide: (5) () or 5 II.

More information

NON-SIMILAR SOLUTIONS FOR NATURAL CONVECTION FROM A MOVING VERTICAL PLATE WITH A CONVECTIVE THERMAL BOUNDARY CONDITION

NON-SIMILAR SOLUTIONS FOR NATURAL CONVECTION FROM A MOVING VERTICAL PLATE WITH A CONVECTIVE THERMAL BOUNDARY CONDITION NON-SIMILAR SOLUTIONS FOR NATURAL CONVECTION FROM A MOVING VERTICAL PLATE WITH A CONVECTIVE THERMAL BOUNDARY CONDITION by Asterios Pantokratoras School o Engineering, Democritus University o Thrace, 67100

More information

Included in this hand-out are five examples of problems requiring the solution of a system of linear algebraic equations.

Included in this hand-out are five examples of problems requiring the solution of a system of linear algebraic equations. he Lecture Notes, Dept. of heical Engineering, Univ. of TN, Knoville - D. Keffer, 5/9/98 (updated /) Eaple pplications of systes of linear equations Included in this hand-out are five eaples of probles

More information

SIMULATION OF A FLOW THROUGH A RIGID POROUS MEDIUM SUBJECTED TO A CONSTRAINT

SIMULATION OF A FLOW THROUGH A RIGID POROUS MEDIUM SUBJECTED TO A CONSTRAINT SIMULATION O A LOW THROUGH A RIGID POROUS MEDIUM SUBJECTED TO A CONSTRAINT R. M. Saldanha da Gama a, J. J. Pedrosa ilho a, and M. L. Martins-Costa b a Universidade do Estado do Rio de Janeiro Departamento

More information

Mixture Behavior, Stability, and Azeotropy

Mixture Behavior, Stability, and Azeotropy 7 Mixture Behavior, Stability, and Azeotropy Copyrihted Material CRC Press/Taylor & Francis 6 BASIC RELATIONS As compounds mix to some deree in the liquid phase, the Gibbs enery o the system decreases

More information

Example problems. Chapter 3: The Kinetic Theory of Gases. Homework: 13, 18, 20, 23, 25, 27 (p )

Example problems. Chapter 3: The Kinetic Theory of Gases. Homework: 13, 18, 20, 23, 25, 27 (p ) Examle roblems Chater : he Kinetic heory o Gases Homework:, 8,,, 5, 7 (. 5-5) 9. An automobile tire has a volume o.64 x m and contains air at a gauge ressure (above atmosheric ressure) o 65 kpa when the

More information

Flip-Flop Functions KEY

Flip-Flop Functions KEY For each rational unction, list the zeros o the polynomials in the numerator and denominator. Then, using a calculator, sketch the graph in a window o [-5.75, 6] by [-5, 5], and provide an end behavior

More information

Chapter 1 Introduction

Chapter 1 Introduction Fundamentals of Thermodynamics Chapter 1 Introduction Prof. Siyoung Jeong Thermodynamics I MEE2022-01 Thermodynamics : Science of energy and entropy - Science of heat and work and properties related to

More information

Wind-Driven Circulation: Stommel s gyre & Sverdrup s balance

Wind-Driven Circulation: Stommel s gyre & Sverdrup s balance Wind-Driven Circulation: Stommel s gyre & Sverdrup s balance We begin by returning to our system o equations or low o a layer o uniorm density on a rotating earth. du dv h + [ u( H + h)] + [ v( H t y d

More information

EF 152 Exam 3 - Fall, 2018 Page 1 Version: A Copy 50

EF 152 Exam 3 - Fall, 2018 Page 1 Version: A Copy 50 EF 152 Exam 3 - Fall, 2018 Page 1 Version: A Copy 50 Name: Section: Seat Assignment: Specify your EXAM ID on the right. Use 000 if you do not know your exam ID. 0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 5 5 5 6 6

More information

Example: When describing where a function is increasing, decreasing or constant we use the x- axis values.

Example: When describing where a function is increasing, decreasing or constant we use the x- axis values. Business Calculus Lecture Notes (also Calculus With Applications or Business Math II) Chapter 3 Applications o Derivatives 31 Increasing and Decreasing Functions Inormal Deinition: A unction is increasing

More information

Announcement. Physical Chemistry I for Biochemists. Chem340. Lecture 9 (1/31/11) Yoshitaka Ishii. Homework 4 is uploaded at the web site

Announcement. Physical Chemistry I for Biochemists. Chem340. Lecture 9 (1/31/11) Yoshitaka Ishii. Homework 4 is uploaded at the web site hsical Chemistr I or Biochemists artial Derivatives Ch3.-3.3 HW3 Continued Chem34 Lecture 9 /3/ Yoshitaka Ishii Announcement Homework 4 is uploaded at the web site Monda ep = e in case that ou do not know

More information

A Total Lagrangian Based Method for Recovering the Undeformed Configuration in Finite Elasticity

A Total Lagrangian Based Method for Recovering the Undeformed Configuration in Finite Elasticity A Total Lagrangian Based Method or Recovering the Undeormed Coniguration in Finite Elasticity Grand Roman Joldes*, Adam Wittek and Karol Miller Intelligent Systems or Medicine Laboratory, School o Mechanical

More information

ELEG 3143 Probability & Stochastic Process Ch. 4 Multiple Random Variables

ELEG 3143 Probability & Stochastic Process Ch. 4 Multiple Random Variables Department o Electrical Engineering University o Arkansas ELEG 3143 Probability & Stochastic Process Ch. 4 Multiple Random Variables Dr. Jingxian Wu wuj@uark.edu OUTLINE 2 Two discrete random variables

More information