ClimaLand.jl
ClimaLand.jl copied to clipboard
Clima's Land Model
See, e.g., https://github.com/CliMA/ClimaLSM.jl/actions/runs/7628275663/job/20778936274?pr=451 Output: ``` Testing Running tests... Test Summary: | Pass Total Time Aqua tests | 10 10 33.7s ┌ Warning: `Topology2D(mesh::Meshes.AbstractMesh, args...)` is deprecated, use `Topology2D(ClimaComms.SingletonCommsContext(), mesh, args...)`...
**Is your feature request related to a problem? Please describe.** We want to be able to run ClimaLSM globally. To do this, there are a few structural changes we need...
**Is your feature request related to a problem? Please describe.** Last component of global GPU runs **Describe the solution you'd like** A clear and concise description of what you want...
## Purpose We need an implicit solver for the soil model (both for Richards equation alone, and the full soil system), and possibly in the future for other models as...
This is probably in ```julia function construct_atmos_ts( atmos::PrescribedAtmosphere{FT}, p, thermo_params, ) where {FT} P = p.drivers.P T = p.drivers.T q = p.drivers.q ts_in = Thermodynamics.PhaseEquil_pTq.(thermo_params, P, T, q) return ts_in...
DataFrames is an heavy dependency. Currently, it is used only in the neural snow model (which we can move to an extension) and in the PFTs (https://github.com/CliMA/ClimaLand.jl/blob/main/src/standalone/Vegetation/pfts.jl) It would be...
The documentation page doesn't show tagged stable versions beyond 0.2. Investigate this.
Following [ClimaArtifacts](https://github.com/CliMA/ClimaArtifacts/) Artifacts downloaded ```[tasklist] ### to be moved to ClimaArtifacts - [ ] cesm2_albedo - [ ] bareground_albedo - [ ] experiment_fluxnet_data (for each site) - [ ] water_conservation_test_data...
Please edit this list (add bullet points, modify existing ones, change priority order) - [ ] Model soil macro-pores - [ ] Prognostic biomass (stem, leaves, roots) and soil carbon...
We currently store the zenith angle in p.drivers, and update it when we update the radiation. However, it isnt really like radiation (which is read in from a file) -...