Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/callbacks_step/analysis_covariant.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ function Trixi.integrate(func::Func, u,
mesh::Union{TreeMesh{2}, StructuredMesh{2},
StructuredMeshView{2},
UnstructuredMesh2D, P4estMesh{2}, T8codeMesh{2}},
equations::AbstractCovariantEquations{2}, dg::DG,
equations::AbstractCovariantEquations{2},
dg::Union{DGSEM, FDSBP},
cache; normalize = true) where {Func}
(; aux_node_vars) = cache.auxiliary_variables

Expand Down Expand Up @@ -59,8 +60,8 @@ end

# Entropy time derivative for cons2entropy function which depends on auxiliary variables
function Trixi.analyze(::typeof(Trixi.entropy_timederivative), du, u, t,
mesh::P4estMesh{2},
equations::AbstractCovariantEquations{2}, dg::DG, cache)
mesh::P4estMesh{2}, equations::AbstractCovariantEquations{2},
dg::Union{DGSEM, FDSBP}, cache)
(; aux_node_vars) = cache.auxiliary_variables

# Calculate ∫(∂S/∂u ⋅ ∂u/∂t)dΩ
Expand Down
Loading