10.34 Numerical Methods Applied to Chemical Engineering Fall Homework #3: Systems of Nonlinear Equations and Optimization

Size: px
Start display at page:

Download "10.34 Numerical Methods Applied to Chemical Engineering Fall Homework #3: Systems of Nonlinear Equations and Optimization"

Transcription

1 10.34 Numercal Methods Appled to Chemcal Engneerng Fall 2015 Homework #3: Systems of Nonlnear Equatons and Optmzaton Problem 1 (30 ponts). A (homogeneous) azeotrope s a composton of a multcomponent mxture for whch the vapor phase n equlbrum wth a sngle lqud phase has the same composton as the lqud phase,.e., for a C-component mxture: y = x where y R C and x R C are vectors of vapor and lqud phase mole fractons, respectvely. Note that by ths defnton the pure component compostons are also azeotropes. Mxtures of collectons of components that can form azeotropes can be dffcult to separate usng dstllaton because the azeotropes can block separatons that would be possble n an deal mxture. The classcal example of ths s the water-ethanol azeotrope, whch prevents pure ethanol beng dstlled from the results of a fermentaton. When desgnng a separaton process for a mxture of a collecton of components that can form azeotropes, the frst step s to dentfy all the azeotropes that can be formed, from whch the blocked separatons can then be determned and possbly crcumvented by clever desgn. Ths week s homework s about computng all the azeotropes occurrng n mxtures of ethanol, methyl ethyl ketone and water at constant pressure P = 1 atm. Assumng a certan class of vaporlqud equlbrum model, ths amounts to fndng all physcally relevant solutons of the system of nonlnear equatons: y = x, = 1,..., C 1, γ (x, T )P SAT (T ) y = x, P = 1,..., C, (VE) C x = 1, =1 C y = 1. =1 Note that ths s a system of 2C + 1 equatons n the 2C + 1 varables (x, y, T ) (.e., at constant pressure there s a temperature assocated wth each azeotrope). For a soluton to be physcal t must also satsfy the nequaltes: x, y, T 0. Compute the actvty coeffcents γ (x, T ) usng the Wlson model: Λjx j ln γ = 1 ln Λ k Λ, jkx k Λ j = V j V j jx j j ( λ exp j λ RT ).

2 Component Molar Volume (m/mol) Interacton Energy Dfference (cal/mol) V λ E λ EE λ M λ MM λ W λ WW E M W Table 1: Parameter values needed to compute bnary parameters for the Wlson actvty coeffcent model. Takng E, M and W as ethanol, methyl ethyl ketone and water, respectvely, the necessary data are gven n Table 1. The pure component vapor pressures P SAT (T ) should be calculated usng the Antone equaton: ( ) P sat B log = A, (1) torr C + T ( o C) wth parameter values gven n Table 2. Component Antone Parameters A B C E M W Table 2: Antone parameters for Equaton (1). 1. Wrte functons antone_eq and wlson_actvty that calculate P sat (T ) and γ (x, T ), respectvely, for all three components (E, M and W). The functon antone_eq takes T as an nput and returns a vector of vapor pressure values that are calculated based on the Antone s equaton. Test that your antone_eq functon s workng correctly by checkng these values: at T = 100 o C, PE sat =1694 torr, PM sat =1400 torr, and PW sat =760 torr. Smlarly, wlson_actvty functon takes a vector of compostons (x) and a temperature value T as nputs and returns a vector of actvty coeffcents that are calculated based on the Wlson model. Test that your wlson_actvty functon are workng correctly by checkng these values: at T = 70 o C ( K), x E = 0.25, x M = 0.5 and x W = 0.25, γ E = , γ M = and γ W = Use the equatons y = x to elmnate y and derve a system of C + 1 equatons just n (x, T ) of the form: f(x, T ) = 0. Wrte a functon called functon_evaluator_wlson for your equatons f(x, T ) = 0. Ths s a functon that takes as nput a vector z = (x, T ) and returns a vector of the values of the functons f defnng your system of equatons at z. Test that your functon s functonng correctly by applyng t to the pure component compostons. 3. Wrte a MATAB scrpt that uses the bult-n routne fsolve to solve the equaton f(exp(xˆ), exp(t ˆ)) = 0 for xˆ and T ˆ, where the composton and temperature are defned n terms of the auxlary hat varables as x = exp(xˆ) and T = exp(t ˆ). Ths change of varables s recommended because t ensures that x and T are postve throughout the soluton process. However, wth

3 ths change, some approxmaton of the pure component solutons s requred. Why? Use your scrpt to solve for the azeotropes n ethanol, methyl ethyl ketone and water mxtures at 1 atm by provdng fsolve wth a selecton of dfferent ntal guesses. Report values for any numercal tolerances used. Prepare a table dsplayng nformaton on the ntal guesses used and the correspondng number of teratons and solutons found. HINT: There should be a total of 7 azeotropes: 3 pure compoments, 3 bnary mxtures, and 1 ternary mxture. 4. As an alternatve to randomly selectng ntal guesses, replace Equaton (VE) wth the followng physcally-nspred homotopy P SAT (T ) y = ((1 λ) + λγ (x, T )) x, = 1,..., C, P where the vapor-lqud equlbrum model s Raoult s law when λ = 0 and the Wlson model when λ = 1. Implement n a basc contnuaton method wth ths homotopy by copyng and modfyng the code you had prevously wrtten. Explan the steps you took to do ths. Plot T ( o C) versus 0 λ 1. for all three pure compoments to make sure that your code can track the soluton branches correspondng to the three pure component compostons from λ = 0 to λ = Along the pure component branches, your homotopy method wll encounter bfurcatons sgnaled by a change n the sgn of the determnant of the Jacoban of f(x, T ). In fact, t can be shown that any bnary azeotropes occur on soluton branches that bfurcate off the pure component branches at some 0 < λ < 1. Smlarly, any ternary azeotropes occur on soluton branches that bfurcate off the bnary azeotrope branches at some 0 < λ < 1. Copy and then modfy your homotopy method to detect these bfurcatons. At (or just before) a bfurcaton pont, your code should pck up a new branch of the soluton by perturbng your ntal guesses n a drecton ndcated by vectors n (or near) the null space of the Jacoban. Use your code to locate systematcally all azeotropes n ethanol, methyl ethyl ketone and water mxtures at 1 atm. Prepare a table wth the composton and temperatures of all the azeotropes. Prepare a bfurcaton dagram plottng the temperature of all soluton branches versus 0 λ 1. Problem 2 (20 ponts). In ths problem you wll optmze the desgn of a chemcal reactor usng MATAB s bult-n constraned optmzaton tools. We have a CSTR (contnuous strred tank reactor) whch produces speces C from reactants A and B usng the followng reacton network. Note that n ths problem the reacton rate coeffcents are gven as functons of temperature. A + B C + D C + B S 1 + D A + D S 2 A + B S 3 C + B S 4 r 1 = k 1 (T )C A C B r 2 = k 2 (T )C C C B r 3 = k 3 (T )C A C D r 4 = k 4 (T )C A C B r 5 = k 5 (T )C C C B We provde to the CSTR an nput stream wth a volumetrc flow rate of Q = 10 /s contanng speces A and B n a solvent. To provde better temperature control, the total concentraton of A and B s kept mnmal: mol C An + C Bn = 0.1.

4 Rate data has been collected and an Arrhenus dependence of the rate on temperature can be assumed for all k j (T ). k 1 (298K) = 0.01 k 1 (310K) = 0.02 k 2 (T ) = k 1 (T ) k 3 (298K) = k 3 (310K) = k 4 (298K) = k 4 (310K) = k 5 (T ) = k 4 (T ) We desgn the reactor to operate sothermally so as to maxmze the concentraton of our desred product C n the output stream. We have three desgn varables: the rato of reactant nlet concentratons α C An /C Bn, and the volume of the reactor whch s restrcted to the range 100 V 10, 000, and the operatng temperature 298 T 335 K. 1. Report the constants for all rate laws based upon the data provded. 2. Wrte a MATAB functon that computes the steady-state concentratons of A,B,C and D. Ensure your code returns stable steady state values. Descrbe how you calculate steady-state concentratons for ths system and how you confrm such results are stable steady states. 3. Usng your MATAB functon for the steady-state concentratons n the system utlze fmncon n MATAB to optmze the desgn of the reactor to maxmze the concentraton of C. Descrbe the optmal desgn pont, your objectve functon, and the mplementaton of the constrants n your report. Do you need to add addtonal constrants to keep the system physcally meanngful? Use a value of for the functon and x value tolerances (see optmoptons for syntax). 4. We may choose to desgn to maxmze the yeld of C nstead. In ths case we have a dfferent objectve functon. Report your objectve functon under ths scenaro and use fmncon n MATAB to optmze the desgn of the reactor. Descrbe the optmal desgn pont, and f t dffers from the prevous optmal desgn pont descrbe how and why. If you needed to add any constrants descrbe them and why they were added. 5. Produce a contour plot ndcatng the poston and objectve value of each desgn pont. Make your plots at constant T, wth the objectve on the z axs and α and V as the x and y axes Staff

5 MIT OpenCourseWare Numercal Methods Appled to Chemcal Engneerng Fall 2015 For nformaton about ctng these materals or our Terms of Use, vst:

CinChE Problem-Solving Strategy Chapter 4 Development of a Mathematical Model. formulation. procedure

CinChE Problem-Solving Strategy Chapter 4 Development of a Mathematical Model. formulation. procedure nhe roblem-solvng Strategy hapter 4 Transformaton rocess onceptual Model formulaton procedure Mathematcal Model The mathematcal model s an abstracton that represents the engneerng phenomena occurrng n

More information

y i x P vap 10 A T SOLUTION TO HOMEWORK #7 #Problem

y i x P vap 10 A T SOLUTION TO HOMEWORK #7 #Problem SOLUTION TO HOMEWORK #7 #roblem 1 10.1-1 a. In order to solve ths problem, we need to know what happens at the bubble pont; at ths pont, the frst bubble s formed, so we can assume that all of the number

More information

Design Equations. ν ij r i V R. ν ij r i. Q n components. = Q f c jf Qc j + Continuous Stirred Tank Reactor (steady-state and constant phase)

Design Equations. ν ij r i V R. ν ij r i. Q n components. = Q f c jf Qc j + Continuous Stirred Tank Reactor (steady-state and constant phase) Desgn Equatons Batch Reactor d(v R c j ) dt = ν j r V R n dt dt = UA(T a T) r H R V R ncomponents V R c j C pj j Plug Flow Reactor d(qc j ) dv = ν j r 2 dt dv = R U(T a T) n r H R Q n components j c j

More information

If two volatile and miscible liquids are combined to form a solution, Raoult s law is not obeyed. Use the experimental data in Table 9.

If two volatile and miscible liquids are combined to form a solution, Raoult s law is not obeyed. Use the experimental data in Table 9. 9.9 Real Solutons Exhbt Devatons from Raoult s Law If two volatle and mscble lquds are combned to form a soluton, Raoult s law s not obeyed. Use the expermental data n Table 9.3: Physcal Chemstry 00 Pearson

More information

Open Systems: Chemical Potential and Partial Molar Quantities Chemical Potential

Open Systems: Chemical Potential and Partial Molar Quantities Chemical Potential Open Systems: Chemcal Potental and Partal Molar Quanttes Chemcal Potental For closed systems, we have derved the followng relatonshps: du = TdS pdv dh = TdS + Vdp da = SdT pdv dg = VdP SdT For open systems,

More information

Exercises of Fundamentals of Chemical Processes

Exercises of Fundamentals of Chemical Processes Department of Energ Poltecnco d Mlano a Lambruschn 4 2056 MILANO Exercses of undamentals of Chemcal Processes Prof. Ganpero Gropp Exercse 7 ) Estmaton of the composton of the streams at the ext of an sothermal

More information

INTRODUCTION TO CHEMICAL PROCESS SIMULATORS

INTRODUCTION TO CHEMICAL PROCESS SIMULATORS INTRODUCTION TO CHEMICAL PROCESS SIMULATORS DWSIM Chemcal Process Smulator A. Carrero, N. Qurante, J. Javaloyes October 2016 Introducton to Chemcal Process Smulators Contents Monday, October 3 rd 2016

More information

Energy, Entropy, and Availability Balances Phase Equilibria. Nonideal Thermodynamic Property Models. Selecting an Appropriate Model

Energy, Entropy, and Availability Balances Phase Equilibria. Nonideal Thermodynamic Property Models. Selecting an Appropriate Model Lecture 4. Thermodynamcs [Ch. 2] Energy, Entropy, and Avalablty Balances Phase Equlbra - Fugactes and actvty coeffcents -K-values Nondeal Thermodynamc Property Models - P-v-T equaton-of-state models -

More information

3. Be able to derive the chemical equilibrium constants from statistical mechanics.

3. Be able to derive the chemical equilibrium constants from statistical mechanics. Lecture #17 1 Lecture 17 Objectves: 1. Notaton of chemcal reactons 2. General equlbrum 3. Be able to derve the chemcal equlbrum constants from statstcal mechancs. 4. Identfy how nondeal behavor can be

More information

Process Modeling. Improving or understanding chemical process operation is a major objective for developing a dynamic process model

Process Modeling. Improving or understanding chemical process operation is a major objective for developing a dynamic process model Process Modelng Improvng or understandng chemcal process operaton s a major objectve for developng a dynamc process model Balance equatons Steady-state balance equatons mass or energy mass or energy enterng

More information

(1) The saturation vapor pressure as a function of temperature, often given by the Antoine equation:

(1) The saturation vapor pressure as a function of temperature, often given by the Antoine equation: CE304, Sprng 2004 Lecture 22 Lecture 22: Topcs n Phase Equlbra, part : For the remander of the course, we wll return to the subject of vapor/lqud equlbrum and ntroduce other phase equlbrum calculatons

More information

Outlet temperature of a WGS reactor (Stage I) for the conversion of CO, applied for the abatement of CO to a fixed value.

Outlet temperature of a WGS reactor (Stage I) for the conversion of CO, applied for the abatement of CO to a fixed value. Department of Energy Poltecnco d Mlano Va Lambruschn 56 MILAN Exercses of Fundamentals of Chemcal Processes Prof. Ganpero Gropp Exercse utlet temperature of a WGS reactor (Stage I for the converson of

More information

Introduction to Vapor/Liquid Equilibrium, part 2. Raoult s Law:

Introduction to Vapor/Liquid Equilibrium, part 2. Raoult s Law: CE304, Sprng 2004 Lecture 4 Introducton to Vapor/Lqud Equlbrum, part 2 Raoult s Law: The smplest model that allows us do VLE calculatons s obtaned when we assume that the vapor phase s an deal gas, and

More information

General Thermodynamics for Process Simulation. Dr. Jungho Cho, Professor Department of Chemical Engineering Dong Yang University

General Thermodynamics for Process Simulation. Dr. Jungho Cho, Professor Department of Chemical Engineering Dong Yang University General Thermodynamcs for Process Smulaton Dr. Jungho Cho, Professor Department of Chemcal Engneerng Dong Yang Unversty Four Crtera for Equlbra μ = μ v Stuaton α T = T β α β P = P l μ = μ l1 l 2 Thermal

More information

Name: SID: Discussion Session:

Name: SID: Discussion Session: Name: SID: Dscusson Sesson: Chemcal Engneerng Thermodynamcs 141 -- Fall 007 Thursday, November 15, 007 Mdterm II SOLUTIONS - 70 mnutes 110 Ponts Total Closed Book and Notes (0 ponts) 1. Evaluate whether

More information

Assignment 4. Adsorption Isotherms

Assignment 4. Adsorption Isotherms Insttute of Process Engneerng Assgnment 4. Adsorpton Isotherms Part A: Compettve adsorpton of methane and ethane In large scale adsorpton processes, more than one compound from a mxture of gases get adsorbed,

More information

Problem Set 9 Solutions

Problem Set 9 Solutions Desgn and Analyss of Algorthms May 4, 2015 Massachusetts Insttute of Technology 6.046J/18.410J Profs. Erk Demane, Srn Devadas, and Nancy Lynch Problem Set 9 Solutons Problem Set 9 Solutons Ths problem

More information

Prediction of steady state input multiplicities for the reactive flash separation using reactioninvariant composition variables

Prediction of steady state input multiplicities for the reactive flash separation using reactioninvariant composition variables Insttuto Tecnologco de Aguascalentes From the SelectedWorks of Adran Bonlla-Petrcolet 2 Predcton of steady state nput multplctes for the reactve flash separaton usng reactonnvarant composton varables Jose

More information

Kernel Methods and SVMs Extension

Kernel Methods and SVMs Extension Kernel Methods and SVMs Extenson The purpose of ths document s to revew materal covered n Machne Learnng 1 Supervsed Learnng regardng support vector machnes (SVMs). Ths document also provdes a general

More information

Report on Image warping

Report on Image warping Report on Image warpng Xuan Ne, Dec. 20, 2004 Ths document summarzed the algorthms of our mage warpng soluton for further study, and there s a detaled descrpton about the mplementaton of these algorthms.

More information

Solution Thermodynamics

Solution Thermodynamics Soluton hermodynamcs usng Wagner Notaton by Stanley. Howard Department of aterals and etallurgcal Engneerng South Dakota School of nes and echnology Rapd Cty, SD 57701 January 7, 001 Soluton hermodynamcs

More information

Transfer Functions. Convenient representation of a linear, dynamic model. A transfer function (TF) relates one input and one output: ( ) system

Transfer Functions. Convenient representation of a linear, dynamic model. A transfer function (TF) relates one input and one output: ( ) system Transfer Functons Convenent representaton of a lnear, dynamc model. A transfer functon (TF) relates one nput and one output: x t X s y t system Y s The followng termnology s used: x y nput output forcng

More information

Supplementary Notes for Chapter 9 Mixture Thermodynamics

Supplementary Notes for Chapter 9 Mixture Thermodynamics Supplementary Notes for Chapter 9 Mxture Thermodynamcs Key ponts Nne major topcs of Chapter 9 are revewed below: 1. Notaton and operatonal equatons for mxtures 2. PVTN EOSs for mxtures 3. General effects

More information

( ) 1/ 2. ( P SO2 )( P O2 ) 1/ 2.

( ) 1/ 2. ( P SO2 )( P O2 ) 1/ 2. Chemstry 360 Dr. Jean M. Standard Problem Set 9 Solutons. The followng chemcal reacton converts sulfur doxde to sulfur troxde. SO ( g) + O ( g) SO 3 ( l). (a.) Wrte the expresson for K eq for ths reacton.

More information

CHEMICAL REACTIONS AND DIFFUSION

CHEMICAL REACTIONS AND DIFFUSION CHEMICAL REACTIONS AND DIFFUSION A.K.A. NETWORK THERMODYNAMICS BACKGROUND Classcal thermodynamcs descrbes equlbrum states. Non-equlbrum thermodynamcs descrbes steady states. Network thermodynamcs descrbes

More information

Some modelling aspects for the Matlab implementation of MMA

Some modelling aspects for the Matlab implementation of MMA Some modellng aspects for the Matlab mplementaton of MMA Krster Svanberg krlle@math.kth.se Optmzaton and Systems Theory Department of Mathematcs KTH, SE 10044 Stockholm September 2004 1. Consdered optmzaton

More information

Computation of Phase Equilibrium and Phase Envelopes

Computation of Phase Equilibrium and Phase Envelopes Downloaded from orbt.dtu.dk on: Sep 24, 2018 Computaton of Phase Equlbrum and Phase Envelopes Rtschel, Tobas Kasper Skovborg; Jørgensen, John Bagterp Publcaton date: 2017 Document Verson Publsher's PDF,

More information

Lectures - Week 4 Matrix norms, Conditioning, Vector Spaces, Linear Independence, Spanning sets and Basis, Null space and Range of a Matrix

Lectures - Week 4 Matrix norms, Conditioning, Vector Spaces, Linear Independence, Spanning sets and Basis, Null space and Range of a Matrix Lectures - Week 4 Matrx norms, Condtonng, Vector Spaces, Lnear Independence, Spannng sets and Bass, Null space and Range of a Matrx Matrx Norms Now we turn to assocatng a number to each matrx. We could

More information

CHAPTER 5 NUMERICAL EVALUATION OF DYNAMIC RESPONSE

CHAPTER 5 NUMERICAL EVALUATION OF DYNAMIC RESPONSE CHAPTER 5 NUMERICAL EVALUATION OF DYNAMIC RESPONSE Analytcal soluton s usually not possble when exctaton vares arbtrarly wth tme or f the system s nonlnear. Such problems can be solved by numercal tmesteppng

More information

Vapor-Liquid Equilibria for Water+Hydrochloric Acid+Magnesium Chloride and Water+Hydrochloric Acid+Calcium Chloride Systems at Atmospheric Pressure

Vapor-Liquid Equilibria for Water+Hydrochloric Acid+Magnesium Chloride and Water+Hydrochloric Acid+Calcium Chloride Systems at Atmospheric Pressure Chnese J. Chem. Eng., 4() 76 80 (006) RESEARCH OES Vapor-Lqud Equlbra for Water+Hydrochlorc Acd+Magnesum Chlorde and Water+Hydrochlorc Acd+Calcum Chlorde Systems at Atmospherc Pressure ZHAG Yng( 张颖 ) and

More information

Adiabatic Sorption of Ammonia-Water System and Depicting in p-t-x Diagram

Adiabatic Sorption of Ammonia-Water System and Depicting in p-t-x Diagram Adabatc Sorpton of Ammona-Water System and Depctng n p-t-x Dagram J. POSPISIL, Z. SKALA Faculty of Mechancal Engneerng Brno Unversty of Technology Techncka 2, Brno 61669 CZECH REPUBLIC Abstract: - Absorpton

More information

Chapter Newton s Method

Chapter Newton s Method Chapter 9. Newton s Method After readng ths chapter, you should be able to:. Understand how Newton s method s dfferent from the Golden Secton Search method. Understand how Newton s method works 3. Solve

More information

Non-Ideality Through Fugacity and Activity

Non-Ideality Through Fugacity and Activity Non-Idealty Through Fugacty and Actvty S. Patel Deartment of Chemstry and Bochemstry, Unversty of Delaware, Newark, Delaware 19716, USA Corresondng author. E-mal: saatel@udel.edu 1 I. FUGACITY In ths dscusson,

More information

Thermodynamics II. Department of Chemical Engineering. Prof. Kim, Jong Hak

Thermodynamics II. Department of Chemical Engineering. Prof. Kim, Jong Hak Thermodynamcs II Department of Chemcal Engneerng Prof. Km, Jong Hak Soluton Thermodynamcs : theory Obectve : lay the theoretcal foundaton for applcatons of thermodynamcs to gas mxture and lqud soluton

More information

A Modulated Hydrothermal (MHT) Approach for the Facile. Synthesis of UiO-66-Type MOFs

A Modulated Hydrothermal (MHT) Approach for the Facile. Synthesis of UiO-66-Type MOFs Supplementary Informaton A Modulated Hydrothermal (MHT) Approach for the Facle Synthess of UO-66-Type MOFs Zhgang Hu, Yongwu Peng, Zx Kang, Yuhong Qan, and Dan Zhao * Department of Chemcal and Bomolecular

More information

Ph.D. Qualifying Examination in Kinetics and Reactor Design

Ph.D. Qualifying Examination in Kinetics and Reactor Design Knetcs and Reactor Desgn Ph.D.Qualfyng Examnaton January 2006 Instructons Ph.D. Qualfyng Examnaton n Knetcs and Reactor Desgn January 2006 Unversty of Texas at Austn Department of Chemcal Engneerng 1.

More information

Chemical Equilibrium. Chapter 6 Spontaneity of Reactive Mixtures (gases) Taking into account there are many types of work that a sysem can perform

Chemical Equilibrium. Chapter 6 Spontaneity of Reactive Mixtures (gases) Taking into account there are many types of work that a sysem can perform Ths chapter deals wth chemcal reactons (system) wth lttle or no consderaton on the surroundngs. Chemcal Equlbrum Chapter 6 Spontanety of eactve Mxtures (gases) eactants generatng products would proceed

More information

I wish to publish my paper on The International Journal of Thermophysics. A Practical Method to Calculate Partial Properties from Equation of State

I wish to publish my paper on The International Journal of Thermophysics. A Practical Method to Calculate Partial Properties from Equation of State I wsh to publsh my paper on The Internatonal Journal of Thermophyscs. Ttle: A Practcal Method to Calculate Partal Propertes from Equaton of State Authors: Ryo Akasaka (correspondng author) 1 and Takehro

More information

CHEMICAL ENGINEERING

CHEMICAL ENGINEERING Postal Correspondence GATE & PSUs -MT To Buy Postal Correspondence Packages call at 0-9990657855 1 TABLE OF CONTENT S. No. Ttle Page no. 1. Introducton 3 2. Dffuson 10 3. Dryng and Humdfcaton 24 4. Absorpton

More information

DUE: WEDS FEB 21ST 2018

DUE: WEDS FEB 21ST 2018 HOMEWORK # 1: FINITE DIFFERENCES IN ONE DIMENSION DUE: WEDS FEB 21ST 2018 1. Theory Beam bendng s a classcal engneerng analyss. The tradtonal soluton technque makes smplfyng assumptons such as a constant

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

Module 3 LOSSY IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur

Module 3 LOSSY IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur Module 3 LOSSY IMAGE COMPRESSION SYSTEMS Verson ECE IIT, Kharagpur Lesson 6 Theory of Quantzaton Verson ECE IIT, Kharagpur Instructonal Objectves At the end of ths lesson, the students should be able to:

More information

G4023 Mid-Term Exam #1 Solutions

G4023 Mid-Term Exam #1 Solutions Exam1Solutons.nb 1 G03 Md-Term Exam #1 Solutons 1-Oct-0, 1:10 p.m to :5 p.m n 1 Pupn Ths exam s open-book, open-notes. You may also use prnt-outs of the homework solutons and a calculator. 1 (30 ponts,

More information

Gasometric Determination of NaHCO 3 in a Mixture

Gasometric Determination of NaHCO 3 in a Mixture 60 50 40 0 0 5 15 25 35 40 Temperature ( o C) 9/28/16 Gasometrc Determnaton of NaHCO 3 n a Mxture apor Pressure (mm Hg) apor Pressure of Water 1 NaHCO 3 (s) + H + (aq) Na + (aq) + H 2 O (l) + CO 2 (g)

More information

PHYS 705: Classical Mechanics. Calculus of Variations II

PHYS 705: Classical Mechanics. Calculus of Variations II 1 PHYS 705: Classcal Mechancs Calculus of Varatons II 2 Calculus of Varatons: Generalzaton (no constrant yet) Suppose now that F depends on several dependent varables : We need to fnd such that has a statonary

More information

Electrochemical Equilibrium Electromotive Force

Electrochemical Equilibrium Electromotive Force CHM465/865, 24-3, Lecture 5-7, 2 th Sep., 24 lectrochemcal qulbrum lectromotve Force Relaton between chemcal and electrc drvng forces lectrochemcal system at constant T and p: consder Gbbs free energy

More information

EEE 241: Linear Systems

EEE 241: Linear Systems EEE : Lnear Systems Summary #: Backpropagaton BACKPROPAGATION The perceptron rule as well as the Wdrow Hoff learnng were desgned to tran sngle layer networks. They suffer from the same dsadvantage: they

More information

The ChemSep Book. Harry A. Kooijman Consultant. Ross Taylor Clarkson University, Potsdam, New York University of Twente, Enschede, The Netherlands

The ChemSep Book. Harry A. Kooijman Consultant. Ross Taylor Clarkson University, Potsdam, New York University of Twente, Enschede, The Netherlands The ChemSep Book Harry A. Koojman Consultant Ross Taylor Clarkson Unversty, Potsdam, New York Unversty of Twente, Enschede, The Netherlands Lbr Books on Demand www.bod.de Copyrght c 2000 by H.A. Koojman

More information

NAME and Section No. it is found that 0.6 mol of O

NAME and Section No. it is found that 0.6 mol of O NAME and Secton No. Chemstry 391 Fall 7 Exam III KEY 1. (3 Ponts) ***Do 5 out of 6***(If 6 are done only the frst 5 wll be graded)*** a). In the reacton 3O O3 t s found that.6 mol of O are consumed. Fnd

More information

McCabe-Thiele Diagrams for Binary Distillation

McCabe-Thiele Diagrams for Binary Distillation McCabe-Thele Dagrams for Bnary Dstllaton Tore Haug-Warberg Dept. of Chemcal Engneerng August 31st, 2005 F V 1 V 2 L 1 V n L n 1 V n+1 L n V N L N 1 L N L 0 VN+1 Q < 0 D Q > 0 B FIGURE 1: Smplfed pcture

More information

CSci 6974 and ECSE 6966 Math. Tech. for Vision, Graphics and Robotics Lecture 21, April 17, 2006 Estimating A Plane Homography

CSci 6974 and ECSE 6966 Math. Tech. for Vision, Graphics and Robotics Lecture 21, April 17, 2006 Estimating A Plane Homography CSc 6974 and ECSE 6966 Math. Tech. for Vson, Graphcs and Robotcs Lecture 21, Aprl 17, 2006 Estmatng A Plane Homography Overvew We contnue wth a dscusson of the major ssues, usng estmaton of plane projectve

More information

Curve Fitting with the Least Square Method

Curve Fitting with the Least Square Method WIKI Document Number 5 Interpolaton wth Least Squares Curve Fttng wth the Least Square Method Mattheu Bultelle Department of Bo-Engneerng Imperal College, London Context We wsh to model the postve feedback

More information

Difference Equations

Difference Equations Dfference Equatons c Jan Vrbk 1 Bascs Suppose a sequence of numbers, say a 0,a 1,a,a 3,... s defned by a certan general relatonshp between, say, three consecutve values of the sequence, e.g. a + +3a +1

More information

Name ID # For relatively dilute aqueous solutions the molality and molarity are approximately equal.

Name ID # For relatively dilute aqueous solutions the molality and molarity are approximately equal. Name ID # 1 CHEMISTRY 212, Lect. Sect. 002 Dr. G. L. Roberts Exam #1/Sprng 2000 Thursday, February 24, 2000 CLOSED BOOK EXM No notes or books allowed. Calculators may be used. tomc masses of nterest are

More information

Lecture 7: Boltzmann distribution & Thermodynamics of mixing

Lecture 7: Boltzmann distribution & Thermodynamics of mixing Prof. Tbbtt Lecture 7 etworks & Gels Lecture 7: Boltzmann dstrbuton & Thermodynamcs of mxng 1 Suggested readng Prof. Mark W. Tbbtt ETH Zürch 13 März 018 Molecular Drvng Forces Dll and Bromberg: Chapters

More information

Generalized Linear Methods

Generalized Linear Methods Generalzed Lnear Methods 1 Introducton In the Ensemble Methods the general dea s that usng a combnaton of several weak learner one could make a better learner. More formally, assume that we have a set

More information

modeling of equilibrium and dynamic multi-component adsorption in a two-layered fixed bed for purification of hydrogen from methane reforming products

modeling of equilibrium and dynamic multi-component adsorption in a two-layered fixed bed for purification of hydrogen from methane reforming products modelng of equlbrum and dynamc mult-component adsorpton n a two-layered fxed bed for purfcaton of hydrogen from methane reformng products Mohammad A. Ebrahm, Mahmood R. G. Arsalan, Shohreh Fatem * Laboratory

More information

PETE 310 Lectures # 24 & 25 Chapter 12 Gas Liquid Equilibrium

PETE 310 Lectures # 24 & 25 Chapter 12 Gas Liquid Equilibrium ETE 30 Lectures # 24 & 25 Chapter 2 Gas Lqud Equlbrum Thermal Equlbrum Object A hgh T, Object B low T Intal contact tme Intermedate tme. Later tme Mechancal Equlbrum ressure essels Vale Closed Vale Open

More information

MMA and GCMMA two methods for nonlinear optimization

MMA and GCMMA two methods for nonlinear optimization MMA and GCMMA two methods for nonlnear optmzaton Krster Svanberg Optmzaton and Systems Theory, KTH, Stockholm, Sweden. krlle@math.kth.se Ths note descrbes the algorthms used n the author s 2007 mplementatons

More information

Thermodynamics General

Thermodynamics General Thermodynamcs General Lecture 1 Lecture 1 s devoted to establshng buldng blocks for dscussng thermodynamcs. In addton, the equaton of state wll be establshed. I. Buldng blocks for thermodynamcs A. Dmensons,

More information

COMPLEX NUMBERS AND QUADRATIC EQUATIONS

COMPLEX NUMBERS AND QUADRATIC EQUATIONS COMPLEX NUMBERS AND QUADRATIC EQUATIONS INTRODUCTION We know that x 0 for all x R e the square of a real number (whether postve, negatve or ero) s non-negatve Hence the equatons x, x, x + 7 0 etc are not

More information

Analytical Chemistry Calibration Curve Handout

Analytical Chemistry Calibration Curve Handout I. Quck-and Drty Excel Tutoral Analytcal Chemstry Calbraton Curve Handout For those of you wth lttle experence wth Excel, I ve provded some key technques that should help you use the program both for problem

More information

UNIFAC. Documentation. DDBSP Dortmund Data Bank Software Package

UNIFAC. Documentation. DDBSP Dortmund Data Bank Software Package UNIFAC Documentaton DDBSP Dortmund Data Ban Software Pacage DDBST Dortmund Data Ban Software & Separaton Technology GmbH Mare-Cure-Straße 10 D-26129 Oldenburg Tel.: +49 441 361819 0 Fax: +49 441 361819

More information

princeton univ. F 17 cos 521: Advanced Algorithm Design Lecture 7: LP Duality Lecturer: Matt Weinberg

princeton univ. F 17 cos 521: Advanced Algorithm Design Lecture 7: LP Duality Lecturer: Matt Weinberg prnceton unv. F 17 cos 521: Advanced Algorthm Desgn Lecture 7: LP Dualty Lecturer: Matt Wenberg Scrbe: LP Dualty s an extremely useful tool for analyzng structural propertes of lnear programs. Whle there

More information

Chemical Engineering Department University of Washington

Chemical Engineering Department University of Washington Chemcal Engneerng Department Unversty of Washngton ChemE 60 - Exam I July 4, 003 - Mass Flow Rate of Steam Through a Turbne (5 onts) Steam enters a turbne at 70 o C and.8 Ma and leaves at 00 ka wth a qualty

More information

Estimation of the composition of the liquid and vapor streams exiting a flash unit with a supercritical component

Estimation of the composition of the liquid and vapor streams exiting a flash unit with a supercritical component Department of Energ oltecnco d Mlano Va Lambruschn - 05 MILANO Eercses of Fundamentals of Chemcal rocesses rof. Ganpero Gropp Eercse 8 Estmaton of the composton of the lqud and vapor streams etng a unt

More information

Review of Taylor Series. Read Section 1.2

Review of Taylor Series. Read Section 1.2 Revew of Taylor Seres Read Secton 1.2 1 Power Seres A power seres about c s an nfnte seres of the form k = 0 k a ( x c) = a + a ( x c) + a ( x c) + a ( x c) k 2 3 0 1 2 3 + In many cases, c = 0, and the

More information

Newton s Method for One - Dimensional Optimization - Theory

Newton s Method for One - Dimensional Optimization - Theory Numercal Methods Newton s Method for One - Dmensonal Optmzaton - Theory For more detals on ths topc Go to Clck on Keyword Clck on Newton s Method for One- Dmensonal Optmzaton You are free to Share to copy,

More information

Lecture Notes on Linear Regression

Lecture Notes on Linear Regression Lecture Notes on Lnear Regresson Feng L fl@sdueducn Shandong Unversty, Chna Lnear Regresson Problem In regresson problem, we am at predct a contnuous target value gven an nput feature vector We assume

More information

Common loop optimizations. Example to improve locality. Why Dependence Analysis. Data Dependence in Loops. Goal is to find best schedule:

Common loop optimizations. Example to improve locality. Why Dependence Analysis. Data Dependence in Loops. Goal is to find best schedule: 15-745 Lecture 6 Data Dependence n Loops Copyrght Seth Goldsten, 2008 Based on sldes from Allen&Kennedy Lecture 6 15-745 2005-8 1 Common loop optmzatons Hostng of loop-nvarant computatons pre-compute before

More information

is the calculated value of the dependent variable at point i. The best parameters have values that minimize the squares of the errors

is the calculated value of the dependent variable at point i. The best parameters have values that minimize the squares of the errors Multple Lnear and Polynomal Regresson wth Statstcal Analyss Gven a set of data of measured (or observed) values of a dependent varable: y versus n ndependent varables x 1, x, x n, multple lnear regresson

More information

Non-Commercial Use Only

Non-Commercial Use Only Plottng P-x-y dagram for bnary system Acetone/water at temperatures 25,100,and 200 C usng UNIFAC method and comparng t wth expermental results. Unfac Method: The UNIFAC method s based on the UNIQUAC equaton,

More information

Appendix B. The Finite Difference Scheme

Appendix B. The Finite Difference Scheme 140 APPENDIXES Appendx B. The Fnte Dfference Scheme In ths appendx we present numercal technques whch are used to approxmate solutons of system 3.1 3.3. A comprehensve treatment of theoretcal and mplementaton

More information

Chapter 5. Solution of System of Linear Equations. Module No. 6. Solution of Inconsistent and Ill Conditioned Systems

Chapter 5. Solution of System of Linear Equations. Module No. 6. Solution of Inconsistent and Ill Conditioned Systems Numercal Analyss by Dr. Anta Pal Assstant Professor Department of Mathematcs Natonal Insttute of Technology Durgapur Durgapur-713209 emal: anta.bue@gmal.com 1 . Chapter 5 Soluton of System of Lnear Equatons

More information

A Self-Consistent Gibbs Excess Mixing Rule for Cubic Equations of State: derivation and fugacity coefficients

A Self-Consistent Gibbs Excess Mixing Rule for Cubic Equations of State: derivation and fugacity coefficients A Self-Consstent Gbbs Excess Mxng Rule for Cubc Equatons of State: dervaton and fugacty coeffcents Paula B. Staudt, Rafael de P. Soares Departamento de Engenhara Químca, Escola de Engenhara, Unversdade

More information

Module 3: The Whole-Process Perspective for Thermochemical Hydrogen

Module 3: The Whole-Process Perspective for Thermochemical Hydrogen "Thermodynamc Analyss of Processes for Hydrogen Generaton by Decomposton of Water" by John P. O'Connell Department of Chemcal Engneerng Unversty of Vrgna Charlottesvlle, VA 2294-4741 A Set of Energy Educaton

More information

1) Silicon oxide has a typical surface potential in an aqueous medium of ϕ,0

1) Silicon oxide has a typical surface potential in an aqueous medium of ϕ,0 1) Slcon oxde has a typcal surface potental n an aqueous medum of ϕ, = 7 mv n 5 mm l at ph 9. Whch concentraton of catons do you roughly expect close to the surface? What s the average dstance between

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY 6.265/15.070J Fall 2013 Lecture 12 10/21/2013. Martingale Concentration Inequalities and Applications

MASSACHUSETTS INSTITUTE OF TECHNOLOGY 6.265/15.070J Fall 2013 Lecture 12 10/21/2013. Martingale Concentration Inequalities and Applications MASSACHUSETTS INSTITUTE OF TECHNOLOGY 6.65/15.070J Fall 013 Lecture 1 10/1/013 Martngale Concentraton Inequaltes and Applcatons Content. 1. Exponental concentraton for martngales wth bounded ncrements.

More information

10.34 Fall 2015 Metropolis Monte Carlo Algorithm

10.34 Fall 2015 Metropolis Monte Carlo Algorithm 10.34 Fall 2015 Metropols Monte Carlo Algorthm The Metropols Monte Carlo method s very useful for calculatng manydmensonal ntegraton. For e.g. n statstcal mechancs n order to calculate the prospertes of

More information

The equation of motion of a dynamical system is given by a set of differential equations. That is (1)

The equation of motion of a dynamical system is given by a set of differential equations. That is (1) Dynamcal Systems Many engneerng and natural systems are dynamcal systems. For example a pendulum s a dynamcal system. State l The state of the dynamcal system specfes t condtons. For a pendulum n the absence

More information

Solution Thermodynamics

Solution Thermodynamics CH2351 Chemcal Engneerng Thermodynamcs II Unt I, II www.msubbu.n Soluton Thermodynamcs www.msubbu.n Dr. M. Subramanan Assocate Professor Department of Chemcal Engneerng Sr Svasubramanya Nadar College of

More information

Influence Of Operating Conditions To The Effectiveness Of Extractive Distillation Columns

Influence Of Operating Conditions To The Effectiveness Of Extractive Distillation Columns Influence Of Operatng Condtons To The Effectveness Of Extractve Dstllaton Columns N.A. Vyazmna Moscov State Unversty Of Envrnmental Engneerng, Department Of Chemcal Engneerng Ul. Staraya Basmannaya 21/4,

More information

CHAPTER III Neural Networks as Associative Memory

CHAPTER III Neural Networks as Associative Memory CHAPTER III Neural Networs as Assocatve Memory Introducton One of the prmary functons of the bran s assocatve memory. We assocate the faces wth names, letters wth sounds, or we can recognze the people

More information

2E Pattern Recognition Solutions to Introduction to Pattern Recognition, Chapter 2: Bayesian pattern classification

2E Pattern Recognition Solutions to Introduction to Pattern Recognition, Chapter 2: Bayesian pattern classification E395 - Pattern Recognton Solutons to Introducton to Pattern Recognton, Chapter : Bayesan pattern classfcaton Preface Ths document s a soluton manual for selected exercses from Introducton to Pattern Recognton

More information

LECTURE 9 CANONICAL CORRELATION ANALYSIS

LECTURE 9 CANONICAL CORRELATION ANALYSIS LECURE 9 CANONICAL CORRELAION ANALYSIS Introducton he concept of canoncal correlaton arses when we want to quantfy the assocatons between two sets of varables. For example, suppose that the frst set of

More information

CHARACTERISTICS OF COMPLEX SEPARATION SCHEMES AND AN ERROR OF SEPARATION PRODUCTS OUTPUT DETERMINATION

CHARACTERISTICS OF COMPLEX SEPARATION SCHEMES AND AN ERROR OF SEPARATION PRODUCTS OUTPUT DETERMINATION Górnctwo Geonżynera Rok 0 Zeszyt / 006 Igor Konstantnovch Mladetskj * Petr Ivanovch Plov * Ekaterna Nkolaevna Kobets * Tasya Igorevna Markova * CHARACTERISTICS OF COMPLEX SEPARATION SCHEMES AND AN ERROR

More information

Adsorption: A gas or gases from a mixture of gases or a liquid (or liquids) from a mixture of liquids is bound physically to the surface of a solid.

Adsorption: A gas or gases from a mixture of gases or a liquid (or liquids) from a mixture of liquids is bound physically to the surface of a solid. Searatons n Chemcal Engneerng Searatons (gas from a mxture of gases, lquds from a mxture of lquds, solds from a soluton of solds n lquds, dssolved gases from lquds, solvents from gases artally/comletely

More information

Section 8.3 Polar Form of Complex Numbers

Section 8.3 Polar Form of Complex Numbers 80 Chapter 8 Secton 8 Polar Form of Complex Numbers From prevous classes, you may have encountered magnary numbers the square roots of negatve numbers and, more generally, complex numbers whch are the

More information

6.854J / J Advanced Algorithms Fall 2008

6.854J / J Advanced Algorithms Fall 2008 MIT OpenCourseWare http://ocw.mt.edu 6.854J / 18.415J Advanced Algorthms Fall 2008 For nformaton about ctng these materals or our Terms of Use, vst: http://ocw.mt.edu/terms. 18.415/6.854 Advanced Algorthms

More information

Amiri s Supply Chain Model. System Engineering b Department of Mathematics and Statistics c Odette School of Business

Amiri s Supply Chain Model. System Engineering b Department of Mathematics and Statistics c Odette School of Business Amr s Supply Chan Model by S. Ashtab a,, R.J. Caron b E. Selvarajah c a Department of Industral Manufacturng System Engneerng b Department of Mathematcs Statstcs c Odette School of Busness Unversty of

More information

Inductance Calculation for Conductors of Arbitrary Shape

Inductance Calculation for Conductors of Arbitrary Shape CRYO/02/028 Aprl 5, 2002 Inductance Calculaton for Conductors of Arbtrary Shape L. Bottura Dstrbuton: Internal Summary In ths note we descrbe a method for the numercal calculaton of nductances among conductors

More information

APPROXIMATE PRICES OF BASKET AND ASIAN OPTIONS DUPONT OLIVIER. Premia 14

APPROXIMATE PRICES OF BASKET AND ASIAN OPTIONS DUPONT OLIVIER. Premia 14 APPROXIMAE PRICES OF BASKE AND ASIAN OPIONS DUPON OLIVIER Prema 14 Contents Introducton 1 1. Framewor 1 1.1. Baset optons 1.. Asan optons. Computng the prce 3. Lower bound 3.1. Closed formula for the prce

More information

2 Finite difference basics

2 Finite difference basics Numersche Methoden 1, WS 11/12 B.J.P. Kaus 2 Fnte dfference bascs Consder the one- The bascs of the fnte dfference method are best understood wth an example. dmensonal transent heat conducton equaton T

More information

The Second Anti-Mathima on Game Theory

The Second Anti-Mathima on Game Theory The Second Ant-Mathma on Game Theory Ath. Kehagas December 1 2006 1 Introducton In ths note we wll examne the noton of game equlbrum for three types of games 1. 2-player 2-acton zero-sum games 2. 2-player

More information

A New Thermodynamic Function for Phase-Splitting at Constant Temperature, Moles, and Volume

A New Thermodynamic Function for Phase-Splitting at Constant Temperature, Moles, and Volume A New Thermodynamc Functon for Phase-Splttng at Constant Temperature, Moles, and olume Jří Mkyška Dept. of Mathematcs, Faculty of Nuclear Scences and Physcal Engneerng, Czech Techncal Unversty n Prague,

More information

THE VIBRATIONS OF MOLECULES II THE CARBON DIOXIDE MOLECULE Student Instructions

THE VIBRATIONS OF MOLECULES II THE CARBON DIOXIDE MOLECULE Student Instructions THE VIBRATIONS OF MOLECULES II THE CARBON DIOXIDE MOLECULE Student Instructons by George Hardgrove Chemstry Department St. Olaf College Northfeld, MN 55057 hardgrov@lars.acc.stolaf.edu Copyrght George

More information

8.592J: Solutions for Assignment 7 Spring 2005

8.592J: Solutions for Assignment 7 Spring 2005 8.59J: Solutons for Assgnment 7 Sprng 5 Problem 1 (a) A flament of length l can be created by addton of a monomer to one of length l 1 (at rate a) or removal of a monomer from a flament of length l + 1

More information

Lecture. Polymer Thermodynamics 0331 L Chemical Potential

Lecture. Polymer Thermodynamics 0331 L Chemical Potential Prof. Dr. rer. nat. habl. S. Enders Faculty III for Process Scence Insttute of Chemcal Engneerng Department of Thermodynamcs Lecture Polymer Thermodynamcs 033 L 337 3. Chemcal Potental Polymer Thermodynamcs

More information

Lecture 8. Chapter 7. - Thermodynamic Web - Departure Functions - Review Equations of state (chapter 4, briefly)

Lecture 8. Chapter 7. - Thermodynamic Web - Departure Functions - Review Equations of state (chapter 4, briefly) Lecture 8 Chapter 5 - Thermodynamc Web - Departure Functons - Revew Equatons of state (chapter 4, brefly) Chapter 6 - Equlbrum (chemcal potental) * Pure Component * Mxtures Chapter 7 - Fugacty (chemcal

More information

Appendix II Summary of Important Equations

Appendix II Summary of Important Equations W. M. Whte Geochemstry Equatons of State: Ideal GasLaw: Coeffcent of Thermal Expanson: Compressblty: Van der Waals Equaton: The Laws of Thermdynamcs: Frst Law: Appendx II Summary of Important Equatons

More information