Skip to content

Commit 8fb74f7

Browse files
committed
Removed the now-redundant advective heat flux array, since this is handled by the new deep_heating functionality. Updated configs to remove advect key. Updated plot function
1 parent d22b9d8 commit 8fb74f7

25 files changed

Lines changed: 16 additions & 52 deletions

docs/src/model/assets/model_flowchart.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/src/usage.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ Parameters that describe how the model should treat the physics.
213213
| `real_gas ` | Use real-gas equation(s) of state where possible (true/false) |
214214
| `thermo_funct ` | Use temperature-dependent thermodynamic properties (true/false) |
215215
| `sensible_heat ` | Include turbulent sensible heat transport at the surface (true/false) |
216-
| `advection ` | Include advective heat transport into each cell (true/false) |
217216
| `convection ` | Include vertical heat transport associated with convection (true/false) |
218217
| `convection_crit` | Criterion for convective stability. Options: (s)chwarzschild, (l)edoux |
219218
| `latent_heat ` | Include vertical heat transport from condensation and evaporation (true/false) |

res/config/default.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,13 @@ title = "Default" # Name for this configuration file
6666
oceans = false # Model ocean formation - check saturation at surface
6767
rainout = false # Model rainout - phase change impacts gas mixing ratios, not just energy fluxes
6868
latent_heat = false # Include heat release from phase change
69-
advection = false # Include advective heat flux from dynamics
7069
convection_crit = "s" # Stability criterion for convection. Options: (s)chwarzschild or (l)edoux.
7170
convection = true # Include heat transport by convection
7271

7372
[physics.deep_heating]
74-
Pmid = 1e-3 # Center of Gaussian heating profile [bar]
73+
Pmid = 1.0 # Center of Gaussian heating profile [bar]
7574
Pwid = 1.0 # Width of Gaussian in log-Pascal units.
76-
power_mode = "off" # Power mode for heating (off, rel, abs)
75+
power_mode = "abs" # Power mode for heating (off, rel, abs)
7776
norm_method = "pressure" # Normalisation coordinate: "pressure" (legacy dF/dP), or "mass" (dm-weighted).
7877
domain = "clamp" # How to handle Pmid outside domain (clamp, boundary_flux)
7978
flux_rel = 0.0 # Set flux by fraction of instellation, used for power_mode="rel".

res/config/hotdry.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,10 @@ title = "Hot and dry"
5454
sensible_heat = true
5555
conduction = true
5656
latent_heat = false
57-
advection = false
5857
convection = true
5958
convection_crit = "l"
6059
rainout = false
61-
oceans = false
60+
oceans = false
6261
grey_lw = 5e-3
6362
grey_sw = 2e-3
6463

res/config/physics/chemcond.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ title = "Chemistry and condensation together"
5656
real_gas = false
5757
thermo_funct = true
5858
sensible_heat = true
59-
advection = false
6059
conduction = true
6160
convection = true
6261
convection_crit = "s"

res/config/physics/chemistry.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ title = "Chemistry by metallicity"
5555
thermo_funct = true
5656
sensible_heat = false
5757
conduction = true
58-
advection = false
5958
latent_heat = false
6059
convection = true
6160
convection_crit = "l"

res/config/physics/cloud.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ title = "Cloud radiative properties test"
5252
sensible_heat = false
5353
conduction = true
5454
latent_heat = false
55-
advection = false
5655
convection = true
5756
convection_crit = "s"
5857
rainout = true

res/config/physics/greygas.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ title = "Grey gas"
5757
thermo_funct = true
5858
sensible_heat = false
5959
conduction = false
60-
advection = false
6160
latent_heat = false
6261
convection = true
6362
convection_crit = "s"

res/config/physics/lbl_validation.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ title = "Line-by-line validation tests"
5555
real_gas = false
5656
thermo_funct = true
5757
sensible_heat = false
58-
advection = false
5958
conduction = true
6059
latent_heat = false
6160
convection = false

res/config/physics/ocean.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ title = "Ocean formation test"
5656
real_gas = false
5757
thermo_funct = true
5858
sensible_heat = true
59-
advection = false
6059
conduction = true
6160
latent_heat = true
6261
convection = true

0 commit comments

Comments
 (0)