-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Use ClimaUtilities FileReading/Inputs/Regridding #560
Conversation
5115937
to
c2f4aef
Compare
c2f4aef
to
41fc97d
Compare
cfbb297
to
25e9601
Compare
src/standalone/Bucket/Bucket.jl
Outdated
@@ -3,6 +3,13 @@ using DocStringExtensions | |||
using Thermodynamics | |||
using Dates | |||
using NCDatasets | |||
import ClimaUtilities.TimeVaryingInputs | |||
import ClimaUtilities.DataHandling | |||
import ClimaUtilities.SpaceVaryingInputs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need both import statements?
import ClimaUtilities.SpaceVaryingInputs
import ClimaUtilities.SpaceVaryingInputs: SpaceVaryingInput
and similar for TVI?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need the first line for SpaceVaryingInputs, but we need it for TimeVaryingInputs. I want to leave TimeVaryingInput.evaluate!
so that it is clear where evaluate!
comes from.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good! nice changes to have.
25e9601
to
2d2ed0f
Compare
In CliMA/ClimaUtilities.jl#19, I extracted #465 as well as other components and put them into a separate package. This PR uses that package for Space and Time Varying Inputs.
This PR supersedes #465.
Closes #392.