You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ClimaAtmos.jl is an atmosphere model that is designed to leverage data assimilation and machine learning tools for modeling and calibrating subgrid-scale processes.
Atmosphere components of the CliMA software stack.
ClimaAtmos.jl is the atmosphere components of the CliMA software stack. We strive for a user interface that makes ClimaAtmos.jl as friendly and intuitive to use as possible, allowing users to focus on the science.
To use ClimaAtmos, you need to instantiate all dependencies with:
$ julia --project
julia> ]
(ClimaAtmos) pkg> instantiate
Running instructions
Currently, the simulations are stored in the test folder. Run all the test cases with the following commands.
First, we instantiate the test environment, by launching (from ClimaAtmos.jl/) Julia with the test/ environment active:
$ julia --project=test
Then, once in the Julia REPL, we switch to the package manager by pressing ]:
julia> ]
Once in the package manager, we develop the ClimaAtmos.jl/ directory:
test> dev .
Now, we can switch back to the Julia REPL by escaping and run the test suite interactively:
julia>include(joinpath("test", "runtests.jl"))
Or escape the Julia REPL and run from the command line:
$ julia --project=test test/runtests.jl
If you run into issues when running the test suite this way, please open an issue.
Contributing
If you're interested in contributing to the development of ClimaAtmos we want your help no matter how big or small a contribution you make! It's always great to have new people look at the code with fresh eyes: you will see errors that other developers have missed.
Let us know by opening an issue if you'd like to work on a new feature.
ClimaAtmos.jl is an atmosphere model that is designed to leverage data assimilation and machine learning tools for modeling and calibrating subgrid-scale processes.