[P]arallel [Hi]gh-order [Li]brary for [P]DEs
Latest
Parallel High-Order Library for PDEs through hp-adaptive Discontinuous Galerkin methods
|
Base class of numerical flux associated with dissipation. More...
#include <viscous_numerical_flux.hpp>
Public Member Functions | |
NumericalFluxDissipative (std::shared_ptr< Physics::PhysicsBase< dim, nstate, real >> physics_input, std::shared_ptr< ArtificialDissipationBase< dim, nstate >> artificial_dissipation_input) | |
Constructor. | |
virtual | ~NumericalFluxDissipative ()=default |
Abstract class must have a virtual destructor and an implementation. | |
virtual std::array< real, nstate > | evaluate_solution_flux (const std::array< real, nstate > &soln_int, const std::array< real, nstate > &soln_ext, const dealii::Tensor< 1, dim, real > &normal_int) const =0 |
Solution flux at the interface. | |
virtual std::array< real, nstate > | evaluate_auxiliary_flux (const dealii::types::global_dof_index current_cell_index, const dealii::types::global_dof_index neighbor_cell_index, const real artificial_diss_coeff_int, const real artificial_diss_coeff_ext, const std::array< real, nstate > &soln_int, const std::array< real, nstate > &soln_ext, const std::array< dealii::Tensor< 1, dim, real >, nstate > &soln_grad_int, const std::array< dealii::Tensor< 1, dim, real >, nstate > &soln_grad_ext, const dealii::Tensor< 1, dim, real > &normal_int, const real &penalty, const bool on_boundary=false) const =0 |
Auxiliary flux at the interface. | |
Protected Attributes | |
const std::shared_ptr< Physics::PhysicsBase< dim, nstate, real > > | pde_physics |
Associated physics. | |
const std::shared_ptr< ArtificialDissipationBase< dim, nstate > > | artificial_dissip |
Link to artificial dissipation. | |
Base class of numerical flux associated with dissipation.
Definition at line 14 of file viscous_numerical_flux.hpp.