Skip to content

Commit 3b189b4

Browse files
committed
Merge branch 'master' of https://github.com/ec-jrc/lisflood-code
2 parents a486455 + a207097 commit 3b189b4

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed
Binary file not shown.

tests/test_subcatchments.py

+16-4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ class TestSubcatchments(MixinTestSettings):
4141
'wateruseRegion',
4242
'TransientWaterDemandChange',
4343
]
44+
modules_to_unsetGW= [
45+
'groundwaterSmooth',
46+
]
4447

4548
def test_subcacthment_daily(self):
4649
step_start = '02/01/2016 06:00'
@@ -49,14 +52,21 @@ def test_subcacthment_daily(self):
4952
report_steps = '3650..4100'
5053
self.run_subcathmenttest_by_dtsec(dt_sec, step_end, step_start, report_steps=report_steps)
5154

52-
def test_subcacthment_daily_wateruse(self):
55+
def test_subcacthment_daily_wateruse_groundwatersmooth_ON(self):
5356
step_start = '02/01/2016 06:00'
5457
step_end = '30/01/2016 06:00'
5558
dt_sec = 86400
5659
report_steps = '3650..4100'
5760
with pytest.raises(AssertionError) as excinfo:
58-
self.run_subcathmenttest_by_dtsec(dt_sec, step_end, step_start, report_steps=report_steps, wateruse_on=True)
59-
assert 'dis.nc/dis@0 is different' in str(excinfo.value)
61+
self.run_subcathmenttest_by_dtsec(dt_sec, step_end, step_start, report_steps=report_steps, wateruse_on=True, groundwatersmooth_off=False)
62+
assert 'Arrays are not equal' in str(excinfo.value)
63+
64+
def test_subcacthment_daily_wateruse_groundwatersmooth_OFF(self):
65+
step_start = '02/01/2016 06:00'
66+
step_end = '30/01/2016 06:00'
67+
dt_sec = 86400
68+
report_steps = '3650..4100'
69+
self.run_subcathmenttest_by_dtsec(dt_sec, step_end, step_start, report_steps=report_steps, wateruse_on=True, groundwatersmooth_off=True)
6070

6171
def test_subcacthment_6h(self):
6272
step_start = '01/03/2016 06:00'
@@ -65,8 +75,9 @@ def test_subcacthment_6h(self):
6575
report_steps = '14800..16000'
6676
self.run_subcathmenttest_by_dtsec(dt_sec, step_end, step_start, report_steps=report_steps)
6777

68-
def run_subcathmenttest_by_dtsec(self, dt_sec, step_end, step_start, report_steps='1..9999', wateruse_on=False):
78+
def run_subcathmenttest_by_dtsec(self, dt_sec, step_end, step_start, report_steps='1..9999', wateruse_on=False, groundwatersmooth_off=False):
6979
modules_to_unset = self.modules_to_unset if not wateruse_on else []
80+
modules_to_unset = self.modules_to_unsetGW if groundwatersmooth_off else []
7081
modules_to_set = self.modules_to_unset if wateruse_on else []
7182

7283
# long run entire domain
@@ -84,6 +95,7 @@ def run_subcathmenttest_by_dtsec(self, dt_sec, step_end, step_start, report_step
8495
# long run entire on subdomain
8596
path_out_subdomain = mk_path_out('data/LF_ETRS89_UseCase/out/longrun_subdomain{}'.format(dt_sec))
8697
settings_longrun_subdomain = self.setoptions(self.settings_files['cold'], opts_to_unset=modules_to_unset,
98+
opts_to_set=modules_to_set,
8799
vars_to_set={'StepStart': step_start,
88100
'StepEnd': step_end,
89101
'PathOut': path_out_subdomain,

0 commit comments

Comments
 (0)