Skip to content

Commit

Permalink
πŸ“ Adjust soil moisture quorum to 25% dailyerosion#273
Browse files Browse the repository at this point in the history
  • Loading branch information
akrherz committed Sep 9, 2024
1 parent 157cc40 commit d462fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dynamic_tillage/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def main(scenario, dt, huc12, edr, run_prj2wepp):
continue
# Require that 50% of modelled OFEs are 0.8 of plastic limit
toowet = gdf["sw1"].gt(gdf["plastic_limit"] * 0.8).sum()
if toowet > (len(gdf.index) * 0.9):
if toowet > (len(gdf.index) * 0.75):
huc12df.at[huc12, "limited_by_soilmoisture"] = True

# restrict to HUC12s that are not limited
Expand Down

0 comments on commit d462fd8

Please sign in to comment.