naginterfaces.library.pde.dim1_parab_euler_osher¶
- naginterfaces.library.pde.dim1_parab_euler_osher(uleft, uright, gamma, path, comm)[source]¶
dim1_parab_euler_osher
calculates a numerical flux function using Osher’s Approximate Riemann Solver for the Euler equations in conservative form. It is designed primarily for use with the upwind discretization schemesdim1_parab_convdiff()
,dim1_parab_convdiff_dae()
ordim1_parab_convdiff_remesh()
, but may also be applicable to other conservative upwind schemes requiring numerical flux functions.For full information please refer to the NAG Library document for d03pv
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/d03/d03pvf.html
- Parameters
- uleftfloat, array-like, shape
must contain the left value of the component , for . That is, must contain the left value of , must contain the left value of and must contain the left value of .
- urightfloat, array-like, shape
must contain the right value of the component , for . That is, must contain the right value of , must contain the right value of and must contain the right value of .
- gammafloat
The ratio of specific heats, .
- pathstr, length 1
The variant of the Osher scheme.
Original.
Physical.
- commdict, communication object
Communication structure.
On initial entry: need not be set.
- Returns
- fluxfloat, ndarray, shape
contains the numerical flux component , for .
- Raises
- NagValueError
- (errno )
On entry, .
Constraint: .
- (errno )
On entry, .
Constraint: or .
- (errno )
Right pressure value : .
- (errno )
Left pressure value : .
- (errno )
On entry, .
Constraint: .
- (errno )
On entry, .
Constraint: .
- Notes
dim1_parab_euler_osher
calculates a numerical flux function at a single spatial point using Osher’s Approximate Riemann Solver (see Hemker and Spekreijse (1986) and Pennington and Berzins (1994)) for the Euler equations (for a perfect gas) in conservative form. You must supply the left and right solution values at the point where the numerical flux is required, i.e., the initial left and right states of the Riemann problem defined below. In the functionsdim1_parab_convdiff()
,dim1_parab_convdiff_dae()
anddim1_parab_convdiff_remesh()
, the left and right solution values are derived automatically from the solution values at adjacent spatial points and supplied to the function argument from which you may calldim1_parab_euler_osher
.The Euler equations for a perfect gas in conservative form are:
with
where is the density, is the momentum, is the specific total energy, and is the (constant) ratio of specific heats. The pressure is given by
where is the velocity.
The function calculates the Osher approximation to the numerical flux function , where and are the left and right solution values, and is the intermediate state arising from the similarity solution of the Riemann problem defined by
with and as in (2), and initial piecewise constant values for and for . The spatial domain is , where is the point at which the numerical flux is required. Osher’s solver carries out an integration along a path in the phase space of consisting of subpaths which are piecewise parallel to the eigenvectors of the Jacobian of the PDE system. There are two variants of the Osher solver termed O (original) and P (physical), which differ in the order in which the subpaths are taken. The P-variant is generally more efficient, but in some rare cases may fail (see Hemker and Spekreijse (1986) for details). The argument specifies which variant is to be used. The algorithm for Osher’s solver for the Euler equations is given in detail in the Appendix of Pennington and Berzins (1994).
- References
Hemker, P W and Spekreijse, S P, 1986, Multiple grid and Osher’s scheme for the efficient solution of the steady Euler equations, Applied Numerical Mathematics (2), 475–493
Pennington, S V and Berzins, M, 1994, New NAG Library software for first-order partial differential equations, ACM Trans. Math. Softw. (20), 63–99
Quirk, J J, 1994, A contribution to the great Riemann solver debate, Internat. J. Numer. Methods Fluids (18), 555–574