forked from MPAS-Dev/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneral.config.ocean
50 lines (42 loc) · 2.22 KB
/
general.config.ocean
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# This file is the ocean core's configuration file. It is specific to the ocean
# core, and a specific machine. Each machine will configure this file
# differently, but it can be used to point on version of the testing
# infrastructure at a different version of the model.
# The namelists section defines paths to template namelists that will be used
# to generate specific namelists. Typically these will point to the forward and
# init namelists in the default_inputs directory after a successful build of
# the ocean model.
[namelists]
forward = FULL_PATH_TO_MPAS_MODEL_REPO/namelist.ocean
init = FULL_PATH_TO_MPAS_MODEL_REPO/namelist.ocean
# The streams section defines paths to template streams files that will be used
# to generate specific streams files. Typically these will point to the forward and
# init streams files in the default_inputs directory after a successful build of
# the ocean model.
[streams]
forward = FULL_PATH_TO_MPAS_MODEL_REPO/streams.ocean.forward
init = FULL_PATH_TO_MPAS_MODEL_REPO/streams.ocean.init
# The executables section defines paths to required executables. These
# executables are provided for use by specific test cases.
# Full paths should be provided in order to access the executables from
# anywhere on the machine.
[executables]
model = FULL_PATH_TO_MPAS_MODEL_REPO/ocean_model
# The paths section describes paths that are used within the ocean core test
# cases.
[paths]
# The mesh_database and the initial_condition_database are locations where
# meshes / initial conditions might be found on a specific machine. They can be
# the same directory, or different directory. Additionally, if they are empty
# some test cases might download data into them, which will then be reused if
# the test case is run again later.
mpas_model = FULL_PATH_TO_MPAS_MODEL_REPO
mesh_database = FULL_PATH_TO_LOCAL_MESH_DATABASE
initial_condition_database = FULL_PATH_TO_LOCAL_INITIAL_CONDITION_DATABASE
bathymetry_database = FULL_PATH_TO_BATHYMETRY_DATABASE
# The options in this section relate to configuring and running with a compass
# conda environment
[conda]
# Whether a link to load_compass_env.sh should be included with each test case
# (can also be specified with the --link_load_compass flag)
link_load_compass = False