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