1 | ! Configuration namelists for ECRAD radiation code |
---|
2 | ! This version is for use with the CKDMIP profiles (clear-sky only) |
---|
3 | ! using the RRTMG gas-optics scheme |
---|
4 | ! |
---|
5 | ! The following namelist controls the behaviour of the driver routine, |
---|
6 | ! including parallelization options and overriding numbers read from |
---|
7 | ! the NetCDF input file. |
---|
8 | ! |
---|
9 | &radiation_driver |
---|
10 | do_parallel = true, ! Use OpenMP parallelization? |
---|
11 | nblocksize = 1000, ! Number of columns to process per thread |
---|
12 | do_save_inputs = false, ! 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, ! 0 = Use full range of columns by default |
---|
16 | iendcol = 0, ! 0 = Use full range of columns by default |
---|
17 | nrepeat = 1, |
---|
18 | lw_emissivity = 1.0, |
---|
19 | vmr_suffix_str = "_mole_fraction_fl", |
---|
20 | cos_solar_zenith_angle = 0.5, |
---|
21 | sw_albedo = 0.15, |
---|
22 | solar_irradiance_override=1361.0, |
---|
23 | / |
---|
24 | ! |
---|
25 | ! The following namelist controls the behaviour of the SPARTACUS |
---|
26 | ! radiation code |
---|
27 | ! |
---|
28 | &radiation |
---|
29 | do_sw = true, ! Compute shortwave fluxes? |
---|
30 | do_lw = true, ! Compute longwave fluxes? |
---|
31 | do_sw_direct = true, ! Compute direct downward shortwave fluxes? |
---|
32 | do_clear = false, ! Compute clear-sky fluxes? |
---|
33 | directory_name = "../../data", ! Location of configuration files |
---|
34 | sw_solver_name = "Cloudless", |
---|
35 | lw_solver_name = "Cloudless", |
---|
36 | do_save_radiative_properties = false, ! Save raw radiation properties in radiative_properties.nc? |
---|
37 | ! Verbosity level: 0=none, 1=warning, 2=info, 3=progress, 4=detailed, 5=debug |
---|
38 | ! Separate verbosity specified for setup and ordinary execution |
---|
39 | iverbose = 5, |
---|
40 | iverbosesetup = 3, |
---|
41 | use_aerosols = false, ! Include aerosols in radiation calculations? |
---|
42 | do_save_spectral_flux = false, ! Save spectral fluxes in output file? |
---|
43 | do_save_gpoint_flux = false, ! Save fluxes per g-point in output file? |
---|
44 | do_surface_sw_spectral_flux = false, |
---|
45 | do_lw_derivatives = false, ! Hogan-Bozzo style derivatives for approx updates |
---|
46 | gas_model_name = "RRTMG-IFS", ! Gas model |
---|
47 | / |
---|