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 768 for branches/dev_001_GM/NEMO/TOP_SRC/trcini.F90 – NEMO

Ignore:
Timestamp:
2007-12-16T15:46:18+01:00 (16 years ago)
Author:
gm
Message:

dev_001_GM - create 1 trclsm_ module by trc model (CFC, LOBSTER, PISCES..) + some bug corrections

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_001_GM/NEMO/TOP_SRC/trcini.F90

    r766 r768  
    77   !!             1.0  !  2005-03  (O. Aumont, A. El Moussaoui) F90 
    88   !!              -   !  2005-10  (C. Ethe) Module 
     9   !!             2.0  !  2007-12  (C. Ethe, G. Madec) re-writing 
    910   !!---------------------------------------------------------------------- 
    1011   !!   trc_ini :   Initialization for passive tracer 
     
    1516   USE trcini_pisces   ! PISCES  initialisation 
    1617   USE trcini_my_trc   ! MY_TRC  initialisation 
     18   USE in_out_manager  ! I/O manager 
    1719 
    1820   IMPLICIT NONE 
     
    3840      !!             model (LOBSTER, PISCES, CFC, MY_TRC) 
    3941      !!------------------------------------------------------------------- 
    40  
     42      ! 
    4143      IF(lwp) WRITE(numout,*) 
    4244      IF(lwp) WRITE(numout,*) 'trc_ini : initial set up of the tracer models' 
     
    4749      ENDIF 
    4850 
    49       IF( lk_trc_pisces  ) THEN   ;   CALL trc_init_pisces      ! PISCES  bio-model 
     51      IF( lk_trc_pisces  ) THEN   ;   CALL trc_ini_pisces       ! PISCES  bio-model 
    5052      ELSE                        ;   IF(lwp) WRITE(numout,*) '          PISCES not used' 
    5153      ENDIF 
    5254 
    53       IF( lk_trc_cfc     ) THEN   ;   CALL trc_init_cfc         ! CFC     tracers 
     55      IF( lk_trc_cfc     ) THEN   ;   CALL trc_ini_cfc          ! CFC     tracers 
    5456      ELSE                        ;   IF(lwp) WRITE(numout,*) '          CFC not used' 
    5557      ENDIF 
    5658 
    57       IF( lk_trc_my_trc  ) THEN   ;   CALL trc_init_my_trc      ! MY_TRC  tracers 
     59      IF( lk_my_trc      ) THEN   ;   CALL trc_ini_my_trc       ! MY_TRC  tracers 
    5860      ELSE                        ;   IF(lwp) WRITE(numout,*) '          MY_TRC not used' 
    5961      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.