-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Test with data - Expected output obtained - Commenting and syntax remain to be standardized
- Loading branch information
Showing
4 changed files
with
338 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import hbv96 as mcd | ||
|
||
md = mcd.HBV96() | ||
|
||
md.par['area'] = 94.36 | ||
|
||
md.par['tfac'] = 12 | ||
|
||
md.config['file_path'] = '/home/niko/Documents/UNESCO-IHE/Model/HBV96/all_data.csv' | ||
|
||
md.config['header'] = 0 | ||
|
||
md.config['seperator'] = ',' | ||
|
||
md.config['obj_fun'] = md._rmse | ||
|
||
md.config['init_guess'] = None | ||
|
||
md.config['fun_name'] = 'RMSE' | ||
|
||
md.config['wu'] = 10 | ||
|
||
md.config['verbose'] = False | ||
|
||
md.config['minimise'] = True | ||
|
||
md.config['tol'] = 1e7 | ||
|
||
md.dictlike_data_extractor() | ||
|
||
md.config['miles'] = len(md.data)-1 | ||
|
||
md.calibrate() |
Oops, something went wrong.