27
27
@inline extract_centered_scheme (scheme:: AUAS ) = scheme. advecting_velocity_scheme
28
28
29
29
"""
30
- OnlySelfUpwinding(; cross_scheme = CenteredSecondOrder (),
30
+ OnlySelfUpwinding(; cross_scheme = Centered (),
31
31
δU_stencil = FunctionStencil(divergence_smoothness),
32
32
δV_stencil = FunctionStencil(divergence_smoothness),
33
33
δu²_stencil = FunctionStencil(u_smoothness),
@@ -43,7 +43,7 @@ Keyword arguments
43
43
=================
44
44
45
45
- `cross_scheme`: Advection scheme used for cross-reconstructed terms (tangential velocities)
46
- in the kinetic energy gradient and the divergence flux. Defaults to `CenteredSecondOrder ()`.
46
+ in the kinetic energy gradient and the divergence flux. Defaults to `Centered ()`.
47
47
- `δU_stencil`: Stencil used for smoothness indicators of `δx_U` in case of a `WENO` upwind reconstruction.
48
48
Defaults to `FunctionStencil(divergence_smoothness)`
49
49
- `δV_stencil`: Same as `δU_stencil` but for the smoothness of `δy_V`
@@ -52,15 +52,15 @@ Keyword arguments
52
52
- `δv²_stencil`: Same as `δu²_stencil` but for the smoothness of `δy_v²`
53
53
Defaults to `FunctionStencil(v_smoothness)`
54
54
"""
55
- OnlySelfUpwinding (; cross_scheme = CenteredSecondOrder (),
55
+ OnlySelfUpwinding (; cross_scheme = Centered (),
56
56
δU_stencil = FunctionStencil (divergence_smoothness),
57
57
δV_stencil = FunctionStencil (divergence_smoothness),
58
58
δu²_stencil = FunctionStencil (u_smoothness),
59
59
δv²_stencil = FunctionStencil (v_smoothness),
60
60
) = OnlySelfUpwinding (extract_centered_scheme (cross_scheme), δU_stencil, δV_stencil, δu²_stencil, δv²_stencil)
61
61
62
62
"""
63
- CrossAndSelfUpwinding(; cross_scheme = CenteredSecondOrder (),
63
+ CrossAndSelfUpwinding(; cross_scheme = Centered (),
64
64
divergence_stencil = DefaultStencil(),
65
65
δu²_stencil = FunctionStencil(u_smoothness),
66
66
δv²_stencil = FunctionStencil(v_smoothness))
@@ -74,15 +74,15 @@ Keyword arguments
74
74
=================
75
75
76
76
- `cross_scheme`: Advection scheme used for cross-reconstructed terms (tangential velocities)
77
- in the kinetic energy gradient. Defaults to `CenteredSecondOrder ()`.
77
+ in the kinetic energy gradient. Defaults to `Centered ()`.
78
78
- `divergence_stencil`: Stencil used for smoothness indicators of `δx_U + δy_V` in case of a
79
79
`WENO` upwind reconstruction. Defaults to `DefaultStencil()`.
80
80
- `δu²_stencil`: Stencil used for smoothness indicators of `δx_u²` in case of a `WENO` upwind reconstruction.
81
81
Defaults to `FunctionStencil(u_smoothness)`
82
82
- `δv²_stencil`: Same as `δu²_stencil` but for the smoothness of `δy_v²`
83
83
Defaults to `FunctionStencil(v_smoothness)`
84
84
"""
85
- CrossAndSelfUpwinding (; cross_scheme = CenteredSecondOrder (),
85
+ CrossAndSelfUpwinding (; cross_scheme = Centered (),
86
86
divergence_stencil = DefaultStencil (),
87
87
δu²_stencil = FunctionStencil (u_smoothness),
88
88
δv²_stencil = FunctionStencil (v_smoothness),
0 commit comments