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 258 for trunk/NEMO/OPA_SRC/DYN/dynnxt.F90 – NEMO

Ignore:
Timestamp:
2005-09-02T17:48:36+02:00 (19 years ago)
Author:
opalod
Message:

nemo_v1_update_004 : CT : Integration of the control print option for debugging work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/DYN/dynnxt.F90

    r247 r258  
    1414   USE obcdyn          ! open boundary condition for momentum (obc_dyn routine) 
    1515   USE lbclnk          ! lateral boundary condition (or mpp link) 
     16   USE prtctl          ! Print control 
    1617 
    1718   IMPLICIT NONE 
     
    135136      !                                                ! =============== 
    136137 
    137       IF(l_ctl)   WRITE(numout,*) ' nxt  - Un: ', SUM(un(2:nictl,2:njctl,1:jpkm1)*umask(2:nictl,2:njctl,1:jpkm1)), & 
    138       &                                  ' Vn: ', SUM(vn(2:nictl,2:njctl,1:jpkm1)*vmask(2:nictl,2:njctl,1:jpkm1)) 
     138      IF(ln_ctl)   THEN 
     139         CALL prt_ctl(tab3d_1=un, clinfo1=' nxt  - Un: ', mask1=umask, & 
     140            &         tab3d_2=vn, clinfo2=' Vn: ', mask2=vmask) 
     141      ENDIF 
    139142 
    140143   END SUBROUTINE dyn_nxt 
Note: See TracChangeset for help on using the changeset viewer.