255 lines
6.6 KiB
C++
255 lines
6.6 KiB
C++
#include <regex>
|
|
|
|
#include "MBDynJoint.h"
|
|
#include "ASMTMarker.h"
|
|
#include "ASMTPart.h"
|
|
#include "ASMTAssembly.h"
|
|
#include "ASMTRevoluteJoint.h"
|
|
#include "ASMTRotationalMotion.h"
|
|
#include "ASMTPointInLineJoint.h"
|
|
#include "ASMTNoRotationJoint.h"
|
|
#include "ASMTFixedJoint.h"
|
|
#include "ASMTSphericalJoint.h"
|
|
|
|
using namespace MbD;
|
|
|
|
void MbD::MBDynJoint::initialize()
|
|
{
|
|
}
|
|
|
|
void MbD::MBDynJoint::parseMBDyn(std::string line)
|
|
{
|
|
jointString = line;
|
|
size_t previousPos = 0;
|
|
auto pos = line.find(":");
|
|
auto front = line.substr(previousPos, pos - previousPos);
|
|
assert(front.find("joint") != std::string::npos);
|
|
auto arguments = std::vector<std::string>();
|
|
std::string argument;
|
|
while (true) {
|
|
previousPos = pos;
|
|
pos = line.find(",", pos + 1);
|
|
if (pos != std::string::npos) {
|
|
argument = line.substr(previousPos + 1, pos - previousPos - 1);
|
|
arguments.push_back(argument);
|
|
}
|
|
else {
|
|
argument = line.substr(previousPos + 1);
|
|
arguments.push_back(argument);
|
|
break;
|
|
}
|
|
}
|
|
auto ss = std::stringstream();
|
|
auto iss = std::istringstream(arguments.at(0));
|
|
iss >> name;
|
|
arguments.erase(arguments.begin());
|
|
iss = std::istringstream(arguments.at(0));
|
|
iss >> joint_type;
|
|
if (joint_type == "axial") {
|
|
ss << joint_type;
|
|
iss >> joint_type;
|
|
if (joint_type == "rotation") {
|
|
ss << " " << joint_type;
|
|
joint_type = ss.str();
|
|
}
|
|
else {
|
|
assert(false);
|
|
}
|
|
arguments.erase(arguments.begin());
|
|
readMarkerI(arguments);
|
|
readMarkerJ(arguments);
|
|
readFunction(arguments);
|
|
return;
|
|
}
|
|
else if (joint_type == "revolute") {
|
|
ss << joint_type;
|
|
iss >> joint_type;
|
|
if (joint_type == "hinge") {
|
|
ss << " " << joint_type;
|
|
joint_type = ss.str();
|
|
}
|
|
else {
|
|
assert(false);
|
|
}
|
|
}
|
|
else if (joint_type == "spherical") {
|
|
ss << joint_type;
|
|
iss >> joint_type;
|
|
if (joint_type == "hinge") {
|
|
ss << " " << joint_type;
|
|
joint_type = ss.str();
|
|
}
|
|
else {
|
|
assert(false);
|
|
}
|
|
}
|
|
else if (joint_type == "drive") {
|
|
ss << joint_type;
|
|
iss >> joint_type;
|
|
if (joint_type == "hinge") {
|
|
ss << " " << joint_type;
|
|
joint_type = ss.str();
|
|
}
|
|
else {
|
|
assert(false);
|
|
}
|
|
arguments.erase(arguments.begin());
|
|
readMarkerI(arguments);
|
|
readMarkerJ(arguments);
|
|
readFunction(arguments);
|
|
return;
|
|
}
|
|
else if (joint_type == "in") {
|
|
ss << joint_type;
|
|
iss >> joint_type;
|
|
if (joint_type == "line") {
|
|
ss << " " << joint_type;
|
|
joint_type = ss.str();
|
|
}
|
|
else {
|
|
assert(false);
|
|
}
|
|
}
|
|
else if (joint_type == "clamp") {
|
|
//mkr1 should be on assembly which doesn't exist in MBDyn
|
|
//mkr2 is on the node
|
|
arguments.erase(arguments.begin());
|
|
mkr1 = std::make_shared<MBDynMarker>();
|
|
mkr1->owner = this;
|
|
mkr1->nodeStr = "Assembly";
|
|
mkr1->rPmP = std::make_shared<FullColumn<double>>(3);
|
|
mkr1->aAPm = FullMatrix<double>::identitysptr(3);
|
|
readMarkerJ(arguments);
|
|
return;
|
|
}
|
|
else if (joint_type == "prismatic") {
|
|
noop();
|
|
}
|
|
else {
|
|
assert(false);
|
|
}
|
|
arguments.erase(arguments.begin());
|
|
readMarkerI(arguments);
|
|
readMarkerJ(arguments);
|
|
}
|
|
|
|
void MbD::MBDynJoint::readMarkerI(std::vector<std::string>& args)
|
|
{
|
|
mkr1 = std::make_shared<MBDynMarker>();
|
|
mkr1->owner = this;
|
|
mkr1->nodeStr = readStringOffTop(args);
|
|
auto _nodeNames = nodeNames();
|
|
std::string nodeName;
|
|
auto it = std::find_if(args.begin(), args.end(), [&](const std::string& s) {
|
|
auto iss = std::istringstream(s);
|
|
iss >> nodeName;
|
|
if (std::find(_nodeNames.begin(), _nodeNames.end(), nodeName) != _nodeNames.end()) return true;
|
|
return false;
|
|
});
|
|
auto markerArgs = std::vector<std::string>(args.begin(), it);
|
|
args.erase(args.begin(), it);
|
|
mkr1->parseMBDyn(markerArgs);
|
|
}
|
|
|
|
void MbD::MBDynJoint::readMarkerJ(std::vector<std::string>& args)
|
|
{
|
|
if (args.empty()) return;
|
|
mkr2 = std::make_shared<MBDynMarker>();
|
|
mkr2->owner = this;
|
|
mkr2->nodeStr = readStringOffTop(args);
|
|
mkr2->parseMBDyn(args);
|
|
}
|
|
|
|
void MbD::MBDynJoint::readFunction(std::vector<std::string>& args)
|
|
{
|
|
if (args.empty()) return;
|
|
std::string str;
|
|
auto iss = std::istringstream(args.at(0));
|
|
iss >> str;
|
|
if (str.find("ramp") != std::string::npos) {
|
|
args.erase(args.begin());
|
|
std::string slope, initValue, initTime, finalTime;
|
|
slope = popOffTop(args);
|
|
initTime = popOffTop(args);
|
|
finalTime = popOffTop(args);
|
|
initValue = popOffTop(args);
|
|
//f = slope*(time - t0) + f0
|
|
auto ss = std::stringstream();
|
|
ss << slope << "*(time - " << initTime << ") + " << initValue;
|
|
formula = ss.str();
|
|
} else if (str.find("single") != std::string::npos) {
|
|
args.erase(args.begin());
|
|
auto vec3 = readVector3(args);
|
|
assert(vec3->at(0) == 0 && vec3->at(1) == 0 && vec3->at(2) == 1);
|
|
assert(readStringOffTop(args) == "string");
|
|
formula = popOffTop(args);
|
|
formula = std::regex_replace(formula, std::regex("\""), "");
|
|
}
|
|
else {
|
|
assert(false);
|
|
}
|
|
}
|
|
|
|
void MbD::MBDynJoint::createASMT()
|
|
{
|
|
mkr1->createASMT();
|
|
if (mkr2) mkr2->createASMT();
|
|
std::shared_ptr<ASMTJoint> asmtJoint;
|
|
if (joint_type == "clamp") {
|
|
auto asmtAsm = asmtAssembly();
|
|
asmtJoint = std::make_shared<ASMTFixedJoint>();
|
|
asmtJoint->setName(name);
|
|
asmtJoint->setMarkerI(mkr1->asmtItem->fullName(""));
|
|
asmtJoint->setMarkerJ(mkr2->asmtItem->fullName(""));
|
|
asmtAsm->addJoint(asmtJoint);
|
|
return;
|
|
}
|
|
if (joint_type == "axial rotation") {
|
|
auto asmtAsm = asmtAssembly();
|
|
asmtJoint = std::make_shared<ASMTRevoluteJoint>();
|
|
asmtItem = asmtJoint;
|
|
asmtJoint->setName(name);
|
|
asmtJoint->setMarkerI(mkr1->asmtItem->fullName(""));
|
|
asmtJoint->setMarkerJ(mkr2->asmtItem->fullName(""));
|
|
asmtAsm->addJoint(asmtJoint);
|
|
auto asmtMotion = std::make_shared<ASMTRotationalMotion>();
|
|
asmtItem = asmtMotion;
|
|
asmtMotion->setName(name.append("Motion"));
|
|
asmtMotion->setMotionJoint(asmtJoint->fullName(""));
|
|
asmtMotion->setRotationZ(formula);
|
|
asmtAsm->addMotion(asmtMotion);
|
|
return;
|
|
}
|
|
if (joint_type == "drive hinge") {
|
|
auto asmtAsm = asmtAssembly();
|
|
auto asmtMotion = std::make_shared<ASMTRotationalMotion>();
|
|
asmtItem = asmtMotion;
|
|
asmtMotion->setName(name);
|
|
asmtMotion->setMarkerI(mkr1->asmtItem->fullName(""));
|
|
asmtMotion->setMarkerJ(mkr2->asmtItem->fullName(""));
|
|
asmtMotion->setRotationZ(formula);
|
|
asmtAsm->addMotion(asmtMotion);
|
|
return;
|
|
}
|
|
if (joint_type == "revolute hinge") {
|
|
asmtJoint = std::make_shared<ASMTRevoluteJoint>();
|
|
}
|
|
else if (joint_type == "spherical hinge") {
|
|
asmtJoint = std::make_shared<ASMTSphericalJoint>();
|
|
}
|
|
else if (joint_type == "in line") {
|
|
asmtJoint = std::make_shared<ASMTPointInLineJoint>();
|
|
}
|
|
else if (joint_type == "prismatic") {
|
|
asmtJoint = std::make_shared<ASMTNoRotationJoint>();
|
|
}
|
|
else {
|
|
assert(false);
|
|
}
|
|
asmtItem = asmtJoint;
|
|
asmtJoint->setName(name);
|
|
asmtJoint->setMarkerI(mkr1->asmtItem->fullName(""));
|
|
asmtJoint->setMarkerJ(mkr2->asmtItem->fullName(""));
|
|
asmtAssembly()->addJoint(asmtJoint);
|
|
}
|