5
5
# number of cores to use
6
6
cull_mesh_cpus_per_task = 18
7
7
# minimum of cores, below which the step fails
8
- cull_mesh_min_cpus_per_task = 1
8
+ cull_mesh_min_cpus_per_task = 1
9
9
# maximum memory usage allowed (in MB)
10
10
cull_mesh_max_memory = 1000
11
11
@@ -36,11 +36,11 @@ min_depth = 1
36
36
# number of cores to use
37
37
init_ntasks = 36
38
38
# minimum of cores, below which the step fails
39
- init_min_tasks = 8
39
+ init_min_tasks = 8
40
40
# maximum memory usage allowed (in MB)
41
41
init_max_memory = 1000
42
42
# number of threads
43
- init_threads = 1
43
+ init_threads = 1
44
44
45
45
# # config options related to the forward steps
46
46
# number of cores to use
@@ -52,5 +52,40 @@ forward_max_memory = 1000
52
52
# number of threads
53
53
forward_threads = 1
54
54
55
- # TPXO version for validation
55
+ # TPXO version for validation
56
56
tpxo_version = TPXO9
57
+
58
+
59
+ # config options related to remapping topography to an MPAS-Ocean mesh
60
+ [remap_topography]
61
+
62
+ # the name of the topography file in the bathymetry database
63
+ topo_filename = BedMachineAntarctica_v3_and_GEBCO_2023_0.0125_degree_20240828.nc
64
+
65
+ # variable names in topo_filename
66
+ lon_var = lon
67
+ lat_var = lat
68
+ bathymetry_var = bathymetry
69
+ ice_thickness_var = thickness
70
+ ice_frac_var = ice_mask
71
+ grounded_ice_frac_var = grounded_mask
72
+ ocean_frac_var = ocean_mask
73
+ bathy_frac_var = bathymetry_mask
74
+
75
+ # the description to include in metadata
76
+ description = Bathymetry is from GEBCO 2023, combined with BedMachine
77
+ Antarctica v3 around Antarctica.
78
+
79
+ # the target and minimum number of MPI tasks to use in remapping
80
+ ntasks = 4096
81
+ min_tasks = 360
82
+
83
+ # remapping method {'bilinear', 'neareststod', 'conserve'}
84
+ method = conserve
85
+
86
+ # threshold of what fraction of an MPAS cell must contain ocean in order to
87
+ # perform renormalization of elevation variables
88
+ renorm_threshold = 0.01
89
+
90
+ # the density of land ice from MALI (kg/m^3)
91
+ ice_density = 910.0
0 commit comments