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 321 for trunk/NEMO/C1D_SRC/dynnxt1d.F90 – NEMO

Ignore:
Timestamp:
2005-10-03T11:20:35+02:00 (19 years ago)
Author:
opalod
Message:

nemo_v1_bugfix_014:RB: update control print for 1D model

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/C1D_SRC/dynnxt1d.F90

    r257 r321  
    1616   USE in_out_manager  ! I/O manager 
    1717   USE lbclnk          ! lateral boundary condition (or mpp link) 
     18   USE prtctl          ! Print control 
    1819 
    1920   IMPLICIT NONE 
     
    128129      !                                                ! =============== 
    129130 
    130       IF(l_ctl)   WRITE(numout,*) ' nxt  - Un: ', SUM(un(2:nictl,2:njctl,1:jpkm1)*umask(2:nictl,2:njctl,1:jpkm1)), & 
    131       &                                  ' Vn: ', SUM(vn(2:nictl,2:njctl,1:jpkm1)*vmask(2:nictl,2:njctl,1:jpkm1)) 
     131      IF(ln_ctl)   THEN 
     132         CALL prt_ctl(tab3d_1=un, clinfo1=' nxt_1d  - Un: ', mask1=umask, & 
     133            &         tab3d_2=vn, clinfo2=' Vn: ', mask2=vmask) 
     134      ENDIF 
     135 
     136!     IF(l_ctl)   WRITE(numout,*) ' nxt  - Un: ', SUM(un(2:nictl,2:njctl,1:jpkm1)*umask(2:nictl,2:njctl,1:jpkm1)), & 
     137!     &                                  ' Vn: ', SUM(vn(2:nictl,2:njctl,1:jpkm1)*vmask(2:nictl,2:njctl,1:jpkm1)) 
    132138 
    133139   END SUBROUTINE dyn_nxt_1d 
Note: See TracChangeset for help on using the changeset viewer.