Hi ATS team,
I understand that ATS allows defining different regions with distinct root and ET) parameters (e.g., maximum rooting depth, Priestley–Taylor alpha, etc.).
However, I would like to simulate a corn–soybean rotation within the same plot. Is it possible to assign different parameter values at different time periods — for example, using corn parameters for two years and soybean parameters for one year (i.e., a time-varying or time-series parameter setup at “land cover types”)?
If so, what is the recommended way to achieve this in ATS?
Thanks,
Haoyuan
--
You received this message because you are subscribed to the Google Groups "Amanzi-ATS Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ats-users+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/ats-users/af77e5de-100c-4ea4-abff-15433cc7d13cn%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/ats-users/1d198d47-2fdf-4c73-a8d2-661e7fa8211an%40googlegroups.com.
The fundamental difference is a field controlled by an evaluator (surface-water_source) vs a parameter that is hard-coded to be a constant scalar (LandCover parameters).
Your irrigation case is actually much simpler – introduce a new evaluator,
“surface-irrigation” and then add precip to that, e.g. “surface-water_source” becomes an “additive” evaluator that sums “surface-irrigation” and “surface-precipitation”. Or, in the case of the standard Watershed Workflow Priestley-Taylor template file:
<ParameterList name="surface-water_source" type="ParameterList">
<Parameter name="evaluator type" type="string" value="additive evaluator" />
<Parameter name="dependencies" type="Array(string)" value="{canopy-throughfall_drainage_rain, snow-melt, surface-evaporation, surface-irrigation}" />
<Parameter name="surface-evaporation coefficient" type="double" value="-1" />
<Parameter name="units" type="string" value="m s^-1" />
</ParameterList>
Then you can leverage the full strength of Amanzi’s functions library that computes surface-irrigation as a a function of space, time, region, or even generic h5 file.
Ethan
To view this discussion visit https://groups.google.com/d/msgid/ats-users/CAN8t3f%2BFu_Kuh84jFkRx%2BoHg%2B%3DvAtp0UQ8cjniurohy_crcjYQ%40mail.gmail.com.