forked from thouska/spotpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
83 additions
and
17 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
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
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
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,73 @@ | ||
''' | ||
Copyright 2015 by Tobias Houska | ||
This file is part of Statistical Parameter Estimation Tool (SPOTPY). | ||
:author: Tobias Houska | ||
This example implements the python version of hymod into SPOTPY. | ||
''' | ||
|
||
from __future__ import absolute_import | ||
from __future__ import division | ||
from __future__ import print_function | ||
from __future__ import unicode_literals | ||
|
||
import spotpy | ||
from spotpy.examples.hymod_python.hymod import hymod | ||
import os | ||
import numpy as np | ||
|
||
class spot_setup(object): | ||
cmax = spotpy.parameter.Uniform(low=1.0 , high=500, optguess=412.33) | ||
bexp = spotpy.parameter.Uniform(low=0.1 , high=2.0, optguess=0.1725) | ||
alpha = spotpy.parameter.Uniform(low=0.1 , high=0.99, optguess=0.8127) | ||
Ks = spotpy.parameter.Uniform(low=0.0 , high=0.10, optguess=0.0404) | ||
Kq = spotpy.parameter.Uniform(low=0.1 , high=0.99, optguess=0.5592) | ||
#fake1 =spotpy.parameter.Uniform(low=0.1 , high=10, optguess=0.5592) | ||
#fake2 =spotpy.parameter.Uniform(low=0.1 , high=10, optguess=0.5592) | ||
|
||
def __init__(self, _used_algorithm = 'default'): | ||
self._used_algorithm = _used_algorithm | ||
#Transform [mm/day] into [l s-1], where 1.783 is the catchment area | ||
self.Factor = 1.783 * 1000 * 1000 / (60 * 60 * 24) | ||
#Load Observation data from file | ||
self.PET,self.Precip = [], [] | ||
self.date,self.trueObs = [], [] | ||
self.owd = os.path.dirname(os.path.realpath(__file__)) | ||
self.hymod_path = self.owd+os.sep+'hymod_python' | ||
climatefile = open(self.hymod_path+os.sep+'hymod_input.csv', 'r') | ||
headerline = climatefile.readline()[:-1] | ||
|
||
if ';' in headerline: | ||
self.delimiter = ';' | ||
else: | ||
self.delimiter = ',' | ||
self.header = headerline.split(self.delimiter) | ||
for line in climatefile: | ||
values = line.strip().split(self.delimiter) | ||
self.date.append(str(values[0])) | ||
self.Precip.append(float(values[1])) | ||
self.PET.append(float(values[2])) | ||
self.trueObs.append(float(values[3])) | ||
|
||
climatefile.close() | ||
|
||
|
||
def simulation(self,x): | ||
data = hymod(self.Precip, self.PET, x[0], x[1], x[2], x[3], x[4]) | ||
sim=[] | ||
for val in data: | ||
sim.append(val*self.Factor) | ||
return sim[366:] | ||
|
||
def evaluation(self): | ||
return self.trueObs[366:] | ||
|
||
def objectivefunction(self,simulation,evaluation, params=None): | ||
return [ | ||
spotpy.likelihoods.gaussianLikelihoodMeasErrorOut(evaluation, simulation), | ||
-spotpy.objectivefunctions.rmse(evaluation, simulation), | ||
-spotpy.objectivefunctions.mse(evaluation, simulation), | ||
-spotpy.objectivefunctions.pbias(evaluation, simulation), | ||
#spotpy.likelihoods.NashSutcliffeEfficiencyShapingFactor(evaluation, simulation) | ||
] |
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