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
Could you show me a good example of the coupling models which have different time and spatial scales?
In addition to that, it would be very helpful to know the documentation or literature for the strategy to couple those models.
The text was updated successfully, but these errors were encountered:
Here's an example that partially addresses your questions.
CHILD is a landscape evolution model that uses a finite mesh. Sedflux3D is a basin-filling stratigraphic model that uses a rectangular grid. In pymt, variables from one model can be regridded to the other; see, for example cell 5. pymt does this using the ESMF regridders.
We lack documentation on how to couple models of differing temporal and spatial resolutions. I've added an issue to the pymt repository to address this. I can explain briefly here, though:
Differing spatial resolution: This can be accomplished though the built-in ESMF regridders, mapping the resolution of one grid to the other.
Differing temporal resolution: This can be done through Python code. For example, a model with a smaller time step could be updated in a loop until it reached a time of a second model with a larger time step, at which point the models could exchange information.
Jongmin Byun wrote:
The text was updated successfully, but these errors were encountered: