From 5d65bdfa979547c7cee6b088399ee6f10d8cab74 Mon Sep 17 00:00:00 2001 From: Harrison Nicholls Date: Sun, 29 Dec 2024 16:25:54 +0100 Subject: [PATCH] Change default kzz to zero --- CITATION.cff | 4 ++-- Project.toml | 2 +- codemeta.json | 6 +++--- src/atmosphere.jl | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 94ee7be..2e2261b 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -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" diff --git a/Project.toml b/Project.toml index 17e7fc6..b4ec9b0 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "AGNI" uuid = "ede838c1-9ec3-4ebe-8ae8-da4091b3f21c" authors = ["Harrison Nicholls "] -version = "1.0.2" +version = "1.0.3" [deps] ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63" diff --git a/codemeta.json b/codemeta.json index 8113af1..65584e7 100644 --- a/codemeta.json +++ b/codemeta.json @@ -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" } diff --git a/src/atmosphere.jl b/src/atmosphere.jl index 3a96e50..a2dd326 100644 --- a/src/atmosphere.jl +++ b/src/atmosphere.jl @@ -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, @@ -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"])"