91 lines
2.6 KiB
C++
91 lines
2.6 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
|
|
#include "PosKineNewtonRaphson.h"
|
|
#include "SystemSolver.h"
|
|
#include "Part.h"
|
|
#include "NotKinematicError.h"
|
|
#include "Constraint.h"
|
|
#include <iostream>
|
|
|
|
using namespace MbD;
|
|
|
|
void PosKineNewtonRaphson::initializeGlobally()
|
|
{
|
|
SystemNewtonRaphson::initializeGlobally();
|
|
system->partsJointsMotionsLimitsDo([&](std::shared_ptr<Item> item) { item->fillqsu(x); });
|
|
iterMax = system->iterMaxPosKine;
|
|
dxTol = system->errorTolPosKine;
|
|
}
|
|
|
|
void PosKineNewtonRaphson::fillPyPx()
|
|
{
|
|
pypx->zeroSelf();
|
|
system->partsJointsMotionsLimitsDo([&](std::shared_ptr<Item> item) {
|
|
item->fillPosKineJacob(pypx);
|
|
});
|
|
}
|
|
|
|
void PosKineNewtonRaphson::passRootToSystem()
|
|
{
|
|
system->partsJointsMotionsLimitsDo([&](std::shared_ptr<Item> item) { item->setqsu(x); });
|
|
}
|
|
|
|
void PosKineNewtonRaphson::assignEquationNumbers()
|
|
{
|
|
//"Equation order is q,s,u."
|
|
auto parts = system->parts();
|
|
//auto contactEndFrames = system->contactEndFrames();
|
|
//auto uHolders = system->uHolders();
|
|
auto constraints = system->allConstraints();
|
|
size_t varNo = 0;
|
|
for (auto& part : *parts) {
|
|
part->iqX(varNo);
|
|
varNo = varNo + 3;
|
|
part->iqE(varNo);
|
|
varNo = varNo + 4;
|
|
}
|
|
//for (auto& endFrm : *contactEndFrames) {
|
|
// endFrm->is(varNo);
|
|
// varNo = varNo + endFrm->sSize();
|
|
//}
|
|
//for (auto& uHolder : *uHolders) {
|
|
// uHolder->iu(varNo);
|
|
// varNo += 1;
|
|
//}
|
|
size_t eqnNo = 0;
|
|
for (auto& con : *constraints) {
|
|
con->iG = eqnNo;
|
|
eqnNo += 1;
|
|
}
|
|
n = eqnNo; //C++ uses index 0.
|
|
if (varNo != eqnNo) {
|
|
std::string str = "MbD: SYSTEM IS NOT PURE KINEMATIC.";
|
|
system->logString(str);
|
|
throw NotKinematicError("");
|
|
}
|
|
}
|
|
|
|
void PosKineNewtonRaphson::preRun()
|
|
{
|
|
std::string str = "MbD: Solving for kinematic position.";
|
|
system->logString(str);
|
|
system->partsJointsMotionsLimitsDo([](std::shared_ptr<Item> item) { item->prePosKine(); });
|
|
}
|
|
|
|
void PosKineNewtonRaphson::fillY()
|
|
{
|
|
y->zeroSelf();
|
|
system->partsJointsMotionsLimitsDo([&](std::shared_ptr<Item> item) {
|
|
item->fillPosKineError(y);
|
|
//std::cout << item->name << *y << std::endl;
|
|
//noop();
|
|
});
|
|
//std::cout << "Final" << *y << std::endl;
|
|
}
|