@@ -40,14 +40,8 @@ def __init__(self, mpas_core):
40
40
41
41
init = Init (test_group = self , mesh = mesh ,
42
42
initial_condition = 'PHC' ,
43
- with_bgc = False ,
44
- with_inactive_top_cells = False )
43
+ with_bgc = False )
45
44
self .add_test_case (init )
46
- init_inactive_top_cells = Init (test_group = self , mesh = mesh ,
47
- initial_condition = 'PHC' ,
48
- with_bgc = False ,
49
- with_inactive_top_cells = True )
50
- self .add_test_case (init_inactive_top_cells )
51
45
52
46
time_integrator = 'split_explicit'
53
47
self .add_test_case (
@@ -106,8 +100,7 @@ def __init__(self, mpas_core):
106
100
time_integrator = 'split_explicit'
107
101
init = Init (test_group = self , mesh = mesh ,
108
102
initial_condition = 'EN4_1900' ,
109
- with_bgc = False ,
110
- with_inactive_top_cells = False )
103
+ with_bgc = False )
111
104
self .add_test_case (init )
112
105
self .add_test_case (
113
106
PerformanceTest (
@@ -125,8 +118,18 @@ def __init__(self, mpas_core):
125
118
# BGC tests
126
119
init = Init (test_group = self , mesh = mesh ,
127
120
initial_condition = 'PHC' ,
128
- with_bgc = True ,
129
- with_inactive_top_cells = False )
121
+ with_bgc = True )
122
+ self .add_test_case (init )
123
+ self .add_test_case (
124
+ PerformanceTest (
125
+ test_group = self , mesh = mesh , init = init ,
126
+ time_integrator = time_integrator ))
127
+
128
+ # Inactive top cells tests
129
+ init = Init (test_group = self , mesh = mesh ,
130
+ initial_condition = 'PHC' ,
131
+ with_bgc = False ,
132
+ with_inactive_top_cells = True )
130
133
self .add_test_case (init )
131
134
self .add_test_case (
132
135
PerformanceTest (
@@ -140,8 +143,7 @@ def __init__(self, mpas_core):
140
143
141
144
init = Init (test_group = self , mesh = mesh ,
142
145
initial_condition = 'PHC' ,
143
- with_bgc = False ,
144
- with_inactive_top_cells = False )
146
+ with_bgc = False )
145
147
self .add_test_case (init )
146
148
147
149
time_integrator = 'split_explicit'
@@ -165,8 +167,7 @@ def __init__(self, mpas_core):
165
167
166
168
init = Init (test_group = self , mesh = mesh ,
167
169
initial_condition = 'PHC' ,
168
- with_bgc = False ,
169
- with_inactive_top_cells = False )
170
+ with_bgc = False )
170
171
self .add_test_case (init )
171
172
time_integrator = 'split_explicit'
172
173
self .add_test_case (
@@ -189,8 +190,7 @@ def __init__(self, mpas_core):
189
190
190
191
init = Init (test_group = self , mesh = mesh ,
191
192
initial_condition = 'PHC' ,
192
- with_bgc = False ,
193
- with_inactive_top_cells = False )
193
+ with_bgc = False )
194
194
self .add_test_case (init )
195
195
time_integrator = 'split_explicit'
196
196
self .add_test_case (
0 commit comments