Skip to content

Commit

Permalink
Fix typo in docs and fast tutorial regarding repetitions
Browse files Browse the repository at this point in the history
  • Loading branch information
thouska committed Jan 13, 2021
1 parent 79720b9 commit 9c454e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/Sensitivity_analysis_with_FAST.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ So the first step is as always to initialize the spotpy setup class example:
spot_setup=spot_setup()

As a next step we apply the above formular to determine the number of repetitions needed for the FAST analysis. In our case we have k=5 parameter
in the hymod model, so we need N=1345 repetitions to get reliable results:
in the hymod model, so we need N=2245 repetitions to get reliable results:

rep = 1345
rep = 2245

And that's already it. Now we can start the sensitivity analysis:
sampler = spotpy.algorithms.fast(spot_setup, dbname='FAST_hymod', dbformat='csv')
Expand Down
4 changes: 3 additions & 1 deletion spotpy/examples/tutorial_fast_hymod.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
spot_setup = spot_setup()

#Select number of maximum repetitions
rep = 1345
# CHeck out https://spotpy.readthedocs.io/en/latest/Sensitivity_analysis_with_FAST/
# How to determine an appropriate number of repetitions
rep = 2245

#Start a sensitivity analysis
sampler = spotpy.algorithms.fast(spot_setup, dbname='FAST_hymod', dbformat='csv')
Expand Down

0 comments on commit 9c454e8

Please sign in to comment.