Skip to content

Commit

Permalink
Fixing extended link in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mjs2369 committed Oct 24, 2023
1 parent bdfdbb9 commit 360ab2c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions guide/qcf-examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ anxious to build scientific collaborations using these new capabilities.
Make sure that you are on the quantile_methods branch of DART:
``git checkout quantile_methods``

Build all executables:
``./quickbuild.sh nompi``

Steps for reproducing basic tests:

Test A: Assimilating observations of state (wind) and tracer concentration using
Expand All @@ -21,11 +24,7 @@ The default model configuration has a single tracer source at gridpoint 1 along
small uniform tracer sinks that lead to areas where the true tracer concentration is
usually 0. This is a particularly tough test for ensemble methods.

#. Build all executables,

``./quickbuild.sh nompi``

#. Add the filename of the already prepared .csv file (all_bnrhf_qcf_table.csv) in between
#. Add the filename of the already prepared QCF table (all_bnrhf_qcf_table.csv) in between
the single quotes on the line ``qcf_table_filename = ''`` in the &filter_mod section of
/DART/models/lorenz_96_tracer_advection/work/input.nml

Expand Down Expand Up @@ -82,7 +81,7 @@ Doing a diff between these modules shows how the control is being changed for th
following tests in that module. The tests below
replace the default version of that module with others that change certain options.

#. Add the filename of the already prepared .csv file (all_eakf_qcf_table.csv) in between
#. Add the filename of the already prepared QCF table (all_eakf_qcf_table.csv) in between
the single quotes on the line ``qcf_table_filename = ''`` in the &filter_mod section of
/DART/models/lorenz_96_tracer_advection/work/input.nml

Expand All @@ -96,7 +95,7 @@ replace the default version of that module with others that change certain optio

Test C: Using default ensemble adjustment Kalman filter for state, but bounded normal rank histogram filter and priors for tracer concentration and source.

#. Add the filename of the already prepared .csv file (state_eakf_tracer_bnrhf_qcf_table.csv) in
#. Add the filename of the already prepared QCF table (state_eakf_tracer_bnrhf_qcf_table.csv) in
between the single quotes on the line ``qcf_table_filename = ''`` in the &filter_mod section of
/DART/models/lorenz_96_tracer_advection/work/input.nml

Expand All @@ -115,15 +114,16 @@ above. There are distinct numerical challenges in implementing the quantile algo
for quantities that are bounded above, so flipping the sign of the tracers is a good
test.

#. Add the filename of the already prepared .csv file (neg_qcf_table.csv) in between the
#. Add the filename of the already prepared QCF table (neg_qcf_table.csv) in between the
single quotes on the line ``qcf_table_filename = ''`` in the &filter_mod section of
/DART/models/lorenz_96_tracer_advection/work/input.nml

.. code::
.. code-block:: text
&filter_nml
qcf_table_filename = 'neg_qcf_table.csv'
qcf_table_filename = 'neg_qcf_table.csv'
/
#. In the file input.nml, change the entry positive_tracer to .false. Also, change the
entry read_input_state_from_file back to .false.

Expand Down
2 changes: 1 addition & 1 deletion guide/qcf_probit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Obs_inc_info: filter_kind, bounded_below, bounded_above, lower_bound, upper_boun

Customizing the Table
---------------------
The table can be customized by editing a Google Sheet spreadsheet (which is then downloaded in .csv format). Folow this link https://docs.google.com/spreadsheets/d/1SI4wHBXatLAAMfiMx3mUUC7x0fqz4lniKuM4_i5j6bM/edit#gid=0 to access the template spreadsheet.
The table can be customized by editing a Google Sheet spreadsheet (which is then downloaded in .csv format). Folow this `link <https://docs.google.com/spreadsheets/d/1SI4wHBXatLAAMfiMx3mUUC7x0fqz4lniKuM4_i5j6bM/edit#gid=0>`_ to access the template spreadsheet.

The user will add and fill in one row for each bounded QTY they want to specify. If a QTY is not listed in the table, the default values will be used for all 25 options. Therefore, the user will only need to add rows for QTYs that use non-default values for any of the input options.

Expand Down

0 comments on commit 360ab2c

Please sign in to comment.