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 6096 – NEMO

Changeset 6096


Ignore:
Timestamp:
2015-12-17T15:49:53+01:00 (8 years ago)
Author:
timgraham
Message:

Minor fixes for AGRIF as in ticket #1577

Location:
branches/2015/dev_agrif_v3_6_STABLE/NEMOGCM
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_agrif_v3_6_STABLE/NEMOGCM/CONFIG/ORCA2_LIM/EXP00/1_namelist_cfg

    r6092 r6096  
    66!----------------------------------------------------------------------- 
    77   cn_exp      = "Agulhas" !  experience name  
    8    nn_itend    =     480   !  last  time step 
     8   nn_itend    =   10950   !  last  time step 
    99   nn_stock    =   10950   !  frequency of creation of a restart file (modulo referenced to 1) 
    1010   nn_write    =   10950   !  frequency of write in the output file   (modulo referenced to nn_it000) 
  • branches/2015/dev_agrif_v3_6_STABLE/NEMOGCM/CONFIG/ORCA2_LIM/EXP00/iodef.xml

    r6092 r6096  
    205205 
    206206   <file id="file3" name_suffix="_grid_U" description="ocean U grid variables" > 
    207      <field field_ref="suoce"        name="uos"     long_name="sea_surface_x_velocity"    /> 
     207     <field field_ref="ssu"          name="uos"     long_name="sea_surface_x_velocity"    /> 
    208208     <field field_ref="uoce"         name="uo"      long_name="sea_water_x_velocity"      /> 
    209209     <field field_ref="utau"         name="tauuo"   long_name="surface_downward_x_stress" /> 
     
    214214    
    215215   <file id="file4" name_suffix="_grid_V" description="ocean V grid variables" > 
    216      <field field_ref="svoce"        name="vos"     long_name="sea_surface_y_velocity"    /> 
     216     <field field_ref="ssv"          name="vos"     long_name="sea_surface_y_velocity"    /> 
    217217     <field field_ref="voce"         name="vo"      long_name="sea_water_y_velocity"      /> 
    218218     <field field_ref="vtau"         name="tauvo"   long_name="surface_downward_y_stress" /> 
  • branches/2015/dev_agrif_v3_6_STABLE/NEMOGCM/NEMO/OPA_SRC/SBC/sbcisf.F90

    r6092 r6096  
    5353   REAL(wp)   , PUBLIC, ALLOCATABLE, SAVE, DIMENSION (:,:)     ::  risfLeff               !:effective length (Leff) BG03 nn_isf==2 
    5454   REAL(wp)   , PUBLIC, ALLOCATABLE, SAVE, DIMENSION (:,:)     ::  ttbl, stbl, utbl, vtbl !:top boundary layer variable at T point 
    55 #if defined key_agrif 
    56    ! AGRIF can not handle these arrays as integers. The reason is a mystery but problems avoided by declaring them as reals 
    57    REAL(wp),    PUBLIC, ALLOCATABLE, SAVE, DIMENSION (:,:)     ::  misfkt, misfkb         !:Level of ice shelf base 
    58                                                                                           !: (first wet level and last level include in the tbl) 
    59 #else 
    6055   INTEGER,    PUBLIC, ALLOCATABLE, SAVE, DIMENSION (:,:)     ::  misfkt, misfkb         !:Level of ice shelf base 
    61 #endif 
    6256 
    6357 
  • branches/2015/dev_agrif_v3_6_STABLE/NEMOGCM/NEMO/OPA_SRC/TRA/traadv_eiv.F90

    r6092 r6096  
    212212      CHARACTER(len=3) ::   cdtype 
    213213      REAL, DIMENSION(:,:,:) ::   pun, pvn, pwn 
    214       WRITE(*,*) 'tra_adv_eiv: You should not have seen this print! error?', kt, cdtype, pun(1,1,1), pvn(1,1,1), pwn(1,1,1) 
     214      WRITE(*,*) 'tra_adv_eiv: You should not have seen this print! error?', & 
     215          &  kt, cdtype, pun(1,1,1), pvn(1,1,1), pwn(1,1,1) 
    215216   END SUBROUTINE tra_adv_eiv 
    216217#endif 
  • branches/2015/dev_agrif_v3_6_STABLE/NEMOGCM/NEMO/TOP_SRC/PISCES/P2Z/p2zsms.F90

    r6092 r6096  
    8484 
    8585   !!====================================================================== 
    86 END MODULE  p2zsms 
     86END MODULE p2zsms 
  • branches/2015/dev_agrif_v3_6_STABLE/NEMOGCM/SETTE/prepare_exe_dir.sh

    r6092 r6096  
    7070export EXE_DIR=${CONFIG_DIR}/${NEW_CONF}/${TEST_NAME} 
    7171 
    72 cp -r ${CONFIG_DIR}/${NEW_CONF}/EXP00/* ${EXE_DIR}/. 
     72cp -rL ${CONFIG_DIR}/${NEW_CONF}/EXP00/* ${EXE_DIR}/. 
    7373cp -r ${SETTE_DIR}/iodef_sette.xml ${EXE_DIR}/iodef.xml 
    7474cd ${EXE_DIR} 
Note: See TracChangeset for help on using the changeset viewer.