Steady and Unsteady Analyses are an integral part of solving and understanding fluid flow and its properties. For this problem, we will be computing these analyses for the 2 Dimensional Heat Conduction problem.
Heat transfer is the transfer of thermal energy from a body, at a high temperature, to another at a lower temperature. This transfer of thermal energy may occur under steady or unsteady state conditions.
In reality, there is no true 2-Dimensional heat conduction, only 3-Dimensional Heat Conduction. The 2-D Heat Conduction analysis is generally done to observe the flow and its properties in 2-D.
The 2-D Heat Conduction Equation is given below:
where:
-
$(T)$ is the temperature, -
$(\alpha)$ is the thermal diffusivity, -
$(t)$ is time, -
$(x)$ and$(y)$ are spatial dimensions.
A fluid state in which there is no change in the fluid property with respect to time is known as a Steady State. In the current case, the fluid property in question is temperature. So,
When the above equation is applied to the main Heat Conduction equation, we have:
assuming that the thermal conductivity
We solve the steady-state heat conduction equation using three different iterative solvers:
- Jacobi Method
- Gauss-Seidel Method
- Successive Over-Relaxation Method
Upon discretizing the above steady-state equation using Central Differencing Scheme (CDS), we obtain:
where:
$(T_P = T_{i,j})$ $(T_L = T_{i-1,j})$ $(T_R = T_{i+1,j})$ $(T_T = T_{i,j+1})$ $(T_B = T_{i,j-1})$
After simplifying, we obtain:
Assuming
So,
Representing the above equation in an iterative form:
In the Gauss-Seidel method, we use previously calculated values for the next iteration:
The SOR method is a variant of the Gauss-Seidel method. It is represented as:
where
A fluid state in which there is a change in the fluid property with respect to time is known as an Unsteady or a Transient State. Transient conditions are a precursor to steady-state conditions.
The general representation of the Transient 2-D Heat conduction is:
Upon discretizing the above equation using Forward Differencing Scheme (FDS) for time derivative and Central Differencing Scheme (CDS) for spatial derivatives, we obtain:
Simplifying:
Assume ( k_1 = \frac{\alpha \Delta t}{\Delta x^2} ) and ( k_2 = \frac{\alpha \Delta t}{\Delta y^2} ). We get:
In the implicit form, the transient equation is represented as:
The implicit form of the Jacobi method for the transient heat conduction equation is:
The Gauss-Seidel method:
The Successive Over-Relaxation method (SOR):
In the explicit form, the equation is simplified to:
The Explicit form of the Jacobi method:
The Gauss-Seidel method:
The Successive Over-Relaxation method (SOR):
Steady State:
Method | Simulation Time (s) | Number of Iterations | Final Error |
---|---|---|---|
Jacobi | 0.003531 | 254 | 0.000010 |
Gauss-Seidel | 0.002519 | 135 | 0.000009 |
Successive Over-Relaxation | 0.002315 | 35 | 0.000009 |
Transient State (Implicit Approach):
Method | Simulation Time (s) | Number of Iterations | Final Error |
---|---|---|---|
Jacobi | 0.014842 | 3202 | 0 |
Gauss-Seidel | 0.011276 | 2364 | 0 |
Successive Over-Relaxation | 0.011358 | 2023 | 0 |
Transient State (Explicit Approach):
Method | Simulation Time (s) | Number of Iterations | Final Error |
---|---|---|---|
Jacobi | 0.009674 | 1801 | 0 |
Gauss-Seidel | 0.007159 | 1221 | 0 |
Successive Over-Relaxation | 0.006117 | 883 | 0 |
The above table shows the overall statistics of the methods implemented in the current analysis. We can successfully infer that of all the iterative methods used, the Successive Over-Relaxation method has the best results for the analysis as it has the lowest possible simulation time and iterations. Of all the approaches present, the Explicit Transient state analysis has the best possible solution statistics with respect to the simulation time. The steady state also has the lowest stats, but it is important to understand that the steady state is time independant and does not rely on Thermal Conductivity.
Method | Simulation Time (s) | Number of Iterations | Final Error |
---|---|---|---|
Successive Over-Relaxation (Steady) | 0.002315 | 35 | 0.000009 |
Explicit Successive Over-Relaxation (Transient) | 0.006117 | 883 | 0 |
It is very important to understand that the SOR method also depends on a lot of factors like the Over Relaxation Factor, Thermal Conductivity, grid size and the time parameters. Particular to the SOR method, the over relaxation factor gives an edge when compared to the other methods as it can be tweaked easily to find the best possible accurate solution.