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/ZDF/zdfmxl.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/ZDF/zdfmxl.F90

    r247 r258  
    1313   USE zdf_oce         ! ocean vertical physics 
    1414   USE in_out_manager  ! I/O manager 
     15   USE prtctl          ! Print control 
    1516 
    1617   IMPLICIT NONE 
     
    134135      !                                                ! =============== 
    135136 
    136       IF(l_ctl)   WRITE(numout,*) ' nmln : ', SUM( nmln(1:nictl+1,1:njctl+1) ), ' hmld: ', SUM( hmld(1:nictl+1,1:njctl+1) ) 
     137      IF(ln_ctl)   THEN 
     138         CALL prt_ctl(tab2d_1=FLOAT(nmln), clinfo1=' nmln : ', tab2d_2=hmld, clinfo2=' hmld : ', ovlap=1) 
     139      ENDIF 
     140       
    137141 
    138142   END SUBROUTINE zdf_mxl 
     
    235239      END DO 
    236240 
    237       IF(l_ctl)   WRITE(numout,*) ' nmln : ', SUM( nmln(1:nictl+1,1:njctl+1) ), ' hmld: ', SUM( hmld(1:nictl+1,1:njctl+1) ) 
     241      IF(ln_ctl)   THEN 
     242         CALL prt_ctl(tab2d_1=FLOAT(nmln), clinfo1=' nmln : ', tab2d_2=hmld, clinfo2=' hmld : ', ovlap=1) 
     243      ENDIF 
    238244 
    239245   END SUBROUTINE zdf_mxl 
Note: See TracChangeset for help on using the changeset viewer.