ABLATE Source Documentation  0.12.33
boundaryFunction.hpp
1 #ifndef ABLATELIBRARY_BOUNDARYFUNCTION_HPP
2 #define ABLATELIBRARY_BOUNDARYFUNCTION_HPP
3 
4 #include <petsc.h>
5 
6 namespace ablate::solver {
7 
9  public:
10  virtual PetscErrorCode ComputeBoundary(PetscReal time, Vec locX, Vec locX_t) = 0;
11 };
12 
13 } // namespace ablate::solver
14 #endif // ABLATELIBRARY_BOUNDARYFUNCTION_HPP
Definition: boundaryFunction.hpp:8