HyPar
1.0
Finite-Difference Hyperbolic-Parabolic PDE Solver on Cartesian Grids
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
LimiterMinMod.c
Go to the documentation of this file.
1
6
#include <
mathfunctions.h
>
7
#include <
limiters.h
>
8
16
double
LimiterMinMod
(
17
double
r
18
)
19
{
20
double
retval =
max
(0.0,
min
(1.0,r));
21
return
retval;
22
}
limiters.h
Definitions for limiter functions used in MUSCL-type reconstruction schemes.
LimiterMinMod
double LimiterMinMod(double)
Definition:
LimiterMinMod.c:16
mathfunctions.h
Contains function definitions for common mathematical functions.
max
#define max(a, b)
Definition:
math_ops.h:18
min
#define min(a, b)
Definition:
math_ops.h:14