-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
27 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#include <core/matrix_free_operator.h> | ||
|
||
using namespace dealii; | ||
|
||
/** | ||
* \brief This is a derived class of `matrixFreeOperator` where the user implements their | ||
* PDEs. | ||
* | ||
* \tparam dim The number of dimensions in the problem. | ||
* \tparam degree The polynomial degree of the shape functions. | ||
* \tparam number Datatype to use. Either double or float. | ||
*/ | ||
template <int dim, int degree, typename number> | ||
class customPDE : public matrixFreeOperator<dim, degree, number> | ||
{ | ||
/** | ||
* \brief Constructor. | ||
*/ | ||
customPDE(); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters