source: LMDZ6/trunk/libf/phylmd/ecrad/test/ifs/configCY43R3.nam @ 4773

Last change on this file since 4773 was 4773, checked in by idelkadi, 6 months ago
  • Update of Ecrad in LMDZ The same organization of the Ecrad offline version is retained in order to facilitate the updating of Ecrad in LMDZ and the comparison between online and offline results. version 1.6.1 of Ecrad (https://github.com/lguez/ecrad.git)
  • Implementation of the double call of Ecrad in LMDZ


File size: 3.2 KB
Line 
1! Configuration namelists for ECRAD radiation code
2!
3! The following namelist controls the behaviour of the driver routine,
4! including parallelization options and overriding numbers read from
5! the NetCDF input file
6!
7! This version matches the configuration of ECMWF IFS Cycle 43R3
8!
9&radiation_driver
10do_parallel              = true,   ! Use OpenMP parallelization?
11nblocksize               = 32,      ! Number of columns to process per thread
12do_save_inputs           = true,   ! Save inputs in "inputs.nc"?
13! Verbosity level: 0=none, 1=warning, 2=info, 3=progress, 4=detailed, 5=debug
14iverbose                = 3,
15istartcol               = 0,      ! Use full range of columns by default
16iendcol                 = 0,
17nrepeat                 = 1,
18/
19!
20! The following namelist controls the behaviour of the SPARTACUS
21! radiation code
22!
23&radiation
24do_sw                   = true,           ! Compute shortwave fluxes?
25do_lw                   = true,           ! Compute longwave fluxes?
26do_sw_direct            = true,           ! Compute direct downward shortwave fluxes?
27do_clear                = true,           ! Compute clear-sky fluxes?
28directory_name          = "../../data",      ! Location of configuration files
29liquid_model_name       = "SOCRATES",     ! Liquid droplet scattering model
30ice_model_name          = "Fu-IFS",       ! Ice particle scattering model
31sw_solver_name          = "McICA",
32lw_solver_name          = "McICA",
33overlap_scheme_name     = "Exp-Exp",      ! Exp-Ran, Max-Ran or Exp-Exp
34cloud_fraction_threshold = 0.001e-3,      !
35do_lw_aerosol_scattering= false,          ! Aerosols scatter in the longwave?
36do_lw_cloud_scattering  = false,          ! Clouds scatter in the longwave?
37cloud_inhom_decorr_scaling = 0.5,         ! Ratio of overlap decorr len of inhomogeneities to boundaries
38use_beta_overlap        = false,
39do_save_radiative_properties = false,     ! Save raw radiation properties in radiative_properties.nc?
40do_3d_effects           = false,          ! Represent 3D effects?
41sw_encroachment_name    = "Maximum",
42! Verbosity level: 0=none, 1=warning, 2=info, 3=progress, 4=detailed, 5=debug
43! Separate verbosity specified for setup and ordinary execution
44iverbose                = 1,
45iverbosesetup           = 3,
46use_aerosols            = true,           ! Include aerosols in radiation calculations?
47do_save_spectral_flux   = false,           ! Save spectral fluxes in output file?
48do_save_gpoint_flux     = false,           ! Save fluxes per g-point in output file?
49do_lw_derivatives       = true,            ! Hogan-Bozzo style derivatives for approx updates
50gas_model_name          = "RRTMG-IFS",     ! Gas model
51do_surface_sw_spectral_flux = true,
52do_fu_lw_ice_optics_bug = true,
53do_sw_delta_scaling_with_gases = true,
54!
55! 12 IFS aerosol classes stored in aerosol_ifs_rrtm.nc: 1-3 Sea salt,
56! 4-6 Boucher desert dust, 7 hydrophilic organics, 8 hydrophobic
57! organics, 9&10 hydrophobic black carbon, 11 ammonium sulphate, 12
58! inactive SO2
59n_aerosol_types       = 12,              ! Aerosols are deactivated if this is zero
60!
61! Indices to the aerosol optical properties in aerosol_ifs_rrtm.nc,
62! for each class, where negative numbers index hydrophilic aerosol
63! types and positive numbers index hydrophobic aerosol types
64i_aerosol_type_map = -1, -2, -3, 1, 2, 3, -4, 10, 11, 11, -5, 14,
65! Tegen types are rather more simple
66!i_aerosol_type_map = 2, 2, 2, 3, 3, 3, 1, 1, 4, 4, 6, 5,
67/
Note: See TracBrowser for help on using the repository browser.