Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow atmosphere on reconstructed state, remove RelEuler system #6440

Merged
merged 4 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions src/Evolution/DiscontinuousGalerkin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ spectre_target_headers(
MortarDataHolder.hpp
MortarTags.hpp
NormalVectorTags.hpp
TimeDerivativeDecisions.hpp
UsingSubcell.hpp
)

Expand Down
18 changes: 18 additions & 0 deletions src/Evolution/DiscontinuousGalerkin/TimeDerivativeDecisions.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Distributed under the MIT License.
// See LICENSE.txt for details.

#pragma once

namespace evolution::dg {
/*!
* \brief Runtime control over time derivative work done.
*
* - `compute_flux_divergence`: if `true` then we compute and add the flux
divergence to the volume time derivative. Set to `false` to elide work
where you know the solution is spatially constant.
*/
template <size_t Dim>
struct TimeDerivativeDecisions {
bool compute_flux_divergence = true;
};
} // namespace evolution::dg
1 change: 0 additions & 1 deletion src/Evolution/Executables/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ add_subdirectory(GeneralizedHarmonic)
add_subdirectory(GrMhd)
add_subdirectory(NewtonianEuler)
add_subdirectory(RadiationTransport)
add_subdirectory(RelativisticEuler)
add_subdirectory(ScalarAdvection)
add_subdirectory(ScalarTensor)
add_subdirectory(ScalarWave)
4 changes: 0 additions & 4 deletions src/Evolution/Executables/RelativisticEuler/CMakeLists.txt

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading