Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature #2682 default_model #2683

Merged
merged 5 commits into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/config/EnsembleStatConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion data/config/GenEnsProdConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion data/config/GridStatConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion data/config/MODEConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion data/config/MODEMultivarConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion data/config/MTDConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Output model name to be written
//

model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion data/config/PointStatConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion data/config/SeriesAnalysisConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion data/config/WaveletStatConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion docs/Users_Guide/config_options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ e.g. model = "GFS";

.. code-block:: none

model = "WRF";
model = "FCST";

desc
^^^^
Expand Down
2 changes: 1 addition & 1 deletion docs/Users_Guide/ensemble-stat.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ ____________________

.. code-block:: none

model = "WRF";
model = "FCST";
desc = "NA";
obtype = "ANALYS";
regrid = { ... }
Expand Down
2 changes: 1 addition & 1 deletion docs/Users_Guide/gen-ens-prod.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ ____________________

.. code-block:: none
model = "WRF";
model = "FCST";
desc = "NA";
regrid = { ... }
censor_thresh = [];
Expand Down
2 changes: 1 addition & 1 deletion docs/Users_Guide/grid-stat.rst
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ __________________________

.. code-block:: none

model = "WRF";
model = "FCST";
desc = "NA";
obtype = "ANALYS";
fcst = { ... }
Expand Down
2 changes: 1 addition & 1 deletion docs/Users_Guide/mode-td.rst
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ ______________________

.. code-block:: none

model = "WRF";
model = "FCST";
desc = "NA";
obtype = "ANALYS";
regrid = { ... }
Expand Down
2 changes: 1 addition & 1 deletion docs/Users_Guide/mode.rst
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ _____________________

.. code-block:: none

model = "WRF";
model = "FCST";
desc = "NA";
obtype = "ANALYS";
regrid = { ... }
Expand Down
2 changes: 1 addition & 1 deletion docs/Users_Guide/point-stat.rst
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ ________________________

.. code-block:: none

model = "WRF";
model = "FCST";
desc = "NA";
regrid = { ... }
climo_mean = { ... }
Expand Down
2 changes: 1 addition & 1 deletion docs/Users_Guide/series-analysis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ ____________________

.. code-block:: none

model = "WRF";
model = "FCST";
desc = "NA";
obtype = "ANALYS";
regrid = { ... }
Expand Down
2 changes: 1 addition & 1 deletion docs/Users_Guide/wavelet-stat.rst
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ _______________________

.. code-block:: none

model = "WRF";
model = "FCST";
desc = "NA";
obtype = "ANALYS";
fcst = { ... }
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/EnsembleStatConfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/EnsembleStatConfig_MASK_SID
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/EnsembleStatConfig_climo
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/EnsembleStatConfig_grid_weight
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/EnsembleStatConfig_one_cdf_bin
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/EnsembleStatConfig_qty_inc_exc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/GenEnsProdConfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/GenEnsProdConfig_normalize
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/GridStatConfig_APCP_regrid
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/GridStatConfig_SEEPS
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/GridStatConfig_rtma
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/GridStatConfig_rtma_perc_thresh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/GridStatConfig_st4
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/MODEConfig_cut_line
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/MODEConfig_hmt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/MODEConfig_multivar_fake_data
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/MODEConfig_perc_thresh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/MODEConfig_python
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/MODEConfig_python_mixed
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/MODEConfig_quilt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// Output model name to be written
//
model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/MTDConfig_simple
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Output model name to be written
//

model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/PointStatConfig_APCP
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
////////////////////////////////////////////////////////////////////////////////

model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/PointStatConfig_APCP_HIRA
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
////////////////////////////////////////////////////////////////////////////////

model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/PointStatConfig_LAND_TOPO_MASK
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
////////////////////////////////////////////////////////////////////////////////

model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
2 changes: 1 addition & 1 deletion internal/test_unit/config/PointStatConfig_MASK_SID
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
////////////////////////////////////////////////////////////////////////////////

model = "WRF";
model = "FCST";

//
// Output description to be written
Expand Down
Loading
Loading