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 2561 for trunk/NEMOGCM/NEMO/OPA_SRC – NEMO

Ignore:
Timestamp:
2011-01-17T17:22:58+01:00 (13 years ago)
Author:
cetlod
Message:

Suppression of special characters in the name of output variables & check consistency with iodef.xml

Location:
trunk/NEMOGCM/NEMO/OPA_SRC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMOGCM/NEMO/OPA_SRC/DIA/diahth.F90

    r2528 r2561  
    202202      END DO 
    203203 
    204       CALL iom_put( "mld|dt|" , zabs2        )   ! MLD abs(delta t) - 0.2 
     204      CALL iom_put( "mld_dt02", zabs2        )   ! MLD abs(delta t) - 0.2 
    205205      CALL iom_put( "topthdep", ztm2         )   ! T(10) - 0.2 
    206206      CALL iom_put( "mldr10_3", zrho10_3     )   ! MLD delta rho(10m) = 0.03 
  • trunk/NEMOGCM/NEMO/OPA_SRC/DIA/diawri.F90

    r2528 r2561  
    137137      END DO 
    138138      CALL lbc_lnk( z2d, 'T', 1. ) 
    139       CALL iom_put( "|sstgrad|2",  z2d               )    ! square of module of sst gradient 
     139      CALL iom_put( "sstgrad2",  z2d               )    ! square of module of sst gradient 
    140140!CDIR NOVERRCHK 
    141141      z2d(:,:) = SQRT( z2d(:,:) ) 
    142       CALL iom_put( "|sstgrad|" ,  z2d               )    ! module of sst gradient 
     142      CALL iom_put( "sstgrad" ,  z2d               )    ! module of sst gradient 
    143143 
    144144      IF( lk_diaar5 ) THEN 
  • trunk/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90

    r2528 r2561  
    306306      !                                                ! ---------------------------------------- ! 
    307307      IF( MOD( kt-1, nn_fsbc ) == 0 ) THEN 
    308          CALL iom_put( "emp-rnf" , emp  - rnf )                   ! upward water flux 
    309          CALL iom_put( "emps-rnf", emps - rnf )                   ! c/d water flux 
    310          CALL iom_put( "qns+qsr" , qns  + qsr )                   ! total heat flux  
    311          CALL iom_put( "qns"     , qns        )                   ! solar heat flux 
    312          CALL iom_put( "qsr"     ,       qsr  )                   ! solar heat flux 
     308         CALL iom_put( "empmr" , emp  - rnf )                   ! upward water flux 
     309         CALL iom_put( "empsmr", emps - rnf )                   ! c/d water flux 
     310         CALL iom_put( "qt"    , qns  + qsr )                   ! total heat flux  
     311         CALL iom_put( "qns"   , qns        )                   ! solar heat flux 
     312         CALL iom_put( "qsr"   ,       qsr  )                   ! solar heat flux 
    313313         IF( nn_ice > 0 )   CALL iom_put( "ice_cover", fr_i )   ! ice fraction  
    314314      ENDIF 
  • trunk/NEMOGCM/NEMO/OPA_SRC/TRA/traadv.F90

    r2558 r2561  
    9090         &              CALL tra_adv_eiv( kt, zun, zvn, zwn, 'TRA' )          ! add the eiv transport (if necessary) 
    9191      ! 
    92       CALL iom_put( "uoce_eff", zun )                                         ! output effective transport       
    93       CALL iom_put( "voce_eff", zvn ) 
    94       CALL iom_put( "woce_eff", zwn ) 
     92      CALL iom_put( "uocetr_eff", zun )                                         ! output effective transport       
     93      CALL iom_put( "vocetr_eff", zvn ) 
     94      CALL iom_put( "wocetr_eff", zwn ) 
    9595 
    9696      SELECT CASE ( nadv )                            !==  compute advection trend and add it to general trend  ==! 
Note: See TracChangeset for help on using the changeset viewer.