Skip to content

Commit

Permalink
Merge branch 'hn/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
nichollsh committed Feb 14, 2025
2 parents e0545bf + a051cb0 commit 12f33d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
ScatteredInterpolation = "3f865c0f-6dca-5f4d-999b-29fe1e7e3c92"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
</p>

<p align="center">
<b>A radiative-convective model for lava planet atmospheres</b>
<b>A radiative-convective atmosphere model for lava planets</b>
</p>


## Overview
A numerical model for the atmospheres of hot rocky (exo)planets. AGNI's primary purpose is to simulate the evolving atmospheres of magma ocean planets, while ensuring that radiative-convective equilibrium is maintained throughout the atmosphere.
A numerical model for the atmospheres of hot rocky (exo)planets. The model's primary purpose is to simulate the evolving atmospheres of magma ocean (lava) planets, while ensuring that radiative-convective equilibrium is maintained throughout the atmosphere.

AGNI models correlated-k radiative transfer including shortwave irradiation from the star, surface emission, gaseous absorption, Rayleigh scattering, parameterised clouds, and CIA. Mixing length theory is used to model convection. Together, energy transport processes allow for an energy-conserving calculation of the atmosphere's temperature profile.
AGNI models correlated-k radiative transfer including shortwave irradiation from the star, surface emission, gaseous absorption, Rayleigh scattering, parameterised clouds, and CIA. Mixing length theory is used to model convection. Together, energy transport processes allow for an energy-conserving calculation of the atmosphere's temperature profile. It also supports real gas equations of state.

Consult the [AGNI documentation](https://nichollsh.github.io/AGNI/) for information about the model.

Expand All @@ -38,8 +38,8 @@ See the [Getting Started](https://nichollsh.github.io/AGNI/dev/setup/) page in t

## Citation
If you use AGNI, please cite the following papers:
* Nicholls et al., (2024) - https://doi.org/10.1093/mnras/stae2772
* Nicholls et al., (2025) - submitted to JOSS
* Nicholls et al., (2024b) - https://doi.org/10.1093/mnras/stae2772
* Nicholls et al., (2025) - in review at JOSS

## Repository structure
* `agni.jl` - The main AGNI executable
Expand Down
2 changes: 1 addition & 1 deletion src/atmosphere.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1373,7 +1373,7 @@ module atmosphere
gas_flags *= "NO_OPACITY "
end
if g in atmos.condensates # flag as condensable
gas_flags *= "COND"
gas_flags *= "COND "
end
if atmos.gas_dat[g].stub # flag as containing stub thermo data
gas_flags *= "NO_THERMO "
Expand Down

0 comments on commit 12f33d2

Please sign in to comment.