Skip to content

Commit

Permalink
Change default kzz to zero
Browse files Browse the repository at this point in the history
  • Loading branch information
nichollsh committed Dec 29, 2024
1 parent 4542a3b commit 5d65bdf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Harrison"
orcid: "https://orcid.org/0000-0002-8368-4641"
title: "Convective shutdown in the atmospheres of lava worlds"
version: 1.0.2
version: 1.0.3
doi: 10.1093/mnras/stae2772
date-released: 2024-12-18
date-released: 2024-12-29
url: "https://doi.org/10.1093/mnras/stae2772"
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AGNI"
uuid = "ede838c1-9ec3-4ebe-8ae8-da4091b3f21c"
authors = ["Harrison Nicholls <[email protected]>"]
version = "1.0.2"
version = "1.0.3"

[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Expand Down
6 changes: 3 additions & 3 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
],
"identifier": "",
"codeRepository": "https://github.com/nichollsh/AGNI",
"datePublished": "2024-12-18",
"dateModified": "2024-12-18",
"datePublished": "2024-12-29",
"dateModified": "2024-12-29",
"dateCreated": "2024-09-13",
"description": "A radiative-convective model for lava planet atmospheres.",
"keywords": "physics, radiative transfer, exoplanets, astronomy, convection, radiation, planets, atmospheres",
"license": "GPL v3.0",
"title": "AGNI",
"version": "1.0.2"
"version": "1.0.3"
}
4 changes: 2 additions & 2 deletions src/atmosphere.jl
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ module atmosphere
tmp_floor::Float64 = 2.0,
C_d::Float64 = 0.001,
U::Float64 = 2.0,
Kzzcst::Float64 = 1e6,
Kzzcst::Float64 = 0.0,
tmp_magma::Float64 = 3000.0,
skin_d::Float64 = 0.05,
skin_k::Float64 = 2.0,
Expand Down Expand Up @@ -333,7 +333,7 @@ module atmosphere
@info "Setting-up a new atmosphere struct"

# Code versions
atmos.AGNI_VERSION = "1.0.2"
atmos.AGNI_VERSION = "1.0.3"
atmos.SOCRATES_VERSION = readchomp(joinpath(ENV["RAD_DIR"],"version"))
@debug "AGNI VERSION = "*atmos.AGNI_VERSION
@debug "Using SOCRATES at $(ENV["RAD_DIR"])"
Expand Down

0 comments on commit 5d65bdf

Please sign in to comment.