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