• No results found

Mathematical Modeling and Engineering Problem Solving

N/A
N/A
Protected

Academic year: 2021

Share "Mathematical Modeling and Engineering Problem Solving"

Copied!
21
0
0

Loading.... (view fulltext now)

Full text

(1)

Mathematical Modeling and Engineering Problem Solving

Berlin Chen

Department of Computer Science & Information Engineering National Taiwan Normal University

Reference:

1. Applied Numerical Methods with MATLAB for Engineers, Chapter 1 & Teaching material

(2)

Chapter Objectives

• Provide a concrete idea of what numerical methods are and how they relate to engineering and scientific problem solving

– Learning how mathematical models can be formulated on the basis of scientific principles to simulate the behavior of a simple physical system

– Understanding how numerical methods afford a means to

generalize solutions in a manner that can be implemented on a digital computer

– Understanding the different types of conservation laws that lie beneath the models used in the various engineering disciplines and appreciating the difference between steady-state and

dynamic solutions of these models

– Learning about the different types of numerical methods we will

cover in this book

(3)

A Simple Mathematical Model (1/2)

• A mathematical model can be broadly defined as a formulation or equation that expresses the essential

features of a physical system or process in mathematical terms

• Models can be represented by a functional relationship between dependent variables, independent variables, parameters, and forcing functions

Dependent

variable  f independent

variables , parameters, forcing functions



  

 

(4)

A Simple Mathematical Model (2/2)

• Dependent variable - a characteristic that usually reflects the behavior or state of the system

Independent variables - dimensions, such as time and space, along which the system’s behavior is being

determined

• Parameters - constants reflective of the system’s properties or composition

Forcing functions - external influences acting upon the

system

(5)

Modeling: Newton’s Second Law of Motion

• Statement: The time rate of change of momentum of a body is equal to the resultant force acting on it

– No independent variable is involved

– E.g., it can be used to determine the terminal velocity of a free- falling body near the earth’s surface

m a F

ma F

dependent variable (acceleration )

Parameter (mass of object)

forcing function

(net force acting on the object)

(6)

More on Newton’s Second Law of Motion

• It describes a natural process or system in mathematical terms

• It represents an idealization and simplification of reality

– Ignore negligible details of the natural process and focus on its essential manifestations

– Exclude the effects of “relativity” that are of minimal importance when applied to object and forces that interact on or about the earth’s surface at velocities and on scales visible to humans

• It yields reproducible results and can be used for predictive purposes

– Have generalization capabilities

(7)

Bungee-Jumping (1/2)

• For a body falling within the vicinity of the earth, the net force is composed of two opposing forces

– The downward pull of gravity

• The force due to gravity can be formulated as

– is the acceleration due to gravity – The upward force of air resistance

• A good approximation is to formulate it as

– is the velocity; is the lumped drag

coefficient, accounting for the properties of the falling object like shape or surface roughness

» The greater the fall velocity, the greater the upward force due to air resistance

F

D

v

2

c F

U

 

d

U

D F

F

F  

mg F

D

g ( 9 . 81 m s

2

)

F

U

c

d

v

(8)

Bungee-Jumping (2/2)

• The net force therefore is the difference between downward and upward force. We can a differential equation regarding the velocity of the object

• The exact solution of can not be obtained using simple algebraic manipulation but rather using more advanced calculus techniques (when )

v 2

m g c

dt

dv   d

v

v t   gm

c

d

tanh gc

d

m t



  

 

  t 0 , t 0

v

 

xx xx

e e

e

x e

  tanh

 

function.

forcing the

is and

, parameters are

and

variable, dependent

is

, t variable independen

is Here

g m c

t v

t

d

(an analytical or closed‐form solution that  can  exactly satisfy the original differential equation) 

(9)

Example 1.1 (1/2)

• A bungee jumper with a mass of 68.1 kg leaps from a

stationary hot air balloon (the drag coefficient is 0.25 kg/m)

– Compute the velocity for the first 12 s of free fall

– Determine the terminal velocity that will attained for an infinite long cord  

       

    50 . 6938

6715 .

50 12

18977 .

0 tanh 6938

. 1 51

. 68

25 . 0 8 . tanh 9

25 . 0

1 . 68 8 . 9

tanh

 

 

 

 

 

 

v v

t t

t v

m t gc c

t gm

v

d

d

d d

c v gm

v c mg

2

(10)

Example 1.1 (2/2)

• Using a computer (or a calculator), the model can be used to generate a graphical representation of the system

d d

c v gm

v c mg

2

(11)

An example of Numerical Modeling (1/3)

• Numerical methods are those in which the mathematical problem is reformulated so it can be solved by arithmetic operations

– E.g., the time rate of change of velocity mentioned earlier:

dv

dtv

tv t  

i1

 v t  

i

t

i1

 t

i

t v dt

dv

t

 

lim

0

that Notice

(a finite‐difference approximation of  the derivate at time ti

(12)

An example of Numerical Modeling (2/3)

• Substituting the finite difference into the differential equation gives

• Solve for

• This approach is formally called Euler’s method

= g c d v(t i ) 2 m

v(t i+1 )  v(t i ) t i+1t i

v(t i+1 ) = v(t i ) + g c d v(t i ) 2

m (t i+1t i ) dv

dt = g  c d

m v 2

new = old + slope  step

(13)

An example of Numerical Modeling (3/3)

• Applying Euler's method in 2 s intervals yields:

• How do we improve the solution?

– Smaller steps

(14)

Conservation laws (1/3)

• Conservation laws provide the foundation for many model functions

– They boil down

– Can be used to predict changes with respect to time by given it a special name “the time-variable (or transient)” computation

– If no change occurs, the increases and decreases must be in balance

• It is given a special name, the “steady-state” calculation

decreases increases

Change  

decreases increases

0

Change   

(15)

Conservation laws (2/3)

• Example: Fluid Flow

– For steady-state incompressible fluid flow in pipes

• The flow out of the fourth pipe must be 60

out Flow in

Flow 

(16)

Conservation laws (2/2)

• Different fields of engineering and science apply these laws to different paradigms within the field

• Among these laws are

– Conservation of mass

– Conservation of momentum – Conservation of charge

– Conservation of energy

(17)

Summary of Numerical Methods (1/5)

• The book is divided into five categories of numerical methods

– Root Finding: Search for the zero of a function

– Optimization: Determine a value or values of an independent

variable that correspond to a “best” or optimal value of a function

(18)

Summary of Numerical Methods (2/5)

– Linear Algebraic Equations: have to do with finding a set of

values that simultaneously satisfy a set of linear algebraic

equations

(19)

Summary of Numerical Methods (3/5)

– Curve Fitting

• Regression: derive a single curve that represents the

general trend of the data without necessarily matching any individual points

– Is usually employed where there is significant degree of error associated with the data

• Interpolation: determine intermediate values between relatively error-free data points

– So as to generate tabulated information

(20)

Summary of Numerical Methods (4/5)

– Integration: determine the area under a curve

– Differentiation: determine a function’s slope or its rate of

change

(21)

Summary of Numerical Methods (5/5)

– Differential Equation: many physical laws are couched in terms of the rate of change of a quantity (rather than the magnitude of the quantity) which can be represented as differential equations

• E.g., the acceleration of a falling body (bungee jumper)

References

Related documents

Commercial aircraft programs inventory included the following amounts related to the 747 program: $448 of deferred production costs at December 31, 2011, net of previously

The small premature infant who has undergone a sur gical procedure and would have to be fed by gavage is much more easily and safely fed through a gastrostomy tube (Fig. 2)..

The degree of resistance exhibited after 1, 10 and 20 subcultures in broth in the absence of strepto- mycin was tested by comparing the number of colonies which grew from the

Additionally, Figure 1 plots a quadratic fit of the gender gap in competitive attitudes (based on the average score on the five questions mentioned above) in East (triangle, red..

Basic demographics of the respondents in this study indicate that Korean international students entering the Pharm.D program in average have spent 5.0 ± 2.8 years in the

In the meta-analysis of studies that could be pooled, there was a significant difference between the neck and back pain patients (p=0.02) indicating a prefer- ence

Computer graphics is all these – a consciously managed and documented technology directed toward communicating information accurately and descriptively.”.. Computer Graphics ,

Otra carta de Florencio al mismo destinatario, fechada el 29 de enero de 1836, proporciona información sobre el momento aproximado en que Juan Cruz concluye la traducción