runPosIC, initializeGlobally
This commit is contained in:
@@ -1,10 +1,20 @@
|
||||
#include "VectorNewtonRaphson.h"
|
||||
#include <memory>
|
||||
|
||||
#include "VectorNewtonRaphson.h"
|
||||
#include "MatrixSolver.h"
|
||||
#include "GEFullMatParPv.h"
|
||||
|
||||
using namespace MbD;
|
||||
void MbD::VectorNewtonRaphson::run()
|
||||
{
|
||||
//self preRun.
|
||||
//self initializeLocally.
|
||||
//self initializeGlobally.
|
||||
//self iterate.
|
||||
//self postRun.
|
||||
this->preRun();
|
||||
this->initializeLocally();
|
||||
this->initializeGlobally();
|
||||
this->iterate();
|
||||
this->postRun();
|
||||
}
|
||||
|
||||
std::shared_ptr<MatrixSolver> MbD::VectorNewtonRaphson::matrixSolverClassNew()
|
||||
{
|
||||
return std::make_shared<GEFullMatParPv>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user