Update Documentation authored by Doriann Blain's avatar Doriann Blain
...@@ -149,6 +149,22 @@ The `atmosphere_parameters` section handles the atmospheric settings. ...@@ -149,6 +149,22 @@ The `atmosphere_parameters` section handles the atmospheric settings.
- integer - integer
- number of clouds in atmosphere - number of clouds in atmosphere
- e.g. `n_clouds = 2`. This parameter must match the number of elements in `cloud_names`, `cloud_particle_radius`, `sedimentation_parameter`, `cloud_particle_density`, `cloud_molar_mass` and `reference_wavenumber` (see [`clouds_parameters`](#clouds_parameters)). - e.g. `n_clouds = 2`. This parameter must match the number of elements in `cloud_names`, `cloud_particle_radius`, `sedimentation_parameter`, `cloud_particle_density`, `cloud_molar_mass` and `reference_wavenumber` (see [`clouds_parameters`](#clouds_parameters)).
- `eddy_mode`
- string
- eddy diffusion coefficient (Kzz) mode ('constant'|'Ackerman'|'AckermanConvective'|'infinity')
- e.g. `eddy_mode = 'AckermanConvective'`. `'constant'` mean that the Kzz is constant within the pressure grid, set to the value of `eddy_diffusion_coefficient`. `'Ackerman'` mean that Kzz is calculated using the method from Ackerman et al. `'AckermanConvective'` mean that Kzz is calculated using the method from Ackerman et al, but taking into account the convective flux. `'infinity'` is the same than AckermanConvective, but if `cloud_mode = 'fixedRadius'` (see [`clouds_parameters`](#clouds_parameters)), the cloud will extend to the top of the atmosphere (no sedimentation).
- `eddy_diffusion_coefficient`
- float
- (cm2.s-1) eddy diffusion coefficient
- e.g. `eddy_diffusion_coefficient = 1e8`. Used if `eddy_mode = 'constant'`.
- `pressure_min`
- float
- (Pa) pressure at the top of the atmospheric grid
- e.g. `pressure_min = 1e-1`. Used only if `use_pressure_grid` is `False`.
- `pressure_max`
- float
- (Pa) pressure at the bottom of the atmospheric grid
- e.g. `pressure_min = 1e7`. Used only if `use_pressure_grid` is `False`.
## species_parameters ## species_parameters
... ...
......