Define the Primitive Variables Linearization based Riemann solver of FORESEER library.
Primitive Variables Linearization based Riemann solver.
| procedure, public, pass(self) :: initialize | Initialize solver. |
| procedure, public, pass(self) :: solve | Solve Riemann Problem. |
Initialize solver.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(riemann_solver_compressible_pvl), | intent(inout) | :: | self | Solver. |
||
| character(len=*), | intent(in), | optional | :: | config | Configuration for solver algorithm. |
Solve Riemann problem by PVL algorithm.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(riemann_solver_compressible_pvl), | intent(in) | :: | self | Solver. |
||
| class(eos_object), | intent(in) | :: | eos_left | Equation of state for left state. |
||
| class(conservative_object), | intent(in) | :: | state_left | Left Riemann state. |
||
| class(eos_object), | intent(in) | :: | eos_right | Equation of state for right state. |
||
| class(conservative_object), | intent(in) | :: | state_right | Right Riemann state. |
||
| type(vector), | intent(in) | :: | normal | Normal (versor) of face where fluxes are given. |
||
| class(conservative_object), | intent(inout) | :: | fluxes | Fluxes of the Riemann Problem solution. |