Skip to content
Snippets Groups Projects

Update master

Merged Boman Romain requested to merge mergeAdrien into master
3 files
+ 14
1
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 12
1
@@ -113,10 +113,21 @@ void Solver::initialize()
dBC->apply(phi);
}
/**
* @brief Reset the solver unknowns to the initial solution
* @authors Adrien Crovato
*/
void Solver::reset()
{
// Re-apply Initial conditions
for(auto iIC : pbl->iICs)
iIC->apply(phi);
}
/**
* @brief Run the solver
* @authors Adrien Crovato
* Solver the steady Full Potential Equation
* Solve the steady Full Potential Equation
*/
bool Solver::execute()
{
Loading