update_Closure.hpp
Go to the documentation of this file.
1 #ifndef UPDATE_CLOSURE_H
2 #define UPDATE_CLOSURE_H
3 #include <petscksp.h>
4 #include "class.hpp"
5 namespace SPE{
16  int update_Closure(
17  SPE &data,
18  Vec &q,
19  Vec &qp1,
20  PetscScalar &alpha,
21  const PetscInt &maxiter=50
22  );
23 
24 }
25 
26 #endif
Namespace containing all functions and data classes for this solver.
Definition: Ax_b.hpp:5
int update_Closure(SPE &data, Vec &q, Vec &qp1, PetscScalar &alpha, const PetscInt &maxiter=50)
calculate the closure equation and output the result This is part of the solution procedure shown in...
Definition: update_Closure.cpp:15