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.
Changeset 16 for trunk/NEMO/OPA_SRC/FLO/flo4rk.F90 – NEMO

Ignore:
Timestamp:
2004-02-17T09:06:15+01:00 (20 years ago)
Author:
opalod
Message:

CT : UPDATE001 : First major NEMO update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/FLO/flo4rk.F90

    r3 r16  
    1515   USE oce             ! ocean dynamics and tracers 
    1616   USE dom_oce         ! ocean space and time domain 
     17   USE in_out_manager  ! I/O manager 
    1718 
    1819   IMPLICIT NONE 
     
    2425   !! * Module variables 
    2526   REAL(wp), DIMENSION (4) ::   &   ! RK4 and Lagrange interpolation 
    26       tcoef1 = /  1.0  ,  0.5  ,  0.5  ,  0.0  / ,  &  ! coeffients  for  
    27       tcoef2 = /  0.0  ,  0.5  ,  0.5  ,  1.0  / ,  &  ! lagrangian interp. 
    28       scoef2 = /  1.0  ,  2.0  ,  2.0  ,  1.0  / ,  &  ! RK4 coefficients 
    29       rcoef  = /-1./6. , 1./2. ,-1./2. , 1./6. /       ! ??? 
     27      tcoef1 = (/  1.0  ,  0.5  ,  0.5  ,  0.0  /) ,  &  ! coeffients  for  
     28      tcoef2 = (/  0.0  ,  0.5  ,  0.5  ,  1.0  /) ,  &  ! lagrangian interp. 
     29      scoef2 = (/  1.0  ,  2.0  ,  2.0  ,  1.0  /) ,  &  ! RK4 coefficients 
     30      rcoef  = (/-1./6. , 1./2. ,-1./2. , 1./6. /)       ! ??? 
    3031   REAL(wp), DIMENSION (3) ::   & 
    31       scoef1 = / .5, .5, 1. /       ! compute position with interpolated 
     32      scoef1 = (/ .5, .5, 1. /)       ! compute position with interpolated 
    3233   !!---------------------------------------------------------------------- 
    3334   !!   OPA 9.0 , LODYC-IPSL  (2003) 
Note: See TracChangeset for help on using the changeset viewer.