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 5282 for branches/2015/dev_r5056_CMCC4_simplification/NEMOGCM/TOOLS – NEMO

Ignore:
Timestamp:
2015-05-18T17:19:50+02:00 (9 years ago)
Author:
diovino
Message:

Dev. branch CMCC4_simplification ticket #1456

Location:
branches/2015/dev_r5056_CMCC4_simplification/NEMOGCM/TOOLS
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5056_CMCC4_simplification/NEMOGCM/TOOLS/COMPILE/tools.txt

    r2281 r5282  
    1 REBUILD  
     1REBUILD_NEMO  
  • branches/2015/dev_r5056_CMCC4_simplification/NEMOGCM/TOOLS/NESTING/src/agrif_create_restart.f90

    r2455 r5282  
    411411        ENDIF 
    412412        ! 
    413      CASE('nfice','nfbulk','kt','ndastp','adatrj','rdt','rdttra1')  
     413     CASE('nfice','nfbulk','kt','ndastp','adatrj','rdt')  
    414414        IF(.NOT. dimg ) THEN 
    415415           WRITE(*,*) 'copy ',TRIM(Ncdf_varname(i)) 
     
    417417              CALL Read_Ncdf_var(TRIM(Ncdf_varname(i)),TRIM(restart_file),tabtemp0dreal)   
    418418              SELECT CASE (TRIM(Ncdf_varname(i))) 
    419               CASE('rdt','rdttra1') 
     419              CASE('rdt') 
    420420                 tabtemp0dreal = tabtemp0dreal/rhot 
    421421              CASE('kt') 
  • branches/2015/dev_r5056_CMCC4_simplification/NEMOGCM/TOOLS/OBSTOOLS/src/in_out_manager.F90

    r3000 r5282  
    3737   INTEGER       ::   nn_write      =   10        !: model standard output frequency 
    3838   INTEGER       ::   nn_stock      =   10        !: restart file frequency 
    39    LOGICAL       ::   ln_dimgnnn    = .FALSE.     !: type of dimgout. (F): 1 file for all proc 
    40                                                        !:                  (T): 1 file per proc 
    4139   LOGICAL       ::   ln_mskland    = .FALSE.     !: mask land points in NetCDF outputs (costly: + ~15%) 
    4240   LOGICAL       ::   ln_clobber    = .FALSE.     !: clobber (overwrite) an existing file 
  • branches/2015/dev_r5056_CMCC4_simplification/NEMOGCM/TOOLS/SIREN/cfg/variable.cfg

    r5037 r5282  
    4141kt           |                |      |   |                                  |                    |                
    4242rdt          |                |      |   |                                  |                    |                
    43 rdttra1      |                |      |   |                                  |                    |                
    4443utau_b       |                | XYT  | U |surface_downward_eastward_stress  |                    |                
    4544vtau_b       |                | XYT  | V |surface_downward_northward_stress |                    |                
  • branches/2015/dev_r5056_CMCC4_simplification/NEMOGCM/TOOLS/SIREN/src/vgrid.f90

    r5037 r5282  
    229229            dd_gdepw(jk) = ( dl_zw - 1.0 ) * dl_za1 
    230230            dd_gdept(jk) = ( dl_zt - 1.0 ) * dl_za1 
    231             dd_e3w  (jk) =  dl_za1 
    232             dd_e3t  (jk) =  dl_za1 
     231            dd_e3w(jk) =  dl_za1 
     232            dd_e3t(jk) =  dl_za1 
    233233         END DO 
    234234 
     
    244244            &                dl_za1 * dl_zacr * LOG( COSH( (dl_zt-dl_zkth)/dl_zacr ) ) + & 
    245245            &                dl_za2 * dl_zacr2* LOG( COSH( (dl_zt-dl_zkth2)/dl_zacr2 ) ) ) 
    246             dd_e3w  (jk) =             dl_za0 + & 
     246            dd_e3w(jk) =             dl_za0 + & 
    247247            &                          dl_za1 * TANH(      (dl_zw-dl_zkth)/dl_zacr   ) + & 
    248248            &                          dl_za2 * TANH(      (dl_zw-dl_zkth2)/dl_zacr2 ) 
    249             dd_e3t  (jk) =             dl_za0 + & 
     249            dd_e3t(jk) =             dl_za0 + & 
    250250            &                          dl_za1 * TANH(      (dl_zt-dl_zkth)/dl_zacr   ) + & 
    251251            &                          dl_za2 * TANH(      (dl_zt-dl_zkth2)/dl_zacr2 ) 
Note: See TracChangeset for help on using the changeset viewer.