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 881 for branches/dev_001_SBC/NEMO/C1D_SRC – NEMO

Ignore:
Timestamp:
2008-04-08T11:45:52+02:00 (16 years ago)
Author:
ctlod
Message:

dev_001_SBC: Step I: change cpp ket name key_ice_lim into key_lim2 & change names inside modules with extension _2, see ticket: #110

Location:
branches/dev_001_SBC/NEMO/C1D_SRC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_001_SBC/NEMO/C1D_SRC/diawri1d.F90

    r714 r881  
    193193            &          jpi, jpj, nh_T, 1  , 1, 1  , -99 , 32, clop, zsto, zout ) 
    194194 
    195 #if ! defined key_dynspg_rl && defined key_ice_lim 
     195#if ! defined key_dynspg_rl && defined key_lim2 
    196196         ! sowaflup = sowaflep + sorunoff + sowafldp + a term associated to 
    197197         !    internal damping to Levitus that can be diagnosed from others 
     
    237237#endif 
    238238 
    239 #if ( defined key_coupled && ! defined key_ice_lim )  
     239#if ( defined key_coupled && ! defined key_lim2 )  
    240240         CALL histdef( nid_T, "sohefldp", "Surface Heat Flux: Damping"         , "W/m2"   ,   &  ! qrp 
    241241            &          jpi, jpj, nh_T, 1  , 1, 1  , -99 , 32, clop, zsto, zout ) 
     
    259259#endif 
    260260 
    261 #if defined key_ice_lim && defined key_coupled 
     261#if defined key_lim2 && defined key_coupled 
    262262         CALL histdef( nid_T,"soicetem" , "Ice Surface Temperature"            , "K"      ,   &  ! tn_ice 
    263263            &          jpi, jpj, nh_T, 1  , 1, 1  , -99 , 32, clop, zsto, zout ) 
     
    364364      CALL histwrite( nid_T, "sosstsst", it, tn(:,:,1)     , ndim_hT, ndex_hT )   ! sea surface temperature 
    365365      CALL histwrite( nid_T, "sosaline", it, sn(:,:,1)     , ndim_hT, ndex_hT )   ! sea surface salinity 
    366 #if ! defined key_dynspg_rl && defined key_ice_lim 
     366#if ! defined key_dynspg_rl && defined key_lim2 
    367367      CALL histwrite( nid_T, "iowaflup", it, fsalt(:,:)    , ndim_hT, ndex_hT )   ! ice=>ocean water flux 
    368368      CALL histwrite( nid_T, "sowaflep", it, fmass(:,:)    , ndim_hT, ndex_hT )   ! atmos=>ocean water flux 
     
    396396      CALL histwrite( nid_T, "sosafldp", it, zw2d          , ndim_hT, ndex_hT )   ! salt flux damping 
    397397#endif 
    398 #if ( defined key_coupled && ! defined key_ice_lim )  
     398#if ( defined key_coupled && ! defined key_lim2 )  
    399399      CALL histwrite( nid_T, "sohefldp", it, qrp           , ndim_hT, ndex_hT )   ! heat flux damping 
    400400      CALL histwrite( nid_T, "sowafldp", it, erp           , ndim_hT, ndex_hT )   ! freshwater flux damping 
     
    411411      CALL histwrite( nid_T, "sohtc300", it, htc3          , ndim_hT, ndex_hT )   ! first 300m heaat content 
    412412#endif 
    413 #if defined key_ice_lim &&  defined key_coupled  
     413#if defined key_lim2 &&  defined key_coupled  
    414414      CALL histwrite( nid_T, "soicetem", it, tn_ice        , ndim_hT, ndex_hT )   ! surf. ice temperature 
    415415      CALL histwrite( nid_T, "soicealb", it, alb_ice       , ndim_hT, ndex_hT )   ! ice albedo 
  • branches/dev_001_SBC/NEMO/C1D_SRC/icestp1d.F90

    r714 r881  
    66   !! History :   9.0  !  04-10  (C. Ethe)  from icestp, 1D configuration 
    77   !!---------------------------------------------------------------------- 
    8 #if defined key_cfg_1d && defined key_ice_lim 
     8#if defined key_cfg_1d && defined key_lim2 
    99   !!---------------------------------------------------------------------- 
    1010   !!   'key_cfg_1d'  .AND.                                1D Configuration 
    11    !!   'key_ice_lim'                                     Lim sea-ice model 
     11   !!   'key_lim2'                                        Lim sea-ice model 
    1212   !!---------------------------------------------------------------------- 
    1313   !!---------------------------------------------------------------------- 
     
    1818   USE in_out_manager  ! I/O manager 
    1919   USE ice_oce         ! ice variables 
    20    USE dom_ice         ! LIM sea-ice domain 
     20   USE dom_ice_2       ! LIM sea-ice domain 
    2121   USE sbc_oce         ! surface boundary condition: ocean 
    2222   USE sbc_ice         ! surface boundary condition: ice 
    2323   USE daymod          ! calendar 
    2424   USE phycst          ! Define parameters for the routines 
    25    USE ice             ! ice variables 
     25   USE ice_2           ! ice variables 
    2626   USE lbclnk          ! ocean lateral boundary conditions (or mpp link) 
    27    USE limthd 
    28    USE limwri 
    29    USE limrst 
     27   USE limthd_2 
     28   USE limwri_2 
     29   USE limrst_2 
    3030 
    3131   USE tradmp          ! damping salinity trend 
Note: See TracChangeset for help on using the changeset viewer.