160 likes | 386 Views
Modeling Basics: 4. Numerical ODE Solving In Excel 5. Solving ODEs in Mathematica By Peter Woolf University of Michigan Michigan Chemical Process Dynamics and Controls Open Textbook version 1.0. Creative commons. 12.1x10 10 m 3. 3.6x10 10 m 3. 29.1x10 10 m 3.
E N D
Modeling Basics: 4. Numerical ODE Solving In Excel 5. Solving ODEs in Mathematica By Peter WoolfUniversity of MichiganMichigan Chemical Process Dynamics and Controls Open Textbookversion 1.0 Creative commons
12.1x1010 m3 3.6x1010 m3 29.1x1010 m3 Data from http://www.newton.dep.anl.gov/askasci/gen01/gen01629.htm Case study: water storage Water is vitally important for industry, agriculture, domestic consumption.
12.1x1010 m3 3.6x1010 m3 29.1x1010 m3 Data from http://www.newton.dep.anl.gov/askasci/gen01/gen01629.htm
Key Question: Have you stored enough water? 12.1x1010 m3 3.6x1010 m3 29.1x1010 m3 Data from http://www.newton.dep.anl.gov/askasci/gen01/gen01629.htm
P&ID Water storage Water tower Mathematical Description: Change=input-output
Numerical solution Analytical solution How to solve this set of equations? • Integrate with software such as Excel or Mathematica (or many others) • Integration can be tricky • Need to know all parameters • Can be computationally demanding • Hand calculation • Software calculation using Mathematica for example • Often not possible for “real” systems • Even if possible, sometimes not useful
Mathematica Syntax DSolve[ {eqn1, eqn2..},{y1,y2,..},t] Analytical solver NDSolve[{eqn1, eqn2..},{y1,y2,..},t] Numerical solver Plot[{f1,f2},{t,0,tmax}] Plotter See lecture7.mathematica.nb
What if your feed varies in a non-functional way? Numerical integration!
Numerical approx Slope: F-k1v1(10) Numerical ODE solving True solution Tank depth (h) Euler’s method! 10 0 0.1 time Time step=0.1
Slope: F-k1v1(10) • Notes on Euler’s method: • Perfect fit for linear systems • Works well for nonlinear systems if the time step is small (everything is locally linear) • If time step is too large can explode • Small time steps mean slow calculations Numerical ODE solving Tank depth (h) 10 0 0.1 time Time step=0.1
6.0x103023 Numerical error! Time step=0.01 • Notes on Euler’s method: • Perfect fit for linear systems • Works well for nonlinear systems if the time step is small (everything is locally linear) • If time step is too large can explode • Small time steps mean slow calculations Numerical ODE solving Tank depth (h) 10 0 0.1 time Time step=0.1
Solution: take some sort of weighted average of slopes at intermediate points to estimate the next value. Is there a way we could use a larger time step but retain accuracy? Numerical ODE solving Runge-Kutta methods! Tank depth (h) 10 0 0.1 time Time step=0.1
Euler’s method Numerical ODE solving 4th order Runge-Kutta Where Tank depth (h) 10 0 0.1 time Time step=0.1
Numerical ODE solving Why stop at 4th order? 5th order is similar but with different weightings Upsides: Larger step sizes possible Can be more stable Often more computationally efficient Downsides: Complex to implement Similar accuracy can often be achieved using Euler’s method which is easy to implement Tank depth (h) 10 0 0.1 time Time step=0.1
Key Question: Have you stored enough water? See lecture7.excel.xls 12.1x1010 m3 3.6x1010 m3 29.1x1010 m3 Data from http://www.newton.dep.anl.gov/askasci/gen01/gen01629.htm
Take home messages • Numerical simulation of differential equations can help you model very complex systems • Sometimes slower, simpler method are better as your time is often more valuable than a computers • Analytical results can be helpful in restricted cases.. Use Mathematica to handle the algebra