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 |
---|
10 | do_parallel = true, ! Use OpenMP parallelization? |
---|
11 | nblocksize = 32, ! Number of columns to process per thread |
---|
12 | do_save_inputs = true, ! Save inputs in "inputs.nc"? |
---|
13 | ! Verbosity level: 0=none, 1=warning, 2=info, 3=progress, 4=detailed, 5=debug |
---|
14 | iverbose = 3, |
---|
15 | istartcol = 0, ! Use full range of columns by default |
---|
16 | iendcol = 0, |
---|
17 | nrepeat = 1, |
---|
18 | / |
---|
19 | ! |
---|
20 | ! The following namelist controls the behaviour of the SPARTACUS |
---|
21 | ! radiation code |
---|
22 | ! |
---|
23 | &radiation |
---|
24 | do_sw = true, ! Compute shortwave fluxes? |
---|
25 | do_lw = true, ! Compute longwave fluxes? |
---|
26 | do_sw_direct = true, ! Compute direct downward shortwave fluxes? |
---|
27 | do_clear = true, ! Compute clear-sky fluxes? |
---|
28 | directory_name = "../../data", ! Location of configuration files |
---|
29 | liquid_model_name = "SOCRATES", ! Liquid droplet scattering model |
---|
30 | ice_model_name = "Fu-IFS", ! Ice particle scattering model |
---|
31 | sw_solver_name = "McICA", |
---|
32 | lw_solver_name = "McICA", |
---|
33 | overlap_scheme_name = "Exp-Exp", ! Exp-Ran, Max-Ran or Exp-Exp |
---|
34 | cloud_fraction_threshold = 0.001e-3, ! |
---|
35 | do_lw_aerosol_scattering= false, ! Aerosols scatter in the longwave? |
---|
36 | do_lw_cloud_scattering = false, ! Clouds scatter in the longwave? |
---|
37 | cloud_inhom_decorr_scaling = 0.5, ! Ratio of overlap decorr len of inhomogeneities to boundaries |
---|
38 | use_beta_overlap = false, |
---|
39 | do_save_radiative_properties = false, ! Save raw radiation properties in radiative_properties.nc? |
---|
40 | do_3d_effects = false, ! Represent 3D effects? |
---|
41 | sw_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 |
---|
44 | iverbose = 1, |
---|
45 | iverbosesetup = 3, |
---|
46 | use_aerosols = true, ! Include aerosols in radiation calculations? |
---|
47 | do_save_spectral_flux = false, ! Save spectral fluxes in output file? |
---|
48 | do_save_gpoint_flux = false, ! Save fluxes per g-point in output file? |
---|
49 | do_lw_derivatives = true, ! Hogan-Bozzo style derivatives for approx updates |
---|
50 | gas_model_name = "RRTMG-IFS", ! Gas model |
---|
51 | do_surface_sw_spectral_flux = true, |
---|
52 | do_fu_lw_ice_optics_bug = true, |
---|
53 | do_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 |
---|
59 | n_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 |
---|
64 | i_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 | / |
---|