trapz.hpp
Go to the documentation of this file.
1 #ifndef TRAPZ_H
2 #define TRAPZ_H
3 #include <petscksp.h>
4 #include "class.hpp"
5 namespace SPE{
10  int trapz(
11  const Vec &q,
12  PetscScalar &I,
13  SPE &data
14  );
19  PetscErrorCode trapz_4nynznt(
20  const Vec &q,
21  PetscScalar &I,
22  SPE &data
23  );
24 
25 
26 
27 }
28 #endif
PetscErrorCode trapz_4nynznt(const Vec &q, PetscScalar &I, SPE &data)
trapezoidal rule on Vec with 4,ny,nz,nt values
Definition: trapz.cpp:110
Namespace containing all functions and data classes for this solver.
Definition: Ax_b.hpp:5
int trapz(const Vec &q, PetscScalar &I, SPE &data)
trapezoidal rule on Vec with ny,nz values
Definition: trapz.cpp:10