MatrixSolver NewtonRaphson

This commit is contained in:
Aik-Siong Koh
2023-05-20 17:55:13 -06:00
parent c147f2a33d
commit 6a577c052c
168 changed files with 2429 additions and 325 deletions

View File

@@ -5,12 +5,10 @@ using namespace MbD;
Constraint::Constraint()
{
initialize();
}
Constraint::Constraint(const char* str) : Item(str)
{
initialize();
}
void Constraint::initialize()
@@ -20,6 +18,10 @@ void Constraint::initialize()
lam = 0.0;
}
void MbD::Constraint::postInput()
{
}
void Constraint::setOwner(Item* x)
{
owner = x;