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

[PL] Rename GWFP::init() to createLocalAsm().

parent 31b9134e
No related branches found
No related tags found
No related merge requests found
...@@ -166,10 +166,8 @@ public: ...@@ -166,10 +166,8 @@ public:
return "gw_"; return "gw_";
} }
void init() override void createLocalAssemblers() override
{ {
DBUG("Initialize GroundwaterFlowProcess.");
if (this->_mesh.getDimension()==1) if (this->_mesh.getDimension()==1)
createLocalAssemblers<1>(); createLocalAssemblers<1>();
else if (this->_mesh.getDimension()==2) else if (this->_mesh.getDimension()==2)
......
...@@ -49,7 +49,7 @@ public: ...@@ -49,7 +49,7 @@ public:
} }
/// Process specific initialization called by initialize(). /// Process specific initialization called by initialize().
virtual void init() = 0; virtual void createLocalAssemblers() = 0;
virtual bool assemble(const double delta_t) = 0; virtual bool assemble(const double delta_t) = 0;
virtual std::string getLinearSolverName() const = 0; virtual std::string getLinearSolverName() const = 0;
...@@ -86,7 +86,7 @@ public: ...@@ -86,7 +86,7 @@ public:
_global_assembler.reset( _global_assembler.reset(
new GlobalAssembler(*_A, *_rhs, *_local_to_global_index_map)); new GlobalAssembler(*_A, *_rhs, *_local_to_global_index_map));
init(); // Execute proces specific initialization. createLocalAssemblers();
for (auto const& pv : _process_variables) for (auto const& pv : _process_variables)
{ {
......
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