Skip to content
Snippets Groups Projects
Commit 2bcaff45 authored by wenqing's avatar wenqing
Browse files

[Process] added members to check element deactivation

parent 3c701ff2
No related branches found
No related tags found
No related merge requests found
......@@ -190,6 +190,15 @@ MathLib::MatrixSpecifications Process::getMatrixSpecifications(
&l.getGhostIndices(), &_sparsity_pattern};
}
void Process::checkElementDeactivation(double const time, const int process_id)
{
auto const& variables_per_process = getProcessVariables(process_id);
for (auto const& variable : variables_per_process)
{
variable.get().checkElementDeactivation(time);
}
}
void Process::preAssemble(const double t, GlobalVector const& x)
{
preAssembleConcreteProcess(t, x);
......
......@@ -90,6 +90,8 @@ public:
_coupled_solutions = coupled_solutions;
}
void checkElementDeactivation(double const time, const int process_id);
bool isMonolithicSchemeUsed() const { return _use_monolithic_scheme; }
virtual void setCoupledTermForTheStaggeredSchemeToLocalAssemblers() {}
void preAssemble(const double t, GlobalVector const& x) override final;
......@@ -284,7 +286,7 @@ protected:
GlobalSparsityPattern _sparsity_pattern;
private:
protected:
/// Variables used by this process. For the monolithic scheme or a
/// single process, the size of the outer vector is one. For the
/// staggered scheme, the size of the outer vector is the number of the
......@@ -292,7 +294,6 @@ private:
std::vector<std::vector<std::reference_wrapper<ProcessVariable>>>
_process_variables;
protected:
/// Vector for boundary conditions. For the monolithic scheme or a
/// single process, the size of the vector is one. For the staggered
/// scheme, the size of vector is the number of the coupled processes.
......
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