Files
solver/GNN/OndselSolver/VelKineSolver.cpp
forbes-0023 98051ba0c9 feat: add Phase 1 constraint solver addon, move prior content to GNN/
- Move existing OndselSolver, GNN ML layer, and tooling into GNN/
  directory for integration in later phases
- Add Create addon scaffold: package.xml, Init.py
- Add expression DAG with eval, symbolic diff, simplification
- Add parameter table with fixed/free variable tracking
- Add quaternion rotation as polynomial Expr trees
- Add RigidBody entity (7 DOF: position + unit quaternion)
- Add constraint classes: Coincident, DistancePointPoint, Fixed
- Add Newton-Raphson solver with symbolic Jacobian + numpy lstsq
- Add pre-solve passes: substitution + single-equation
- Add DOF counting via Jacobian SVD rank
- Add KindredSolver IKCSolver bridge for kcsolve integration
- Add 82 unit tests covering all modules

Registers as 'kindred' solver via kcsolve.register_solver() when
loaded by Create's addon_loader.
2026-02-20 20:35:47 -06:00

68 lines
2.4 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include "VelKineSolver.h"
#include "NotKinematicError.h"
#include "SystemSolver.h"
#include "Part.h"
#include "Constraint.h"
using namespace MbD;
void VelKineSolver::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) {
throw NotKinematicError("");
}
}
void VelKineSolver::run()
{
system->logString("MbD: Solving for kinematic velocity.");
system->partsJointsMotionsLimitsDo([](std::shared_ptr<Item> item) { item->preVelIC(); });
this->assignEquationNumbers();
system->partsJointsMotionsLimitsDo([](std::shared_ptr<Item> item) { item->useEquationNumbers(); });
errorVector = std::make_shared<FullColumn<double>>(n);
jacobian = std::make_shared<SparseMatrix<double>>(n, n);
errorVector->zeroSelf();
system->partsJointsMotionsLimitsDo([&](std::shared_ptr<Item> item) { item->fillVelICError(errorVector); });
jacobian->zeroSelf();
system->partsJointsMotionsLimitsDo([&](std::shared_ptr<Item> item) { item->fillPosKineJacob(jacobian); });
matrixSolver = this->matrixSolverClassNew();
this->solveEquations();
auto& qsudot = this->x;
system->partsJointsMotionsLimitsDo([&](std::shared_ptr<Item> item) { item->setqsudot(qsudot); });
system->partsJointsMotionsLimitsDo([](std::shared_ptr<Item> item) { item->postVelIC(); });
}