Temporal Discretization
   HOME

TheInfoList



OR:

In
applied physics Applied physics is the application of physics to solve scientific or engineering problems. It is usually considered a bridge or a connection between physics and engineering. "Applied" is distinguished from "pure" by a subtle combination of fac ...
and
engineering Engineering is the practice of using natural science, mathematics, and the engineering design process to Problem solving#Engineering, solve problems within technology, increase efficiency and productivity, and improve Systems engineering, s ...
, temporal discretization is a mathematical technique for solving transient problems, such as flow problems. Transient problems are often solved using
computer-aided engineering Computer-aided engineering (CAE) is the general usage of technology to aid in tasks related to engineering analysis. Any use of technology to solve or assist engineering issues falls under this umbrella. Overview Following alongside the con ...
(CAE) simulations, which require discretizing the governing equations in both space and time. Temporal discretization involves the integration of every term in various equations over a time step (\Delta t). The spatial domain can be discretized to produce a semi-discrete form: \frac(x,t) = F(\varphi).~ The first-order temporal discretization using backward differences is Selection of Spatial and Temporal discretization
/ref> \frac = F(\varphi), And the second-order
discretization In applied mathematics, discretization is the process of transferring continuous functions, models, variables, and equations into discrete counterparts. This process is usually carried out as a first step toward making them suitable for numeri ...
is \frac = F(\varphi), where * \varphi is a scalar * n + 1 is the value at the next time, t + \Delta t * n is the value at the current time, t * n - 1 is the value at the previous time, t - \Delta t The function F(\varphi) is evaluated using implicit- and explicit-time integration.


Description

Temporal discretization is done by integrating the general discretized equation over time. 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 a weighted average between current and future values. The
integral In mathematics, an integral is the continuous analog of a Summation, sum, which is used to calculate area, areas, volume, volumes, and their generalizations. Integration, the process of computing an integral, is one of the two fundamental oper ...
form of the equation can be written as: \frac = f\cdot F( \varphi^) + (1-f) \cdot F( \varphi^n ), where f is a weight between 0 and 1. * f = 0.0 yields the fully explicit scheme. * f = 1.0 yields the fully implicit scheme. * f = 0.5 yields the Crank-Nicolson scheme. This integration holds for any control volume and any discretized variable. The following equation is obtained when applied to the governing equation, including full discretized
diffusion Diffusion is the net movement of anything (for example, atoms, ions, molecules, energy) generally from a region of higher concentration to a region of lower concentration. Diffusion is driven by a gradient in Gibbs free energy or chemical p ...
,
convection Convection is single or Multiphase flow, multiphase fluid flow that occurs Spontaneous process, spontaneously through the combined effects of material property heterogeneity and body forces on a fluid, most commonly density and gravity (see buoy ...
, and source terms. \int_t^ F(\varphi) \, dt = f\cdot F_\varphi^ + (1-f)\cdot F_\varphi^t \, \Delta t


Methods for evaluating function ''F''(''φ'')

After discretizing the time derivative, function F(\varphi) remains to be evaluated. The function is now evaluated using implicit and explicit-time integration.Jirka Simunek
/ref>


Implicit-time integration

This methods evaluates the function F(\varphi) at a future time.


Formulation

The evaluation using implicit-time integration is given as: \frac = F( \varphi^ ), This is called implicit integration as \varphi^ in a given cell is related to \varphi^ in neighboring cells through F(\varphi^): \varphi^ = \varphi^n + \Delta t F( \varphi^ ), In case of implicit method, the setup is unconditionally stable and can handle large time step (\Delta t). But, stability doesn't mean accuracy. Therefore, large \Delta 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(\varphi) at a current time.


Formulation

The evaluation using explicit-time integration is given as: \frac = F(\varphi^n), And is referred as explicit integration since \varphi^ can be expressed explicitly in the existing solution values, \varphi^: \varphi^ = \varphi^n + \Delta t \, F( \varphi^n ), Here, the time step (\Delta t) is restricted by the stability limit of the solver (i.e., time step is limited by the
Courant–Friedrichs–Lewy condition In mathematics, the convergence condition by Courant–Friedrichs–Lewy (CFL) is a necessary condition for convergence while solving certain partial differential equations (usually hyperbolic PDEs) numerically. It arises in the numerical analysis ...
). To be accurate with respect to time the 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: * Lax–Wendroff method * Runge–Kutta method


See also

*
Courant–Friedrichs–Lewy condition In mathematics, the convergence condition by Courant–Friedrichs–Lewy (CFL) is a necessary condition for convergence while solving certain partial differential equations (usually hyperbolic PDEs) numerically. It arises in the numerical analysis ...
. * Von Neumann stability analysis. *
Finite element method Finite element method (FEM) is a popular method for numerically solving differential equations arising in engineering and mathematical modeling. Typical problem areas of interest include the traditional fields of structural analysis, heat tran ...
*
Explicit and implicit methods Explicit and implicit methods are approaches used in numerical analysis for obtaining numerical approximations to the solutions of time-dependent ordinary differential equation, ordinary and partial differential equations, as is required in comput ...
* Chi-Wang Shu


References

{{reflist Computer-aided engineering