FormingWorlds / PROTEUS

Coupled atmosphere-interior framework to simulate the temporal evolution of rocky planets.
https://fwl-proteus.readthedocs.io
Apache License 2.0
11 stars 1 forks source link

Change OLR and TOA heating initialisation? #3

Closed timlichtenberg closed 5 years ago

timlichtenberg commented 5 years ago
PrevOLR = 0.
PrevMaxHeat = 0.
PrevTemp = 0.*atm.temp[:]

@mark-hammond

In SocRadConv.py, l. 57–60

Do we have to change this when using TOA heating now?

mark-hammond commented 5 years ago

No, those arrays are just used to store the OLR, heating, and temperature values from the previous timestep for use in the break conditions, and are given values later on, so they are fine as they are. I might get rid of some if we decide on a single break condition.

timlichtenberg commented 5 years ago

Great, thanks!