Lecture Notes - IS6301 2
Lecture Notes - IS6301 2
IS6301
Acknowledgement: These lecture notes were prepared with reference to the lecture notes of
Prof. J. M. R. S. Appuhamy
Course Overview OUTLINE
Mathematical modelling is the practice of translating physical (engineering) situations into precise mathematical forms
that can be analysed, solved, and interpreted.
Ready-made formulae from handbooks and standards. Equations and formulae from textbooks encoding known physical laws.
Example: Manning's equation for open-channel flow: Q = Example: Ohm's Law V = IR, or beam bending σ = My/I
(1/n)·A·R^(2/3)·S^(1/2) Valid within the assumptions of the underlying theory.
Derived by fitting equations to large experimental datasets.
Equations relating rates of change — used when a quantity evolves over When closed-form solutions are not possible, discretise and solve
time or space. numerically.
Example: Newton's cooling dT/dt = −k(T − T∞) Example: Finite Element Method (FEM) for stress analysis, Finite
Require initial or boundary conditions to be fully determined. Difference for heat conduction.
Powerful but require careful validation.
Examples of Real Problems PART A
A road bridge must carry vehicles of varying The beam obeys Newton's laws and material
weights at speed. Engineers need to know the constitutive relations exactly. These translate
maximum deflection at mid-span and the into a 2nd-order ODE (the Euler-Bernoulli
maximum bending stress in the beam before beam equation) whose solution gives
the bridge is built — to ensure it will not fail or deflection at every point along the span —
cause discomfort to drivers. something no physical intuition alone can
provide.
𝑑2 𝑦
Build it, test it, rebuild if it fails —
𝐸𝐼. 4 = 𝑤(𝑥) catastrophically expensive and
𝑑𝑥
dangerous.
Examples of Real Problems PART A
Safety & risk analysis Reduce cost & time Scale and extrapolate
Models are classified by how they are derived — from data, from physics, or a combination of both.
Traffic flow model fitted to sensor data. Navier-Stokes equations for fluid flow. Physics-Informed Neural Networks (PINNs).
Soil bearing capacity from site tests. Finite-element structural analysis. Semi-empirical turbulence models.
Neural-network fault detection in motors. Kirchhoff's laws in circuit design. Digital twins in manufacturing.
P A R T B
Modelling is an iterative cycle, not a one-way process. We continually refine the model as we learn more.
Validation Interpretation
against Data & Prediction
Mathematical
Analysis & Solution Interpretation
Real-World Problem Formulation
Validation
Which equations encode
What quantity do I want to those laws? What does x(t) = … mean Do predictions match
predict? Can I solve analytically? physically? measured data?
What assumptions simplify
What are the relevant Do I need a numerical Does the solution Are units, signs, and
the problem?
variables? method? behaviour match intuition? magnitudes correct?
What are the initial /
What physical laws apply? What are the key What are the limiting Is the model the simplest
boundary conditions?
mathematical techniques? cases? that fits?
Overview: The 7-Step Modelling Process PART B
Regardless of the engineering domain, a rigorous modelling study always follows these seven steps.
Worked Examples
Worked Example 1
Problem: A radioactive substance initially contains 800 grams. The mass decays at a rate
proportional to the amount present. After 5 years, 200 grams remain. Find the amount remaining
after 8 years.
STEP 1 — Identify the Problem and Its Variables
Problem: A bacterial culture starts with 500 bacteria and grows at a rate proportional to its size.
After 3 hours there are 8 000 bacteria. Find the number of bacteria after 4 hours.
Number of bacteria in the culture at time t. Time elapsed (hours) since the start of observation.
This is the unknown function we want to find. The culture grows as t increases.
8 000 bacteria after 3 hours. The value of y(4) — the number of bacteria at t = 4 hours.
Used to calculate k (the growth rate). Two sub-problems: (i) find k, then (ii) evaluate y(4).
𝑑𝑦 After 3 hours bacteria is 8000 After 4 hours bacteria is
∝𝑦
𝑑𝑡
i.e when 𝑡 = 3, 𝑦 = 8000 𝑦 = 500𝑒 0.9242×4
𝑑𝑦
= 𝑘𝑦
𝑑𝑡 So that
ln 𝑦 = 𝑘𝑡 + ln 𝐴 8000 = 500𝑒 3𝑘 = 20,159.03
𝑦 = 𝐴𝑒 𝑘𝑡 80
3𝑘 = ln
𝑦(0) = 500 5
𝐾 = 0.9242
⇒ 𝐴 = 500
So that 𝑦 = 500𝑒 𝑘𝑡 𝑦 = 500𝑒 0.9242𝑡
Worked Example 3
Problem: A cup of coffee is poured from a pot whose contents are at 950 𝐶 into a non-
insulate cup in a room at 200 𝐶. After a minute the coffee has cooled to 900 𝐶 . How
much time is required before the coffee reaches a drinkable temperature of 650 𝐶 .
𝑇 0 = 95
𝑇 1 = 90
𝑇(𝑡) Dependent variable
𝑇 𝑅 = 20
What do we need to find?
t Independent variable
𝑡 where 𝑇 𝑡 = 65
Newton’s law of cooling
“The rate of change of temperature is proportional to the deference between the
temperature of the object and that of the surrounding environment’
Problem 01: A steel rod is heated to 300 °C in a furnace, then removed and placed in a
workshop at 25 °C. After 5 minutes it cools to 200 °C. How long does it take to reach a
safe handling temperature of 50 °C?.
𝑇 𝑡 = 275𝑒 𝑘𝑡 + 25
𝑘 = 0.09039
𝑡 = 26.5
Dependent variable
Independent variable
Modelling Components
Important aspects to the modelling process
Verification
iii Validate the model against reality and improve it if necessary.
• Compare model predictions with real-world data.
• Ensure the model produces reasonable and consistent results
E
General types of models
Deterministic
i
Models that do not involve random variables .
Ex. Models in calculus, differential equations and linear algebra all introduce these types of models
Stochastic
ii Models involve random variables
Ex. Models in probability, statistics and stochastic processes will introduce these models
iii
E
Construct Relationships Between Variables PART B · STEP 2
Dimensional analysis is the process of checking that every term in a mathematical model has the same physical
dimensions.
M L T Θ I N J
Amount of Luminous
Mass Length Time Temperature Electric current
substance intensity
kilogram kg metre m second s kelvin K ampere A mole mol candela cd
Equality
Transcendental Functions
e^(kt): [kt] = T⁻¹ · T = 1 (dimensionless) ✓
4 Arguments of e^(·), ln(·), sin(·), cos(·) must always be
dimensionless.
sin(ωt): [ωt] = T⁻¹ · T = 1 (dimensionless) ✓
Dimensional Check — Newton's Cooling & Exponential Models PART F
✓ Both models pass dimensional analysis — every term is consistent and the exponent is dimensionless.
Dimensional Check — Mass-Spring-Damper & Catching an Error
M · LT⁻² = MLT⁻² [c]·LT⁻¹ → [c] = MT⁻¹ [k]·L → [k] = MT⁻² Applied force MLT⁻²
✓ All four terms share dimension [N = kg·m/s²] — consistent. Also confirms: c has units kg/s, k has units N/m.
V = I · R + t ← is this valid?
Catch errors instantly Reveal unknown units Scale & simplify models
Groups of dimensionless numbers
A wrong formula, unit conversion mistake, or If you derive k from an ODE, dimensional
(Buckingham π theorem) reduce complex
missing factor will fail dimensional check in analysis tells you immediately what units k
multi-variable problems to simpler universal
seconds — before any computation. must carry — you don't have to guess.
laws.
Definition
4
Worked Example 4
𝐴 ∝ 𝑠𝑢𝑟𝑓𝑎𝑐𝑒 𝑎𝑟𝑒𝑎
Then
𝐴 𝐿2
∝ 3
𝑇(𝑡) 𝑉 𝐿
Dependent variable
𝐴 1
∝
𝑉 𝐿
When 𝐿 is small the heat loss for a unit volume becomes high
Worked Example 5
Problem: Show that the volume 𝑉 of the crater (a cavity made by the impact of an
explosion) produced by a surface explosion of energy E in soil of density 𝜌 under gravity
𝑔 is defined by
3
𝐸 4
𝑉=𝑘
𝜌𝑔
Assume
𝑉 ∝ 𝐸 𝛼 𝜌 𝛽 𝑔𝛾
Consider the dimensions
3 3 3
𝛼= , 𝛽=− , 𝛾=−
4 4 4
𝑇(𝑡)
Then Dependent variable
3 3
𝐸 4 𝐸 4
𝑉∝ so that 𝑉 = 𝑘
𝜌𝑔 𝜌𝑔
Buckingham’s Pi Theorem
Buckingham’s Pi Theorem
Theorem:
If
𝑓 𝑥1 , 𝑥2 , … , 𝑥𝑛 = 0
Then we can write
𝑔 Π1 , Π2 , … , Π𝑛−𝑘 = 0
or
Π𝑖 = 𝑔 Π1 , Π2 , … , Π𝑖−1 , Π𝑖+1 , Π𝑛−𝑘
Buckingham’s Pi Theorem
Procedure:
• From j dimensionless Pi groups, check that they are all indeed dimensionless
Number of variables 𝑛 = 4
Number of dimensions 𝑘 = 3 (M, 𝐿 and 𝑇)
𝑘=3
Variables
𝐹, 𝑚1 , 𝑚2 , 𝑅, 𝐺
𝑛=5
So that
𝑗 =5−3=2
Worked Example 6:
Choose repeat variables
The Rule
• The number of repeating variables must equal the number of fundamental
dimensions, k.
• Here, 𝑘 = 3 (𝑀, 𝐿, 𝑇), so we need exactly 3 repeating variables — which is why
𝑚₁, 𝑅, and 𝐺 were chosen.
No of Pi terms; 5 − 3 = 2
Worked Example 7:
Now since there are 3 dimensions, we choose 3 independent
variables say;
𝐷−𝑀
𝑣 − 𝐿𝑇 −1
𝜌 − 𝑀𝐿−3
= 𝐿𝑇 −1 𝛼
𝐿 𝛽
𝑀𝐿−3 𝛾
𝑀𝐿−1 𝑇 −1 𝛿
So that
Then 𝑣𝑑𝜌
𝑀: 𝛾+𝛿 = 0 = Π1
𝜇
𝐿: 𝛼 + 𝛽 − 3𝛾 − 𝛿 = 0
𝑇: −𝛼 − 𝛿 = 0
Now Let
Π2 = 𝑔 𝛼 𝑑 𝛽 𝜌𝛾 𝜇 𝛿 𝛼=1
= 𝐿𝑇 −2 𝛼
𝐿 𝛽
𝑀𝐿−3 𝛾
𝑀𝐿−1 𝑇 −1 𝛿 Then
𝛽=3
𝛾=2
Then
𝛿 = −2
𝑀: 𝛾+𝛿 =0
𝐿: 𝛼 + 𝛽 − 3𝛾 − 𝛿 = 0
So that
𝑇: −2𝛼 − 𝛿 = 0
𝑔𝑑 3 𝜌2
= Π2
𝜇2
Worked Example 7:
Then we can write
𝑣𝑑𝜌 𝑔𝑑 3 𝜌2
=𝑓
𝜇 𝜇2
3 2 𝑛
𝜇 𝑔𝑑 𝜌
𝑣=𝐶
𝑑𝜌 𝜇2
Exercise :
Redo the above problem by adding the “raindrop density ρ_d”
Raindrop diameter d L
A train operator for a particular line is buying some new rolling stock. The trains supplied
by one company accelerate in such a way that their speed (𝑉1 ) in m/s, varies with time (t)
in seconds from standing start according to the expression:
𝑡2
𝑉1 𝑡 = 35
1 + 𝑡2
However, the expression for the (𝑉2 ) of trains from a competitor supplier is
𝑉2 𝑡 = 100[1 − 𝑒 −0.02𝑡 ]
1. How far will each train travels in 30 seconds from a standing start.?
Train 1 996 35 35
Train 2 774 45 100
July 2025
The sound power(𝑊) from a turbulent jet through a nozzle is
believed to depend on the jet centerline velocity ( 𝑉 ) nozzle
diameter (𝐷 ) , speed sound 𝐶 and fluid density (𝜌). The
temperature and composition of the fluid in the jet is the same as
the ambient fluid. Using the Buckingham Pi theorem, find a relation
between the sound power and other parameters of the system
Quantity Symbol Dimensions SI unit Quantity Symbol Dimensions SI unit