runPosIC, initializeGlobally

This commit is contained in:
Aik-Siong Koh
2023-05-27 21:43:09 -06:00
parent 6a577c052c
commit 9ddbdca742
139 changed files with 2401 additions and 431 deletions

View File

@@ -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>();
}