Update Documentation authored by Doriann Blain's avatar Doriann Blain
...@@ -433,10 +433,110 @@ Struture of the file: ...@@ -433,10 +433,110 @@ Struture of the file:
| | ├── absorber_is_at_equilibrium | | ├── absorber_is_at_equilibrium
| | | ├── abs1 <- (scalar string) (T|F) if T, abs1 is at eq. | | | ├── abs1 <- (scalar string) (T|F) if T, abs1 is at eq.
| | | ├── ... | | | ├── ...
| | | ── absn | | | ── absn
| | ├── collision_induced_absorptions <- (scalar string) CIAs in model | | ├── collision_induced_absorptions <- (scalar string) CIAs in model
└── outputs <- put here unformatted data | | ├── elemental_abundances
| | | ├── Al <- (scalar float) Al/H ratio in model
| | | ├── ...
| | | └── Zn
| | └── solar_elemental_abundances
| | ├── Al <- (scalar float) Al/H solar ratio
| | ├── ...
| | └── Zn
| └── target
| ├── equatorial_radius_1e5Pa <- (scalar float) r_eq at 10^5 Pa
| ├── internal_temperature <- (scalar float)
| ├── latitude <- (scalar float)
| ├── mass <- (scalar float)
| ├── polar_radius_1e5Pa <- (scalar float) r_pol at 10^5 Pa
| └── radius_1e5Pa <- (scalar float) radius at 10^5 Pa
└── outputs <- model output
├── layers
| ├── clouds
| | ├── opacity
| | | ├── cloud1 <- (array float) cloud 1 tau at reference_wavenumber
| | | ├── ...
| | | └── cloudn
| | ├── particle_radius
| | | ├── cloud1 <- (array float) cloud 1 particle radius
| | | ├── ...
| | | └── cloudn
| | └── volume_mixing_ratio
| | | ├── cloud1 <- (array float) cloud 1 vmr
| | | ├── ...
| | | └── cloudn
| ├── condensates
| | ├── pressure_condensation
| | | ├── cond1 <- (scalar float) pressure of condensation of condensate 1
| | | ├── ...
| | | └── condn
| | ├── volume_mixing_ratio_condensation
| | | ├── cond1 <- (scalar float) vmr at condensation of condensate 1
| | | ├── ...
| | | └── condn
| | └── volume_mixing_ratio_saturation
| | ├── cond1 <- (array float) saturation vmr of condensate 1
| | ├── ...
| | └── condn
| ├── eddy_diffusion_coefficient <- (array float) Kzz in layers
| ├── gravity <- (array float) gravity in layers
| ├── isobaric_molar_heat_capacity<- (array float) C_p in layers
| ├── molar_mass <- (array float) molar mass in layers
| ├── pressure <- (array float) pressure in layers
| ├── temperature <- (array float) temperature in layers
| └── volume_mixing_ratios
| ├── absorbers
| | ├── abs1 <- (array float) vmr of absorbing gas 1
| | ├── ...
| | └── absn
| ├── elements_gas_phase
| | ├── Al <- (array float) weighted sum of the vmr of all gases containing element Al (ex. 0.7 H2, 0.1 H = 1.4 + 0.1 H)
| | ├── ...
| | └── Zn
| └── gases
| ├── gas1 <- (array float) vmr of non-absorbing gas 1
| ├── ...
| └── gasn
├── levels
| ├── altitude <- (array float) atltitude in levels
| ├── delta_temperature_convection<- (array float) difference of temperature due to convection
| ├── gradiant_temperature <- (array float) T gradiant
| ├── is_convective <- (array integer) (0|1) if 1, convection is occurring at the level
| ├── kernel_temperature <- (2D-array float) matrix K of retrieval
| ├── pressure <- (array float) pressure in levels
| ├── radiosity_convective <- (array float) radiosity due to convection
| ├── radiosity_error <- (array float) error on radiosity
| ├── radiosity_internal <- (array float) internal radiosity
| ├── temperature <- (array float) temperature in levels
| ├── temperature_adiabatic <- (array float) adiabatic temperature in levels
| ├── temperature_uncertainty <- (array float) uncertainty on temperatures
| └── temperature_uncertainty_b <- (array float) variant of the uncertainty on temperatures
└── spectra
├── emission
| ├── contributions
| | ├── abs1 <- (array float) contribution of absorbing gas 1 + CIA + Rayleigh
| | ├── ...
| | ├── absn
| | ├── cia_rayleigh <- (array float) contribution of CIA + Rayleigh
| | └── thermal <- (array float) thermal contribution + CIA + Rayleigh
| └── spectral_radiosity <- (array float) total spectral radiosity
├── flux
| ├── spectral_flux <- (array float) spectral flux
| ├── spectral_flux_clear <- (array float) spectral flux without clouds
| └── spectral_flux_cloud <- (array float) spectral flux with full cloud coverage
├── transmission
| ├── contributions
| | ├── abs1 <- (array float) contribution of absorbing gas 1 + CIA + Rayleigh
| | ├── ...
| | ├── absn
| | ├── cia_rayleigh <- (array float) contribution of CIA + Rayleigh
| | └── clouds <- (array float) cloud contribution + CIA + Rayleigh
| ├── derivative <- (2D-array float) derivative of the transmission spectrum
| ├── transit_depth <- (array float)
| ├── transit_depth_clear <- (array float) transit depth without clouds
| ├── transit_depth_full_cover<- (array float) transit depth with full coverage
| └── spectral_radiosity <- (array float) total spectral radiosity
└── wavenumber <- (array float) wavenumber
``` ```
# Code # Code
... ...
......