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 3778 for branches/2013/dev_r3411_CNRS4_IOCRS/NEMOGCM/CONFIG – NEMO

Ignore:
Timestamp:
2013-02-08T11:40:58+01:00 (11 years ago)
Author:
cetlod
Message:

2013/dev_r3411_CNRS4_IOCRS/NEMOGCM : improvment of outputs coarsening

Location:
branches/2013/dev_r3411_CNRS4_IOCRS/NEMOGCM/CONFIG/ORCA2_LIM_CRS
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r3411_CNRS4_IOCRS/NEMOGCM/CONFIG/ORCA2_LIM_CRS/EXP00/iodef.xml

    r3622 r3778  
    291291         <field id="soce_crs"   description="salinity"                unit="psu"  axis_ref="deptht" /> 
    292292   <field id="ssh_crs"    description="sea surface height"      unit="m"                      /> 
     293        <field id="ssh2_crs"    description="sea surface height"      unit="m"                      /> 
    293294   <field id="sst_crs"    description="sea surface temperature" unit="degC"                   /> 
    294295   <field id="sss_crs"    description="sea surface salinity"    unit="psu"                    /> 
     
    311312      <group id="gcrs_W"  axis_ref="depthw" grid_ref="grid_W_crs"> 
    312313   <field id="woce_crs"   description="ocean vertical velocity"   unit="m/s" /> 
     314        <field id="woce2_crs"   description="ocean vertical velocity"   unit="m/s" /> 
    313315   <field id="wocet_crs"  description="ocean vertical velocity times temperature" unit="degC.m/s" /> 
    314316   <field id="woces_crs"  description="ocean vertical velocity times salinity"    unit="psu.m/s" /> 
     
    347349             <field ref="soce_crs"    name="vosaline" /> 
    348350             <field ref="ssh_crs"     name="sossheig" /> 
     351             <field ref="ssh2_crs"    name="sossheig2" /> 
    349352             <field ref="hdiv_crs"    name="vohdiver" /> 
    350353              <field ref="sst_crs"     name="sosstsst" /> 
     
    431434           <field ref="soce_crs"    name="vosaline" /> 
    432435           <field ref="ssh_crs"     name="sossheig" /> 
     436           <field ref="ssh2_crs"     name="sossheig2" /> 
    433437      <field ref="sst_crs"     name="sosstsst" /> 
    434438      <field ref="sss_crs"     name="sosaline" /> 
     
    474478        <file id="5d_gcrs_W" name="auto" description="ocean U grid coarsened variables" > 
    475479           <field ref="woce_crs"    name="vovecrtz"  /> 
     480           <field ref="woce2_crs"   name="vovecrtz2"  /> 
    476481           <field ref="wocet_crs"   name="vovewoct" /> 
    477482           <field ref="woces_crs"   name="vovewocs" /> 
  • branches/2013/dev_r3411_CNRS4_IOCRS/NEMOGCM/CONFIG/ORCA2_LIM_CRS/MY_SRC/iom.F90

    r3738 r3778  
    114114      CALL set_grid( "grid_V", glamv, gphiv ) 
    115115      CALL set_grid( "grid_W", glamt, gphit ) 
    116  
     116      !cc 
     117      IF(ln_crs) THEN 
    117118      ! horizontal coarse grid definition 
    118       CALL setgrid_crs( "grid_T_crs", glamt_crs, gphit_crs ) 
    119       CALL setgrid_crs( "grid_U_crs", glamu_crs, gphiu_crs ) 
    120       CALL setgrid_crs( "grid_V_crs", glamv_crs, gphiv_crs ) 
    121       CALL setgrid_crs( "grid_W_crs", glamt_crs, gphit_crs ) 
     119         CALL setgrid_crs( "grid_T_crs", glamt_crs, gphit_crs ) 
     120         CALL setgrid_crs( "grid_U_crs", glamu_crs, gphiu_crs ) 
     121         CALL setgrid_crs( "grid_V_crs", glamv_crs, gphiv_crs ) 
     122         CALL setgrid_crs( "grid_W_crs", glamt_crs, gphit_crs ) 
     123      ENDIF 
    122124 
    123125      ! vertical grid definition 
  • branches/2013/dev_r3411_CNRS4_IOCRS/NEMOGCM/CONFIG/ORCA2_LIM_CRS/MY_SRC/lbclnk.F90

    r3622 r3778  
    161161            END SELECT 
    162162            !                                          ! North fold 
    163             pt3d( 1 ,jpj,:) = zland 
    164             pt3d(jpi,jpj,:) = zland 
     163           
    165164            CALL lbc_nfd( pt3d(:,:,:), cd_type, psgn ) 
    166165            ! 
     
    249248               pt2d(:, 1 ) = zland 
    250249            END SELECT 
    251             !                                          ! North fold 
    252             pt2d( 1 ,1  ) = zland  
    253             pt2d( 1 ,jpj) = zland  
    254             pt2d(jpi,jpj) = zland 
     250             
    255251            CALL lbc_nfd( pt2d(:,:), cd_type, psgn ) 
    256252            ! 
Note: See TracChangeset for help on using the changeset viewer.