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 10288 for NEMO/branches/2018/dev_r9866_HPC_03_globcom/src/TOP/PISCES/trcnam_pisces.F90 – NEMO

Ignore:
Timestamp:
2018-11-07T18:25:49+01:00 (5 years ago)
Author:
francesca
Message:

reduce global communications, see #2010

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2018/dev_r9866_HPC_03_globcom/src/TOP/PISCES/trcnam_pisces.F90

    r9598 r10288  
    2424 
    2525   !!---------------------------------------------------------------------- 
    26    !! NEMO/TOP 3.3 , NEMO Consortium (2018) 
     26   !! NEMO/TOP 4.0 , NEMO Consortium (2018) 
    2727   !! $Id$  
    28    !! Software governed by the CeCILL licence (./LICENSE) 
     28   !! Software governed by the CeCILL license (see ./LICENSE) 
    2929   !!---------------------------------------------------------------------- 
    3030CONTAINS 
     
    4343      CHARACTER(LEN=20)::   clname 
    4444      !! 
    45       NAMELIST/nampismod/ln_p2z, ln_p4z, ln_p5z, ln_ligand 
     45      NAMELIST/nampismod/ln_p2z, ln_p4z, ln_p5z, ln_ligand, ln_sediment 
    4646      !!---------------------------------------------------------------------- 
    4747 
     
    6565      IF(lwp) THEN                  ! control print 
    6666         WRITE(numout,*) '   Namelist : nampismod ' 
    67          WRITE(numout,*) '      Flag to use LOBSTER model            ln_p2z    = ', ln_p2z 
    68          WRITE(numout,*) '      Flag to use PISCES standard model    ln_p4z    = ', ln_p4z 
    69          WRITE(numout,*) '      Flag to use PISCES quota    model    ln_p5z    = ', ln_p5z 
    70          WRITE(numout,*) '      Flag to ligand                       ln_ligand = ', ln_ligand 
     67         WRITE(numout,*) '      Flag to use LOBSTER model            ln_p2z      = ', ln_p2z 
     68         WRITE(numout,*) '      Flag to use PISCES standard model    ln_p4z      = ', ln_p4z 
     69         WRITE(numout,*) '      Flag to use PISCES quota    model    ln_p5z      = ', ln_p5z 
     70         WRITE(numout,*) '      Flag to ligand                       ln_ligand   = ', ln_ligand 
     71         WRITE(numout,*) '      Flag to use sediment                 ln_sediment = ', ln_sediment 
    7172      ENDIF 
    7273      ! 
    7374      IF(lwp) THEN                         ! control print 
    7475         WRITE(numout,*) 
    75          IF( ln_p5z    )  WRITE(numout,*) '   ==>>>   PISCES QUOTA model is used' 
    76          IF( ln_p4z    )  WRITE(numout,*) '   ==>>>   PISCES STANDARD model is used' 
    77          IF( ln_p2z    )  WRITE(numout,*) '   ==>>>   LOBSTER model is used' 
     76         IF( ln_p5z      )  WRITE(numout,*) '   ==>>>   PISCES QUOTA model is used' 
     77         IF( ln_p4z      )  WRITE(numout,*) '   ==>>>   PISCES STANDARD model is used' 
     78         IF( ln_p2z      )  WRITE(numout,*) '   ==>>>   LOBSTER model is used' 
    7879         IF( ln_ligand )  WRITE(numout,*) '   ==>>>   Compute remineralization/dissolution of organic ligands' 
     80         IF( ln_sediment )  WRITE(numout,*) '   ==>>>   Sediment module is used' 
    7981      ENDIF 
    8082     
Note: See TracChangeset for help on using the changeset viewer.