Skip to content
Snippets Groups Projects
Commit 13bbe739 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] Add some more functions to LocalAsmInterface.

assembleJacobian, pre/postTimestep, and addJacobianToGlobal.
There are empty defaults but for jacobian assembly, which will fail if used but
not implemented.
parent 10a52b5f
No related branches found
No related tags found
No related merge requests found
...@@ -26,8 +26,34 @@ public: ...@@ -26,8 +26,34 @@ public:
virtual void assemble(double const t, std::vector<double> const& local_x) = 0; virtual void assemble(double const t, std::vector<double> const& local_x) = 0;
virtual void addToGlobal(AssemblerLib::LocalToGlobalIndexMap::RowColumnIndices const&, virtual void addToGlobal(
GlobalMatrix& M, GlobalMatrix& K, GlobalVector& b) const = 0; AssemblerLib::LocalToGlobalIndexMap::RowColumnIndices const&,
GlobalMatrix& M, GlobalMatrix& K, GlobalVector& b) const = 0;
virtual void assembleJacobian(double const /*t*/,
std::vector<double> const& /*local_x*/)
{
ERR(
"assembleJacobian function is not implemented in the local "
"assembler.");
std::abort();
}
virtual void addJacobianToGlobal(AssemblerLib::LocalToGlobalIndexMap::
RowColumnIndices const& /*indices*/,
GlobalMatrix& /*Jac*/) const
{
ERR(
"addJacobianToGlobal function is not implemented in the local "
"assembler.");
std::abort();
}
virtual void preTimestep(std::vector<double> const& /*local_x*/,
double const /*t*/, double const /*delta_t*/)
{
}
virtual void postTimestep(std::vector<double> const& /*local_x*/) {}
}; };
} // namespace ProcessLib } // namespace ProcessLib
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment