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 4946 for branches/2014/dev_MERGE_2014/NEMOGCM/NEMO/OPA_SRC/IOM – NEMO

Ignore:
Timestamp:
2014-12-02T10:38:20+01:00 (10 years ago)
Author:
cetlod
Message:

2014/dev_MERGE_2014 : merge in changes from dev_CNRS_CICE

Location:
branches/2014/dev_MERGE_2014/NEMOGCM/NEMO/OPA_SRC/IOM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2014/dev_MERGE_2014/NEMOGCM/NEMO/OPA_SRC/IOM/in_out_manager.F90

    r4624 r4946  
    111111   INTEGER ::   numstp          =   -1      !: logical unit for time step 
    112112   INTEGER ::   numtime         =   -1      !: logical unit for timing 
    113    INTEGER ::   numout          =    6      !: logical unit for output print 
     113   INTEGER ::   numout          =    6      !: logical unit for output print; Set to stdout to ensure any early 
     114                                            !  output can be collected; do not change 
    114115   INTEGER ::   numnam_ref      =   -1      !: logical unit for reference namelist 
    115116   INTEGER ::   numnam_cfg      =   -1      !: logical unit for configuration specific namelist 
    116    INTEGER ::   numond          =    7      !: logical unit for Output Namelist Dynamics 
     117   INTEGER ::   numond          =   -1      !: logical unit for Output Namelist Dynamics 
    117118   INTEGER ::   numnam_ice_ref  =   -1      !: logical unit for ice reference namelist 
    118119   INTEGER ::   numnam_ice_cfg  =   -1      !: logical unit for ice reference namelist 
    119    INTEGER ::   numoni          =    8      !: logical unit for Output Namelist Ice 
     120   INTEGER ::   numoni          =   -1      !: logical unit for Output Namelist Ice 
    120121   INTEGER ::   numevo_ice      =   -1      !: logical unit for ice variables (temp. evolution) 
    121122   INTEGER ::   numsol          =   -1      !: logical unit for solver statistics 
  • branches/2014/dev_MERGE_2014/NEMOGCM/NEMO/OPA_SRC/IOM/restart.F90

    r4924 r4946  
    2222   USE iom             ! I/O module 
    2323   USE eosbn2          ! equation of state            (eos bn2 routine) 
    24    USE trdmld_oce      ! ocean active mixed layer tracers trends variables 
     24   USE trdmxl_oce      ! ocean active mixed layer tracers trends variables 
    2525   USE divcur          ! hor. divergence and curl      (div & cur routines) 
    2626   USE sbc_ice, ONLY : lk_lim3 
     
    140140#endif 
    141141                  IF( lk_lim3 ) THEN 
    142                      CALL iom_rstput( kt, nitrst, numrow, 'iatte'  , iatte     ) !clem modif 
    143                      CALL iom_rstput( kt, nitrst, numrow, 'oatte'  , oatte     ) !clem modif 
     142                     CALL iom_rstput( kt, nitrst, numrow, 'fraqsr_1lev'  , fraqsr_1lev     ) !clem modif 
    144143                  ENDIF 
    145144      IF( kt == nitrst ) THEN 
    146145         CALL iom_close( numrow )     ! close the restart file (only at last time step) 
    147          IF( .NOT. lk_trdmld )   lrst_oce = .FALSE. 
     146!!gm         IF( .NOT. lk_trdmld )   lrst_oce = .FALSE. 
     147!!gm  not sure what to do here   ===>>>  ask to Sebastian 
     148         lrst_oce = .FALSE. 
    148149      ENDIF 
    149150      ! 
    150151   END SUBROUTINE rst_write 
     152 
    151153 
    152154   SUBROUTINE rst_read_open 
     
    162164      LOGICAL  ::   llok 
    163165      !!---------------------------------------------------------------------- 
    164  
    165       IF( numror .LE. 0 ) THEN 
     166      ! 
     167      IF( numror <= 0 ) THEN 
    166168         IF(lwp) THEN                                             ! Contol prints 
    167169            WRITE(numout,*) 
     
    269271      ! 
    270272      IF( lk_lim3 ) THEN 
    271          CALL iom_get( numror, jpdom_autoglo, 'iatte' , iatte ) ! clem modif 
    272          CALL iom_get( numror, jpdom_autoglo, 'oatte' , oatte ) ! clem modif 
     273         CALL iom_get( numror, jpdom_autoglo, 'fraqsr_1lev' , fraqsr_1lev ) 
    273274      ENDIF 
    274275      ! 
Note: See TracChangeset for help on using the changeset viewer.