User:Dynamicdeepak92/sandbox
Introduction
In case of transient problems, the simulations conducted using CAE packages require discretising the governing equations both in space and time. Such problems are unsteady (for e.g.; flow problems) and therefore provide solution which varies with time for a particular position. Temporal discretization involves the integration of every term in different equations over a time step [delta t]. The spatial domgain can be discretised to produce a semi-discrete form at time n:
[Eqs]
If the discretization is done using backward differences; The first order temporal discretization is given as:
[Eqs]
And the second order discretization is given as:
[Eqs]
Where … … … …
The function F() is evaluated using implicit and explicit time integration.
Description
The temporal discretisation is done through integration over time on the general discretised equation.. First, values at a given control volume P at time interval t are assumed and then value at time interval t+delta t is found. This method states that the time integral of a given variable is equal to a weighted average between current and future values. The integral form of the equation can be written as:
where f is weighing factor ranges between 0 and 1.
If
f = 0 results in the fully explicit scheme f = 1 results in the fully implicit scheme f = 0.5 results in the Crank-Nicolson scheme.
For any control volume this integration holds true for any discretized variable. The following equation is obtained when applied to the full discretized diffusion, convection, and source terms.
Methods for evaluating function
After discretizing the time derivative, function F remains to be evaluated. The function is now evaluated using implicit and explicit time integration.
Implicit Time Integration
This methods evaluates the function F() at a future time.
Formulation
The evaluation using Implicit Time Integration is given as:
[Eqs.]
This is called implicit integration as phi (n+1) in a given cell is related to phi (n+1) in neighboring cells through F(phi (n+1)):
[Eqs.] In case of Implicit method, the setup is unconditionally stable and can is handle large time step (Δt). But, stability doesn't mean accuracy. Therefore, large Δt affects accuracy and defines time resolution. But, behavior may involve physical timescale that needs to be resolved.
Explicit Time Integration
This methods evaluates the function F() at a current time.
Formulation
The evaluation using Explicit Time Integration is given as:
[Eqs.]
And is referred as explicit integration since phi(n+1) can be expressed explicitly in the existing solution values, phi(n):
[Eqs.]
Here, the time step delta(t) is restricted by stability limit of the solver (i.e., time step is limited by the Courant-Friedrich-Lewy condition). To be accurate w.r.t time, same time step should be used in all the domain and to be stable, the time step must be the minimum of all the local time steps in the domain. This method is also referred to as "global time stepping.
Examples
Many schemes use Explicit Time Integration. Some of these are as follows:
• Von Neumann stability analysis.