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 | &radiation_driver |
---|
8 | do_parallel = true, ! Use OpenMP parallelization? |
---|
9 | nblocksize = 8, ! Number of columns to process per thread |
---|
10 | sw_albedo = 0.08, ! Override shortwave albedo |
---|
11 | !lw_emissivity = 1.0, ! Override longwave emissivity |
---|
12 | ! Verbosity level: 0=none, 1=warning, 2=info, 3=progress, 4=detailed, 5=debug |
---|
13 | iverbose = 2, |
---|
14 | solar_irradiance_override= 1366.0,! Total solar irradiance (W m-2) |
---|
15 | |
---|
16 | ! Note that the overlap parameters computed from adjacent cloud |
---|
17 | ! fractions lead to the total cloud cover being overestimated, so an |
---|
18 | ! adjustment is used to go half-way to matching the true cloud cover |
---|
19 | ! of the scene (see Hogan et al. 2016) |
---|
20 | overlap_decorr_length_scaling=1.13, |
---|
21 | effective_size_scaling = 1.0, |
---|
22 | / |
---|
23 | ! |
---|
24 | ! The following namelist controls the behaviour of the ECRAD |
---|
25 | ! radiation code |
---|
26 | ! |
---|
27 | &radiation |
---|
28 | use_general_cloud_optics = false, |
---|
29 | use_general_aerosol_optics = false, |
---|
30 | do_3d_effects = true, ! Represent 3D effects? |
---|
31 | do_lw_side_emissivity = true, |
---|
32 | n_regions = 3, ! Number of regions (2=clear+cloudy, 3=clear+2cloudy) |
---|
33 | do_3d_lw_multilayer_effects = true, |
---|
34 | min_cloud_effective_size= 1.0e-6, ! Minimum cloud effective size, for stability (m) |
---|
35 | sw_entrapment_name = "Maximum", ! "Maximum" = old behaviour ("Explicit" is the best) |
---|
36 | overhang_factor = 1.0, |
---|
37 | directory_name = "../../data", ! Location of configuration files |
---|
38 | sw_solver_name = "SPARTACUS", |
---|
39 | lw_solver_name = "SPARTACUS", |
---|
40 | cloud_pdf_shape_name = "Gamma", |
---|
41 | overhead_sun_factor = 0.06, |
---|
42 | do_lw_cloud_scattering = true, ! Clouds scatter in the longwave? |
---|
43 | cloud_inhom_decorr_scaling = 0.5, |
---|
44 | do_save_radiative_properties = false, ! Save raw radiation properties in radiative_properties.nc? |
---|
45 | ! Verbosity level: 0=none, 1=warning, 2=info, 3=progress, 4=detailed, 5=debug |
---|
46 | iverbose = 1, |
---|
47 | use_aerosols = false, ! Include aerosols in radiation calculations? |
---|
48 | do_save_spectral_flux = false, ! Save spectral fluxes in output file? |
---|
49 | do_save_gpoint_flux = false, ! Save fluxes per g-point in output file? |
---|
50 | gas_model_name = "RRTMG-IFS", ! Gas model |
---|
51 | / |
---|