@@ -9,7 +9,7 @@ class SshForward(OceanModelStep):
9
9
Attributes
10
10
----------
11
11
resolution : float
12
- The resolution of the task in km
12
+ The minimum resolution in km used to determine the time step
13
13
14
14
package : Package
15
15
The package name or module object that contains ``namelist``
@@ -21,7 +21,7 @@ class SshForward(OceanModelStep):
21
21
key, string combinations for templated replacements in the yaml
22
22
file
23
23
"""
24
- def __init__ (self , component , resolution , mesh , init ,
24
+ def __init__ (self , component , min_resolution , mesh , init ,
25
25
name = 'ssh_forward' , subdir = None ,
26
26
package = None , yaml_filename = 'ssh_forward.yaml' ,
27
27
yaml_replacements = None , iteration = 1 , indir = None ,
@@ -34,8 +34,8 @@ def __init__(self, component, resolution, mesh, init,
34
34
component : polaris.Component
35
35
The component the step belongs to
36
36
37
- resolution : km
38
- The resolution of the task in km
37
+ min_resolution : float
38
+ The minimum resolution in km used to determine the time step
39
39
40
40
name : str
41
41
the name of the task
@@ -82,7 +82,7 @@ def __init__(self, component, resolution, mesh, init,
82
82
indir = f'{ indir } /ssh_adjustment' , ntasks = ntasks ,
83
83
min_tasks = min_tasks , openmp_threads = openmp_threads )
84
84
85
- self .resolution = resolution
85
+ self .resolution = min_resolution
86
86
self .package = package
87
87
self .yaml_filename = yaml_filename
88
88
self .yaml_replacements = yaml_replacements
0 commit comments