@@ -25,11 +25,11 @@ def parse_args():
25
25
parser = argparse .ArgumentParser (description = "Perturb UM initial dump" )
26
26
parser .add_argument ('-a' , dest = 'amplitude' , type = float , default = 0.01 ,
27
27
help = 'Amplitude of the perturbation.' )
28
- parser .add_argument ('-s' ,'--seed' , dest = 'seed' , type = int
28
+ parser .add_argument ('-s' ,'--seed' , dest = 'seed' , type = int ,
29
29
help = 'The seed value used to generate the random perturbation (must be a non-negative integer).' )
30
30
parser .add_argument ('ifile' , metavar = "INPUT_PATH" , help = 'Path to the input file.' )
31
31
parser .add_argument ('--validate' , action = 'store_true' ,
32
- help = 'Validate the output fields file using mule validation .)
32
+ help = 'Validate the output fields file using mule validation.' )
33
33
args_parsed = parser .parse_args ()
34
34
return args_parsed
35
35
@@ -47,9 +47,11 @@ def create_random_generator(value=None):
47
47
numpy.random.Generator
48
48
The numpy random generator object.
49
49
"""
50
+
51
+
50
52
if value < 0 :
51
53
raise ValueError ('Seed value must be non-negative.' )
52
- return Generator (PCG64 (value ))
54
+ return Generator (PCG64 (value ))
53
55
54
56
def remove_timeseries (ff ):
55
57
"""
@@ -120,7 +122,7 @@ def create_perturbation(amplitude, random_generator, shape, nullify_poles = True
120
122
perturbation = random_generator .uniform (low = - amplitude , high = amplitude , size = shape )
121
123
# Set poles to zero (only necessary for ND grids, but doesn't hurt EG)
122
124
if nullify_poles :
123
- perturbation [[0 ,- 1 ],:] = 0
125
+ perturbation [[0 ,- 1 ],:] = 0
124
126
return perturbation
125
127
126
128
@@ -165,17 +167,18 @@ def transform(self, source_field, new_field):
165
167
Perform the field data manipulation: check that the array and source field data have the same shape and then add them together.
166
168
"""
167
169
data = source_field .get_data ()
168
- if field_shape := data .shape != array_shape := self .array .shape :
170
+ if ( field_shape := data .shape ) != ( array_shape := self .array .shape ) :
169
171
raise ValueError (f"Array and field could not be broadcast together with shapes { array_shape } and { field_shape } ." )
170
- return data + self .array
172
+ else :
173
+ return data + self .array
171
174
172
175
173
176
def void_validation (* args , ** kwargs ):
174
177
"""
175
178
Don't perform the validation, but print a message to inform that validation has been skipped.
176
179
"""
177
180
print ('Skipping mule validation. To enable the validation, run using the "--validate" option.' )
178
-
181
+ return
179
182
180
183
181
184
def main ():
@@ -191,35 +194,35 @@ def main():
191
194
192
195
# Create the output filename
193
196
output_file = create_default_outname (args .ifile )
194
-
197
+
195
198
# Create the random generator.
196
199
random_generator = create_random_generator (args .seed )
197
200
198
201
# Skip mule validation if the "--validate" option is provided
199
202
if args .validate :
200
203
mule .DumpFile .validate = void_validation
201
204
ff_raw = mule .DumpFile .from_file (args .ifile )
202
-
205
+
203
206
204
207
# Remove the time series from the data to ensure mule will work
205
208
ff = remove_timeseries (ff_raw )
206
209
207
210
# loop through the fields
208
211
for ifield , field in enumerate (ff .fields ):
209
212
if is_field_to_perturb (field , STASH_THETA ):
210
- try :
213
+ try :
211
214
ff .fields [ifield ] = perturb_operator (field )
212
215
except NameError : # perturb_operator is not defined
213
216
# Only create the perturb_operator if it does not exist yet
214
- shape = field .get_data ().shape
215
- perturbation = create_perturbation (args .amplitude , random_generator , shape )
216
- perturb_operator = AdditionOperator (perturbation )
217
- ff .fields [ifield ] = perturb_operator (field )
217
+
218
+ shape = field .get_data ().shape
219
+ perturbation = create_perturbation (args .amplitude , random_generator , shape )
220
+ perturb_operator = AdditionOperator (perturbation )
221
+ ff .fields [ifield ] = perturb_operator (field )
218
222
219
223
ff .to_file (output_file )
220
224
221
225
if __name__ == "__main__" :
222
226
223
227
main ()
224
228
225
-
0 commit comments