You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/timestepping.md
+38-24Lines changed: 38 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,37 +16,46 @@ For example, `"RK4"` for the Runge-Kutta 4th-order time stepper.
16
16
Most of the time steppers also come with their `Filtered` equivalents: [`FilteredForwardEulerTimeStepper`](@ref), [`FilteredAB3TimeStepper`](@ref), [`FilteredRK4TimeStepper`](@ref), [`FilteredLSRK54TimeStepper`](@ref), and [`FilteredETDRK4TimeStepper`](@ref).
17
17
18
18
The filtered time steppers apply a high-wavenumber filter to the solution at the end of each step.
19
-
The motivation behind filtering is to remove enstrophy accumulating at high wavenumbers and creating
20
-
noise at grid-scale level.
19
+
The motivation behind filtering is to preclude enstrophy from accumulating at high wavenumbers and
20
+
creating noise at grid-scale level.
21
21
22
-
The high-wavenumber filter used in the filtered timesteppers is:
22
+
The high-wavenumber filter used in the filtered time steppers is:
For fluid equations with quadratic non-linearities it makes sense to choose a cutoff wavenumber
33
-
at 2/3 of the highest wavenumber resolved in our domain, ``k_{\textrm{cutoff}} = \tfrac{2}{3} k_{\textrm{max}}`` (see discussion in [Aliasing section](@ref aliasing)).
32
+
For fluid equations with quadratic non-linearities it makes sense to choose a cut-off wavenumber
33
+
at 2/3 of the highest wavenumber that is resolved in our domain,
34
+
``k_{\textrm{cutoff}} = \tfrac{2}{3} k_{\textrm{max}}`` (see discussion in [Aliasing section](@ref aliasing)).
34
35
35
-
Given the order ``p``, we calculate the coefficient ``\alpha`` so that the the filter value
36
-
that corresponds to the highest allowed wavenumber in our domain is a small value, ``\delta``,
37
-
taken to be close to machine precision.
38
-
39
-
That is:
36
+
Given the order ``p``, we choose coefficient ``\alpha`` so that the filter value that corresponds
37
+
to the highest allowed wavenumber in our domain is a small number ``\delta``, usually taken to be
0 commit comments