131 lines
3.7 KiB
C++
131 lines
3.7 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
|
|
#include <assert.h>
|
|
#include <exception>
|
|
|
|
#include "PosICNewtonRaphson.h"
|
|
#include "SingularMatrixError.h"
|
|
#include "SystemSolver.h"
|
|
#include "Part.h"
|
|
#include "Constraint.h"
|
|
#include "CREATE.h"
|
|
#include "GESpMatParPvPrecise.h"
|
|
#include "GESpMatFullPvPosIC.h"
|
|
|
|
using namespace MbD;
|
|
|
|
void PosICNewtonRaphson::run()
|
|
{
|
|
while (true) {
|
|
try {
|
|
VectorNewtonRaphson::run();
|
|
break;
|
|
}
|
|
catch (SingularMatrixError ex) {
|
|
auto redundantEqnNos = ex.getRedundantEqnNos();
|
|
system->partsJointsMotionsDo([&](std::shared_ptr<Item> item) { item->removeRedundantConstraints(redundantEqnNos); });
|
|
system->partsJointsMotionsDo([&](std::shared_ptr<Item> item) { item->constraintsReport(); });
|
|
system->partsJointsMotionsDo([&](std::shared_ptr<Item> item) { item->setqsu(qsuOld); });
|
|
}
|
|
}
|
|
}
|
|
|
|
void PosICNewtonRaphson::preRun()
|
|
{
|
|
std::string str("MbD: Assembling system. ");
|
|
system->logString(str);
|
|
PosNewtonRaphson::preRun();
|
|
}
|
|
|
|
void PosICNewtonRaphson::assignEquationNumbers()
|
|
{
|
|
auto parts = system->parts();
|
|
//auto contactEndFrames = system->contactEndFrames();
|
|
//auto uHolders = system->uHolders();
|
|
auto essentialConstraints = system->essentialConstraints();
|
|
auto displacementConstraints = system->displacementConstraints();
|
|
auto perpendicularConstraints = system->perpendicularConstraints();
|
|
int eqnNo = 0;
|
|
for (auto& part : *parts) {
|
|
part->iqX(eqnNo);
|
|
eqnNo = eqnNo + 3;
|
|
part->iqE(eqnNo);
|
|
eqnNo = eqnNo + 4;
|
|
}
|
|
//for (auto& endFrm : *contactEndFrames) {
|
|
// endFrm->is(eqnNo);
|
|
// eqnNo = eqnNo + endFrm->sSize();
|
|
//}
|
|
//for (auto& uHolder : *uHolders) {
|
|
// uHolder->iu(eqnNo);
|
|
// eqnNo += 1;
|
|
//}
|
|
auto nEqns = eqnNo; //C++ uses index 0.
|
|
nqsu = nEqns;
|
|
for (auto& con : *essentialConstraints) {
|
|
con->iG = eqnNo;
|
|
eqnNo += 1;
|
|
}
|
|
auto lastEssenConEqnNo = eqnNo - 1;
|
|
for (auto& con : *displacementConstraints) {
|
|
con->iG = eqnNo;
|
|
eqnNo += 1;
|
|
}
|
|
auto lastDispConEqnNo = eqnNo - 1;
|
|
for (auto& con : *perpendicularConstraints) {
|
|
con->iG = eqnNo;
|
|
eqnNo += 1;
|
|
}
|
|
auto lastEqnNo = eqnNo - 1;
|
|
nEqns = eqnNo; //C++ uses index 0.
|
|
n = nEqns;
|
|
auto rangelimits = { lastEssenConEqnNo + 1, lastDispConEqnNo + 1, lastEqnNo + 1 };
|
|
pivotRowLimits = std::make_shared<std::vector<int>>(rangelimits);
|
|
}
|
|
|
|
bool PosICNewtonRaphson::isConverged()
|
|
{
|
|
return this->isConvergedToNumericalLimit();
|
|
}
|
|
|
|
void PosICNewtonRaphson::handleSingularMatrix()
|
|
{
|
|
nSingularMatrixError++;
|
|
if (nSingularMatrixError = 1){
|
|
this->lookForRedundantConstraints();
|
|
matrixSolver = this->matrixSolverClassNew();
|
|
}
|
|
else {
|
|
std::string str = typeid(*matrixSolver).name();
|
|
if (str.find("GESpMatParPvMarkoFast") != std::string::npos) {
|
|
matrixSolver = CREATE<GESpMatParPvPrecise>::With();
|
|
this->solveEquations();
|
|
}
|
|
else {
|
|
str = typeid(*matrixSolver).name();
|
|
if (str.find("GESpMatParPvPrecise") != std::string::npos) {
|
|
this->lookForRedundantConstraints();
|
|
matrixSolver = this->matrixSolverClassNew();
|
|
}
|
|
else {
|
|
assert(false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void PosICNewtonRaphson::lookForRedundantConstraints()
|
|
{
|
|
std::string str("MbD: Checking for redundant constraints.");
|
|
system->logString(str);
|
|
auto posICsolver = CREATE<GESpMatFullPvPosIC>::With();
|
|
posICsolver->system = this;
|
|
dx = posICsolver->solvewithsaveOriginal(pypx, y->negated(), false);
|
|
}
|