set_BCs.hpp
Go to the documentation of this file.
1 #ifndef SET_BCS_H
2 #define SET_BCS_H
3 #include <petscksp.h>
4 #include "class.hpp"
5 namespace SPE
6 {
12  PetscInt set_BCs(
13  Mat &A,
14  Vec &b,
15  const PetscInt &ny,
16  const PetscInt &nz
17  );
23  PetscInt set_BCs(
24  SPE &data
25  );
26 }
27 
28 #endif
29 
Namespace containing all functions and data classes for this solver.
Definition: Ax_b.hpp:5
PetscInt set_BCs(Mat &A, Vec &b, const PetscInt &ny, const PetscInt &nz)
sets Boundary Condition equations in Matrix A and vector b in Ax=b linear system for solving the SPE ...
Definition: set_BCs.cpp:7