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 3295 for trunk/NEMOGCM/NEMO/TOP_SRC/trcwri.F90 – NEMO

Ignore:
Timestamp:
2012-01-30T16:49:07+01:00 (12 years ago)
Author:
cetlod
Message:

trunk:A few additional diagnostics added in PISCES

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMOGCM/NEMO/TOP_SRC/trcwri.F90

    r3294 r3295  
    1717   USE iom         ! I/O manager 
    1818   USE dianam      ! Output file name 
     19   USE trcwri_pisces 
    1920 
    2021   IMPLICIT NONE 
     
    6869      ! write the tracer concentrations in the file 
    6970      ! --------------------------------------- 
    70       DO jn = 1, jptra 
    71          cltra = TRIM( ctrcnm(jn) )                  ! short title for tracer 
    72          CALL iom_put( cltra, trn(:,:,:,jn) ) 
    73       END DO 
     71      IF( lk_pisces )  THEN 
     72         CALL trc_wri_pisces 
     73      ELSE 
     74         DO jn = 1, jptra 
     75            cltra = TRIM( ctrcnm(jn) )                  ! short title for tracer 
     76            CALL iom_put( cltra, trn(:,:,:,jn) ) 
     77         END DO 
     78      ENDIF 
    7479      ! 
    7580   END SUBROUTINE trc_wri_trc 
Note: See TracChangeset for help on using the changeset viewer.