forked from marbl-ecosys/MARBL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sets lgcm_has_global_ops = .true. during init, and runs with ladjust_bury_coeff = .true.; it then prints out requested forcings (because we add three new surface flux forcings) and also prints out short names of all the running means that MARBL wants the GCM to track
- Loading branch information
1 parent
ece907b
commit 6152237
Showing
5 changed files
with
92 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
tests/input_files/settings/marbl_with_ladjust_bury_coeff.settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ladjust_bury_coeff = .true. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env python | ||
|
||
from sys import path | ||
import os | ||
|
||
path.insert(0, os.path.join('..', '..', 'python_for_tests')) | ||
from marbl_testing_class import MARBL_testcase | ||
|
||
mt = MARBL_testcase() | ||
|
||
mt.parse_args(desc='Run full MARBL setup (config, init, and complete) and print ' | ||
'output relating to burial coefficients', | ||
DefaultSettingsFile='../../input_files/settings/marbl_with_ladjust_bury_coeff.settings') | ||
|
||
mt.build_exe() | ||
|
||
mt.run_exe() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
&marbl_driver_nml | ||
testname="bury_coeff" | ||
/ |