NAG Library Routine Document
d03pvf
(dim1_parab_euler_osher)
1
Purpose
d03pvf 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 schemes
d03pff,
d03plf or
d03psf, but may also be applicable to other conservative upwind schemes requiring numerical flux functions.
2
Specification
Fortran Interface
Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
uleft(3),
uright(3),
gamma | Real (Kind=nag_wp), Intent (Out) | :: |
flux(3) | Character (1), Intent (In) | :: |
path |
|
3
Description
d03pvf 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 routines
d03pff,
d03plf and
d03psf, the left and right solution values are derived automatically from the solution values at adjacent spatial points and supplied to the subroutine argument
numflx from which you may call
d03pvf.
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 routine 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
path 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).
4
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
5
Arguments
- 1: – Real (Kind=nag_wp) arrayInput
-
On entry: 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 .
Constraints:
- ;
- Left pressure, , where is calculated using (3).
- 2: – Real (Kind=nag_wp) arrayInput
-
On entry: 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 .
Constraints:
- ;
- Right pressure, , where is calculated using (3).
- 3: – Real (Kind=nag_wp)Input
-
On entry: the ratio of specific heats, .
Constraint:
.
- 4: – Character(1)Input
-
On entry: the variant of the Osher scheme.
- Original.
- Physical.
Constraint:
or .
- 5: – Real (Kind=nag_wp) arrayOutput
-
On exit: contains the numerical flux component , for .
- 6: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
Note: if the left and/or right values of
or
(from
(3)) are found to be negative, then the routine will terminate with an error exit (
). If the routine is being called from the
numflx etc., then a
soft fail option (
or
) is recommended so that a recalculation of the current time step can be forced using the
numflx argument
ires (see
d03pff or
d03plf).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
On entry, | , |
or | or . |
-
On entry, | the left and/or right density or pressure value is less than . |
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
d03pvf performs an exact calculation of the Osher numerical flux function, and so the result will be accurate to machine precision.
8
Parallelism and Performance
d03pvf is not thread safe and should not be called from a multithreaded user program. Please see
Section 3.12.1 in How to Use the NAG Library and its Documentation for more information on thread safety.
d03pvf is not threaded in any implementation.
d03pvf must only be used to calculate the numerical flux for the Euler equations in exactly the form given by
(2), with
and
containing the left and right values of
and
, for
, respectively. It should be noted that Osher's scheme, in common with all Riemann solvers, may be unsuitable for some problems (see
Quirk (1994) for examples). The time taken depends on the input argument
path and on the left and right solution values, since inclusion of each subpath depends on the signs of the eigenvalues. In general this cannot be determined in advance.
10
Example
See
Section 10 in
d03plf.