New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
2017WP/ENHANCE-05_Gurvan-RK3 (diff) – NEMO

Changes between Version 7 and Version 8 of 2017WP/ENHANCE-05_Gurvan-RK3


Ignore:
Timestamp:
2017-07-24T16:25:06+02:00 (7 years ago)
Author:
gm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 2017WP/ENHANCE-05_Gurvan-RK3

    v7 v8  
    55|| '''Action''' || ENHANCE-5_Gurvan — RK-3 time stepping || 
    66|| '''PI(S)''' || Gurvan Madec || 
    7 {{{#!td 
    8 '''Digest''' 
    9 }}} 
    10 {{{#!td 
    11  Introduce an optional RK3 time-stepping scheme. The scheme will: 
     7 
     8{{{#!td '''Digest''' }}} {{{#!td 
     9 
     10  Introduce an optional RK3 time-stepping scheme. The scheme will: 
    1211 
    1312 1. be a valuable alternative to the current Modified Leap-Frog (MLF, Leclair and Madec OM2009) scheme, 
     
    1514 1. allow [http://agrif.imag.fr/ AGRIF] to be exactly conservative, and 
    1615 1. make much more easier to use time coarsening of TRC and OFF-line variable volume calculation 
     16 1. make feasible to properly implement an implicit computation of top and bottom friction (properly means consistent with the ssh time splitting scheme) 
     17 
     18 
     19 
     20As such a change will impact many module of OPA, it has been preferred to develop the RK3 version in a separate directory, RK3_SRC, put at the same level as OPA_SRC and being a copy of OPA_SRC as starting point.  
     21 
     22In addition to the RK3 scheme, a Forward-Bacward Scheme (FBS) will be introduced. The goals associated with FBS are the following: 
     23 
     24   ''(i)'' FB scheme is also a two levels time-stepping scheme but much simpler than a RK3. Its implementation will prepare all the required environment for the RK3 scheme, while been much easier to develop and test. 
     25 
     26   ''(ii)'' FB scheme may be a valuable alternative for low resolution simulations (in particular ORCA 2° and 1°) which do not necessarily need a high order time-stepping scheme, although FB scheme requires to used UBS scheme on advection of both dynamics and tracers. 
    1727 
    1828In practice the work is to : 
    1929 
    20  * add all time varying fields as argument of all DYN and TRA routines (as RK3 schemes uses the same tendency terms as the Leap-Frog scheme, but it calls them several times by time step) 
    21  * introduce a stpRK3.F90  time-stepping module (which will contain a stp_RK3 routine) 
    22  * move the existing Modified Leap-Frog  time stepping (step.F90) in stpMLF.F90 module (containing stp routine renamed stp_MLF) 
    23  * change the CALL to stp routine in memogcm.F90 by a CALL to either stp_MLF or stp_RK3 depending of namelist parameters 
    24 }}} 
    25 |- 
     30 * start from the trunk, updated with HPC09 branch (i.e. ZDF modifications) 
     31 
     32 
     33 * create RK3_SRC directory a a copy of OPA_SRC 
     34 
     35 
     36 * implement the FB scheme in a stp_fbs routine (found either in step.F90 or in stpfbs.F90), implying changes in most of SBC, TRA, DYN and ZDF modules 
     37 
     38 
     39 * implement the RK3 scheme in a stp_rk3 routine (found either in step.F90 or stprk3.F90) 
     40 
     41 
     42 
     43}}} |- 
     44 
    2645|| '''Dependencies''' || no || 
    2746|| '''Target''' || 2017 merge party || 
    28 || '''Trac Ticket''' || [ticket:1911 #1911] || 
     47|| '''Trac Ticket''' || #1911 || 
    2948|| '''SVN branch''' || [browser:branches/2017/dev_r7881_ENHANCE09_RK3 dev_r7881_ENHANCE09_RK3] || 
    3049|| '''Previewer(s)''' || ''Names'' || 
     
    3251|| '''Status''' || To be developed || 
    3352|| '''Link''' || [[ExtractUrl(.)]] || 
    34  
    3553==  == 
    3654{{{#!comment