Changes between Version 11 and Version 12 of doc/tec/rk3


Ignore:
Timestamp:
Jan 11, 2011 1:23:03 PM (14 years ago)
Author:
suehring
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/tec/rk3

    v11 v12  
    11= 3^rd^ order Runge-Kutta scheme =
    22
    3 For the dicretization in time a 3^rd^ order low-storage Runge-Kutta scheme with 3 stages recommended by Williamson (1979) is used.
     3For the discretization in time a 3^rd^ order low-storage Runge-Kutta scheme with 3 stages is used recommended by Williamson (1979).
    44Generally an N-stage Runge-Kutta scheme discretizes an ordinary differential equation of the form
    55{{{
     
    1515\[ \psi^{n+1} = \psi^{N}. \]
    1616}}}
    17 The coefficients can written in a Butcher-Tableau in the following way:
     17The coefficients can be written in a so-called Butcher-Tableau:
    1818|| α,,1,, || β,,1,1,, || {{{0}}} || ... || || ||
    1919|| α,,2,, || β,,2,1,, || β,,2,2,, || {{{0}}} || ... || ||
     
    2222||        || β,,N+1,1,, || β,,N+1,2,, || ... || β,,N+1,N-1,, ||  β,,N+1,N,, ||
    2323
    24 The appendant coefficients for the used Runge-Kutta scheme reads:
     24The appendant coefficients for the applied Runge-Kutta scheme reads:
    2525||   {{{0}}}  ||   {{{0}}}   ||   {{{0}}}  ||   {{{0}}}  ||
    2626||  {{{1/3}}} ||    {{{1/3}}} ||    {{{0}}}  ||  {{{0}}}   ||
     
    2828||      ||  {{{1/6}}}  ||  {{{3/10}}} || {{{8/15}}} ||
    2929
    30 For the implementation it is advantageous to compute ψ^N^ from the intermediate solutions ψ^1^ and ψ^2^ and combine the local tendencies in one array after the second substep to save storage (therefor low-storage scheme) as follows:
     30To save storage it is advantageous to compute ψ^N^ from the intermediate solutions ψ^1^ and ψ^2^ and combine the local tendencies in one array after the second substep (therefore low-storage scheme) as follows:
    3131{{{
    3232#!Latex
     
    3737}}}
    3838
    39 For reasons of clarity the [../../app/inipar#timestep_scheme time integration] for several schemes (further schemes are: Leapfrog, Euler and 2^nd^ order Runge-Kutta scheme) is implemented as following (here for example the u-component of velocity):
     39For reasons of clarity the [../../app/inipar#timestep_scheme time integration] for several schemes (further schemes are: Leapfrog, Euler and 2^nd^ order Runge-Kutta scheme) is implemented as follows (here e.g. the u-component of velocity):
    4040
    4141{{{
     
    5656|| {{{1}}} || {{{8/15}}} || {{{1/15}}} || {{{0}}} || {{{1}}} || 3^rd^ substep
    5757
    58 {{{u_p}}} is the prognosticated and {{{u}}} the current velocity at each substep. {{{u_m}}} denotes the velocity of the last substep (needed for Leapfrog). {{{tend}}} is the current tendency and {{{tu_m}}} the combined tendencies of the prior substeps. {{{tsc(4)}}} steers the preconditioning of the [../../app/inipar#psolver pressure solver] and {{{tsc(5)}}} the [../../app/inipar#rayleigh_damping_factor rayleigh damping]. 
     58{{{u_p}}} is the prognosticated and {{{u}}} the current velocity at each substep. {{{u_m}}} denotes the velocity of the previous substep (needed for Leapfrog). {{{tend}}} is the current tendency and {{{tu_m}}} the combined tendencies of the prior substeps. {{{tsc(4)}}} steers the preconditioning of the [../../app/inipar#psolver pressure solver] and {{{tsc(5)}}} the [../../app/inipar#rayleigh_damping_factor rayleigh damping]. 
    5959
    6060
     
    6464* '''Baldauf, M., 2008:''' Stability analysis for linear discretisations of the advection equation with Runge-Kutta time integration. ''J. Comput. Phys.'', '''227''', 6638-6659.
    6565
    66 * '''Durran, D. R., 1999:''' ''Numerical methods for wave equations in geophysical fluid dynamics.'' Springer Verlag, New York, 1. Auf\/l., 465 S.
     66* '''Durran, D. R., 1999:''' ''Numerical methods for wave equations in geophysical fluid dynamics.'' Springer Verlag, New York, 1. Aufl., 465 S.
    6767
    6868* '''Williamson, J. H., 1980:''' Low-storage Runge-Kutta schemes. ''J. Comput. Phys.'', '''35''', 48-56.