@@ -41,6 +41,9 @@ class TestSubcatchments(MixinTestSettings):
41
41
'wateruseRegion' ,
42
42
'TransientWaterDemandChange' ,
43
43
]
44
+ modules_to_unsetGW = [
45
+ 'groundwaterSmooth' ,
46
+ ]
44
47
45
48
def test_subcacthment_daily (self ):
46
49
step_start = '02/01/2016 06:00'
@@ -49,14 +52,21 @@ def test_subcacthment_daily(self):
49
52
report_steps = '3650..4100'
50
53
self .run_subcathmenttest_by_dtsec (dt_sec , step_end , step_start , report_steps = report_steps )
51
54
52
- def test_subcacthment_daily_wateruse (self ):
55
+ def test_subcacthment_daily_wateruse_groundwatersmooth_ON (self ):
53
56
step_start = '02/01/2016 06:00'
54
57
step_end = '30/01/2016 06:00'
55
58
dt_sec = 86400
56
59
report_steps = '3650..4100'
57
60
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 )
60
70
61
71
def test_subcacthment_6h (self ):
62
72
step_start = '01/03/2016 06:00'
@@ -65,8 +75,9 @@ def test_subcacthment_6h(self):
65
75
report_steps = '14800..16000'
66
76
self .run_subcathmenttest_by_dtsec (dt_sec , step_end , step_start , report_steps = report_steps )
67
77
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 ):
69
79
modules_to_unset = self .modules_to_unset if not wateruse_on else []
80
+ modules_to_unset = self .modules_to_unsetGW if groundwatersmooth_off else []
70
81
modules_to_set = self .modules_to_unset if wateruse_on else []
71
82
72
83
# long run entire domain
@@ -84,6 +95,7 @@ def run_subcathmenttest_by_dtsec(self, dt_sec, step_end, step_start, report_step
84
95
# long run entire on subdomain
85
96
path_out_subdomain = mk_path_out ('data/LF_ETRS89_UseCase/out/longrun_subdomain{}' .format (dt_sec ))
86
97
settings_longrun_subdomain = self .setoptions (self .settings_files ['cold' ], opts_to_unset = modules_to_unset ,
98
+ opts_to_set = modules_to_set ,
87
99
vars_to_set = {'StepStart' : step_start ,
88
100
'StepEnd' : step_end ,
89
101
'PathOut' : path_out_subdomain ,
0 commit comments