We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add examples to illustrate use of PALEO in more general situations than just solving an ODE and calculating a time series.
The closest relevant example at the moment is https://paleotoolkit.github.io/PALEOtutorials.jl/dev/collated_examples/solvers/README/#Naive-first-order-explicit-Euler-'by-hand' which shows how to calculate a time derivative and update state variables to step through a solution.
Need to add examples that start by demonstrating the general approach:
PB.do_deriv(modeldata.dispatchlists_all)
modeldata
PALEOmodel.get_array(modeldata, "ocean.P_norm").values
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add examples to illustrate use of PALEO in more general situations than just solving an ODE and calculating a time series.
The closest relevant example at the moment is https://paleotoolkit.github.io/PALEOtutorials.jl/dev/collated_examples/solvers/README/#Naive-first-order-explicit-Euler-'by-hand' which shows how to calculate a time derivative and update state variables to step through a solution.
Need to add examples that start by demonstrating the general approach:
PB.do_deriv(modeldata.dispatchlists_all)
to update all model variables for this state (these are held in themodeldata
object)PALEOmodel.get_array(modeldata, "ocean.P_norm").values
The text was updated successfully, but these errors were encountered: