Overture  Version 25
defineFDerivatives.h
Go to the documentation of this file.
1 #ifndef X_DERIVATIVE_H
2 #define X_DERIVATIVE_H
3 
4 //===============================================================================
5 // Define the standard finite difference derivative functions
6 //===============================================================================
7 
8 #undef DERIVATIVE
9 #define DERIVATIVE(name) \
10 void \
11 name (const realMappedGridFunction & u, \
12  RealDistributedArray & derivative, \
13  const Index & I1, \
14  const Index & I2, \
15  const Index & I3, \
16  const Index & N, \
17  MappedGridOperators & mgop );
18 
19 
29 
44 
45 
46 #undef DERIVATIVE
47 #define DERIVATIVE(name) \
48 void \
49 name (RealDistributedArray & derivative, \
50  const Index & I1, \
51  const Index & I2, \
52  const Index & I3, \
53  const Index & E, \
54  const Index & C, \
55  MappedGridOperators & mgop );
56 
66 
80 
81 #undef DERIVATIVE
82 #endif