Finite Difference Method For Solving 2D Heat Equation
Finite Difference Method For Solving 2D Heat Equation
THE PROBLEM
Problem Statement,
Objectives and Method
of solving
Problem Statement
Heat Conduction in a 2D plate,
Whose dimensions are given by the user.
User defined :
Initial temperature
Boundary conditions
Objectives
Modeling how thermal energy moves through the 2D plate.
Plotting the temperature variation on the plate with respect to time.
2D Heat Equation
ut = (uxx + uyy) + Q
Assumptions
Plate is
Of Uniform Density
Of Uniform Specific Heat ( Cp )
Perfectly insulated
No external heat sources ( Q = 0 )
Method
difference(Explicit) method
Finite
f ( x dx) f ( x)
x f
dx
Discretization :
Converting continuous to discrete intervals (finite difference)
INPUT
All data required for solving the equation : Initial conditions, boundary
conditions, thermal diffusivity, plate dimensions, physical quantities etc. : READ
FROM AN EXCEL FILE.
OUTPUT
Graphical output: a 3-D animation and a 2-D graph
AT THE END
RESULTS
2 sides insulated
TO CONCLUDE
DISCUSSIONS
Movement of thermal energy through the plate can be observed in the 3D plot.
THANKYOU.