Skip to content

Commit f61ae83

Browse files
committed
change name and fix docs
1 parent f2a3240 commit f61ae83

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

examples/euler/dry_air/buoyancy/elixir_internal_energy_inertia_gravity_waves.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ equations = CompressibleEulerInternalEnergyEquationsWithGravity2D(c_p = 1004,
6363
gravity = 9.81)
6464

6565
surface_flux = (flux_conservative_es, flux_nonconservative_es)
66-
volume_flux = (flux_conservative_artiano_ranocha, flux_nonconservative_artiano_ranocha)
66+
volume_flux = (flux_conservative_etec, flux_nonconservative_etec)
6767
polydeg = 3
6868
solver = DGSEM(polydeg = polydeg, surface_flux = surface_flux,
6969
volume_integral = VolumeIntegralFluxDifferencing(volume_flux))

src/equations/compressible_euler_internal_energy_with_gravity_2d.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ have_nonconservative_terms(::CompressibleEulerInternalEnergyEquationsWithGravity
9595
end
9696

9797
"""
98-
flux_conservative_artiano_ranocha(u_ll, u_rr, normal_direction::AbstractVector, equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
98+
flux_conservative_etec(u_ll, u_rr, normal_direction::AbstractVector, equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
9999
100100
Entropy conserving, total energy conserving and kinetic energy preserving two-point flux by
101101
- Marco Artiano, Hendrik Ranocha (2026)
102102
On Affordable High-Order Entropy-Conservative/Stable and
103103
Well-Balanced Methods for Nonconservative Hyperbolic Systems
104104
[DOI: 10.48550/arXiv.2603.18978](https://arxiv.org/abs/2603.18978)
105105
"""
106-
@inline function flux_conservative_artiano_ranocha(u_ll, u_rr,
106+
@inline function flux_conservative_etec(u_ll, u_rr,
107107
normal_direction::AbstractVector,
108108
equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
109109
# Unpack left and right state
@@ -129,15 +129,15 @@ Entropy conserving, total energy conserving and kinetic energy preserving two-po
129129
end
130130

131131
"""
132-
flux_nonconservative_artiano_ranocha(u_ll, u_rr, normal_direction::AbstractVector, equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
132+
flux_nonconservative_etec(u_ll, u_rr, normal_direction::AbstractVector, equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
133133
134134
Nonconservative part of the entropy conserving, total energy conserving and kinetic energy preserving two-point flux by
135135
- Marco Artiano, Hendrik Ranocha (2026)
136136
On Affordable High-Order Entropy-Conservative/Stable and
137137
Well-Balanced Methods for Nonconservative Hyperbolic Systems
138138
[DOI: 10.48550/arXiv.2603.18978](https://arxiv.org/abs/2603.18978)
139139
"""
140-
@inline function flux_nonconservative_artiano_ranocha(u_ll, u_rr,
140+
@inline function flux_nonconservative_etec(u_ll, u_rr,
141141
normal_direction::AbstractVector,
142142
equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
143143

@@ -159,7 +159,7 @@ Nonconservative part of the entropy conserving, total energy conserving and kine
159159
end
160160

161161
"""
162-
flux_nonconservative_artiano_ranocha(u_ll, u_rr, normal_direction::AbstractVector, equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
162+
flux_conservative_es(u_ll, u_rr, normal_direction::AbstractVector, equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
163163
164164
Entropy stable two-point flux by
165165
- Marco Artiano, Hendrik Ranocha (2026)
@@ -209,7 +209,7 @@ Entropy stable two-point flux by
209209
end
210210

211211
"""
212-
flux_nonconservative_artiano_ranocha(u_ll, u_rr, normal_direction::AbstractVector, equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
212+
flux_nonconservative_es(u_ll, u_rr, normal_direction::AbstractVector, equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
213213
214214
Nonconservative part of the entropy stable two-point flux by
215215
- Marco Artiano, Hendrik Ranocha (2026)

test/test_type.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -590,15 +590,15 @@ end
590590
t = zero(RealT)
591591
u = u_ll = u_rr = u_inner = cons = SVector(one(RealT), one(RealT), one(RealT),
592592
RealT(2), one(RealT))
593-
surface_flux_functions = (flux_conservative_artiano_ranocha,
594-
flux_nonconservative_artiano_ranocha)
593+
surface_flux_functions = (flux_conservative_etec,
594+
flux_nonconservative_etec)
595595
normal_direction = SVector(one(RealT), one(RealT))
596596

597-
@test eltype(@inferred flux_nonconservative_artiano_ranocha(u_ll, u_rr,
597+
@test eltype(@inferred flux_nonconservative_etec(u_ll, u_rr,
598598
normal_direction,
599599
equations)) ==
600600
RealT
601-
@test eltype(@inferred flux_conservative_artiano_ranocha(u_ll, u_rr,
601+
@test eltype(@inferred flux_conservative_etec(u_ll, u_rr,
602602
normal_direction,
603603
equations)) ==
604604
RealT

0 commit comments

Comments
 (0)