Skip to content

Commit

Permalink
changes to xml defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
abishekg7 committed Oct 8, 2020
1 parent 74a1cfa commit 7fa4141
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Config/config_postprocess.xml
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@

<entry id="TIMESERIES_OUTPUT_ROOTDIR"
type="string"
valid_values="/glade/scratch/$USER/archive/$CASE, $DOUT_S_ROOT"
value="$DOUT_S_ROOT"
valid_values="/glade/scratch/$USER/archive/$CASE, $DOUT_S_ROOT, $PP_CASE_PATH/tseries"
value="$PP_CASE_PATH/tseries"
group="postprocess"
desc="Fully-qualified rootdir path to output variable time series data files. Note: [compname]/proc/tseries/[tper] will be appended automatically."
></entry>
Expand Down
2 changes: 1 addition & 1 deletion cesm_utils/cesm_utils/create_postprocess
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def initialize_main(envDict, options, standalone):
# refer to the caseroot that was specified on the command line instead of what
# is read in the environment as the caseroot may have changed from what is listed
# in the env xml
envDict['CASEROOT'] = caseroot
envDict['CASEROOT'] = os.path.abspath(caseroot)
envDict['POSTPROCESS_PATH'] = pp

envDict['CESM_TAG'] = 'undefined'
Expand Down
2 changes: 1 addition & 1 deletion diagnostics/diagnostics/atm/Config/config_diags_atm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<entry id="ATMDIAG_OUTPUT_ROOT_PATH"
type="char"
valid_values=""
value="$DOUT_S_ROOT/atm/proc"
value="$PP_CASE_PATH/proc/atm"
group="global"
desc="Postprocessed files output root path."
></entry>
Expand Down
8 changes: 4 additions & 4 deletions diagnostics/diagnostics/ice/Config/config_diags_ice.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,23 +140,23 @@ Applies to both model and control cases."
<entry id="ICEDIAG_PATH_CLIMO_CONT"
type="char"
valid_values=""
value="$ICEDIAG_PATH_CONT/ice/proc/climo/$ICEDIAG_CASE_TO_CONT/"
value="$PP_CASE_PATH/proc/ice/climo/$ICEDIAG_CASE_TO_CONT/"
group="cont_dataset"
desc="Path to generated cont climos"
></entry>

<entry id="ICEDIAG_DIAG_ROOT"
type="char"
valid_values=""
value="$ICEDIAG_PATH_CONT/ice/proc/diag/$ICEDIAG_CASE_TO_CONT/"
value="$PP_CASE_PATH/proc/ice/diag/$ICEDIAG_CASE_TO_CONT/"
group="cont_dataset"
desc="Path to generated diags."
></entry>

<entry id="ICEDIAG_PLOT_ROOT"
type="char"
valid_values=""
value="$ICEDIAG_PATH_CONT/ice/proc/diag/$ICEDIAG_CASE_TO_CONT/web_plots/"
value="$PP_CASE_PATH/proc/ice/diag/$ICEDIAG_CASE_TO_CONT/web_plots/"
group="cont_dataset"
desc="Path to generated diag web plots (local)."
></entry>
Expand All @@ -172,7 +172,7 @@ Applies to both model and control cases."
<entry id="ICEDIAG_VAR_NAME_TYPE_CONT"
type="char"
valid_values="CSIM/CICE/SIMIP"
value="SIMIP"
value="CICE"
group="cont_dataset"
desc="OLD for u, v var names. NEW for uvel, vvel var names."
></entry>
Expand Down
4 changes: 2 additions & 2 deletions diagnostics/diagnostics/ocn/Config/config_diags_ocn.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<entry id="OCNDIAG_TAVGDIR"
type="char"
valid_values=""
value="$DOUT_S_ROOT/ocn/proc/climo.$OCNDIAG_YEAR0.$OCNDIAG_YEAR1"
value="$PP_CASE_PATH/proc/ocn/climo.$OCNDIAG_YEAR0.$OCNDIAG_YEAR1"
group="global"
desc="Local machine directory for climatology files created by the ocn_avg_generator.py. This directory must have write permissions for the user running the postprocessing."
></entry>
Expand Down Expand Up @@ -68,7 +68,7 @@
<entry id="OCNDIAG_WORKDIR"
type="char"
valid_values=""
value="$DOUT_S_ROOT/ocn/proc/diag_work.$OCNDIAG_YEAR0-$OCNDIAG_YEAR1"
value="$PP_CASE_PATH/proc/ocn/diag_work.$OCNDIAG_YEAR0-$OCNDIAG_YEAR1"
group="global"
desc="Local machine path to OMWG diagnostics working directory."
></entry>
Expand Down

0 comments on commit 7fa4141

Please sign in to comment.