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 268 – NEMO

Changeset 268


Ignore:
Timestamp:
2005-09-08T16:09:46+02:00 (19 years ago)
Author:
opalod
Message:

nemo_v1_update_05:RB+OA: Update and rewritting of part of the TOP component

Location:
trunk/NEMO
Files:
11 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/opa.F90

    r258 r268  
    5050   USE dyncor1d        ! Coriolis factor at T-point 
    5151   USE step1d          ! Time stepping loop for the 1D configuration 
     52 
     53   USE initrc          ! Initialization of the passive tracers 
    5254 
    5355   IMPLICIT NONE 
     
    187189 
    188190#if defined key_passivetrc 
    189       CALL initrc                           ! Passive tracers 
     191      CALL ini_trc                           ! Passive tracers 
    190192#endif 
    191193 
  • trunk/NEMO/OPA_SRC/step.F90

    r258 r268  
    3232 
    3333   USE trcstp          ! passive tracer time-stepping      (trc_stp routine) 
     34   USE trcdia          ! passive tracer diagnostics        (trc_dia routine) 
     35   USE trcrst          ! restart for passive tracers 
    3436 
    3537   USE dynhpg          ! hydrostatic pressure grad.       (dyn_hpg routine) 
     
    279281      ! N.B. ua, va, ta, sa arrays are used as workspace in this section 
    280282      !----------------------------------------------------------------------- 
    281       IF( kstp == nit000 )   CALL trcdia( kstp, indic )     ! diagnostics init. 
     283      IF( kstp == nit000 )   CALL trc_dia( kstp, indic )     ! diagnostics init. 
    282284 
    283285                             CALL trc_stp( kstp )           ! time-stepping 
    284286 
    285                              CALL trcwri( kstp )            ! outputs 
    286  
    287                              CALL trcdia( kstp, indic )     ! diagnostics 
     287                             CALL trc_wri( kstp )            ! outputs 
     288 
     289                             CALL trc_dia( kstp, indic )     ! diagnostics 
    288290#endif 
    289291 
Note: See TracChangeset for help on using the changeset viewer.