Matlab Model.

Slides:



Advertisements
Similar presentations
Continuous Stirred Tank Reactor
Advertisements

Carry Lookahead Homework
MPI version of the Serial Code With One-Dimensional Decomposition Presented by Timothy H. Kaiser, Ph.D. San Diego Supercomputer Center Presented by Timothy.
Using C1V1=C2V2.
Trial [IO 3 - ] 0 mmol/L [I - ] 0 mmol/L [H + ] 0 mmol/L Rate I 2 production mmol/L/s x x x
COOKING CHICKEN Andrew Davidson April 4, 2014 ME 340 – Heat Transfer Winter 2014.
Lecture 13: Introduction to Environmental Engineering
Soc 3306a Lecture 6: Introduction to Multivariate Relationships Control with Bivariate Tables Simple Control in Regression.
1-1 Heaven Holds All To Me Heaven Holds All To Me.
P247. Figure 9-1 p248 Figure 9-2 p251 p251 Figure 9-3 p253.
Theory of Production A2 Economics.
4.2 The Structure of an Atom. Atom is the smallest particle of an element. Atoms cannot be divided into anything smaller.
HEAT TRANSFER IN LIGHTSABERS An ME 340 Project by Clayton Grames.
Chapter 7: Work and Energy (Ewen et al. 2005) Objectives: Related kinetic and potential energy to the law of conservation of mechanical energy. Related.
Selected Differential System Examples from Lectures.
Selected Differential System Examples from Lectures
Human Vision Robot (Light Sensor) Vision White/Light: 100 Black/Dark: 0 Colors:
 5 th Place  Delta Gamma / Alpha Epsilon Pi  Alpha Phi / Sigma Pi / Tau Kappa Epsilon.
AAE 450 Spring 2008 Jesii Doyle 1/31/2008 Internal Structure, Mounting Materials Bulkhead Weight and Cost.
Pre Lab Definitions: (Fill these in on your lab paper) Serial: In a series, order or interval. Measured steps. Dilution: Water Down. Pipette: “Little pipe”
GEOMETRIC MEAN Take the log value of each sample (log button on the calculator) Add the log value of each sample together Divide by the number of samples.
Beginning Programming for Engineers
Homework 2 計財 張儷瀞. 1. Black-Scholes Model (Code) S0=30:1:70; X=50; r=0.08; sigma=0.4; for T=2:-0.25:0 [c, p]=blsprice(S0, X, r, T, sigma)
Population Economics Fall 2012 Economic Growth and the Long Run Rate of Return on Equities.
M M M M 5. Not Listed

Scatter Graphs Aim: To draw scatter graphs and a line of best fit. We shall look at plotting pairs of point on a graph and discovering if there is a relationship.
CS 121 – Quiz Feb 1 st. Question 3 Script Outlines #it is always beneficial to write “restart” at the beginning of your script to clear all variables.
Tension Problems.
Figure 3. The culture medium containing the plant extract composition of the present invention can effectively promote the proliferation of mesenchymal.
Solving Systems by Using Matrices
Supplementary Figure 1 Shiota et al.
Dell Customer Support Service REACH AT Dell Support : Give a Ring on:
To Do… OWL: due Wednesday (2/21) and Friday (2/23).
P1 Topic 2: The Electromagnetic Spectrum
VIII. ARBITRAGE AND HEDGING WITH OPTIONS
Atomic Theory Unit Half-Life.
Effective bending moment method
VIII. ARBITRAGE AND HEDGING WITH OPTIONS
Multiplying Matrices.
Abundance of proteins matching selected subcellular locations and functions in CaCo‐2 cells. Abundance of proteins matching selected subcellular locations.
F1-ATPase: A Rotary Motor Made of a Single Molecule
Simulation of Global Warming in the Continental United States Using Agent-Based Modeling By Marika Lohmus.
محاسبات عددی و برنامه نویسی
Diffusing Wave Spectroscopy Microrheology of Actin Filament Networks
P1 Topic 2: The Electromagnetic Spectrum
مديريت موثر جلسات Running a Meeting that Works
Autar Kaw Humberto Isaza
Chapter Fifteen: Production Costs.
VIII. ARBITRAGE AND HEDGING WITH OPTIONS
Python 19 Mr. Husch.
Subtracting Real Numbers
Multiplying Matrices.
Problem Set #3 – Part 3 - Remediation
Unit 3 Review (Calculator)
Ch 10: Basic Logic of Factorial Designs & Interaction Effects
Supplementary Figure 2 Shiota et al.
Autar Kaw Humberto Isaza
Figure S4 control-siRNA Day 0 fes A-siRNA Day 3 fer 1-siRNA
HOMA calculations where glucose is mmol/L and insulin is mU/L
P1 Topic 2: The Electromagnetic Spectrum
Instructions: To prepare to learn about nuclear physics, you must first understand what radioactivity is. Read sections , and in the Conceptual.
Alpha Mu Gamma Past National Conventions
Python 19 Mr. Husch.
Calculate 9 x 81 = x 3 3 x 3 x 3 x 3 3 x 3 x 3 x 3 x 3 x 3 x =
Multiplying Matrices.
Multiplying Matrices.
Effect of FGF8 on R-C marker expression.
Multiplying Matrices.
No. of runs Xo X1 X2 X3 X4 Y1 Y2 Y3 Y4 Y5 Si2
Presentation transcript:

Matlab Model

Assumptions Use the photosynthetic factory model. Assume light intensity is constant, not a function of anything. All cells are initially in the inactive state. For the 1st runs, assume Me=0 For the 2nd run, set Me=0.05908h-1 All the constants are from Merchuk et. al. 1996, 2000,2004) The algae strain they used was Porphyridum sp.

Matlab Code function algae2() tspan=[0 10000]; xzero=[1 0 8000 0]; [t,x]=ode45(@dalgaedt,tspan, xzero); x(:,4)=1-x(:,1)-x(:,2); figure (1) plot(t, x(:,3)) hold figure (2) plot(t,x(:,1), t,x(:,2), t, x(:,4)) end function dxdt=dalgaedt(t,x) alpha=0.001935; beta=5.7848e-7; gamma=0.1460; delta=0.0004796; k=3.6467e-4; Io=250; Me= 0; dxdt=zeros(size(x)); dxdt(1)=(-alpha*Io*x(1))+(gamma*x(2))+(delta*(1-x(1)-x(2))); dxdt(2)=(alpha*Io*x(1))-(gamma*x(2))-(beta*Io*x(2)); dxdt(3)=(k*gamma*x(2)*x(3))-(Me*x(3));

For Me=0, xo=106 cell/ ml ,x1=1, t=10000s,

For Me=1.6411e-5, xo=106 cell/ ml ,x1=1, t=10000s,

What’s Next Add the light intensity as a function of cell concentration. Include the dimensions of the system in the calculations.