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.
ticket/0850 (diff) – NEMO

Changes between Version 2 and Version 3 of ticket/0850


Ignore:
Timestamp:
2011-07-20T14:27:16+02:00 (13 years ago)
Author:
poddo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ticket/0850

    v2 v3  
    1111The new set of bulk formulae are: 
    1212 -- Reed 1975 for the Solar Radiation 
     13 
    1314 -- Bignami 1995 for the Net long wave radiation 
     15 
    1416 -- Kondo 1975 For the Sensible Heat Flux 
     17 
    1518 -- Gill 1982 for the Latent Heat Flux 
     19 
    1620 -- Hellerman and Rosenstein 1983 for the Drag Coeff. (Cd) 
     21 
     22Requested input data are: 
     23 
     24 -- 10m wind velocity (i and j componets) (m/s) 
     25 
     26 -- Dew point Temperature (k) 
     27 
     28 -- Cloud Cover (%) 
     29 
     30 -- 10m Air Temperature (K) 
     31 
     32 -- Mean Sea Level Pressure (hPa) 
     33 
     34 -- Total Precipitation (kg/m2/s) 
     35 
     36The routine provides: 
     37 
     38 -- Meridional and Zonal component of the wind stress 
     39 
     40 -- Wind Stress module at T-point 
     41 
     42 -- 10m wind module at t-point 
     43 
     44 -- qns and qsr non-solar and solar heat flux (and all the component of the non solar: Sensible latent and long) 
     45 
     46 -- emp and emps (evaporation - precipitation) 
     47 
     48 
     49 
     50  
     51 
    1752---- 
    1853=== Testing === 
     
    4782---- 
    4883=== System Changes === 
    49 ||Does your change alter namelists?||!'''YES/NO !'''|| 
    50 ||Does your change require a change in compiler options?||!'''YES/NO !'''|| 
     84||Does your change alter namelists?||!'''YES !'''|| 
     85||Does your change require a change in compiler options?||!'''NO !'''|| 
    5186 
    5287If any of these apply, please document the changes required here....... 
     88in the namsbc the following bolean shoul;d be included : ln_blk_ecmwf 
     89a dedicated namelist containing the files specification must be included: 
     90&namsbc_ecmwf   !   namsbc_ecmwf  MFS bulk formulea 
     91!----------------------------------------------------------------------- 
     92!              !  file name  ! frequency (hours) ! variable  ! time interp. !  clim  ! 'yearly'/ ! weights  ! rotation ! 
     93!              !             !  (if <0  months)  !   name    !   (logical)  !  (T/F) ! 'monthly' ! filename ! pairing  ! 
     94   sn_wndi     =   'ecmwf'   ,        X          , 'u10'     ,    .true.    , .false. , 'daily'  ,'XX_bicubic.nc' , '' 
     95   sn_wndj     =   'ecmwf'   ,        X          , 'v10'     ,    .true.    , .false. , 'daily'  ,'XX_bicubic.nc' , '' 
     96   sn_clc      =   'ecmwf'   ,        X          , 'clc'     ,    .true.    , .false. , 'daily'  ,'XX_bilinear.nc', '' 
     97   sn_msl      =   'ecmwf'   ,        X          , 'msl'     ,    .true.    , .false. , 'daily'  ,'XX_bicubic.nc' , '' 
     98   sn_tair     =   'ecmwf'   ,        X          , 't2'      ,    .true.    , .false. , 'daily'  ,'XX_bicubic.nc' , '' 
     99   sn_rhm      =   'ecmwf'   ,        X          , 'rh'      ,    .true.    , .false. , 'daily'  ,'XX_bilinear.nc', '' 
     100   sn_prec     ='precip_cmap',        X          , 'precip'  ,    .true.    , .true.  , 'yearly' ,''                         , '' 
     101 
     102   cn_dir      = '/home/user/NEMO/DATA/ECMWF_nc/'      !  root directory for the location of the bulk files 
     103   nn_qbw      = 4         !  0/1/2/3/4 type of bulk formula used to compute long wave radiation 
     104 
    53105 
    54106----