Skip to content

Commit ce79f0e

Browse files
Set DO_GEOTHERMAL to False for unknown grids (#262)
This is needed because diag_table.yaml has a conditional that checks whether DO_GEOTHERMAL is True.
1 parent a16a636 commit ce79f0e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

param_templates/MOM_input.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2769,6 +2769,7 @@ Global:
27692769
value:
27702770
$OCN_GRID == "tx2_3v2": True
27712771
$OCN_GRID == "tx0.25v1": True
2772+
else: False
27722773
PARALLEL_RESTARTFILES:
27732774
description: |
27742775
"[Boolean] default = False

param_templates/json/MOM_input.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2198,7 +2198,8 @@
21982198
"units": "Boolean",
21992199
"value": {
22002200
"$OCN_GRID == \"tx2_3v2\"": true,
2201-
"$OCN_GRID == \"tx0.25v1\"": true
2201+
"$OCN_GRID == \"tx0.25v1\"": true,
2202+
"else": false
22022203
}
22032204
},
22042205
"PARALLEL_RESTARTFILES": {

0 commit comments

Comments
 (0)