Skip to content

Commit

Permalink
Merge pull request #13 from edwinkost/for_public_release
Browse files Browse the repository at this point in the history
For public release
  • Loading branch information
edwinkost authored Aug 17, 2016
2 parents f09a652 + 32e6c73 commit a266bf9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions model/groundwater.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,12 @@ def __init__(self, iniItems,landmask,spinUp):
#####################################################################################################################################################
# total groundwater thickness (unit: m)
# - For PCR-GLOBWB, the estimate of total groundwater thickness is needed to estimate for the following purpose:
# - productive aquifer areas (where capillary rise can occur and groundwater depletion can occur)
# - and also to estimate fossil groundwater capacity (the latter is needed only for run without MODFLOW)
# - to estimate fossil groundwater capacity (this is needed only for runs without MODFLOW)
# - to determine productive aquifer areas (where capillary rise can occur and groundwater depletion can occur) (for runs with/without MODFLOW)
# - Note that for runs with MODFLOW, ideally, we want to minimize enormous drawdown in non-productive aquifer areas
totalGroundwaterThickness = None
if 'estimateOfTotalGroundwaterThickness' in iniItems.groundwaterOptions.keys():
if 'estimateOfTotalGroundwaterThickness' in iniItems.groundwaterOptions.keys() and\
(self.limitFossilGroundwaterAbstraction or self.useMODFLOW):

totalGroundwaterThickness = vos.readPCRmapClone(iniItems.groundwaterOptions['estimateOfTotalGroundwaterThickness'],
self.cloneMap, self.tmpDir, self.inputDir)
Expand Down

0 comments on commit a266bf9

Please sign in to comment.