source: LMDZ6/trunk/libf/phylmd/ecrad/test/ifs/configCY47R1.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: 4.3 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 47R1:
8! compared to 46R1, the surface shortwave albedo and longwave
9! emissivity mappings are specified
10!
11&radiation_driver
12do_parallel              = true,   ! Use OpenMP parallelization?
13nblocksize               = 80,      ! Number of columns to process per thread
14do_save_inputs           = false,   ! Save inputs in "inputs.nc"?
15! Verbosity level: 0=none, 1=warning, 2=info, 3=progress, 4=detailed, 5=debug
16iverbose                = 2,
17istartcol               = 0,      ! Use full range of columns by default
18iendcol                 = 0,
19nrepeat                 = 1,
20cloud_separation_scale_toa = 14000.0,
21cloud_separation_scale_surface = 2500.0,
22cloud_separation_scale_power = 3.5,
23cloud_inhom_separation_factor = 0.75,
24!do_save_aerosol_optics = false,
25do_save_net_fluxes = false,
26do_write_double_precision = false,
27/
28!
29! The following namelist controls the behaviour of the SPARTACUS
30! radiation code
31!
32&radiation
33do_sw                   = true,           ! Compute shortwave fluxes?
34do_lw                   = true,           ! Compute longwave fluxes?
35do_sw_direct            = true,           ! Compute direct downward shortwave fluxes?
36do_clear                = true,           ! Compute clear-sky fluxes?
37directory_name          = "../../data",      ! Location of configuration files
38use_general_cloud_optics = false,
39use_general_aerosol_optics = false,
40liquid_model_name       = "SOCRATES",     ! Liquid droplet scattering model
41ice_model_name          = "Fu-IFS",       ! Ice particle scattering model
42sw_solver_name          = "McICA",
43lw_solver_name          = "McICA",
44overlap_scheme_name     = "Exp-Exp",      ! Exp-Ran, Max-Ran or Exp-Exp
45cloud_fraction_threshold = 0.001e-3,      !
46do_lw_aerosol_scattering= false,          ! Aerosols scatter in the longwave?
47do_lw_cloud_scattering  = true,           ! Clouds scatter in the longwave?
48cloud_inhom_decorr_scaling = 0.5,         ! Ratio of overlap decorr len of inhomogeneities to boundaries
49use_beta_overlap        = false,
50use_vectorizable_generator = false,
51do_save_radiative_properties = false,     ! Save raw radiation properties in radiative_properties.nc?
52do_3d_effects           = false,          ! Represent 3D effects?
53sw_entrapment_name      = "Explicit",     ! Zero, Edge-only, Explicit, Non-fractal, Maximum are possible
54! Verbosity level: 0=none, 1=warning, 2=info, 3=progress, 4=detailed, 5=debug
55! Separate verbosity specified for setup and ordinary execution
56iverbose                = 1,
57iverbosesetup           = 2,
58use_aerosols            = true,           ! Include aerosols in radiation calculations?
59do_save_spectral_flux   = true,           ! Save spectral fluxes in output file?
60do_save_gpoint_flux     = false,           ! Save fluxes per g-point in output file?
61do_lw_derivatives       = true,            ! Hogan-Bozzo style derivatives for approx updates
62gas_model_name          = "RRTMG-IFS",     ! Gas model
63do_surface_sw_spectral_flux = false,
64do_fu_lw_ice_optics_bug = false,
65do_sw_delta_scaling_with_gases = false,
66do_canopy_fluxes_lw     = true,
67do_canopy_fluxes_sw     = true,
68!do_cloud_aerosol_per_sw_g_point=false
69!
70! SURFACE ALBEDO AND EMISSIVITY
71do_nearest_spectral_sw_albedo = false,
72sw_albedo_wavelength_bound(1:5) = 0.25e-6, 0.44e-6, 0.69e-6, 1.19e-6, 2.38e-6,
73i_sw_albedo_index(1:6) = 1,2,3,4,5,6,
74do_nearest_spectral_lw_emiss = true,
75lw_emiss_wavelength_bound(1:2) = 8.0e-6, 13.0e-6,
76i_lw_emiss_index(1:3) = 1,2,1,
77do_weighted_surface_mapping = false, ! false=less accurate, but consistent with cycle 47r1
78!
79! AEROSOL PROPERTIES
80!aerosol_optics_override_file_name = 'aerosol_ifs_rrtm_46R1_with_NI_AM.nc'
81! 12 IFS aerosol classes stored in aerosol_ifs_rrtm.nc: 1-3 Sea salt,
82! 4-6 Boucher desert dust, 7 hydrophilic organics, 8 hydrophobic
83! organics, 9&10 hydrophobic black carbon, 11 ammonium sulphate, 12
84! inactive SO2
85n_aerosol_types       = 12,              ! Aerosols are deactivated if this is zero
86!
87! Indices to the aerosol optical properties in aerosol_ifs_rrtm.nc,
88! for each class, where negative numbers index hydrophilic aerosol
89! types and positive numbers index hydrophobic aerosol types
90i_aerosol_type_map = -1, -2, -3, 1, 2, 3, -4, 10, 11, 11, -5, 14,
91! Tegen types are rather more simple
92!i_aerosol_type_map = 2, 2, 2, 3, 3, 3, 1, 1, 4, 4, 6, 5,
93/
Note: See TracBrowser for help on using the repository browser.