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 607 for trunk/CONFIG/ORCA2_LIM – NEMO

Changeset 607 for trunk/CONFIG/ORCA2_LIM


Ignore:
Timestamp:
2007-02-20T17:56:15+01:00 (17 years ago)
Author:
opalod
Message:

nemo_v2_update_002 : CT : when using CORE forcing:

  • add a the possibility to use 2m air temperature and specific humidity with 10m wind speed via ln_2m logical
  • add possibility to use Katabatic winds enhancement via ln_kata logical
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/CONFIG/ORCA2_LIM/EXP00/namelist

    r545 r607  
    699699    ln_flork4 = .false. 
    700700/ 
     701!----------------------------------------------------------------------- 
     702!       namcore  CORE 
     703!----------------------------------------------------------------------- 
     704 
     705!  In this version there are 8 files ( jpfile = 8) 
     706!  THE ORDER OF THE FILES MATTER:                       
     707!  1 - precipitation total (rain+snow)                  
     708!  2,3 -  u10,v10 -> scalar wind at 10m in m/s -  ON 'T' GRID POINTS!!! 
     709!  4 - solar radiation (short wave)  in W/m2 
     710!  5 - thermal radiation (long wave) in W/m2 
     711!  6 - specific humidity             in % 
     712!  7 - temperature at 10m            in degrees K 
     713!  8 - precipitation (snow only) 
     714 
     715!  ln_2m      Whether air temperature and humidity are provided at 2m 
     716!  ln_kata    Logical flag to tke into account katabatic winds enhancement 
     717!  clname     file names (256 char max for each) 
     718!  clvarname  name of variable in netcdf file (32 char max) 
     719!  freqh      frequency of fields in the file 
     720!              it is in hours (6 hourly, daily) if positive. 
     721!              if freqh = -12 the file contains 12 monthly data. 
     722&namcore 
     723   ln_2m   = .FALSE. 
     724   ln_kata = .FALSE. 
     725   clname(1) = 'precip_core.nc'  
     726   freqh(1) = -12 
     727   clvarname(1) = 'precip' 
     728   clname(2) = 'u10_core.nc' 
     729   freqh(2) = 24  
     730   clvarname(2) = 'u10' 
     731   clname(3) = 'v10_core.nc' 
     732   freqh(3) = 24 
     733   clvarname(3) = 'v10' 
     734   clname(4) = 'q10_core.nc' 
     735   freqh(4) = 24 
     736   clvarname(4) = 'q10' 
     737   clname(5) = 'tot_solar_core.nc' 
     738   freqh(5) = 24 
     739   clvarname(5) = 'qsw' 
     740   clname(6) = 'therm_rad_core.nc' 
     741   freqh(6) = 24 
     742   clvarname(6) = 'qlw' 
     743   clname(7) = 'temp_10m_core.nc' 
     744   freqh(7) = 24 
     745   clvarname(7) = 't10' 
     746   clname(8) = 'snow_core.nc' 
     747   freqh(8) = -12 
     748   clvarname(8) = 'snow' 
     749/ 
Note: See TracChangeset for help on using the changeset viewer.