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 12555 for branches/UKMO/dev_r5518_GO6_starthour_obsoper/NEMOGCM/NEMO/OPA_SRC/IOM/in_out_manager.F90 – NEMO

Ignore:
Timestamp:
2020-03-13T17:33:02+01:00 (4 years ago)
Author:
charris
Message:

Changes from GO6 package branch (GMED ticket 450):

svn merge -r 11035:11101 svn+ssh://charris@forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/branches/UKMO/dev_r5518_GO6_package

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/dev_r5518_GO6_starthour_obsoper/NEMOGCM/NEMO/OPA_SRC/IOM/in_out_manager.F90

    r11883 r12555  
    101101   !!---------------------------------------------------------------------- 
    102102   LOGICAL ::   ln_ctl       !: run control for debugging 
     103   TYPE :: sn_ctl                !: optional use structure for finer control over output selection 
     104      LOGICAL :: l_config  = .FALSE.  !: activate/deactivate finer control 
     105                                      !  Note if l_config is True then ln_ctl is ignored. 
     106                                      !  Otherwise setting ln_ctl True is equivalent to setting 
     107                                      !  all the following logicals in this structure True 
     108      LOGICAL :: l_runstat = .FALSE.  !: Produce/do not produce run.stat file (T/F) 
     109      LOGICAL :: l_trcstat = .FALSE.  !: Produce/do not produce tracer.stat file (T/F) 
     110      LOGICAL :: l_oceout  = .FALSE.  !: Produce all ocean.outputs    (T) or just one (F) 
     111      LOGICAL :: l_layout  = .FALSE.  !: Produce all layout.dat files (T) or just one (F) 
     112      LOGICAL :: l_mppout  = .FALSE.  !: Produce/do not produce mpp.output_XXXX files (T/F) 
     113      LOGICAL :: l_mpptop  = .FALSE.  !: Produce/do not produce mpp.top.output_XXXX files (T/F) 
     114                                      !  Optional subsetting of processor report files 
     115                                      !  Default settings of 0/1000000/1 should ensure all areas report. 
     116                                      !  Set to a more restrictive range to select specific areas 
     117      INTEGER :: procmin   = 0        !: Minimum narea to output 
     118      INTEGER :: procmax   = 1000000  !: Maximum narea to output 
     119      INTEGER :: procincr  = 1        !: narea increment to output 
     120      INTEGER :: ptimincr  = 1        !: timestep increment to output (time.step and run.stat) 
     121   END TYPE 
     122   TYPE(sn_ctl) :: sn_cfctl     !: run control structure for selective output 
    103123   INTEGER ::   nn_timing    !: run control for timing 
    104124   INTEGER ::   nn_print     !: level of print (0 no print) 
     
    111131   INTEGER ::   nn_bench     !: benchmark parameter (0/1) 
    112132   INTEGER ::   nn_bit_cmp   =    0    !: bit reproducibility  (0/1) 
    113  
     133   LOGICAL ::   ln_flush     !: namelist flush numout after write statement 
    114134   !                                           
     135   LOGICAL ::   lflush       !: flush numout after write statement 
    115136   INTEGER ::   nprint, nictls, nictle, njctls, njctle, isplt, jsplt, nbench    !: OLD namelist names 
    116137 
Note: See TracChangeset for help on using the changeset viewer.