Skip to content

Commit b3d1cc4

Browse files
authored
WENO7 Docs (#1865)
* Citation for WENO7. * Clean up. * Alternate hyperlink method. * Pass codespell. * Try more general solution.
1 parent 13a7ce3 commit b3d1cc4

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.codespell-ignore-words

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ inout
44
parms
55
pres
66
rime
7-
wth
7+
wth

.codespellrc

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[codespell]
22
skip = .git,*.ipynb,*.bib,*.ps,*.patch,*~,CHANGES,*/Submodules,*/tmp_build_dir,Cell_D_*
33
ignore-words = .codespell-ignore-words
4+
uri-ignore-words-list = *

Docs/sphinx_doc/Discretizations.rst

+9-4
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Sauer, J. A., & Muñoz-Esparza, D. (2020). The FastEddy® resident-GPU accelerat
204204

205205
WENO Methods
206206
------------
207-
Additionally, weighted essentially non-oscillatory (WENO) schemes are available for :math:`3rd` and :math:`5th` order interpolation. The general formulation is as follows:
207+
Additionally, weighted essentially non-oscillatory (WENO) schemes are available for :math:`3rd`, :math:`5th`, and :math:`7th` order interpolation. The general formulation is as follows:
208208

209209
.. math::
210210
@@ -237,8 +237,11 @@ With the WENO5 scheme, one has :math:`N=3, \; \omega_{1} = 1/10, \; \omega_{2} =
237237
q_{m + \frac{1}{2}}^{(3)} = \frac{1}{3} q_{m} + \frac{5}{6} q_{m+1} - \frac{1}{6} q_{m+2}
238238
\end{array}
239239
240-
By default, the WENO3 scheme will be employed for moisture variables if the code is compiled with moisture support.
241-
However, users may utilize the WENO scheme for dry scalar variables as well. The scheme for each type is specified by
240+
Details for the WENO7 scheme are provided in `Shu, C.W. (1997)`_.
241+
By default, the WENO3 scheme will be employed for moisture variables if the code is compiled with moisture support. However, users may
242+
utilize the WENO scheme for dry scalar variables as well. The scheme for each type is specified by
243+
244+
.. _`Shu, C.W. (1997)`: https://www3.nd.edu/~zxu2/acms60790S13/Shu-WENO-notes.pdf
242245

243246
::
244247

@@ -247,7 +250,9 @@ However, users may utilize the WENO scheme for dry scalar variables as well. T
247250
erf.moistscal_horiz_adv_type =
248251
erf.moistscal_vert_adv_type =
249252

250-
Ref: Muñoz-Esparza, D., Sauer, J. A., Jensen, A. A., Xue, L., & Grabowski, W. W. (2022). The FastEddy® resident-GPU accelerated large-eddy simulation framework: Moist dynamics extension, validation and sensitivities of modeling non-precipitating shallow cumulus clouds. Journal of Advances in Modeling Earth Systems, 14, e2021MS002904.
253+
Ref: Muñoz-Esparza, D., Sauer, J. A., Jensen, A. A., Xue, L., & Grabowski, W. W. (2022). The FastEddy® resident-GPU accelerated large-eddy
254+
simulation framework: Moist dynamics extension, validation and sensitivities of modeling non-precipitating shallow cumulus clouds.
255+
Journal of Advances in Modeling Earth Systems, 14, e2021MS002904.
251256
`doi:10.1029/2021MS002904 <https://onlinelibrary.wiley.com/doi/10.1029/2021MS002904>`_
252257

253258
Momentum, Thermal, and Scalar Diffusion Contribution to DNS

0 commit comments

Comments
 (0)