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
Historically, the simulation loop was obtaining daily weather values for one complete year at the start of each simulated year (SW_WTH_new_year()) and then at the start of each simulated day, _todays_weth() was providing the weather values for that day (either from an array, or if missing, from the weather generator) to the simulation.
Now, we prepare all daily weather for all years before the simulations:
read_all_weather() reads values from files (or uses the weather generator; or, if rSOILWAT2, obtains values via memory from R) and fills in values of all_hist -- before the start of the simulation loop
Incorporate current functionality of _todays_weth() in read_all_weather()
SW_WTH_new_year() and _todays_weth() are no longer needed -> delete
SW_WTH_new_day() will grab values out of all_hist (instead of calling _todays_weth())
The text was updated successfully, but these errors were encountered:
- More detailed entries for developments towards issues #311 (daily weather), #317 (climate predictors), and #318 (estimate fractional cover of vegetation types from climate conditions)
Release v7.0.0
see https://github.com/DrylandEcology/SOILWAT2/milestone/13
- Read daily weather before the simulations enhancement (#311)
- Calculate climate variables before simulation loop (#317)
- Estimate vegetation cover from climate before simulation run (#318)
- Implement multiple soil water retention curves (#315)
- Soil density: input either for < 2 mm fraction or for whole soil? enhancement (#280)
- Re-organize repository with more sub-folders question (#89)
- Daily variables for atmospheric demand (#341)
- STEPWAT2 updated to work with this release (see DrylandEcology/STEPWAT2#535)
- rSOILWAT2 updated to work with this release (see DrylandEcology/rSOILWAT2#214)
Historically, the simulation loop was obtaining daily weather values for one complete year at the start of each simulated year (
SW_WTH_new_year()
) and then at the start of each simulated day,_todays_weth()
was providing the weather values for that day (either from an array, or if missing, from the weather generator) to the simulation.Now, we prepare all daily weather for all years before the simulations:
read_all_weather()
reads values from files (or uses the weather generator; or, if rSOILWAT2, obtains values via memory from R) and fills in values ofall_hist
-- before the start of the simulation loop_todays_weth()
inread_all_weather()
SW_WTH_new_year()
and_todays_weth()
are no longer needed -> deleteSW_WTH_new_day()
will grab values out ofall_hist
(instead of calling_todays_weth()
)The text was updated successfully, but these errors were encountered: