Mb dyn half sine and cosine (#42)
* (int) added * size_t count * add files * MBDyn new joints, sine, cosine * CompoundJoints debugged
This commit is contained in:
@@ -14,7 +14,7 @@ void MbD::ASMTAnimationParameters::parseASMT(std::vector<std::string>& lines)
|
||||
{
|
||||
//int nframe, icurrent, istart, iend, framesPerSecond;
|
||||
//bool isForward;
|
||||
int pos = lines[0].find_first_not_of("\t");
|
||||
int pos = (int)lines[0].find_first_not_of("\t");
|
||||
auto leadingTabs = lines[0].substr(0, pos);
|
||||
assert(lines[0] == (leadingTabs + "nframe"));
|
||||
lines.erase(lines.begin());
|
||||
|
||||
@@ -718,6 +718,7 @@ void MbD::ASMTAssembly::readAnimationParameters(std::vector<std::string>& lines)
|
||||
|
||||
void MbD::ASMTAssembly::readTimeSeries(std::vector<std::string>& lines)
|
||||
{
|
||||
if (lines.empty()) return;
|
||||
assert(lines[0] == "TimeSeries");
|
||||
lines.erase(lines.begin());
|
||||
assert(lines[0].find("Number\tInput") != std::string::npos);
|
||||
@@ -727,6 +728,7 @@ void MbD::ASMTAssembly::readTimeSeries(std::vector<std::string>& lines)
|
||||
|
||||
void MbD::ASMTAssembly::readTimes(std::vector<std::string>& lines)
|
||||
{
|
||||
if (lines.empty()) return;
|
||||
std::string str = lines[0];
|
||||
std::string substr = "Time\tInput";
|
||||
auto pos = str.find(substr);
|
||||
@@ -739,6 +741,7 @@ void MbD::ASMTAssembly::readTimes(std::vector<std::string>& lines)
|
||||
|
||||
void MbD::ASMTAssembly::readPartSeriesMany(std::vector<std::string>& lines)
|
||||
{
|
||||
if (lines.empty()) return;
|
||||
assert(lines[0].find("PartSeries") != std::string::npos);
|
||||
auto it = std::find_if(lines.begin(), lines.end(), [](const std::string& s) {
|
||||
return s.find("JointSeries") != std::string::npos;
|
||||
@@ -752,6 +755,7 @@ void MbD::ASMTAssembly::readPartSeriesMany(std::vector<std::string>& lines)
|
||||
|
||||
void MbD::ASMTAssembly::readJointSeriesMany(std::vector<std::string>& lines)
|
||||
{
|
||||
if (lines.empty()) return;
|
||||
assert(lines[0].find("JointSeries") != std::string::npos);
|
||||
auto it = std::find_if(lines.begin(), lines.end(), [](const std::string& s) {
|
||||
return s.find("MotionSeries") != std::string::npos;
|
||||
@@ -765,6 +769,7 @@ void MbD::ASMTAssembly::readJointSeriesMany(std::vector<std::string>& lines)
|
||||
|
||||
void MbD::ASMTAssembly::readAssemblySeries(std::vector<std::string>& lines)
|
||||
{
|
||||
if (lines.empty()) return;
|
||||
std::string str = lines[0];
|
||||
std::string substr = "AssemblySeries";
|
||||
auto pos = str.find(substr);
|
||||
@@ -796,6 +801,7 @@ void MbD::ASMTAssembly::readAssemblySeries(std::vector<std::string>& lines)
|
||||
|
||||
void MbD::ASMTAssembly::readPartSeries(std::vector<std::string>& lines)
|
||||
{
|
||||
if (lines.empty()) return;
|
||||
std::string str = lines[0];
|
||||
std::string substr = "PartSeries";
|
||||
auto pos = str.find(substr);
|
||||
@@ -811,6 +817,7 @@ void MbD::ASMTAssembly::readPartSeries(std::vector<std::string>& lines)
|
||||
|
||||
void MbD::ASMTAssembly::readJointSeries(std::vector<std::string>& lines)
|
||||
{
|
||||
if (lines.empty()) return;
|
||||
std::string str = lines[0];
|
||||
std::string substr = "JointSeries";
|
||||
auto pos = str.find(substr);
|
||||
@@ -834,6 +841,7 @@ void MbD::ASMTAssembly::readMotionSeriesMany(std::vector<std::string>& lines)
|
||||
|
||||
void MbD::ASMTAssembly::readMotionSeries(std::vector<std::string>& lines)
|
||||
{
|
||||
if (lines.empty()) return;
|
||||
std::string str = lines[0];
|
||||
std::string substr = "MotionSeries";
|
||||
auto pos = str.find(substr);
|
||||
|
||||
@@ -69,7 +69,12 @@ void MbD::ASMTGeneralMotion::readRotationOrder(std::vector<std::string>& lines)
|
||||
{
|
||||
assert(lines[0].find("RotationOrder") != std::string::npos);
|
||||
lines.erase(lines.begin());
|
||||
rotationOrder = readString(lines[0]);
|
||||
std::istringstream iss(lines[0]);
|
||||
rotationOrder = std::make_shared<std::vector<int>>();
|
||||
int i;
|
||||
while (iss >> i) {
|
||||
rotationOrder->push_back(i);
|
||||
}
|
||||
lines.erase(lines.begin());
|
||||
}
|
||||
|
||||
@@ -137,15 +142,7 @@ void MbD::ASMTGeneralMotion::createMbD(std::shared_ptr<System> mbdSys, std::shar
|
||||
|
||||
auto xyzRotBlkList = std::initializer_list<Symsptr>{ phiBlk, theBlk, psiBlk };
|
||||
auto fangIJJ = std::make_shared<EulerAngles<Symsptr>>(xyzRotBlkList);
|
||||
std::istringstream iss(rotationOrder);
|
||||
auto rotOrder = std::make_shared<FullColumn<int>>();
|
||||
int order;
|
||||
for (int i = 0; i < 3; i++)
|
||||
{
|
||||
iss >> order;
|
||||
rotOrder->push_back(order);
|
||||
}
|
||||
fangIJJ->rotOrder = rotOrder;
|
||||
fangIJJ->rotOrder = rotationOrder;
|
||||
fullMotion->fangIJJ = fangIJJ;
|
||||
}
|
||||
|
||||
|
||||
@@ -24,8 +24,9 @@ namespace MbD {
|
||||
void storeOnLevel(std::ofstream& os, int level) override;
|
||||
void storeOnTimeSeries(std::ofstream& os) override;
|
||||
|
||||
std::shared_ptr<FullColumn<std::string>> rIJI, angIJJ;
|
||||
std::string rotationOrder;
|
||||
std::shared_ptr<FullColumn<std::string>> rIJI = std::make_shared<FullColumn<std::string>>(3);
|
||||
std::shared_ptr<FullColumn<std::string>> angIJJ = std::make_shared<FullColumn<std::string>>(3);
|
||||
std::shared_ptr<std::vector<int>> rotationOrder = std::make_shared<std::vector<int>>(std::initializer_list<int>{ 1, 2, 3 });
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ MbD::ASMTPrincipalMassMarker::ASMTPrincipalMassMarker()
|
||||
|
||||
void MbD::ASMTPrincipalMassMarker::parseASMT(std::vector<std::string>& lines)
|
||||
{
|
||||
int pos = lines[0].find_first_not_of("\t");
|
||||
int pos = (int)lines[0].find_first_not_of("\t");
|
||||
auto leadingTabs = lines[0].substr(0, pos);
|
||||
assert(lines[0] == (leadingTabs + "Name"));
|
||||
lines.erase(lines.begin());
|
||||
|
||||
@@ -14,7 +14,7 @@ void MbD::ASMTSimulationParameters::parseASMT(std::vector<std::string>& lines)
|
||||
{
|
||||
//tstart, tend, hmin, hmax, hout, errorTol;
|
||||
|
||||
int pos = lines[0].find_first_not_of("\t");
|
||||
int pos = (int)lines[0].find_first_not_of("\t");
|
||||
auto leadingTabs = lines[0].substr(0, pos);
|
||||
assert(lines[0] == (leadingTabs + "tstart"));
|
||||
lines.erase(lines.begin());
|
||||
|
||||
@@ -333,7 +333,7 @@ void MbD::ASMTSpatialContainer::updateFromMbD()
|
||||
auto mbdPart = std::static_pointer_cast<Part>(mbdObject);
|
||||
auto rOcmO = mbdPart->qX()->times(mbdUnts->length);
|
||||
auto aAOp = mbdPart->aAOp();
|
||||
std::cout << "aAOp" << *aAOp << std::endl;
|
||||
//std::cout << "aAOp" << *aAOp << std::endl;
|
||||
auto vOcmO = mbdPart->qXdot()->times(mbdUnts->velocity);
|
||||
auto omeOPO = mbdPart->omeOpO()->times(mbdUnts->omega);
|
||||
omega3D = omeOPO;
|
||||
@@ -356,7 +356,7 @@ void MbD::ASMTSpatialContainer::updateFromMbD()
|
||||
bryxs->push_back(bryantAngles->at(0));
|
||||
bryys->push_back(bryantAngles->at(1));
|
||||
bryzs->push_back(bryantAngles->at(2));
|
||||
std::cout << "bry " << *bryantAngles << std::endl;
|
||||
//std::cout << "bry " << *bryantAngles << std::endl;
|
||||
vxs->push_back(vOPO->at(0));
|
||||
vys->push_back(vOPO->at(1));
|
||||
vzs->push_back(vOPO->at(2));
|
||||
|
||||
21
OndselSolver/Arguments.cpp
Normal file
21
OndselSolver/Arguments.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include <algorithm>
|
||||
#include <iterator>
|
||||
|
||||
#include "Arguments.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
|
||||
void MbD::Arguments::arguments(Symsptr args)
|
||||
{
|
||||
auto arguments = std::static_pointer_cast<Arguments>(args);
|
||||
terms = arguments->terms;
|
||||
}
|
||||
19
OndselSolver/Arguments.h
Normal file
19
OndselSolver/Arguments.h
Normal file
@@ -0,0 +1,19 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "FunctionWithManyArgs.h"
|
||||
|
||||
namespace MbD {
|
||||
class Arguments : public FunctionWithManyArgs
|
||||
{
|
||||
public:
|
||||
void arguments(Symsptr args) override;
|
||||
};
|
||||
}
|
||||
@@ -27,12 +27,13 @@ namespace MbD {
|
||||
public:
|
||||
Array() {}
|
||||
Array(std::vector<T> vec) : std::vector<T>(vec) {}
|
||||
Array(int count) : std::vector<T>(count) {}
|
||||
Array(int count, const T& value) : std::vector<T>(count, value) {}
|
||||
Array(size_t count) : std::vector<T>(count) {}
|
||||
Array(size_t count, const T& value) : std::vector<T>(count, value) {}
|
||||
Array(typename std::vector<T>::iterator begin, typename std::vector<T>::iterator end) : std::vector<T>(begin, end) {}
|
||||
Array(std::initializer_list<T> list) : std::vector<T>{ list } {}
|
||||
virtual ~Array() {}
|
||||
virtual void initialize();
|
||||
static bool equaltol(double x, double xx, double tol);
|
||||
void copyFrom(std::shared_ptr<Array<T>> x);
|
||||
virtual void zeroSelf();
|
||||
virtual double sumOfSquares() = 0;
|
||||
@@ -63,6 +64,11 @@ namespace MbD {
|
||||
inline void Array<T>::initialize()
|
||||
{
|
||||
}
|
||||
template<>
|
||||
inline bool Array<double>::equaltol(double x, double xx, double tol)
|
||||
{
|
||||
return std::abs(x - xx) < tol;
|
||||
}
|
||||
template<typename T>
|
||||
inline void Array<T>::copyFrom(std::shared_ptr<Array<T>> x)
|
||||
{
|
||||
|
||||
@@ -21,7 +21,10 @@ std::shared_ptr<ConstVelConstraintIJ> MbD::ConstVelConstraintIJ::With(EndFrmsptr
|
||||
{
|
||||
assert(frmi->isEndFrameqc());
|
||||
assert(frmj->isEndFrameqc());
|
||||
return std::make_shared<ConstVelConstraintIqcJqc>(frmi, frmj);
|
||||
auto constVelCon = std::make_shared<ConstVelConstraintIqcJqc>(frmi, frmj);
|
||||
constVelCon->initA01IeJe();
|
||||
constVelCon->initA10IeJe();
|
||||
return constVelCon;
|
||||
}
|
||||
|
||||
void ConstVelConstraintIJ::calcPostDynCorrectorIteration()
|
||||
|
||||
@@ -21,17 +21,17 @@ MbD::ConstantVelocityJoint::ConstantVelocityJoint()
|
||||
MbD::ConstantVelocityJoint::ConstantVelocityJoint(const char* str) : AtPointJoint(str)
|
||||
{
|
||||
}
|
||||
|
||||
void MbD::ConstantVelocityJoint::initializeLocally()
|
||||
{
|
||||
if (!constraints->empty())
|
||||
{
|
||||
auto constraint = std::static_pointer_cast<ConstVelConstraintIJ>(constraints->back());
|
||||
constraint->initA01IeJe();
|
||||
constraint->initA10IeJe();
|
||||
}
|
||||
Joint::initializeLocally();
|
||||
}
|
||||
//
|
||||
//void MbD::ConstantVelocityJoint::initializeLocally()
|
||||
//{
|
||||
// if (!constraints->empty())
|
||||
// {
|
||||
// auto constraint = std::static_pointer_cast<ConstVelConstraintIJ>(constraints->back());
|
||||
// constraint->initA01IeJe();
|
||||
// constraint->initA10IeJe();
|
||||
// }
|
||||
// Joint::initializeLocally();
|
||||
//}
|
||||
|
||||
void MbD::ConstantVelocityJoint::initializeGlobally()
|
||||
{
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace MbD {
|
||||
public:
|
||||
ConstantVelocityJoint();
|
||||
ConstantVelocityJoint(const char* str);
|
||||
void initializeLocally() override;
|
||||
//void initializeLocally() override;
|
||||
void initializeGlobally() override;
|
||||
void connectsItoJ(EndFrmsptr frmI, EndFrmsptr frmJ) override;
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ void MbD::CylSphJoint::initializeGlobally()
|
||||
{
|
||||
if (constraints->empty())
|
||||
{
|
||||
auto distxyIJ = CREATE<DistancexyConstraintIJ>::With(frmI, frmJ);
|
||||
auto distxyIJ = DistancexyConstraintIJ::With(frmI, frmJ);
|
||||
distxyIJ->setConstant(distanceIJ);
|
||||
addConstraint(distxyIJ);
|
||||
this->root()->hasChanged = true;
|
||||
|
||||
@@ -25,8 +25,8 @@ namespace MbD {
|
||||
//
|
||||
public:
|
||||
DiagonalMatrix() : Array<T>() {}
|
||||
DiagonalMatrix(int count) : Array<T>(count) {}
|
||||
DiagonalMatrix(int count, const T& value) : Array<T>(count, value) {}
|
||||
DiagonalMatrix(size_t count) : Array<T>(count) {}
|
||||
DiagonalMatrix(size_t count, const T& value) : Array<T>(count, value) {}
|
||||
DiagonalMatrix(std::initializer_list<T> list) : Array<T>{ list } {}
|
||||
void atiputDiagonalMatrix(int i, std::shared_ptr<DiagonalMatrix<T>> diagMat);
|
||||
DiagMatsptr<T> times(T factor);
|
||||
|
||||
@@ -25,7 +25,7 @@ void MbD::DistIeqcJec::calcPrivate()
|
||||
if (rIeJe == 0.0) return;
|
||||
auto frmIeqc = std::static_pointer_cast<EndFrameqc>(frmI);
|
||||
auto& mprIeJeOpEI = frmIeqc->prOeOpE;
|
||||
auto mprIeJeOpEIT = mprIeJeOpEI->transpose();
|
||||
mprIeJeOpEIT = mprIeJeOpEI->transpose();
|
||||
auto& mpprIeJeOpEIpEI = frmIeqc->pprOeOpEpE;
|
||||
auto muIeJeOT = muIeJeO->transpose();
|
||||
prIeJepXI = muIeJeOT;
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
***************************************************************************/
|
||||
|
||||
#include "DistanceConstraintIJ.h"
|
||||
#include "DistanceConstraintIqcJqc.h"
|
||||
#include "EndFrameqc.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
@@ -14,6 +16,15 @@ MbD::DistanceConstraintIJ::DistanceConstraintIJ(EndFrmsptr frmi, EndFrmsptr frmj
|
||||
{
|
||||
}
|
||||
|
||||
std::shared_ptr<DistanceConstraintIJ> MbD::DistanceConstraintIJ::With(EndFrmsptr frmi, EndFrmsptr frmj)
|
||||
{
|
||||
assert(frmi->isEndFrameqc());
|
||||
assert(frmj->isEndFrameqc());
|
||||
auto distCon = std::make_shared<DistanceConstraintIqcJqc>(frmi, frmj);
|
||||
distCon->init_distIeJe();
|
||||
return distCon;
|
||||
}
|
||||
|
||||
void MbD::DistanceConstraintIJ::calcPostDynCorrectorIteration()
|
||||
{
|
||||
aG = distIeJe->value() - aConstant;
|
||||
|
||||
@@ -18,6 +18,8 @@ namespace MbD {
|
||||
public:
|
||||
DistanceConstraintIJ(EndFrmsptr frmi, EndFrmsptr frmj);
|
||||
|
||||
static std::shared_ptr<DistanceConstraintIJ> With(EndFrmsptr frmi, EndFrmsptr frmj);
|
||||
|
||||
void calcPostDynCorrectorIteration() override;
|
||||
virtual void init_distIeJe();
|
||||
void initialize() override;
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
***************************************************************************/
|
||||
|
||||
#include "DistancexyConstraintIJ.h"
|
||||
#include "DistancexyConstraintIqcJqc.h"
|
||||
#include "EndFrameqc.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
@@ -14,6 +16,15 @@ MbD::DistancexyConstraintIJ::DistancexyConstraintIJ(EndFrmsptr frmi, EndFrmsptr
|
||||
{
|
||||
}
|
||||
|
||||
std::shared_ptr<DistancexyConstraintIJ> MbD::DistancexyConstraintIJ::With(EndFrmsptr frmi, EndFrmsptr frmj)
|
||||
{
|
||||
assert(frmi->isEndFrameqc());
|
||||
assert(frmj->isEndFrameqc());
|
||||
auto distxyCon = std::make_shared<DistancexyConstraintIqcJqc>(frmi, frmj);
|
||||
distxyCon->init_xyIeJeIe();
|
||||
return distxyCon;
|
||||
}
|
||||
|
||||
void MbD::DistancexyConstraintIJ::calcPostDynCorrectorIteration()
|
||||
{
|
||||
auto x = xIeJeIe->value();
|
||||
|
||||
@@ -18,6 +18,8 @@ namespace MbD {
|
||||
public:
|
||||
DistancexyConstraintIJ(EndFrmsptr frmi, EndFrmsptr frmj);
|
||||
|
||||
static std::shared_ptr<DistancexyConstraintIJ> With(EndFrmsptr frmi, EndFrmsptr frmj);
|
||||
|
||||
void calcPostDynCorrectorIteration() override;
|
||||
virtual void init_xyIeJeIe();
|
||||
void initialize() override;
|
||||
|
||||
@@ -13,6 +13,10 @@
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
MbD::DistancexyConstraintIqcJqc::DistancexyConstraintIqcJqc(EndFrmsptr frmi, EndFrmsptr frmj) : DistancexyConstraintIqcJc(frmi, frmj)
|
||||
{
|
||||
}
|
||||
|
||||
void MbD::DistancexyConstraintIqcJqc::calc_pGpXJ()
|
||||
{
|
||||
pGpXJ = (xIeJeIe->pvaluepXJ()->times(xIeJeIe->value())->plusFullRow(yIeJeIe->pvaluepXJ()->times(yIeJeIe->value())));
|
||||
|
||||
@@ -15,6 +15,8 @@ namespace MbD {
|
||||
{
|
||||
//pGpXJ pGpEJ ppGpXIpXJ ppGpEIpXJ ppGpXJpXJ ppGpXIpEJ ppGpEIpEJ ppGpXJpEJ ppGpEJpEJ iqXJ iqEJ
|
||||
public:
|
||||
DistancexyConstraintIqcJqc(EndFrmsptr frmi, EndFrmsptr frmj);
|
||||
|
||||
void calc_pGpXJ();
|
||||
void calc_pGpEJ();
|
||||
void calc_ppGpXIpXJ();
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace MbD {
|
||||
std::shared_ptr<EulerAnglesDot<T>> differentiateWRT(T var);
|
||||
void setRotOrder(int i, int j, int k);
|
||||
|
||||
std::shared_ptr<FullColumn<int>> rotOrder;
|
||||
std::shared_ptr<std::vector<int>> rotOrder;
|
||||
FColFMatDsptr cA;
|
||||
FMatDsptr aA;
|
||||
|
||||
@@ -106,7 +106,7 @@ namespace MbD {
|
||||
template<typename T>
|
||||
inline void EulerAngles<T>::setRotOrder(int i, int j, int k)
|
||||
{
|
||||
rotOrder = std::make_shared<FullColumn<int>>(3);
|
||||
rotOrder = std::make_shared<std::vector<int>>(3);
|
||||
rotOrder->at(0) = i;
|
||||
rotOrder->at(1) = j;
|
||||
rotOrder->at(2) = k;
|
||||
|
||||
@@ -17,8 +17,8 @@ namespace MbD {
|
||||
{
|
||||
//
|
||||
public:
|
||||
EulerArray(int count) : FullColumn<T>(count) {}
|
||||
EulerArray(int count, const T& value) : FullColumn<T>(count, value) {}
|
||||
EulerArray(size_t count) : FullColumn<T>(count) {}
|
||||
EulerArray(size_t count, const T& value) : FullColumn<T>(count, value) {}
|
||||
EulerArray(std::initializer_list<T> list) : FullColumn<T>{ list } {}
|
||||
void initialize() override;
|
||||
void equalFullColumn(FColsptr<T> fullCol);
|
||||
|
||||
@@ -25,8 +25,8 @@ namespace MbD {
|
||||
//aA aB aC pApE
|
||||
public:
|
||||
EulerParameters() : EulerArray<T>(4) {}
|
||||
EulerParameters(int count) : EulerArray<T>(count) {}
|
||||
EulerParameters(int count, const T& value) : EulerArray<T>(count, value) {}
|
||||
EulerParameters(size_t count) : EulerArray<T>(count) {}
|
||||
EulerParameters(size_t count, const T& value) : EulerArray<T>(count, value) {}
|
||||
EulerParameters(std::initializer_list<T> list) : EulerArray<T>{ list } {}
|
||||
EulerParameters(FColDsptr axis, double theta) : EulerArray<T>(4) {
|
||||
auto halfTheta = theta / 2.0;
|
||||
|
||||
@@ -18,8 +18,8 @@ namespace MbD {
|
||||
{
|
||||
//qEdot aAddot aBddot aCddot
|
||||
public:
|
||||
EulerParametersDDot(int count) : EulerArray<T>(count) {}
|
||||
EulerParametersDDot(int count, const T& value) : EulerArray<T>(count, value) {}
|
||||
EulerParametersDDot(size_t count) : EulerArray<T>(count) {}
|
||||
EulerParametersDDot(size_t count, const T& value) : EulerArray<T>(count, value) {}
|
||||
EulerParametersDDot(std::initializer_list<T> list) : EulerArray<T>{ list } {}
|
||||
|
||||
//std::shared_ptr<EulerParametersDot<T>> qEdot;
|
||||
|
||||
@@ -21,8 +21,8 @@ namespace MbD {
|
||||
{
|
||||
//qE aAdot aBdot aCdot pAdotpE
|
||||
public:
|
||||
EulerParametersDot(int count) : EulerArray<T>(count) {}
|
||||
EulerParametersDot(int count, const T& value) : EulerArray<T>(count, value) {}
|
||||
EulerParametersDot(size_t count) : EulerArray<T>(count) {}
|
||||
EulerParametersDot(size_t count, const T& value) : EulerArray<T>(count, value) {}
|
||||
EulerParametersDot(std::initializer_list<T> list) : EulerArray<T>{ list } {}
|
||||
static std::shared_ptr<EulerParametersDot<T>> FromqEOpAndOmegaOpO(std::shared_ptr<EulerParameters<T>> qe, FColDsptr omeOpO);
|
||||
void initialize() override;
|
||||
|
||||
@@ -31,8 +31,8 @@ namespace MbD {
|
||||
public:
|
||||
FullColumn() : FullVector<T>() {}
|
||||
FullColumn(std::vector<T> vec) : FullVector<T>(vec) {}
|
||||
FullColumn(int count) : FullVector<T>(count) {}
|
||||
FullColumn(int count, const T& value) : FullVector<T>(count, value) {}
|
||||
FullColumn(size_t count) : FullVector<T>(count) {}
|
||||
FullColumn(size_t count, const T& value) : FullVector<T>(count, value) {}
|
||||
FullColumn(typename std::vector<T>::iterator begin, typename std::vector<T>::iterator end) : FullVector<T>(begin, end) {}
|
||||
FullColumn(std::initializer_list<T> list) : FullVector<T>{ list } {}
|
||||
FColsptr<T> plusFullColumn(FColsptr<T> fullCol);
|
||||
|
||||
@@ -104,6 +104,7 @@ namespace MbD {
|
||||
FColsptr<T> bryantAngles();
|
||||
bool isDiagonal();
|
||||
bool isDiagonalToWithin(double ratio);
|
||||
bool equaltol(FMatsptr<T> mat, double ratio);
|
||||
std::shared_ptr<DiagonalMatrix<T>> asDiagonalMatrix();
|
||||
void conditionSelfWithTol(double tol);
|
||||
|
||||
@@ -703,6 +704,22 @@ namespace MbD {
|
||||
}
|
||||
}
|
||||
template<typename T>
|
||||
inline bool FullMatrix<T>::equaltol(FMatsptr<T> mat2, double tol)
|
||||
{
|
||||
if (this->size() != mat2->size()) return false;
|
||||
for (size_t i = 0; i < this->size(); i++)
|
||||
{
|
||||
auto& rowi = this->at(i);
|
||||
auto& rowi2 = mat2->at(i);
|
||||
if (rowi->size() != rowi2->size()) return false;
|
||||
for (size_t j = 0; j < rowi->size(); j++)
|
||||
{
|
||||
if (!Array<double>::equaltol((double)rowi->at(j), (double)rowi2->at(j), tol)) return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
template<typename T>
|
||||
inline std::shared_ptr<DiagonalMatrix<T>> FullMatrix<T>::asDiagonalMatrix()
|
||||
{
|
||||
int nrow = this->nrow();
|
||||
|
||||
@@ -33,8 +33,8 @@ namespace MbD {
|
||||
public:
|
||||
FullRow() : FullVector<T>() {}
|
||||
FullRow(std::vector<T> vec) : FullVector<T>(vec) {}
|
||||
FullRow(int count) : FullVector<T>(count) {}
|
||||
FullRow(int count, const T& value) : FullVector<T>(count, value) {}
|
||||
FullRow(size_t count) : FullVector<T>(count) {}
|
||||
FullRow(size_t count, const T& value) : FullVector<T>(count, value) {}
|
||||
FullRow(typename std::vector<T>::const_iterator begin, typename std::vector<T>::const_iterator end) : FullVector<T>(begin, end) {}
|
||||
FullRow(std::initializer_list<T> list) : FullVector<T>{ list } {}
|
||||
FRowsptr<T> times(T a);
|
||||
|
||||
@@ -20,8 +20,8 @@ namespace MbD {
|
||||
public:
|
||||
FullVector() : Array<T>() {}
|
||||
FullVector(std::vector<T> vec) : Array<T>(vec) {}
|
||||
FullVector(int count) : Array<T>(count) {}
|
||||
FullVector(int count, const T& value) : Array<T>(count, value) {}
|
||||
FullVector(size_t count) : Array<T>(count) {}
|
||||
FullVector(size_t count, const T& value) : Array<T>(count, value) {}
|
||||
FullVector(typename std::vector<T>::iterator begin, typename std::vector<T>::iterator end) : Array<T>(begin, end) {}
|
||||
FullVector(std::initializer_list<T> list) : Array<T>{ list } {}
|
||||
double dot(std::shared_ptr<FullVector<T>> vec);
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#include "FunctionX.h"
|
||||
#include "Constant.h"
|
||||
#include "Sum.h"
|
||||
#include "Arguments.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
@@ -18,10 +19,9 @@ MbD::FunctionX::FunctionX(Symsptr arg) : xx(arg)
|
||||
|
||||
void MbD::FunctionX::arguments(Symsptr args)
|
||||
{
|
||||
//args is a Sum with "terms" containing the actual arguments
|
||||
auto sum = std::static_pointer_cast<Sum>(args);
|
||||
assert(sum->terms->size() == 1);
|
||||
xx = sum->terms->front();
|
||||
auto arguments = std::static_pointer_cast<Arguments>(args);
|
||||
assert(arguments->terms->size() == 1);
|
||||
xx = arguments->terms->front();
|
||||
}
|
||||
|
||||
Symsptr MbD::FunctionX::copyWith(Symsptr)
|
||||
|
||||
2
OndselSolver/Functions.cpp
Normal file
2
OndselSolver/Functions.cpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "Functions.h"
|
||||
|
||||
19
OndselSolver/Functions.h
Normal file
19
OndselSolver/Functions.h
Normal file
@@ -0,0 +1,19 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "Arguments.h"
|
||||
|
||||
namespace MbD {
|
||||
class Functions : public Arguments
|
||||
{
|
||||
public:
|
||||
|
||||
};
|
||||
}
|
||||
@@ -20,7 +20,9 @@ std::shared_ptr<GearConstraintIJ> MbD::GearConstraintIJ::With(EndFrmsptr frmi, E
|
||||
{
|
||||
assert(frmi->isEndFrameqc());
|
||||
assert(frmj->isEndFrameqc());
|
||||
return std::make_shared<GearConstraintIqcJqc>(frmi, frmj);
|
||||
auto gearCon = std::make_shared<GearConstraintIqcJqc>(frmi, frmj);
|
||||
gearCon->initorbitsIJ();
|
||||
return gearCon;
|
||||
}
|
||||
|
||||
void MbD::GearConstraintIJ::calcPostDynCorrectorIteration()
|
||||
|
||||
@@ -20,16 +20,16 @@ MbD::GearJoint::GearJoint()
|
||||
MbD::GearJoint::GearJoint(const char*)
|
||||
{
|
||||
}
|
||||
|
||||
void MbD::GearJoint::initializeLocally()
|
||||
{
|
||||
if (!constraints->empty())
|
||||
{
|
||||
auto constraint = std::static_pointer_cast<GearConstraintIJ>(constraints->back());
|
||||
constraint->initorbitsIJ();
|
||||
}
|
||||
Joint::initializeLocally();
|
||||
}
|
||||
//
|
||||
//void MbD::GearJoint::initializeLocally()
|
||||
//{
|
||||
// if (!constraints->empty())
|
||||
// {
|
||||
// auto constraint = std::static_pointer_cast<GearConstraintIJ>(constraints->back());
|
||||
// constraint->initorbitsIJ();
|
||||
// }
|
||||
// Joint::initializeLocally();
|
||||
//}
|
||||
|
||||
void MbD::GearJoint::initializeGlobally()
|
||||
{
|
||||
|
||||
@@ -18,7 +18,7 @@ namespace MbD {
|
||||
GearJoint();
|
||||
GearJoint(const char* str);
|
||||
|
||||
void initializeLocally() override;
|
||||
//void initializeLocally() override;
|
||||
void initializeGlobally() override;
|
||||
|
||||
double radiusI = 0.0, radiusJ = 0.0, aConstant = 0.0;
|
||||
|
||||
37
OndselSolver/MBDynAxialRotationJoint.cpp
Normal file
37
OndselSolver/MBDynAxialRotationJoint.cpp
Normal file
@@ -0,0 +1,37 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynAxialRotationJoint.h"
|
||||
#include "ASMTAssembly.h"
|
||||
#include "ASMTRevoluteJoint.h"
|
||||
#include "ASMTRotationalMotion.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynAxialRotationJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(line);
|
||||
readFunction(arguments);
|
||||
}
|
||||
|
||||
void MbD::MBDynAxialRotationJoint::createASMT()
|
||||
{
|
||||
MBDynJoint::createASMT();
|
||||
auto asmtAsm = asmtAssembly();
|
||||
asmtMotion = std::make_shared<ASMTRotationalMotion>();
|
||||
asmtMotion->setName(name.append("Motion"));
|
||||
asmtMotion->setMotionJoint(asmtItem->fullName(""));
|
||||
asmtMotion->setRotationZ(asmtFormulaIntegral());
|
||||
asmtAsm->addMotion(asmtMotion);
|
||||
return;
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynAxialRotationJoint::asmtClassNew()
|
||||
{
|
||||
return std::make_shared<ASMTRevoluteJoint>();
|
||||
}
|
||||
26
OndselSolver/MBDynAxialRotationJoint.h
Normal file
26
OndselSolver/MBDynAxialRotationJoint.h
Normal file
@@ -0,0 +1,26 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
class ASMTRotationalMotion;
|
||||
|
||||
class MBDynAxialRotationJoint : public MBDynJoint
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void createASMT() override;
|
||||
std::shared_ptr<ASMTJoint> asmtClassNew() override;
|
||||
|
||||
std::shared_ptr<ASMTRotationalMotion> asmtMotion;
|
||||
};
|
||||
|
||||
}
|
||||
@@ -16,31 +16,15 @@ void MbD::MBDynBody::initialize()
|
||||
void MbD::MBDynBody::parseMBDyn(std::string line)
|
||||
{
|
||||
bodyString = line;
|
||||
size_t previousPos = 0;
|
||||
auto pos = line.find(":");
|
||||
auto front = line.substr(previousPos, pos - previousPos);
|
||||
assert(front.find("body") != 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 iss = std::istringstream(arguments.at(0));
|
||||
iss >> name;
|
||||
arguments.erase(arguments.begin());
|
||||
iss = std::istringstream(arguments.at(0));
|
||||
iss >> nodeName;
|
||||
arguments.erase(arguments.begin());
|
||||
arguments = collectArgumentsFor("body", line);
|
||||
name = readStringOffTop(arguments);
|
||||
nodeName = readStringOffTop(arguments);
|
||||
//auto iss = std::istringstream(arguments.at(0));
|
||||
//iss >> name;
|
||||
//arguments.erase(arguments.begin());
|
||||
//iss = std::istringstream(arguments.at(0));
|
||||
//iss >> nodeName;
|
||||
//arguments.erase(arguments.begin());
|
||||
readMass(arguments);
|
||||
rPcmP = readPosition(arguments);
|
||||
readInertiaMatrix(arguments);
|
||||
|
||||
50
OndselSolver/MBDynClampJoint.cpp
Normal file
50
OndselSolver/MBDynClampJoint.cpp
Normal file
@@ -0,0 +1,50 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynClampJoint.h"
|
||||
#include "ASMTAssembly.h"
|
||||
#include "ASMTFixedJoint.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynClampJoint::parseMBDyn(std::string statement)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(statement);
|
||||
assert(joint_type == "clamp");
|
||||
return;
|
||||
}
|
||||
|
||||
void MbD::MBDynClampJoint::createASMT()
|
||||
{
|
||||
MBDynJoint::createASMT();
|
||||
}
|
||||
|
||||
void MbD::MBDynClampJoint::readMarkerI(std::vector<std::string>& args)
|
||||
{
|
||||
//mkr1 should be on assembly which doesn't exist in MBDyn
|
||||
//mkr2 is on the node
|
||||
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);
|
||||
}
|
||||
|
||||
void MbD::MBDynClampJoint::readMarkerJ(std::vector<std::string>& args)
|
||||
{
|
||||
if (args.empty()) return;
|
||||
mkr2 = std::make_shared<MBDynMarker>();
|
||||
mkr2->owner = this;
|
||||
mkr2->nodeStr = readStringOffTop(args);
|
||||
mkr2->parseMBDynClamp(args);
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynClampJoint::asmtClassNew()
|
||||
{
|
||||
return std::make_shared<ASMTFixedJoint>();
|
||||
}
|
||||
24
OndselSolver/MBDynClampJoint.h
Normal file
24
OndselSolver/MBDynClampJoint.h
Normal file
@@ -0,0 +1,24 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
|
||||
class MBDynClampJoint : public MBDynJoint
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void createASMT() override;
|
||||
void readMarkerI(std::vector<std::string>& args) override;
|
||||
void readMarkerJ(std::vector<std::string>& args) override;
|
||||
std::shared_ptr<ASMTJoint> asmtClassNew() override;
|
||||
};
|
||||
}
|
||||
@@ -7,25 +7,7 @@ using namespace MbD;
|
||||
void MbD::MBDynDrive::parseMBDyn(std::string line)
|
||||
{
|
||||
driveString = line;
|
||||
size_t previousPos = 0;
|
||||
auto pos = line.find(":");
|
||||
auto front = line.substr(previousPos, pos - previousPos);
|
||||
assert(front.find("drive caller") != 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;
|
||||
}
|
||||
}
|
||||
arguments = collectArgumentsFor("drive caller", line);
|
||||
auto iss = std::istringstream(arguments.at(0));
|
||||
iss >> name;
|
||||
arguments.erase(arguments.begin());
|
||||
@@ -41,11 +23,8 @@ void MbD::MBDynDrive::parseMBDyn(std::string line)
|
||||
void MbD::MBDynDrive::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 str = readStringOffTop(args);
|
||||
if (str == "ramp") {
|
||||
std::string slope, initValue, initTime, finalTime;
|
||||
slope = popOffTop(args);
|
||||
initTime = popOffTop(args);
|
||||
@@ -67,6 +46,100 @@ void MbD::MBDynDrive::readFunction(std::vector<std::string>& args)
|
||||
<< initValue << " + " << slope << "*(" << finalTime << " - " << initTime << "))";
|
||||
formula = ss.str();
|
||||
}
|
||||
else if (str == "cosine") {
|
||||
std::string initial_time, angular_velocity, amplitude, number_of_cycles, initial_value;
|
||||
initial_time = popOffTop(args);
|
||||
angular_velocity = popOffTop(args);
|
||||
amplitude = popOffTop(args);
|
||||
number_of_cycles = popOffTop(args);
|
||||
initial_value = popOffTop(args);
|
||||
initial_time.erase(remove_if(initial_time.begin(), initial_time.end(), isspace), initial_time.end());
|
||||
angular_velocity.erase(remove_if(angular_velocity.begin(), angular_velocity.end(), isspace), angular_velocity.end());
|
||||
amplitude.erase(remove_if(amplitude.begin(), amplitude.end(), isspace), amplitude.end());
|
||||
number_of_cycles.erase(remove_if(number_of_cycles.begin(), number_of_cycles.end(), isspace), number_of_cycles.end());
|
||||
initial_value.erase(remove_if(initial_value.begin(), initial_value.end(), isspace), initial_value.end());
|
||||
//f(t) = initial_value + amplitude * (1 ? cos (angular_velocity * (t ? initial_time)))
|
||||
|
||||
double nCycle;
|
||||
if (number_of_cycles.find("forever") != std::string::npos) {
|
||||
nCycle = 1.0e9;
|
||||
}
|
||||
else if (number_of_cycles.find("one") != std::string::npos) {
|
||||
nCycle = 1.0;
|
||||
}
|
||||
else if (number_of_cycles.find("half") != std::string::npos) {
|
||||
nCycle = 0.5;
|
||||
}
|
||||
else {
|
||||
nCycle = stod(number_of_cycles);
|
||||
}
|
||||
double x0 = stod(initial_time);
|
||||
double y0 = stod(initial_value);
|
||||
double omega = stod(angular_velocity);
|
||||
double amp = stod(amplitude);
|
||||
double x1 = x0 + (2 * OS_M_PI * nCycle / omega);
|
||||
double y1 = y0 + amp * (1.0 - std::cos(omega * (x1 - x0)));
|
||||
double f1 = y0;
|
||||
auto ss = std::stringstream();
|
||||
ss << "(" << y0 << " + " << amp << "*(1.0 - cos(" << omega << "*(time - " << x0 << "))))";
|
||||
std::string f2 = ss.str();
|
||||
double f3 = y1;
|
||||
double t1 = x0;
|
||||
double t2 = x1;
|
||||
ss = std::stringstream();
|
||||
ss << "piecewise(time, functions(" << f1 << ", " << f2 << ", " << f3 << "), transitions(" << t1 << ", " << t2 << "))";
|
||||
formula = ss.str();
|
||||
}
|
||||
else if (str == "sine") {
|
||||
std::string initial_time, angular_velocity, amplitude, number_of_cycles, initial_value;
|
||||
initial_time = popOffTop(args);
|
||||
angular_velocity = popOffTop(args);
|
||||
amplitude = popOffTop(args);
|
||||
number_of_cycles = popOffTop(args);
|
||||
initial_value = popOffTop(args);
|
||||
initial_time.erase(remove_if(initial_time.begin(), initial_time.end(), isspace), initial_time.end());
|
||||
angular_velocity.erase(remove_if(angular_velocity.begin(), angular_velocity.end(), isspace), angular_velocity.end());
|
||||
amplitude.erase(remove_if(amplitude.begin(), amplitude.end(), isspace), amplitude.end());
|
||||
number_of_cycles.erase(remove_if(number_of_cycles.begin(), number_of_cycles.end(), isspace), number_of_cycles.end());
|
||||
initial_value.erase(remove_if(initial_value.begin(), initial_value.end(), isspace), initial_value.end());
|
||||
//f(t) = initial_value + amplitude · sin (angular_velocity · (t − initial_time))
|
||||
|
||||
double nCycle;
|
||||
if (number_of_cycles.find("forever") != std::string::npos) {
|
||||
nCycle = 1.0e9;
|
||||
}
|
||||
else if (number_of_cycles.find("one") != std::string::npos) {
|
||||
nCycle = 0.5; //Different from cosine
|
||||
}
|
||||
else if (number_of_cycles.find("half") != std::string::npos) {
|
||||
nCycle = 0.25; //Different from cosine
|
||||
}
|
||||
else {
|
||||
nCycle = stod(number_of_cycles);
|
||||
if (nCycle < 0.0) {
|
||||
nCycle -= 0.75;
|
||||
}
|
||||
else if (nCycle > 0.0) {
|
||||
nCycle -= 0.5;
|
||||
}
|
||||
}
|
||||
double x0 = stod(initial_time);
|
||||
double y0 = stod(initial_value);
|
||||
double omega = stod(angular_velocity);
|
||||
double amp = stod(amplitude);
|
||||
double x1 = x0 + (2 * OS_M_PI * nCycle / omega);
|
||||
double y1 = y0 + amp * std::sin(omega * (x1 - x0));
|
||||
double f1 = y0;
|
||||
auto ss = std::stringstream();
|
||||
ss << "(" << y0 << " + " << amp << "*sin(" << omega << "*(time - " << x0 << ")))";
|
||||
std::string f2 = ss.str();
|
||||
double f3 = y1;
|
||||
double t1 = x0;
|
||||
double t2 = x1;
|
||||
ss = std::stringstream();
|
||||
ss << "piecewise(time, functions(" << f1 << ", " << f2 << ", " << f3 << "), transitions(" << t1 << ", " << t2 << "))";
|
||||
formula = ss.str();
|
||||
}
|
||||
else {
|
||||
assert(false);
|
||||
}
|
||||
|
||||
41
OndselSolver/MBDynDriveHingeJoint.cpp
Normal file
41
OndselSolver/MBDynDriveHingeJoint.cpp
Normal file
@@ -0,0 +1,41 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynDriveHingeJoint.h"
|
||||
#include "ASMTMarker.h"
|
||||
#include "ASMTJoint.h"
|
||||
#include "ASMTRotationalMotion.h"
|
||||
#include "ASMTAssembly.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynDriveHingeJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(line);
|
||||
readFunction(arguments);
|
||||
}
|
||||
|
||||
void MbD::MBDynDriveHingeJoint::createASMT()
|
||||
{
|
||||
mkr1->createASMT();
|
||||
if (mkr2) mkr2->createASMT();
|
||||
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;
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynDriveHingeJoint::asmtClassNew()
|
||||
{
|
||||
return std::make_shared<ASMTJoint>();
|
||||
}
|
||||
23
OndselSolver/MBDynDriveHingeJoint.h
Normal file
23
OndselSolver/MBDynDriveHingeJoint.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
|
||||
class MBDynDriveHingeJoint : public MBDynJoint
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void createASMT() override;
|
||||
std::shared_ptr<ASMTJoint> asmtClassNew() override;
|
||||
};
|
||||
|
||||
}
|
||||
@@ -9,25 +9,7 @@ using namespace MbD;
|
||||
void MbD::MBDynGravity::parseMBDyn(std::string line)
|
||||
{
|
||||
gravityString = line;
|
||||
size_t previousPos = 0;
|
||||
auto pos = line.find(":");
|
||||
auto front = line.substr(previousPos, pos - previousPos);
|
||||
assert(front.find("gravity") != 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;
|
||||
}
|
||||
}
|
||||
arguments = collectArgumentsFor("gravity", line);
|
||||
assert(arguments.at(0).find("uniform") != std::string::npos);
|
||||
arguments.erase(arguments.begin());
|
||||
gvec = readPosition(arguments);
|
||||
|
||||
27
OndselSolver/MBDynInLineJoint.cpp
Normal file
27
OndselSolver/MBDynInLineJoint.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynInLineJoint.h"
|
||||
#include "ASMTPointInLineJoint.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynInLineJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(line);
|
||||
}
|
||||
|
||||
void MbD::MBDynInLineJoint::createASMT()
|
||||
{
|
||||
MBDynJoint::createASMT();
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynInLineJoint::asmtClassNew()
|
||||
{
|
||||
return std::make_shared<ASMTPointInLineJoint>();
|
||||
}
|
||||
22
OndselSolver/MBDynInLineJoint.h
Normal file
22
OndselSolver/MBDynInLineJoint.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
|
||||
class MBDynInLineJoint : public MBDynJoint
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void createASMT() override;
|
||||
std::shared_ptr<ASMTJoint> asmtClassNew() override;
|
||||
};
|
||||
}
|
||||
27
OndselSolver/MBDynInPlaneJoint.cpp
Normal file
27
OndselSolver/MBDynInPlaneJoint.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynInPlaneJoint.h"
|
||||
#include "ASMTPointInPlaneJoint.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynInPlaneJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(line);
|
||||
}
|
||||
|
||||
void MbD::MBDynInPlaneJoint::createASMT()
|
||||
{
|
||||
MBDynJoint::createASMT();
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynInPlaneJoint::asmtClassNew()
|
||||
{
|
||||
return std::make_shared<ASMTPointInPlaneJoint>();
|
||||
}
|
||||
24
OndselSolver/MBDynInPlaneJoint.h
Normal file
24
OndselSolver/MBDynInPlaneJoint.h
Normal file
@@ -0,0 +1,24 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
|
||||
class MBDynInPlaneJoint : public MBDynJoint
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void createASMT() override;
|
||||
std::shared_ptr<ASMTJoint> asmtClassNew() override;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -263,7 +263,10 @@ FMatDsptr MbD::MBDynItem::readOrientation(std::vector<std::string>& args)
|
||||
aAOf = readOrientation(args);
|
||||
}
|
||||
else if (str.find("position") != std::string::npos) {
|
||||
//Do nothing
|
||||
if (str.find("orientation") != std::string::npos) {
|
||||
args.erase(args.begin());
|
||||
aAOf = readOrientation(args);
|
||||
}
|
||||
}
|
||||
else if (str.find("orientation") != std::string::npos) {
|
||||
args.erase(args.begin());
|
||||
@@ -283,7 +286,7 @@ FMatDsptr MbD::MBDynItem::readBasicOrientation(std::vector<std::string>& args)
|
||||
if (str.find("euler") != std::string::npos) {
|
||||
args.erase(args.begin());
|
||||
auto euler = std::make_shared<EulerAngles<Symsptr>>();
|
||||
euler->rotOrder = std::make_shared<FullColumn<int>>(std::initializer_list<int>{ 1, 2, 3 });
|
||||
euler->rotOrder = std::make_shared<std::vector<int>>(std::initializer_list<int>{ 1, 2, 3 });
|
||||
for (int i = 0; i < 3; i++)
|
||||
{
|
||||
auto userFunc = std::make_shared<BasicUserFunction>(popOffTop(args), 1.0);
|
||||
@@ -432,6 +435,26 @@ std::string MbD::MBDynItem::readStringOffTop(std::vector<std::string>& args)
|
||||
return str;
|
||||
}
|
||||
|
||||
void MbD::MBDynItem::readName(std::vector<std::string>& args)
|
||||
{
|
||||
name = readStringOffTop(args);
|
||||
}
|
||||
|
||||
std::string MbD::MBDynItem::readJointTypeOffTop(std::vector<std::string>& args)
|
||||
{
|
||||
auto ss = std::stringstream();
|
||||
auto iss = std::istringstream(popOffTop(args));
|
||||
std::string str;
|
||||
iss >> str;
|
||||
ss << str;
|
||||
while (!iss.eof()) {
|
||||
ss << ' ';
|
||||
iss >> str;
|
||||
ss << str;
|
||||
}
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
std::string MbD::MBDynItem::readToken(std::string& line)
|
||||
{
|
||||
auto iss = std::istringstream(line);
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace MbD {
|
||||
virtual void parseMBDyn(std::string line);
|
||||
static std::vector<std::string> collectArgumentsFor(std::string title, std::string& statement);
|
||||
std::vector<std::string>::iterator findLineWith(std::vector<std::string>& lines, std::vector<std::string>& tokens);
|
||||
bool lineHasTokens(const std::string& line, std::vector<std::string>& tokens);
|
||||
static bool lineHasTokens(const std::string& line, std::vector<std::string>& tokens);
|
||||
virtual std::shared_ptr<std::vector<std::shared_ptr<MBDynNode>>> mbdynNodes();
|
||||
virtual std::shared_ptr<std::vector<std::shared_ptr<MBDynBody>>> mbdynBodies();
|
||||
virtual std::shared_ptr<std::vector<std::shared_ptr<MBDynJoint>>> mbdynJoints();
|
||||
@@ -57,11 +57,14 @@ namespace MbD {
|
||||
FMatDsptr readBasicOrientation(std::vector<std::string>& args);
|
||||
std::string popOffTop(std::vector<std::string>& args);
|
||||
std::string readStringOffTop(std::vector<std::string>& args);
|
||||
void readName(std::vector<std::string>& args);
|
||||
std::string readJointTypeOffTop(std::vector<std::string>& args);
|
||||
std::string readToken(std::string& line);
|
||||
|
||||
std::string name;
|
||||
MBDynItem* owner = nullptr;
|
||||
std::shared_ptr<ASMTItem> asmtItem;
|
||||
std::vector<std::string> arguments;
|
||||
|
||||
|
||||
};
|
||||
|
||||
@@ -1,8 +1,17 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include <regex>
|
||||
|
||||
#include "MBDynJoint.h"
|
||||
#include "ASMTMarker.h"
|
||||
#include "ASMTPart.h"
|
||||
#include "ASMTJoint.h"
|
||||
#include "ASMTAssembly.h"
|
||||
#include "ASMTRevoluteJoint.h"
|
||||
#include "ASMTRotationalMotion.h"
|
||||
@@ -10,9 +19,67 @@
|
||||
#include "ASMTNoRotationJoint.h"
|
||||
#include "ASMTFixedJoint.h"
|
||||
#include "ASMTSphericalJoint.h"
|
||||
#include "MBDynTotalJoint.h"
|
||||
#include "MBDynClampJoint.h"
|
||||
#include "MBDynAxialRotationJoint.h"
|
||||
#include "MBDynDriveHingeJoint.h"
|
||||
#include "MBDynInLineJoint.h"
|
||||
#include "MBDynInPlaneJoint.h"
|
||||
#include "MBDynPrismaticJoint.h"
|
||||
#include "MBDynRevoluteHingeJoint.h"
|
||||
#include "MBDynRevolutePinJoint.h"
|
||||
#include "MBDynSphericalHingeJoint.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
std::shared_ptr<MBDynJoint> MbD::MBDynJoint::newJoint(std::string statement)
|
||||
{
|
||||
//std::shared_ptr<MBDynJoint> joint;
|
||||
//std::vector<std::string> tokens{ "total", "joint" };
|
||||
std::vector<std::string> tokens;
|
||||
tokens = { "axial", "rotation" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynAxialRotationJoint>();
|
||||
}
|
||||
tokens = { "clamp" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynClampJoint>();
|
||||
}
|
||||
tokens = { "drive", "hinge" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynDriveHingeJoint>();
|
||||
}
|
||||
tokens = { "in", "line" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynInLineJoint>();
|
||||
}
|
||||
tokens = { "in", "plane" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynInPlaneJoint>();
|
||||
}
|
||||
tokens = { "prismatic" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynPrismaticJoint>();
|
||||
}
|
||||
tokens = { "revolute", "hinge" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynRevoluteHingeJoint>();
|
||||
}
|
||||
tokens = { "revolute", "pin" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynRevolutePinJoint>();
|
||||
}
|
||||
tokens = { "spherical", "hinge" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynSphericalHingeJoint>();
|
||||
}
|
||||
tokens = { "total", "joint" };
|
||||
if (lineHasTokens(statement, tokens)) {
|
||||
return std::make_shared<MBDynTotalJoint>();
|
||||
}
|
||||
return std::make_shared<MBDynJoint>();
|
||||
}
|
||||
|
||||
void MbD::MBDynJoint::initialize()
|
||||
{
|
||||
}
|
||||
@@ -20,120 +87,131 @@ void MbD::MBDynJoint::initialize()
|
||||
void MbD::MBDynJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
jointString = line;
|
||||
auto arguments = collectArgumentsFor("joint", 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);
|
||||
readClampMarkerJ(arguments);
|
||||
return;
|
||||
}
|
||||
else if (joint_type == "prismatic") {
|
||||
noop();
|
||||
}
|
||||
else {
|
||||
assert(false);
|
||||
}
|
||||
arguments.erase(arguments.begin());
|
||||
arguments = collectArgumentsFor("joint", line);
|
||||
readName(arguments);
|
||||
readJointType(arguments);
|
||||
readMarkerI(arguments);
|
||||
readMarkerJ(arguments);
|
||||
|
||||
}
|
||||
|
||||
void MbD::MBDynJoint::readJointType(std::vector<std::string>& args)
|
||||
{
|
||||
joint_type = readJointTypeOffTop(args);
|
||||
}
|
||||
|
||||
//void MbD::MBDynJoint::parseMBDyn0(std::string line)
|
||||
//{
|
||||
// jointString = line;
|
||||
// arguments = collectArgumentsFor("joint", line);
|
||||
// auto ss = std::stringstream();
|
||||
// name = readStringOffTop(arguments);
|
||||
// auto 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 == "total") {
|
||||
// ss << joint_type;
|
||||
// iss >> joint_type;
|
||||
// if (joint_type == "joint") {
|
||||
// ss << " " << joint_type;
|
||||
// joint_type = ss.str();
|
||||
// }
|
||||
// else {
|
||||
// assert(false);
|
||||
// }
|
||||
// arguments.erase(arguments.begin());
|
||||
// readTotalJointMarkerI(arguments);
|
||||
// readTotalJointMarkerJ(arguments);
|
||||
// readTotalJointFunction(arguments);
|
||||
// return;
|
||||
// }
|
||||
// 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);
|
||||
// readClampMarkerJ(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>();
|
||||
@@ -161,6 +239,33 @@ void MbD::MBDynJoint::readMarkerJ(std::vector<std::string>& args)
|
||||
mkr2->parseMBDyn(args);
|
||||
}
|
||||
|
||||
void MbD::MBDynJoint::readTotalJointMarkerI(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->parseMBDynTotalJointMarker(markerArgs);
|
||||
}
|
||||
|
||||
void MbD::MBDynJoint::readTotalJointMarkerJ(std::vector<std::string>& args)
|
||||
{
|
||||
if (args.empty()) return;
|
||||
mkr2 = std::make_shared<MBDynMarker>();
|
||||
mkr2->owner = this;
|
||||
mkr2->nodeStr = readStringOffTop(args);
|
||||
mkr2->parseMBDynTotalJointMarker(args);
|
||||
}
|
||||
|
||||
void MbD::MBDynJoint::readClampMarkerJ(std::vector<std::string>& args)
|
||||
{
|
||||
if (args.empty()) return;
|
||||
@@ -206,69 +311,106 @@ void MbD::MBDynJoint::readFunction(std::vector<std::string>& args)
|
||||
}
|
||||
}
|
||||
|
||||
void MbD::MBDynJoint::readTotalJointFunction(std::vector<std::string>& args)
|
||||
{
|
||||
std::vector<std::string> tokens{ "position", "constraint" };
|
||||
assert(lineHasTokens(args[0], tokens));
|
||||
args.erase(args.begin());
|
||||
assert(readStringOffTop(args) == "active");
|
||||
assert(readStringOffTop(args) == "active");
|
||||
assert(readStringOffTop(args) == "active");
|
||||
assert(readStringOffTop(args) == "null");
|
||||
std::vector<std::string> tokens1{ "orientation", "constraint" };
|
||||
assert(lineHasTokens(args[0], tokens1));
|
||||
args.erase(args.begin());
|
||||
assert(readStringOffTop(args) == "active");
|
||||
assert(readStringOffTop(args) == "active");
|
||||
assert(readStringOffTop(args) == "rotation");
|
||||
readFunction(args);
|
||||
}
|
||||
|
||||
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(asmtFormulaIntegral());
|
||||
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);
|
||||
}
|
||||
auto asmtAsm = asmtAssembly();
|
||||
auto asmtJoint = asmtClassNew();
|
||||
asmtItem = asmtJoint;
|
||||
asmtJoint->setName(name);
|
||||
asmtJoint->setMarkerI(mkr1->asmtItem->fullName(""));
|
||||
asmtJoint->setMarkerJ(mkr2->asmtItem->fullName(""));
|
||||
asmtAssembly()->addJoint(asmtJoint);
|
||||
asmtAsm->addJoint(asmtJoint);
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynJoint::asmtClassNew()
|
||||
{
|
||||
assert(false);
|
||||
return std::make_shared<ASMTJoint>();
|
||||
}
|
||||
|
||||
//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(asmtFormulaIntegral());
|
||||
// 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);
|
||||
//}
|
||||
|
||||
std::string MbD::MBDynJoint::asmtFormula()
|
||||
{
|
||||
auto ss = std::stringstream();
|
||||
@@ -296,6 +438,33 @@ std::string MbD::MBDynJoint::asmtFormula()
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
std::string MbD::MBDynJoint::asmtFormula(std::string mbdynFormula)
|
||||
{
|
||||
auto ss = std::stringstream();
|
||||
std::string drivestr = "model::drive";
|
||||
size_t previousPos = 0;
|
||||
auto pos = mbdynFormula.find(drivestr);
|
||||
ss << mbdynFormula.substr(previousPos, pos - previousPos);
|
||||
while (pos != std::string::npos) {
|
||||
previousPos = pos;
|
||||
pos = mbdynFormula.find('(', pos + 1);
|
||||
previousPos = pos;
|
||||
pos = mbdynFormula.find(',', pos + 1);
|
||||
auto driveName = mbdynFormula.substr(previousPos + 1, pos - previousPos - 1);
|
||||
driveName = readToken(driveName);
|
||||
previousPos = pos;
|
||||
pos = mbdynFormula.find(')', pos + 1);
|
||||
auto varName = mbdynFormula.substr(previousPos + 1, pos - previousPos - 1);
|
||||
varName = readToken(varName);
|
||||
//Insert drive mbdynFormula
|
||||
ss << formulaFromDrive(driveName, varName);
|
||||
previousPos = pos;
|
||||
pos = mbdynFormula.find(drivestr, pos + 1);
|
||||
ss << mbdynFormula.substr(previousPos + 1, pos - previousPos);
|
||||
}
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
std::string MbD::MBDynJoint::asmtFormulaIntegral()
|
||||
{
|
||||
auto ss = std::stringstream();
|
||||
|
||||
@@ -11,20 +11,29 @@
|
||||
#include "MBDynMarker.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
|
||||
class MBDynJoint : public MBDynElement
|
||||
{
|
||||
public:
|
||||
static std::shared_ptr<MBDynJoint> newJoint(std::string line);
|
||||
void initialize() override;
|
||||
void parseMBDyn(std::string line) override;
|
||||
void readMarkerI(std::vector<std::string>& args);
|
||||
void readMarkerJ(std::vector<std::string>& args);
|
||||
virtual void readJointType(std::vector<std::string>& args);
|
||||
virtual void readMarkerI(std::vector<std::string>& args);
|
||||
virtual void readMarkerJ(std::vector<std::string>& args);
|
||||
void readTotalJointMarkerI(std::vector<std::string>& args);
|
||||
void readTotalJointMarkerJ(std::vector<std::string>& args);
|
||||
void readClampMarkerJ(std::vector<std::string>& args);
|
||||
void readFunction(std::vector<std::string>& args);
|
||||
virtual void readFunction(std::vector<std::string>& args);
|
||||
void readTotalJointFunction(std::vector<std::string>& args);
|
||||
void createASMT() override;
|
||||
virtual std::shared_ptr<ASMTJoint> asmtClassNew();
|
||||
std::string asmtFormula();
|
||||
std::string asmtFormula(std::string mbdynFormula);
|
||||
std::string asmtFormulaIntegral();
|
||||
|
||||
std::string jointString, joint_type, node_1_label, node_2_label;
|
||||
std::string jointString, joint_type;
|
||||
std::shared_ptr<MBDynMarker> mkr1, mkr2;
|
||||
std::string formula;
|
||||
};
|
||||
|
||||
@@ -32,6 +32,13 @@ void MbD::MBDynMarker::parseMBDyn(std::vector<std::string>& args)
|
||||
}
|
||||
}
|
||||
|
||||
void MbD::MBDynMarker::parseMBDynTotalJointMarker(std::vector<std::string>& args)
|
||||
{
|
||||
parseMBDyn(args);
|
||||
aAPm2 = readOrientation(args);
|
||||
assert(aAPm->equaltol(aAPm2, 1.0e-9));
|
||||
}
|
||||
|
||||
void MbD::MBDynMarker::parseMBDynClamp(std::vector<std::string>& args)
|
||||
{
|
||||
//rOmO = rOPO + aAOP*rPmP
|
||||
|
||||
@@ -15,11 +15,12 @@ namespace MbD {
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::vector<std::string>& args) override;
|
||||
void parseMBDynTotalJointMarker(std::vector<std::string>& args);
|
||||
void parseMBDynClamp(std::vector<std::string>& args);
|
||||
void createASMT() override;
|
||||
|
||||
std::string nodeStr;
|
||||
FColDsptr rPmP; //part to marker
|
||||
FMatDsptr aAPm;
|
||||
FMatDsptr aAPm, aAPm2;
|
||||
};
|
||||
}
|
||||
|
||||
27
OndselSolver/MBDynPrismaticJoint.cpp
Normal file
27
OndselSolver/MBDynPrismaticJoint.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynPrismaticJoint.h"
|
||||
#include "ASMTNoRotationJoint.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynPrismaticJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(line);
|
||||
}
|
||||
|
||||
void MbD::MBDynPrismaticJoint::createASMT()
|
||||
{
|
||||
MBDynJoint::createASMT();
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynPrismaticJoint::asmtClassNew()
|
||||
{
|
||||
return std::make_shared<ASMTNoRotationJoint>();
|
||||
}
|
||||
23
OndselSolver/MBDynPrismaticJoint.h
Normal file
23
OndselSolver/MBDynPrismaticJoint.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
|
||||
class MBDynPrismaticJoint : public MBDynJoint
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void createASMT() override;
|
||||
std::shared_ptr<ASMTJoint> asmtClassNew() override;
|
||||
|
||||
};
|
||||
}
|
||||
@@ -12,25 +12,7 @@ void MbD::MBDynReference::initialize()
|
||||
void MbD::MBDynReference::parseMBDyn(std::string line)
|
||||
{
|
||||
refString = line;
|
||||
size_t previousPos = 0;
|
||||
auto pos = line.find(":");
|
||||
auto front = line.substr(previousPos, pos - previousPos);
|
||||
assert(front.find("reference") != 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;
|
||||
}
|
||||
}
|
||||
arguments = collectArgumentsFor("reference", line);
|
||||
std::istringstream iss(arguments.at(0));
|
||||
iss >> name;
|
||||
arguments.erase(arguments.begin());
|
||||
|
||||
27
OndselSolver/MBDynRevoluteHingeJoint.cpp
Normal file
27
OndselSolver/MBDynRevoluteHingeJoint.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynRevoluteHingeJoint.h"
|
||||
#include "ASMTRevoluteJoint.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynRevoluteHingeJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(line);
|
||||
}
|
||||
|
||||
void MbD::MBDynRevoluteHingeJoint::createASMT()
|
||||
{
|
||||
MBDynJoint::createASMT();
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynRevoluteHingeJoint::asmtClassNew()
|
||||
{
|
||||
return std::make_shared<ASMTRevoluteJoint>();
|
||||
}
|
||||
23
OndselSolver/MBDynRevoluteHingeJoint.h
Normal file
23
OndselSolver/MBDynRevoluteHingeJoint.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
|
||||
class MBDynRevoluteHingeJoint : public MBDynJoint
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void createASMT() override;
|
||||
std::shared_ptr<ASMTJoint> asmtClassNew() override;
|
||||
|
||||
};
|
||||
}
|
||||
28
OndselSolver/MBDynRevolutePinJoint.cpp
Normal file
28
OndselSolver/MBDynRevolutePinJoint.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynRevolutePinJoint.h"
|
||||
#include "ASMTJoint.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynRevolutePinJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(line);
|
||||
}
|
||||
|
||||
void MbD::MBDynRevolutePinJoint::createASMT()
|
||||
{
|
||||
MBDynJoint::createASMT();
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynRevolutePinJoint::asmtClassNew()
|
||||
{
|
||||
assert(false);
|
||||
return std::make_shared<ASMTJoint>();
|
||||
}
|
||||
26
OndselSolver/MBDynRevolutePinJoint.h
Normal file
26
OndselSolver/MBDynRevolutePinJoint.h
Normal file
@@ -0,0 +1,26 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
|
||||
class MBDynRevolutePinJoint : public MBDynJoint
|
||||
{
|
||||
//Note: this is equivalent to a revolute hinge (see Section 8.12.38) when one node is grounded.
|
||||
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void createASMT() override;
|
||||
std::shared_ptr<ASMTJoint> asmtClassNew() override;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
27
OndselSolver/MBDynSphericalHingeJoint.cpp
Normal file
27
OndselSolver/MBDynSphericalHingeJoint.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynSphericalHingeJoint.h"
|
||||
#include "ASMTSphericalJoint.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynSphericalHingeJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(line);
|
||||
}
|
||||
|
||||
void MbD::MBDynSphericalHingeJoint::createASMT()
|
||||
{
|
||||
MBDynJoint::createASMT();
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynSphericalHingeJoint::asmtClassNew()
|
||||
{
|
||||
return std::make_shared<ASMTSphericalJoint>();
|
||||
}
|
||||
23
OndselSolver/MBDynSphericalHingeJoint.h
Normal file
23
OndselSolver/MBDynSphericalHingeJoint.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class ASMTJoint;
|
||||
|
||||
class MBDynSphericalHingeJoint : public MBDynJoint
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void createASMT() override;
|
||||
std::shared_ptr<ASMTJoint> asmtClassNew() override;
|
||||
|
||||
};
|
||||
}
|
||||
@@ -20,25 +20,7 @@ MbD::MBDynStructural::MBDynStructural()
|
||||
void MbD::MBDynStructural::parseMBDyn(std::string line)
|
||||
{
|
||||
strucString = line;
|
||||
size_t previousPos = 0;
|
||||
auto pos = line.find(":");
|
||||
auto front = line.substr(previousPos, pos - previousPos);
|
||||
assert(front.find("structural") != 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;
|
||||
}
|
||||
}
|
||||
arguments = collectArgumentsFor("structural", line);
|
||||
std::istringstream iss(arguments.at(0));
|
||||
iss >> name;
|
||||
arguments.erase(arguments.begin());
|
||||
|
||||
@@ -346,7 +346,8 @@ void MbD::MBDynSystem::parseMBDynElements(std::vector<std::string>& lines)
|
||||
}
|
||||
it = findLineWith(lines, jointTokens);
|
||||
if (it != lines.end()) {
|
||||
auto joint = std::make_shared<MBDynJoint>();
|
||||
//auto joint = std::make_shared<MBDynJoint>();
|
||||
auto joint = MBDynJoint::newJoint(*it);
|
||||
joint->owner = this;
|
||||
joint->parseMBDyn(*it);
|
||||
joints->push_back(joint);
|
||||
|
||||
123
OndselSolver/MBDynTotalJoint.cpp
Normal file
123
OndselSolver/MBDynTotalJoint.cpp
Normal file
@@ -0,0 +1,123 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include <regex>
|
||||
|
||||
#include "MBDynTotalJoint.h"
|
||||
#include "ASMTAssembly.h"
|
||||
#include "ASMTJoint.h"
|
||||
#include "ASMTGeneralMotion.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynTotalJoint::parseMBDyn(std::string statement)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(statement);
|
||||
readPositionConstraints(arguments);
|
||||
readOrientationConstraints(arguments);
|
||||
return;
|
||||
}
|
||||
|
||||
void MbD::MBDynTotalJoint::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->parseMBDynTotalJointMarker(markerArgs);
|
||||
}
|
||||
|
||||
void MbD::MBDynTotalJoint::readMarkerJ(std::vector<std::string>& args)
|
||||
{
|
||||
if (args.empty()) return;
|
||||
mkr2 = std::make_shared<MBDynMarker>();
|
||||
mkr2->owner = this;
|
||||
mkr2->nodeStr = readStringOffTop(args);
|
||||
mkr2->parseMBDynTotalJointMarker(args);
|
||||
}
|
||||
|
||||
void MbD::MBDynTotalJoint::readPositionConstraints(std::vector<std::string>& args)
|
||||
{
|
||||
std::vector<std::string> tokens{ "position", "constraint" };
|
||||
assert(lineHasTokens(popOffTop(args), tokens));
|
||||
positionConstraints = std::vector<std::string>();
|
||||
positionConstraints.push_back(readStringOffTop(args));
|
||||
positionConstraints.push_back(readStringOffTop(args));
|
||||
positionConstraints.push_back(readStringOffTop(args));
|
||||
readPositionFormulas(args);
|
||||
}
|
||||
|
||||
void MbD::MBDynTotalJoint::readOrientationConstraints(std::vector<std::string>& args)
|
||||
{
|
||||
std::vector<std::string> tokens{ "orientation", "constraint" };
|
||||
assert(lineHasTokens(popOffTop(args), tokens));
|
||||
orientationConstraints = std::vector<std::string>();
|
||||
orientationConstraints.push_back(readStringOffTop(args));
|
||||
orientationConstraints.push_back(readStringOffTop(args));
|
||||
orientationConstraints.push_back(readStringOffTop(args));
|
||||
readOrientationFormulas(args);
|
||||
}
|
||||
|
||||
void MbD::MBDynTotalJoint::readPositionFormulas(std::vector<std::string>& args)
|
||||
{
|
||||
std::string str = readStringOffTop(args);
|
||||
if (str == "null") return;
|
||||
assert(false);
|
||||
}
|
||||
|
||||
void MbD::MBDynTotalJoint::readOrientationFormulas(std::vector<std::string>& args)
|
||||
{
|
||||
std::string str = readStringOffTop(args);
|
||||
if (str == "null") { return; }
|
||||
else if (str == "single") {
|
||||
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("\""), "");
|
||||
orientationFormulas = std::vector<std::string>();
|
||||
for (auto& status : orientationConstraints) {
|
||||
if (status == "active") {
|
||||
orientationFormulas.push_back("");
|
||||
}
|
||||
else if (status == "rotation") {
|
||||
orientationFormulas.push_back(formula);
|
||||
}
|
||||
else { assert(false); }
|
||||
}
|
||||
return;
|
||||
}
|
||||
assert(false);
|
||||
}
|
||||
|
||||
void MbD::MBDynTotalJoint::createASMT()
|
||||
{
|
||||
mkr1->createASMT();
|
||||
if (mkr2) mkr2->createASMT();
|
||||
auto asmtAsm = asmtAssembly();
|
||||
auto asmtMotion = std::make_shared<ASMTGeneralMotion>();
|
||||
asmtItem = asmtMotion;
|
||||
asmtMotion->setName(name);
|
||||
asmtMotion->setMarkerI(mkr1->asmtItem->fullName(""));
|
||||
asmtMotion->setMarkerJ(mkr2->asmtItem->fullName(""));
|
||||
asmtAsm->addMotion(asmtMotion);
|
||||
for (int i = 0; i < 3; i++)
|
||||
{
|
||||
asmtMotion->rIJI->atiput(i, asmtFormula(positionFormulas.at(i)));
|
||||
asmtMotion->angIJJ->atiput(i, asmtFormula(orientationFormulas.at(i)));
|
||||
}
|
||||
}
|
||||
30
OndselSolver/MBDynTotalJoint.h
Normal file
30
OndselSolver/MBDynTotalJoint.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
#include "MBDynJoint.h"
|
||||
|
||||
namespace MbD {
|
||||
class MBDynTotalJoint : public MBDynJoint
|
||||
{
|
||||
public:
|
||||
void parseMBDyn(std::string line) override;
|
||||
void readMarkerI(std::vector<std::string>& args) override;
|
||||
void readMarkerJ(std::vector<std::string>& args) override;
|
||||
void readPositionConstraints(std::vector<std::string>& args);
|
||||
void readOrientationConstraints(std::vector<std::string>& args);
|
||||
void readPositionFormulas(std::vector<std::string>& args);
|
||||
void readOrientationFormulas(std::vector<std::string>& args);
|
||||
void createASMT() override;
|
||||
|
||||
std::vector<std::string> positionConstraints = std::vector<std::string>(3);
|
||||
std::vector<std::string> orientationConstraints = std::vector<std::string>(3);
|
||||
std::vector<std::string> positionFormulas = std::vector<std::string>(3);
|
||||
std::vector<std::string> orientationFormulas = std::vector<std::string>(3);
|
||||
};
|
||||
}
|
||||
@@ -150,6 +150,7 @@
|
||||
<ClCompile Include="ArcSine.cpp" />
|
||||
<ClCompile Include="ArcTan.cpp" />
|
||||
<ClCompile Include="ArcTan2.cpp" />
|
||||
<ClCompile Include="Arguments.cpp" />
|
||||
<ClCompile Include="Array.cpp" />
|
||||
<ClCompile Include="ASMTAngleJoint.cpp" />
|
||||
<ClCompile Include="ASMTAnimationParameters.cpp" />
|
||||
@@ -233,6 +234,7 @@
|
||||
<ClCompile Include="Exponential.cpp" />
|
||||
<ClCompile Include="ExternalSystem.cpp" />
|
||||
<ClCompile Include="FunctionFromData.cpp" />
|
||||
<ClCompile Include="Functions.cpp" />
|
||||
<ClCompile Include="FunctionXcParameter.cpp" />
|
||||
<ClCompile Include="FunctionXY.cpp" />
|
||||
<ClCompile Include="GeneralSpline.cpp" />
|
||||
@@ -240,21 +242,31 @@
|
||||
<ClCompile Include="Ln.cpp" />
|
||||
<ClCompile Include="Log10.cpp" />
|
||||
<ClCompile Include="LogN.cpp" />
|
||||
<ClCompile Include="MBDynAxialRotationJoint.cpp" />
|
||||
<ClCompile Include="MBDynBlock.cpp" />
|
||||
<ClCompile Include="MBDynBody.cpp" />
|
||||
<ClCompile Include="MBDynClampJoint.cpp" />
|
||||
<ClCompile Include="MBDynControlData.cpp" />
|
||||
<ClCompile Include="MBDynData.cpp" />
|
||||
<ClCompile Include="MBDynDrive.cpp" />
|
||||
<ClCompile Include="MBDynDriveHingeJoint.cpp" />
|
||||
<ClCompile Include="MBDynElement.cpp" />
|
||||
<ClCompile Include="MBDynGravity.cpp" />
|
||||
<ClCompile Include="MBDynInitialValue.cpp" />
|
||||
<ClCompile Include="MBDynInLineJoint.cpp" />
|
||||
<ClCompile Include="MBDynInPlaneJoint.cpp" />
|
||||
<ClCompile Include="MBDynItem.cpp" />
|
||||
<ClCompile Include="MBDynJoint.cpp" />
|
||||
<ClCompile Include="MBDynMarker.cpp" />
|
||||
<ClCompile Include="MBDynNode.cpp" />
|
||||
<ClCompile Include="MBDynPrismaticJoint.cpp" />
|
||||
<ClCompile Include="MBDynReference.cpp" />
|
||||
<ClCompile Include="MBDynRevoluteHingeJoint.cpp" />
|
||||
<ClCompile Include="MBDynRevolutePinJoint.cpp" />
|
||||
<ClCompile Include="MBDynSphericalHingeJoint.cpp" />
|
||||
<ClCompile Include="MBDynStructural.cpp" />
|
||||
<ClCompile Include="MBDynSystem.cpp" />
|
||||
<ClCompile Include="MBDynTotalJoint.cpp" />
|
||||
<ClCompile Include="MomentOfInertiaSolver.cpp" />
|
||||
<ClCompile Include="Negative.cpp" />
|
||||
<ClCompile Include="PiecewiseFunction.cpp" />
|
||||
@@ -423,6 +435,7 @@
|
||||
<ClCompile Include="Time.cpp" />
|
||||
<ClCompile Include="TooManyTriesError.cpp" />
|
||||
<ClCompile Include="TooSmallStepSizeError.cpp" />
|
||||
<ClCompile Include="Transitions.cpp" />
|
||||
<ClCompile Include="Translation.cpp" />
|
||||
<ClCompile Include="TranslationalJoint.cpp" />
|
||||
<ClCompile Include="TranslationConstraintIJ.cpp" />
|
||||
@@ -459,6 +472,7 @@
|
||||
<ClInclude Include="ArcSine.h" />
|
||||
<ClInclude Include="ArcTan.h" />
|
||||
<ClInclude Include="ArcTan2.h" />
|
||||
<ClInclude Include="Arguments.h" />
|
||||
<ClInclude Include="Array.h" />
|
||||
<ClInclude Include="ASMTAngleJoint.h" />
|
||||
<ClInclude Include="ASMTAnimationParameters.h" />
|
||||
@@ -542,6 +556,7 @@
|
||||
<ClInclude Include="Exponential.h" />
|
||||
<ClInclude Include="ExternalSystem.h" />
|
||||
<ClInclude Include="FunctionFromData.h" />
|
||||
<ClInclude Include="Functions.h" />
|
||||
<ClInclude Include="FunctionXcParameter.h" />
|
||||
<ClInclude Include="FunctionXY.h" />
|
||||
<ClInclude Include="GeneralSpline.h" />
|
||||
@@ -549,21 +564,31 @@
|
||||
<ClInclude Include="Ln.h" />
|
||||
<ClInclude Include="Log10.h" />
|
||||
<ClInclude Include="LogN.h" />
|
||||
<ClInclude Include="MBDynAxialRotationJoint.h" />
|
||||
<ClInclude Include="MBDynBlock.h" />
|
||||
<ClInclude Include="MBDynBody.h" />
|
||||
<ClInclude Include="MBDynClampJoint.h" />
|
||||
<ClInclude Include="MBDynControlData.h" />
|
||||
<ClInclude Include="MBDynData.h" />
|
||||
<ClInclude Include="MBDynDrive.h" />
|
||||
<ClInclude Include="MBDynDriveHingeJoint.h" />
|
||||
<ClInclude Include="MBDynElement.h" />
|
||||
<ClInclude Include="MBDynGravity.h" />
|
||||
<ClInclude Include="MBDynInitialValue.h" />
|
||||
<ClInclude Include="MBDynInLineJoint.h" />
|
||||
<ClInclude Include="MBDynInPlaneJoint.h" />
|
||||
<ClInclude Include="MBDynItem.h" />
|
||||
<ClInclude Include="MBDynJoint.h" />
|
||||
<ClInclude Include="MBDynMarker.h" />
|
||||
<ClInclude Include="MBDynNode.h" />
|
||||
<ClInclude Include="MBDynPrismaticJoint.h" />
|
||||
<ClInclude Include="MBDynReference.h" />
|
||||
<ClInclude Include="MBDynRevoluteHingeJoint.h" />
|
||||
<ClInclude Include="MBDynRevolutePinJoint.h" />
|
||||
<ClInclude Include="MBDynSphericalHingeJoint.h" />
|
||||
<ClInclude Include="MBDynStructural.h" />
|
||||
<ClInclude Include="MBDynSystem.h" />
|
||||
<ClInclude Include="MBDynTotalJoint.h" />
|
||||
<ClInclude Include="MomentOfInertiaSolver.h" />
|
||||
<ClInclude Include="Negative.h" />
|
||||
<ClInclude Include="PiecewiseFunction.h" />
|
||||
@@ -734,6 +759,7 @@
|
||||
<ClInclude Include="Time.h" />
|
||||
<ClInclude Include="TooManyTriesError.h" />
|
||||
<ClInclude Include="TooSmallStepSizeError.h" />
|
||||
<ClInclude Include="Transitions.h" />
|
||||
<ClInclude Include="Translation.h" />
|
||||
<ClInclude Include="TranslationalJoint.h" />
|
||||
<ClInclude Include="TranslationConstraintIJ.h" />
|
||||
@@ -772,6 +798,8 @@
|
||||
<None Include="..\testapp\Gears.asmt" />
|
||||
<None Include="..\testapp\gyro.asmt" />
|
||||
<None Include="..\testapp\InitialConditions.mbd" />
|
||||
<None Include="..\testapp\MBDynCase(Cosine-half drive).mbd" />
|
||||
<None Include="..\testapp\MBDynCase(Sine-forever drive).mbd" />
|
||||
<None Include="..\testapp\MBDynCase.mbd" />
|
||||
<None Include="..\testapp\MBDynCase2.mbd" />
|
||||
<None Include="..\testapp\MBDynCase2orig.mbd" />
|
||||
@@ -779,6 +807,7 @@
|
||||
<None Include="..\testapp\MBDynCase4orig.mbd" />
|
||||
<None Include="..\testapp\MBDynCase5orig.mbd" />
|
||||
<None Include="..\testapp\MBDynCase6orig.mbd" />
|
||||
<None Include="..\testapp\MBDynCaseBird.mbd" />
|
||||
<None Include="..\testapp\MBDynCaseDebug1.mbd" />
|
||||
<None Include="..\testapp\MBDynCaseDebug2.mbd" />
|
||||
<None Include="..\testapp\piston.asmt" />
|
||||
@@ -793,6 +822,8 @@
|
||||
<Media Include="..\testapp\CrankSlider2.mov" />
|
||||
<Media Include="..\testapp\InitialConditionsMBDyn.mov" />
|
||||
<Media Include="..\testapp\InitialConditionsOndselSolver.mov" />
|
||||
<Media Include="..\testapp\MBDynCase(Cosine-half drive).mov" />
|
||||
<Media Include="..\testapp\MBDynCase(Sine-forever drive).mov" />
|
||||
<Media Include="..\testapp\MBDynCase.mov" />
|
||||
<Media Include="..\testapp\MBDynCase2.mov" />
|
||||
<Media Include="..\testapp\SphericalHinge.mov" />
|
||||
|
||||
@@ -936,6 +936,45 @@
|
||||
<ClCompile Include="ASMTCompoundJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynAxialRotationJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynClampJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynDriveHingeJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynInLineJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynInPlaneJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynPrismaticJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynRevoluteHingeJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynRevolutePinJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynSphericalHingeJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MBDynTotalJoint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Functions.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Transitions.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Arguments.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="Array.h">
|
||||
@@ -1865,6 +1904,45 @@
|
||||
<ClInclude Include="ASMTCompoundJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynAxialRotationJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynClampJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynDriveHingeJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynInLineJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynInPlaneJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynPrismaticJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynRevoluteHingeJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynRevolutePinJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynSphericalHingeJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MBDynTotalJoint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Functions.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Transitions.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Arguments.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="OndselSolver.rc">
|
||||
@@ -1903,6 +1981,9 @@
|
||||
<None Include="..\testapp\MBDynCase3orig.mbd" />
|
||||
<None Include="..\testapp\MBDynCase5orig.mbd" />
|
||||
<None Include="..\testapp\MBDynCase6orig.mbd" />
|
||||
<None Include="..\testapp\MBDynCase(Cosine-half drive).mbd" />
|
||||
<None Include="..\testapp\MBDynCase(Sine-forever drive).mbd" />
|
||||
<None Include="..\testapp\MBDynCaseBird.mbd" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Media Include="..\testapp\CrankSlider2.mov" />
|
||||
@@ -1911,6 +1992,8 @@
|
||||
<Media Include="..\testapp\MBDynCase.mov" />
|
||||
<Media Include="..\testapp\MBDynCase2.mov" />
|
||||
<Media Include="..\testapp\SphericalHinge.mov" />
|
||||
<Media Include="..\testapp\MBDynCase(Cosine-half drive).mov" />
|
||||
<Media Include="..\testapp\MBDynCase(Sine-forever drive).mov" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Text Include="..\CMakeLists.txt" />
|
||||
|
||||
@@ -94,6 +94,14 @@ double MbD::PiecewiseFunction::getValue()
|
||||
return functions->back()->getValue();
|
||||
}
|
||||
|
||||
void MbD::PiecewiseFunction::arguments(Symsptr args)
|
||||
{
|
||||
auto arguments = args->getTerms();
|
||||
xx = arguments->at(0);
|
||||
functions = arguments->at(1)->getTerms();
|
||||
transitions = arguments->at(2)->getTerms();
|
||||
}
|
||||
|
||||
std::ostream& MbD::PiecewiseFunction::printOn(std::ostream& s) const
|
||||
{
|
||||
s << "PiecewiseFunction(" << *xx << ", " << std::endl;
|
||||
|
||||
@@ -26,6 +26,7 @@ namespace MbD {
|
||||
Symsptr differentiateWRTx() override;
|
||||
Symsptr integrateWRT(Symsptr var) override;
|
||||
double getValue() override;
|
||||
void arguments(Symsptr args) override;
|
||||
|
||||
std::ostream& printOn(std::ostream& s) const override;
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
|
||||
#include "RackPinConstraintIJ.h"
|
||||
#include "RackPinConstraintIqcJqc.h"
|
||||
#include "EndFrameqc.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
@@ -17,7 +18,12 @@ MbD::RackPinConstraintIJ::RackPinConstraintIJ(EndFrmsptr frmi, EndFrmsptr frmj)
|
||||
|
||||
std::shared_ptr<RackPinConstraintIJ> MbD::RackPinConstraintIJ::With(EndFrmsptr frmi, EndFrmsptr frmj)
|
||||
{
|
||||
return std::make_shared<RackPinConstraintIqcJqc>(frmi, frmj);
|
||||
assert(frmi->isEndFrameqc());
|
||||
assert(frmj->isEndFrameqc());
|
||||
auto rackPinCon = std::make_shared<RackPinConstraintIqcJqc>(frmi, frmj);
|
||||
rackPinCon->initxIeJeIe();
|
||||
rackPinCon->initthezIeJe();
|
||||
return rackPinCon;
|
||||
}
|
||||
|
||||
void MbD::RackPinConstraintIJ::calcPostDynCorrectorIteration()
|
||||
|
||||
@@ -20,17 +20,17 @@ MbD::RackPinJoint::RackPinJoint()
|
||||
MbD::RackPinJoint::RackPinJoint(const char* str) : Joint(str)
|
||||
{
|
||||
}
|
||||
|
||||
void MbD::RackPinJoint::initializeLocally()
|
||||
{
|
||||
if (!constraints->empty())
|
||||
{
|
||||
auto constraint = std::static_pointer_cast<RackPinConstraintIJ>(constraints->front());
|
||||
constraint->initxIeJeIe();
|
||||
constraint->initthezIeJe();
|
||||
}
|
||||
Joint::initializeLocally();
|
||||
}
|
||||
//
|
||||
//void MbD::RackPinJoint::initializeLocally()
|
||||
//{
|
||||
// if (!constraints->empty())
|
||||
// {
|
||||
// auto constraint = std::static_pointer_cast<RackPinConstraintIJ>(constraints->front());
|
||||
// constraint->initxIeJeIe();
|
||||
// constraint->initthezIeJe();
|
||||
// }
|
||||
// Joint::initializeLocally();
|
||||
//}
|
||||
|
||||
void MbD::RackPinJoint::initializeGlobally()
|
||||
{
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace MbD {
|
||||
public:
|
||||
RackPinJoint();
|
||||
RackPinJoint(const char* str);
|
||||
void initializeLocally() override;
|
||||
//void initializeLocally() override;
|
||||
void initializeGlobally() override;
|
||||
void connectsItoJ(EndFrmsptr frmI, EndFrmsptr frmJ) override;
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ void MbD::RevCylJoint::initializeGlobally()
|
||||
{
|
||||
if (constraints->empty())
|
||||
{
|
||||
auto distxyIJ = CREATE<DistancexyConstraintIJ>::With(frmI, frmJ);
|
||||
auto distxyIJ = DistancexyConstraintIJ::With(frmI, frmJ);
|
||||
distxyIJ->setConstant(distanceIJ);
|
||||
addConstraint(distxyIJ);
|
||||
addConstraint(CREATE<DirectionCosineConstraintIJ>::ConstraintWith(frmI, frmJ, 2, 0));
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
|
||||
#include "ScrewConstraintIJ.h"
|
||||
#include "ScrewConstraintIqcJqc.h"
|
||||
#include "EndFrameqc.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
@@ -19,7 +20,12 @@ MbD::ScrewConstraintIJ::ScrewConstraintIJ(EndFrmsptr frmi, EndFrmsptr frmj) : Co
|
||||
|
||||
std::shared_ptr<ScrewConstraintIJ> MbD::ScrewConstraintIJ::With(EndFrmsptr frmi, EndFrmsptr frmj)
|
||||
{
|
||||
return std::make_shared<ScrewConstraintIqcJqc>(frmi, frmj);
|
||||
assert(frmi->isEndFrameqc());
|
||||
assert(frmj->isEndFrameqc());
|
||||
auto screwCon = std::make_shared<ScrewConstraintIqcJqc>(frmi, frmj);
|
||||
screwCon->initzIeJeIe();
|
||||
screwCon->initthezIeJe();
|
||||
return screwCon;
|
||||
}
|
||||
|
||||
void MbD::ScrewConstraintIJ::calcPostDynCorrectorIteration()
|
||||
|
||||
@@ -20,17 +20,17 @@ MbD::ScrewJoint::ScrewJoint()
|
||||
MbD::ScrewJoint::ScrewJoint(const char* str) : Joint(str)
|
||||
{
|
||||
}
|
||||
|
||||
void MbD::ScrewJoint::initializeLocally()
|
||||
{
|
||||
if (!constraints->empty())
|
||||
{
|
||||
auto constraint = std::static_pointer_cast<ScrewConstraintIJ>(constraints->front());
|
||||
constraint->initzIeJeIe();
|
||||
constraint->initthezIeJe();
|
||||
}
|
||||
Joint::initializeLocally();
|
||||
}
|
||||
//
|
||||
//void MbD::ScrewJoint::initializeLocally()
|
||||
//{
|
||||
// if (!constraints->empty())
|
||||
// {
|
||||
// auto constraint = std::static_pointer_cast<ScrewConstraintIJ>(constraints->front());
|
||||
// constraint->initzIeJeIe();
|
||||
// constraint->initthezIeJe();
|
||||
// }
|
||||
// Joint::initializeLocally();
|
||||
//}
|
||||
|
||||
void MbD::ScrewJoint::initializeGlobally()
|
||||
{
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace MbD {
|
||||
public:
|
||||
ScrewJoint();
|
||||
ScrewJoint(const char* str);
|
||||
void initializeLocally() override;
|
||||
//void initializeLocally() override;
|
||||
void initializeGlobally() override;
|
||||
void connectsItoJ(EndFrmsptr frmI, EndFrmsptr frmJ) override;
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ void MbD::SphSphJoint::initializeGlobally()
|
||||
{
|
||||
if (constraints->empty())
|
||||
{
|
||||
auto distxyIJ = CREATE<DistanceConstraintIJ>::With(frmI, frmJ);
|
||||
auto distxyIJ = DistanceConstraintIJ::With(frmI, frmJ);
|
||||
distxyIJ->setConstant(distanceIJ);
|
||||
addConstraint(distxyIJ);
|
||||
this->root()->hasChanged = true;
|
||||
|
||||
@@ -27,6 +27,9 @@
|
||||
#include "ArcSine.h"
|
||||
#include "Integral.h"
|
||||
#include "RampStepFunction.h"
|
||||
#include "Arguments.h"
|
||||
#include "Functions.h"
|
||||
#include "Transitions.h"
|
||||
|
||||
MbD::SymbolicParser::SymbolicParser()
|
||||
{
|
||||
@@ -283,6 +286,11 @@ bool MbD::SymbolicParser::symfunction()
|
||||
|
||||
bool MbD::SymbolicParser::expression()
|
||||
{
|
||||
if (token == "" && tokenType == "end") {
|
||||
auto symNum = std::make_shared<Constant>(0.0);
|
||||
stack->push(symNum);
|
||||
return true;
|
||||
}
|
||||
auto sum = std::make_shared<Sum>();
|
||||
stack->push(sum);
|
||||
if (plusTerm() || minusTerm() || plainTerm()) {
|
||||
@@ -369,6 +377,15 @@ bool MbD::SymbolicParser::intrinsic()
|
||||
else if (peekForTypevalue("word", "rampstep")) {
|
||||
symfunc = std::make_shared<RampStepFunction>();
|
||||
}
|
||||
else if (peekForTypevalue("word", "piecewise")) {
|
||||
symfunc = std::make_shared<PiecewiseFunction>();
|
||||
}
|
||||
else if (peekForTypevalue("word", "functions")) {
|
||||
symfunc = std::make_shared<Functions>();
|
||||
}
|
||||
else if (peekForTypevalue("word", "transitions")) {
|
||||
symfunc = std::make_shared<Transitions>();
|
||||
}
|
||||
if (symfunc != nullptr) {
|
||||
stack->push(symfunc);
|
||||
if (peekForTypeNoPush("(")) {
|
||||
@@ -493,7 +510,7 @@ void MbD::SymbolicParser::combineStackTo(int pos)
|
||||
args->push_back(arg);
|
||||
}
|
||||
std::reverse(args->begin(), args->end());
|
||||
auto sum = std::make_shared<Sum>();
|
||||
auto sum = std::make_shared<Arguments>();
|
||||
sum->terms = args;
|
||||
stack->push(sum);
|
||||
}
|
||||
|
||||
2
OndselSolver/Transitions.cpp
Normal file
2
OndselSolver/Transitions.cpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "Transitions.h"
|
||||
|
||||
21
OndselSolver/Transitions.h
Normal file
21
OndselSolver/Transitions.h
Normal file
@@ -0,0 +1,21 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "Arguments.h"
|
||||
|
||||
namespace MbD {
|
||||
class Transitions : public Arguments
|
||||
{
|
||||
public:
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
202
testapp/CylSphJt.asmt
Normal file
202
testapp/CylSphJt.asmt
Normal file
@@ -0,0 +1,202 @@
|
||||
OndselSolver
|
||||
Assembly
|
||||
Notes
|
||||
(Text string: '' runs: (Core.RunArray runs: #() values: #()))
|
||||
Name
|
||||
OndselAssembly
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
marker-part32#Body001
|
||||
Position3D
|
||||
-50.97707939147949 -6.651639938354492 5.976193904876709
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Parts
|
||||
Part
|
||||
Name
|
||||
part32#Body001
|
||||
Position3D
|
||||
-50.97707939147949 -6.651639938354492 5.976193904876709
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
1
|
||||
MomentOfInertias
|
||||
1 1 1
|
||||
Density
|
||||
1
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
FixingMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
part32#Distance
|
||||
Position3D
|
||||
24.73092618997876 13.40888489553289 5
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Part
|
||||
Name
|
||||
part32#Body002
|
||||
Position3D
|
||||
58.55961227416992 25.54718399047852 23.1300048828125
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
1
|
||||
MomentOfInertias
|
||||
1 1 1
|
||||
Density
|
||||
1
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
part32#Distance
|
||||
Position3D
|
||||
-22.68139865429635 -16.64244751954205 5
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
KinematicIJs
|
||||
ConstraintSets
|
||||
Joints
|
||||
FixedJoint
|
||||
Name
|
||||
part32#GroundedJoint
|
||||
MarkerI
|
||||
/OndselAssembly/marker-part32#Body001
|
||||
MarkerJ
|
||||
/OndselAssembly/part32#Body001/FixingMarker
|
||||
CylSphJoint
|
||||
Name
|
||||
part32#CylSphJoint
|
||||
MarkerI
|
||||
/OndselAssembly/part32#Body001/part32#Distance
|
||||
MarkerJ
|
||||
/OndselAssembly/part32#Body002/part32#Distance
|
||||
distanceIJ
|
||||
2
|
||||
Motions
|
||||
GeneralConstraintSets
|
||||
ForceTorques
|
||||
ConstantGravity
|
||||
0 0 0
|
||||
SimulationParameters
|
||||
tstart
|
||||
0
|
||||
tend
|
||||
1
|
||||
hmin
|
||||
1e-09
|
||||
hmax
|
||||
1000000000
|
||||
hout
|
||||
0.1
|
||||
errorTol
|
||||
1e-06
|
||||
AnimationParameters
|
||||
nframe
|
||||
1000000
|
||||
icurrent
|
||||
1
|
||||
istart
|
||||
1
|
||||
iend
|
||||
1000000
|
||||
isForward
|
||||
true
|
||||
framesPerSecond
|
||||
30
|
||||
174
testapp/MBDynCase(Cosine-half drive).mbd
Normal file
174
testapp/MBDynCase(Cosine-half drive).mbd
Normal file
@@ -0,0 +1,174 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Data Block]
|
||||
|
||||
begin: data;
|
||||
problem: initial value;
|
||||
end: data;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Problem Block]
|
||||
|
||||
begin: initial value;
|
||||
initial time: 0.0;
|
||||
final time: 4.0;
|
||||
time step: 0.01;
|
||||
max iterations: 100;
|
||||
tolerance: 1e-06;
|
||||
derivatives tolerance: 0.0001;
|
||||
derivatives max iterations: 100;
|
||||
derivatives coefficient: auto;
|
||||
end: initial value;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Control Data Block]
|
||||
|
||||
begin: control data;
|
||||
max iterations: 1000;
|
||||
default orientation: orientation matrix;
|
||||
omega rotates: no;
|
||||
print: none;
|
||||
initial stiffness: 1.0, 1.0;
|
||||
structural nodes: 2;
|
||||
rigid bodies: 1;
|
||||
joints: 2;
|
||||
end: control data;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Design Variables]
|
||||
|
||||
#Generic bodies
|
||||
|
||||
#body: 2
|
||||
set: integer body_2 = 2; #body label
|
||||
set: real mass_2 = 12.635833504434357; #mass [kg]
|
||||
set: real volume_2 = 0.0015994725954980198; #volume [m^3]
|
||||
|
||||
#Nodes
|
||||
|
||||
#node: 1
|
||||
set: integer structural_node_1 = 1; #node label
|
||||
|
||||
#node: 2
|
||||
set: integer structural_node_2 = 2; #node label
|
||||
|
||||
#Joints
|
||||
|
||||
#joint: 1
|
||||
set: integer joint_1 = 1; #joint label
|
||||
|
||||
#joint: 2_3
|
||||
set: integer joint_2 = 2; #joint label
|
||||
|
||||
set: integer joint_3 = 3; #joint label
|
||||
|
||||
#Nodes: initial conditions
|
||||
|
||||
#node: 1
|
||||
set: real Px_1 = -0.13221311939246777; #X component of the absolute position [m]
|
||||
set: real Py_1 = 0.04215394533365132; #Y component of the absolute position [m]
|
||||
set: real Pz_1 = 0.2000000152587891; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_1 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_1 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_1 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_1 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_1 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_1 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 2
|
||||
set: real Px_2 = 0.42576986140770334; #X component of the absolute position [m]
|
||||
set: real Py_2 = 0.17328227933817877; #Y component of the absolute position [m]
|
||||
set: real Pz_2 = 0.302175885912376; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_2 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_2 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_2 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_2 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_2 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_2 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Intermediate Variables]
|
||||
|
||||
#Moments of inertia and relative center of mass
|
||||
|
||||
#body 2:
|
||||
set: real Ixx_2 = 0.08708924866282601; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_2 = 0.085370944710882; #moment of inertia [kg*m^2]
|
||||
set: real Izz_2 = 0.064597123189377; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_2 = -0.003947705364974695; #X component of the relative center of mass [m]
|
||||
set: real Ry_2 = 0.010426613861126484; #Y component of the relative center of mass [m]
|
||||
set: real Rz_2 = -1.1368683772161603e-16; #Z component of the relative center of mass [m]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Nodes Block]
|
||||
|
||||
begin: nodes;
|
||||
|
||||
structural: structural_node_1,
|
||||
static,
|
||||
Px_1, Py_1, Pz_1, #<absolute_position> [m]
|
||||
3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<absolute_orientation_matrix>
|
||||
Vx_1, Vy_1, Vz_1, #<absolute_velocity> [m/s]
|
||||
Wx_1, Wy_1, Wz_1; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_2,
|
||||
dynamic,
|
||||
Px_2, Py_2, Pz_2, #<absolute_position> [m]
|
||||
3, -0.1066546951805642, 0.2196963614042295, 0.969720725148062, 2, 0.4234982246408653, -0.8723574602808866, 0.24421653346634187, #<absolute_orientation_matrix>
|
||||
Vx_2, Vy_2, Vz_2, #<absolute_velocity> [m/s]
|
||||
Wx_2, Wy_2, Wz_2; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
end: nodes;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Elements Block]
|
||||
|
||||
begin: elements;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Bodies]
|
||||
|
||||
body: body_2,
|
||||
structural_node_2, #<node_label>
|
||||
mass_2, #<mass> [kg]
|
||||
Rx_2, Ry_2, Rz_2, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_2, Iyy_2, Izz_2, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, 0.0028768192094494223, -0.0016134085099385742, 1.0006943193724125, 2, 0.3504771628806489, -0.9326094659776577, -0.002311334679062277;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Joints]
|
||||
|
||||
joint: joint_1,
|
||||
clamp,
|
||||
structural_node_1, #<node_label>
|
||||
-0.13221311939246777, 0.04215394533365132, 0.2000000152587891, #<absolute_pin_position> [m]
|
||||
3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<absolute_orientation_matrix>
|
||||
|
||||
joint: joint_2,
|
||||
total joint,
|
||||
structural_node_1, #<node_1_label>
|
||||
position, 0.20321309650428418, 0.11784606885225504, -2.842170943040401e-17, #<relative_position_1> [m]
|
||||
position orientation, 3, 0.0, 2.471452993948174e-16, 1.0, 2, -0.0, 1.0, -2.471452993948174e-16, #<relative_pin_orientation_matrix_1>
|
||||
rotation orientation, 3, 0.0, 2.471452993948174e-16, 1.0, 2, -0.0, 1.0, -2.471452993948174e-16, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_2, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
position orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<relative_pin_orientation_matrix_2>
|
||||
rotation orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<relative_pin_orientation_matrix_2>
|
||||
position constraint,
|
||||
active, active, active,
|
||||
null,
|
||||
orientation constraint,
|
||||
active, active, rotation,
|
||||
single, 0., 0., 1., string, "model::drive(1, Time)"; #<angle> [rad]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Drive callers]
|
||||
|
||||
drive caller: 1, name,"drive:1", cosine, 0.25, 3.1416, 10.0, half, 0.0;
|
||||
|
||||
end: elements;
|
||||
|
||||
802
testapp/MBDynCase(Cosine-half drive).mov
Normal file
802
testapp/MBDynCase(Cosine-half drive).mov
Normal file
@@ -0,0 +1,802 @@
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 3.262652233999262e-55 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.395570986446986e-32 4.314083075427408e-32 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 -7.395570986446986e-32 4.314083075427408e-32 2.67269315645965e-33 0 6.770244760849274e-31 5.478756648358285e-15
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.975849454252095e-17 -1.701778440985532e-17 -0 0 0 1.110223024614872e-16
|
||||
2 0.07099997711177841 0.1600000141860024 0.2000000152587891 -0.9999878257772035 0.004934399394178056 3.71170280155356e-24 -0.004934399394178056 -0.9999878257772035 2.471460516067488e-16 1.219521038979454e-18 2.471430427773382e-16 1 -1.898984441917051e-13 -7.4047538933808e-14 4.876598382710061e-19 1.831359199083478e-24 1.219421972420652e-16 0.986802714017021
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.470122534625751e-18 -2.081262900484592e-17 -0 0 0 2.220446049250313e-16
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9998053144621276 0.01973152739364272 2.741069008141445e-27 -0.01973152739364272 -0.9998053144621276 2.471452994874573e-16 4.876554249787333e-18 2.470971838718398e-16 1 -2.42861286636753e-17 2.081668171172169e-17 1.012268540338619e-18 2.70355921135857e-27 2.437633098655455e-16 1.972631568320939
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.862013140620493e-17 2.599523056498413e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.999015344519447 0.04436599389950333 3.514535416056586e-26 -0.04436599389950333 -0.999015344519447 2.471453001083294e-16 1.096484691200781e-17 2.469019471325255e-16 1 -5.204170427930421e-17 2.775557561562891e-17 1.609854753091377e-18 5.195385998714283e-26 3.653442284227069e-16 2.956513664330806
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.230530190599378e-16 -6.295116921912869e-17 -0 0 0 4.440892098500627e-16
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.9968926847598092 0.07877166414631473 1.88175612184799e-25 -0.07877166414631473 -0.9968926847598092 2.47145302128341e-16 1.946804692218406e-17 2.463773437496732e-16 1 -2.775557561562891e-16 -2.42861286636753e-17 2.314471179203682e-18 3.704686670289496e-25 4.86564598013346e-16 3.937478024653499
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -9.432362881040377e-17 1.032955647984571e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9924306498887605 0.1228063726415387 6.571887172419668e-25 -0.1228063726415387 -0.9924306498887605 2.471453068371399e-16 3.035101930026346e-17 2.452745774006329e-16 1 -2.775557561562891e-16 -1.387778780781446e-17 3.156939422919464e-18 1.614895567886714e-24 6.07304793428576e-16 4.914556551371366
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.744022455056773e-17 1.174288394456255e-16 -0 0 0 -8.881784197001211e-16
|
||||
2 0.07099997711181638 0.1600000141859064 0.2000000152587891 -0.984353751309314 0.1762035535489596 1.779067275172436e-24 -0.1762035535489596 -0.984353751309314 2.471453159262777e-16 4.354788466042194e-17 2.43278418537079e-16 1 -5.065392549852277e-16 -4.093947403305265e-16 4.163277081233002e-18 5.236493263151438e-24 7.274456670132025e-16 5.886784981433323
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.059353555869008e-16 1.15482466004783e-16 -0 0 0 0
|
||||
2 0.07099997711181627 0.1600000141859065 0.2000000152587891 -0.9711395117553677 0.2385121563097905 4.06482031652468e-24 -0.2385121563097905 -0.9711395117553677 2.471453314652701e-16 5.894716987718711e-17 2.400125955622919e-16 1 -2.040034807748725e-15 -1.582067810090848e-15 5.352757871988666e-18 1.39285211185725e-23 8.468686671042183e-16 6.853203838270551
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.972420536640516e-17 1.058971825268748e-16 -0 0 0 -8.881784197000779e-16
|
||||
2 0.07099997711181592 0.1600000141859067 0.2000000152587891 -0.9510532453159203 0.3090270612325982 8.226545662501091e-24 -0.3090270612325982 -0.9510532453159203 2.47145355871743e-16 7.637461084621234e-17 2.35048390224354e-16 1 -6.022959908591474e-15 -6.765421556309548e-15 6.735584697717371e-18 3.213642223666799e-23 9.654559557609268e-16 7.812859378688499
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.488044910112502e-17 2.348576788912182e-16 -0 0 0 -1.776356839399995e-15
|
||||
2 0.07099997711181499 0.1600000141859071 0.2000000152587891 -0.922199972781823 0.3867133437072026 1.519776108453398e-23 -0.3867133437072026 -0.922199972781823 2.471453918757439e-16 9.557443488947071e-17 2.27917467783787e-16 1 -1.657007864253046e-14 -2.216282712907969e-14 8.310212416039751e-18 6.660270260772117e-23 1.08309052564732e-15 8.764804534100799
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.154731459358865e-16 1.330228954320114e-16 -0 0 0 0
|
||||
2 0.0709999771118128 0.1600000141859077 0.2000000152587891 -0.8825976307293683 0.4701291548403542 2.614626238266773e-23 -0.4701291548403542 -0.8825976307293683 2.47145442478341e-16 1.16190301071617e-16 2.181299696848249e-16 1 -3.815003868368194e-14 -6.310230116213233e-14 1.006042744384599e-17 1.269152628461141e-22 1.199656315929986e-15 9.708099845176147
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.025458841849113e-16 3.882296325633542e-16 -0 0 0 -1.776356839398897e-15
|
||||
2 0.07099997711180811 0.1600000141859082 0.2000000152587891 -0.8302752078816322 0.5573536392427274 4.247883780013124e-23 -0.5573536392427274 -0.8302752078816322 2.471455109046875e-16 1.377474851943566e-16 2.051987667676668e-16 1 -7.205347429817266e-14 -1.62009294868426e-13 1.195237570479896e-17 2.260259536507254e-22 1.31503832705815e-15 10.64181438897589
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.429668924514611e-16 2.256950795495184e-16 -0 0 0 -1.776356839397487e-15
|
||||
2 0.0709999771117991 0.1600000141859077 0.2000000152587891 -0.7633982643106644 0.6459280842690346 6.583736018512841e-23 -0.6459280842690346 -0.7633982643106644 2.471456005518076e-16 1.596383345600756e-16 1.886704799670668e-16 1 -1.121880366383721e-13 -3.756717159575373e-13 1.393182524313394e-17 3.807054142427825e-22 1.429122734296337e-15 11.5650266976673
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.787510314495843e-16 -3.989694218779395e-18 -0 0 0 0
|
||||
2 0.07099997711178323 0.1600000141859038 0.2000000152587891 -0.6804223317234506 0.7328202033869035 9.808598477056125e-23 -0.7328202033869035 -0.6804223317234506 2.471457149314342e-16 1.811134398221498e-16 1.681633917497144e-16 1 -1.248653958008106e-13 -7.985279104616438e-13 1.592204795808851e-17 6.11900866244489e-22 1.541796999884745e-15 12.47682566790597
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.535112483477297e-16 -2.521700260595871e-16 -0 0 0 1.776356839390608e-15
|
||||
2 0.07099997711175761 0.160000014185892 0.2000000152587891 -0.580271871713935 0.8144228354470462 1.412894014313024e-22 -0.8144228354470462 -0.580271871713935 2.471458576083371e-16 2.012813121086392e-16 1.434116743114205e-16 1 -1.491862189340054e-14 -1.569272489732043e-12 1.782279505713995e-17 9.449655198043776e-22 1.652949983707703e-15 13.3763114599898
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.525061520875524e-16 -1.236595983329086e-16 -0 0 0 1.776356839383499e-15
|
||||
2 0.07099997711171992 0.1600000141858647 0.2000000152587891 -0.4625387756194481 0.8865990531511196 1.976823145308297e-22 -0.8865990531511196 -0.4625387756194481 2.471460321346829e-16 2.191195295164018e-16 1.143144478378281e-16 1 4.174403878121069e-13 -2.864902759469601e-12 1.951090725881461e-17 1.40973153243351e-21 1.762472052356508e-15 14.26259638589742
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.821648048614943e-16 -5.187731704521042e-16 -0 0 0 3.552713678744594e-15
|
||||
2 0.07099997711167018 0.1600000141858094 0.2000000152587891 -0.3276899332773042 0.94478532356759 2.696305584386453e-22 -0.94478532356759 -0.3276899332773042 2.47146241981088e-16 2.335002305538358e-16 8.09870808015248e-17 1 1.540764911489578e-12 -4.867162228805455e-12 2.084312385500477e-17 2.040403067717808e-21 1.870255186479518e-15 15.13480578533444
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.974155914467855e-16 -5.46319954241088e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1772684430110963 0.9841625369380922 1.732930193544258e-27 -0.9841625369380922 -0.1772684430110963 2.47145299397949e-16 2.432311448481171e-16 4.381106242008018e-17 1 -2.081668171172169e-16 -2.775557561562891e-17 2.166151387406255e-17 1.385673623065968e-26 1.976183562449183e-15 15.99207888851786
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.040937096368887e-16 -7.63202795664609e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.0140680322072055 0.9999010403384012 2.817145552060674e-27 -0.9999010403384012 -0.0140680322072055 2.471452993997034e-16 2.471208419845487e-16 3.476848028997607e-18 1 -3.191891195797325e-16 -2.775557561562891e-17 2.180249575878745e-17 2.371118665868056e-26 2.080168807660466e-15 16.83356966701801
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.497608982022716e-16 -4.69715357782504e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.1577441435213073 0.9874800176128776 4.433792717794697e-27 -0.9874800176128776 0.1577441435213073 2.47145299402226e-16 2.440510446059507e-16 -3.898572358389949e-17 1 5.551115123125783e-17 5.551115123125783e-17 2.110821837568684e-17 3.914702520636641e-26 2.182101167808403e-15 17.65844766690917
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.3325841251484387 0.9430735918788351 6.776709606301102e-27 -0.9430735918788351 0.3325841251484387 2.471452994057637e-16 2.330762052243099e-16 -8.219660319380578e-17 1 -4.163336342344337e-16 8.326672684688674e-17 1.944189194387022e-17 6.256929155850977e-26 2.281880047492725e-15 18.46589882938724
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.5035155867841474 0.8639861421720928 1.008448966355431e-26 -0.8639861421720928 0.5035155867841474 2.471452994106119e-16 2.135301137886637e-16 -1.244415104623909e-16 1 7.494005416219807e-16 -5.551115123125783e-17 1.670514706026862e-17 9.708885869484972e-26 2.379406976549154e-15 19.25512629391313
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.296802241027379e-16 -1.455434981361697e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6624477019508301 0.7491081645397173 1.464309496769695e-26 -0.7491081645397173 0.6624477019508301 2.471452994171163e-16 1.851385616112746e-16 -1.637208356577878e-16 1 1.665334536937735e-16 -1.249000902703301e-16 1.285674276652265e-17 1.466167017682457e-25 2.4745857072281e-15 20.02535118462156
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.334180562288116e-17 -1.333075479926816e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8004850979540205 0.5993526574176028 2.078625065949242e-26 -0.5993526574176028 0.8004850979540205 2.471452994256708e-16 1.481271919624059e-16 -1.978361292320921e-16 1 8.326672684688674e-17 -9.71445146547012e-17 7.930816520525946e-18 2.159257250781244e-25 2.567322309180067e-15 20.77581337898107
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9084369041756198 0.4180219983826398 2.889320161912574e-26 -0.4180219983826398 0.9084369041756198 2.471452994367131e-16 1.033121719351631e-16 -2.245159107139222e-16 1 -3.05311331771918e-16 8.326672684688674e-17 2.05244056617261e-18 3.106853733426959e-25 2.657525262154006e-15 21.50577225794677
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.958970121907085e-16 2.000866836248178e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.9774755946462674 0.2110484822758169 3.938267891287373e-26 -0.2110484822758169 0.9774755946462674 2.471452994507172e-16 5.215964031218053e-17 -2.415784985529313e-16 1 8.326672684688674e-17 1.804112415015879e-16 -4.552111406191648e-18 4.374334299215926e-25 2.745105546317122e-15 22.21450743686523
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.584109431565075e-16 3.443137358860981e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9999161471904401 -0.0129498489499351 5.270379303336293e-26 0.0129498489499351 0.9999161471904401 2.471452994681811e-16 -3.200494349498796e-18 -2.471245756397687e-16 1 9.71445146547012e-16 -3.747002708109903e-16 -1.155308968908885e-17 6.034931987467723e-25 2.829976730106997e-15 22.90131947641063
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.233105396402361e-16 -1.183712023460529e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859063 0.2000000152587891 0.9700636469946261 -0.2428508200099096 6.932304407987378e-26 0.2428508200099096 0.9700636469946261 2.47145299489612e-16 -6.001943870989472e-17 -2.397466705436369e-16 1 7.494005416219807e-16 2.220446049250313e-16 -1.852543774721356e-17 8.168171003221064e-25 2.912055055529311e-15 23.56553057285001
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.628817841880763e-16 -2.22926341259735e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.8850554071606924 -0.4654856885615506 8.970716672995397e-26 0.4654856885615506 0.8850554071606924 2.471452995155062e-16 -1.150425999991219e-16 -2.187372836487903e-16 1 3.05311331771918e-16 -5.551115123125783e-16 -2.496917246363072e-17 1.085747523609582e-24 2.991259520816974e-15 24.20648522695694
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -6.180751995218401e-16 -1.034735189149388e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.7456052819648519 -0.6663878476578889 1.143028390267103e-25 0.6663878476578889 0.7456052819648519 2.471452995463273e-16 -1.646946243086661e-16 -1.842728406783571e-16 1 -6.38378239159465e-16 0 -3.034259745261569e-17 1.418701257015309e-24 3.067511960369111e-15 24.82355089091312
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.670379989301271e-16 -7.033233597150827e-16 -0 0 0 3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.556546868140547 -0.8308162152744424 1.435130517961701e-25 0.8308162152744424 0.556546868140547 2.471452995824805e-16 -2.053323225018564e-16 -1.375479423390538e-16 1 -3.05311331771918e-16 -5.551115123125783e-17 -3.410740929423871e-17 1.823772851591567e-24 3.140737121891001e-15 25.41611859255963
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.174840073674315e-16 2.491754904404228e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.3270724069243401 -0.9449992807556622 1.776718383278879e-25 0.9449992807556622 0.3270724069243401 2.471452996242854e-16 -2.335521304452039e-16 -8.083440784025247e-17 1 -1.058181320345852e-16 2.220446049250313e-16 -3.578290784927634e-17 2.308277217297245e-24 3.210862740658852e-15 25.98360353638172
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.399741821106656e-16 1.24588619238774e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.07057835415485877 -0.9975062385392842 2.17017483919047e-25 0.9975062385392842 0.07057835415485877 2.471452996719488e-16 -2.465289782637466e-16 -1.744310827147921e-17 1 6.938893903907228e-16 1.110223024625157e-16 -3.500460564245642e-17 2.878242829170041e-24 3.277819610836161e-15 26.52544568063413
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.660847622102474e-16 -1.496965175712768e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1959417547665887 -0.9806155356402375 2.616665181164904e-25 0.9806155356402375 -0.1959417547665887 2.471452997255377e-16 -2.423545204200538e-16 4.842608396713063e-17 1 4.996003610813204e-16 -5.551115123125783e-17 -3.158084071105792e-17 3.537876287987047e-24 3.341541653771282e-15 27.0411102900372
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.452972022573242 -0.8915247314381729 3.115891490950947e-25 0.8915247314381729 -0.452972022573242 2.471452997849547e-16 -2.203361468758473e-16 1.119499065908506e-16 1 5.551115123125783e-16 -1.387778780781446e-16 -2.553986508703536e-17 4.289038319408452e-24 3.40196598320883e-15 27.5300884634985
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.514143462234102e-16 -6.436117687435291e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.679975288549441 -0.7332350284609324 3.665889504894595e-25 0.7332350284609324 -0.679975288549441 2.471452998499179e-16 -1.812155907201688e-16 1.680526968478819e-16 1 -6.106226635438361e-16 8.326672684688674e-17 -1.715962747861847e-17 5.130760202242645e-24 3.459032967350631e-15 27.99189763633922
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.123309468136408e-16 -1.487035589498405e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8572176546242157 -0.514954262629759 4.262863446187056e-25 0.514954262629759 -0.8572176546242157 2.471452999199459e-16 -1.272685253172662e-16 2.118573145682924e-16 1 6.106226635438361e-16 -1.595945597898663e-16 -6.973337395498386e-18 6.058825474951219e-24 3.512686287704965e-15 28.42608205652932
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.147215889053503e-16 1.343028779684145e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9677542258773392 -0.2518963244998863 4.901098387348553e-25 0.2518963244998863 -0.9677542258773392 2.471452999943503e-16 -6.225499221169273e-17 2.391759085987121e-16 1 1.665334536937735e-16 1.457167719820518e-16 4.254009298169751e-18 7.065475690531327e-24 3.562872994666092e-15 28.83221323446199
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.222019402408045e-15 -5.547598827714357e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9993665605318152 0.03558760585948308 5.572941876856657e-25 -0.03558760585948308 -0.9993665605318152 2.471453000722358e-16 8.795310085935581e-18 2.46988748464961e-16 1 1.221245327087672e-15 -5.551115123125783e-17 1.55797392428342e-17 8.139251041960919e-24 3.609543559769227e-15 29.20989036582307
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.402607676073185e-16 3.625734114857691e-17 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.9462163969563886 0.3235344342274404 6.26887713218789e-25 -0.3235344342274404 -0.9462163969563886 2.471453001525103e-16 7.996001544998478e-17 2.338529352321937e-16 1 -6.106226635438361e-16 1.137978600240785e-15 2.596579734962446e-17 9.265005671030687e-24 3.652651924569425e-15 29.5587407271384
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.461569787819644e-17 -2.373186520088907e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.8099832953050604 0.5864529489453995 6.977682398965052e-25 -0.5864529489453995 -0.8099832953050604 2.471453002339034e-16 1.449390907053494e-16 2.001835642934074e-16 1 5.551115123125783e-17 -6.661338147750939e-16 3.438243743719872e-17 1.042410621477315e-23 3.692155546096158e-15 29.87842004360856
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.025056351491001e-17 -2.663810341137671e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.6002900895321716 0.7997823506488858 7.686687407788607e-25 -0.7997823506488858 -0.6002900895321716 2.471453003149956e-16 1.976624496991762e-16 1.483588738387764e-16 1 4.579669976578771e-16 5.551115123125783e-16 3.992253504699678e-17 1.15948347654738e-23 3.728015438838731e-15 30.16861282886822
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.497608982022716e-16 4.697153577825039e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.3342888974191203 0.9424706536875878 8.382107615526671e-25 -0.9424706536875878 -0.3342888974191203 2.471453003942544e-16 2.329271930985927e-16 8.261792918112353e-17 1 3.05311331771918e-16 0 4.191284530187538e-17 1.275297112397485e-23 3.76019621322108e-15 30.42903269633441
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.210088403335967e-16 7.380268909438337e-17 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.03537583647183611 0.9993740792085404 9.049461261592622e-25 -0.9993740792085404 -0.03537583647183611 2.471453004700805e-16 2.46990607120018e-16 8.742970829832669e-18 1 -2.081668171172169e-16 4.996003610813204e-16 4.000733283636476e-17 1.387256275257068e-23 3.788666110527995e-15 30.65942264183697
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.262450510157887e-16 3.480621958510084e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.2688866958713644 0.9631718147783294 9.674039171591998e-25 -0.9631718147783294 0.2688866958713644 2.471453005408576e-16 2.380433873757514e-16 -6.645408419434271e-17 1 1.665334536937735e-16 -7.771561172376096e-16 3.424863401894951e-17 1.492682723188334e-23 3.813397034248244e-15 30.8595552972517
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5494504509159138 0.8355263023916716 1.024141739365138e-24 -0.8355263023916716 0.5494504509159138 2.471453006050069e-16 2.064963986052644e-16 -1.357940977148675e-16 1 -1.221245327087672e-15 3.885780586188048e-16 2.508687317934145e-17 1.588916614434106e-23 3.834364577803623e-15 31.02923315488641
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -6.236029431675637e-16 -1.515453501543168e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859063 0.2000000152587891 0.7787805939477901 0.627296410391712 1.073798031180617e-24 -0.627296410391712 0.7787805939477901 2.471453006610434e-16 1.550333591135999e-16 -1.924719647138022e-16 1 2.775557561562891e-16 3.608224830031759e-16 1.335016294685498e-17 1.673422352829775e-23 3.85154804863653e-15 31.16828876239794
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.950729398389592e-16 -2.851083757174427e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9338283451936598 0.357721430323752 1.115143821271012e-24 -0.357721430323752 0.9338283451936598 2.471453007076304e-16 8.840916942557443e-17 -2.307912875811067e-16 1 7.771561172376096e-16 -2.734357879008442e-16 1.675215673688461e-19 1.743894512101357e-23 3.864930488632217e-15 31.27658488804834
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.998614416094754 0.05262364456908597 1.147130580218933e-24 -0.05262364456908597 0.998614416094754 2.471453007436295e-16 1.300568531771148e-17 -2.468028602530281e-16 1 1.720845688168993e-15 4.302114220422482e-16 -1.314830160483117e-17 1.798357450508888e-23 3.874498690855515e-15 31.35401465613653
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.627124196065238e-16 3.217738029386389e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9660935860080276 -0.2581921437111315 1.168932024759595e-24 0.2581921437111315 0.9660935860080276 2.471453007681451e-16 -6.381097614275748e-17 -2.387654895823208e-16 1 -4.440892098500626e-16 3.05311331771918e-16 -2.524456224239627e-17 1.835252592142615e-23 3.880243212585448e-15 31.40050165247226
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.318307669985073e-16 -4.075462757889764e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.839051545499185 -0.5440519313405927 1.179977612013669e-24 0.5440519313405927 0.839051545499185 2.471453007805599e-16 -1.344598792014773e-16 -2.073676459408206e-16 1 -4.163336342344337e-16 -4.440892098500626e-16 -3.488099015644305e-17 1.853508884527783e-23 3.882158384634843e-15 31.41599999978806
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.000621746568717e-15 6.898243961170821e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6299037261109139 -0.7766732233259923 1.179976354766601e-24 0.7766732233259923 0.6299037261109139 2.471453007805583e-16 -1.919511381303796e-16 -1.556777449360202e-16 1 -5.551115123125783e-16 0 -4.107137985396393e-17 1.852592050662212e-23 3.880242316945656e-15 31.40049440301473
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.138309971581802e-16 3.237623390501989e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.3594057044020022 -0.9331814076819687 1.1689281235959e-24 0.9331814076819687 0.3594057044020022 2.471453007681408e-16 -2.306314000929165e-16 -8.882542982139633e-17 1 -7.541710311809169e-16 3.33066907387547e-16 -4.319579742763252e-17 1.832528655436887e-23 3.874496900454501e-15 31.35400016437584
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.193512896867552e-17 -1.18233931324504e-15 -0 0 -0 7.105427357601003e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.05442548607289188 -0.9985178348260633 1.147124279346527e-24 0.9985178348260633 0.05442548607289188 2.471453007436224e-16 -2.467789906483909e-16 -1.345100197817864e-17 1 -8.743006318923108e-16 6.661338147750939e-16 -4.106878340196146e-17 1.793905236656361e-23 3.864927805226494e-15 31.27656316828617
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.016983607683882e-16 3.132712874499385e-18 -0 0 -0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.2549513651167957 -0.9669538776100349 1.115135230082716e-24 0.9669538776100349 -0.2549513651167957 2.471453007076206e-16 -2.389781065680266e-16 6.301003287589319e-17 1 -2.220446049250313e-16 -4.440892098500626e-16 -3.495500694663415e-17 1.737841247109711e-23 3.851544474859286e-15 31.16825983606918
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.294264570106557e-17 -1.286188703876588e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.5386300327371676 -0.8425423952737083 1.073787381558396e-24 0.8425423952737083 -0.5386300327371676 2.471453006610314e-16 -2.082303930212121e-16 1.331198822905999e-16 1 0 -8.326672684688674e-17 -2.553113096718259e-17 1.665937995548445e-23 3.8343601171628e-15 31.02919705053798
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.7696413729709474 -0.6384764341864115 1.024129253176123e-24 0.6384764341864115 -0.7696413729709474 2.471453006049928e-16 -1.577964494679923e-16 1.902132491348266e-16 1 -2.220446049250313e-16 -2.775557561562891e-16 -1.380001555882383e-17 1.580206465913676e-23 3.813391691123891e-15 30.85951205051441
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9268369848119866 -0.3754639844041306 9.673899580189629e-25 0.3754639844041306 -0.9268369848119866 2.471453005408417e-16 -9.279415837120798e-17 2.290634055269461e-16 1 4.996003610813204e-16 -1.07552855510562e-16 -9.696643199652618e-19 1.482978452155145e-23 3.788659890168899e-15 30.65937229539032
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.120468065643245e-16 2.009423511947786e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.9968470582777755 -0.07934697475610022 9.049309359646049e-25 0.07934697475610022 -0.9968470582777755 2.471453004700633e-16 -1.961023101540917e-17 2.46366065812563e-16 1 5.551115123125783e-17 -9.71445146547012e-16 1.168643560770075e-17 1.376806054886711e-23 3.760189121740574e-15 30.4289752998645
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -9.108499518235031e-16 -5.412944961747874e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.975109476508189 0.221723947339762 8.381947378155302e-25 -0.221723947339762 -0.975109476508189 2.471453003942363e-16 5.479803238721295e-17 2.409937243030351e-16 1 -8.881784197001252e-16 -5.551115123125783e-17 2.296927903038417e-17 1.264355932116813e-23 3.728007483209672e-15 30.1685484390187
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.728598363702201e-16 3.364713500178582e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8659041408921567 0.5002099746964428 7.686522856334158e-25 -0.5002099746964428 -0.8659041408921567 2.471453003149768e-16 1.236245450824785e-16 2.140041385602865e-16 1 -1.665334536937735e-16 2.775557561562891e-16 3.187736982266611e-17 1.148303049545295e-23 3.692146734144993e-15 29.87834872392475
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.559909736936248e-16 -1.218795516454971e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.6814525779856353 0.7318622711663251 6.977515998617857e-25 -0.7318622711663251 -0.6814525779856353 2.471453002338844e-16 1.808763212127386e-16 1.684178014707563e-16 1 3.05311331771918e-16 -1.110223024625157e-16 3.769899135281739e-17 1.031230174753708e-23 3.652642264969327e-15 29.55866254800453
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.550284401832364e-16 -1.395577110800037e-15 -0 0 0 7.105427357601002e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.4402517738485184 0.8978743651665488 6.268712149325134e-25 -0.8978743651665488 -0.4402517738485184 2.471453001524913e-16 2.219054297542954e-16 1.088061562276072e-16 1 -1.11369247157711e-15 5.551115123125783e-17 4.006499976720694e-17 9.155393053819775e-24 3.609533062032269e-15 29.20980540439287
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -6.843915123815687e-16 -0 0 0 3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1648890879443497 0.9863121152438921 5.572781647189002e-25 -0.9863121152438921 -0.1648890879443497 2.471453000722172e-16 2.43762403778704e-16 4.075156256899031e-17 1 -3.885780586188048e-16 0 3.895928347460081e-17 8.033755908896711e-24 3.562861669134423e-15 28.83212157458253
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.978691322110778e-17 8.541661799059356e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.1203758896677513 0.9927283843966069 4.900944559472035e-25 -0.9927283843966069 0.1203758896677513 2.471452999943324e-16 2.453481543155928e-16 -2.975033585055172e-17 1 1.27675647831893e-15 1.665334536937735e-16 3.468971904744183e-17 6.965708649063252e-24 3.512674145540985e-15 28.42598378865825
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.598431854634109e-16 -1.787409752852445e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.3919779387462272 0.9199746167891041 4.262718862774271e-25 -0.9199746167891041 0.3919779387462272 2.471452999199289e-16 2.273674024179756e-16 -9.687550562559113e-17 1 -8.881784197001252e-16 -1.387778780781446e-16 2.782714731980173e-17 5.966057404649491e-24 3.459020020526183e-15 27.99179285745551
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.6291135549986424 0.7773134084247937 3.665755275281191e-25 -0.7773134084247937 0.6291135549986424 2.47145299849902e-16 1.921093551718773e-16 -1.554824584747214e-16 1 -1.110223024625157e-16 -5.551115123125783e-17 1.912302602057509e-17 5.045907956694357e-24 3.401952244493413e-15 27.52997727700676
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.760723303360625e-16 -2.715576413453399e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8153245949149889 0.579004149317351 3.115769217510637e-25 -0.579004149317351 0.8153245949149889 2.471452997849402e-16 1.430981538057247e-16 -2.015036416127042e-16 1 -3.33066907387547e-16 -3.05311331771918e-16 9.417731337582653e-18 4.212674611630795e-24 3.341527136719314e-15 27.04099280566558
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 8.604453141268658e-16 -3.259516247537366e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9394915941003111 0.342571955382889 2.616553939451317e-25 -0.342571955382889 0.9394915941003111 2.471452997255245e-16 8.466504834484006e-17 -2.32190931703168e-16 1 8.881784197001252e-16 -2.42861286636753e-17 -4.489625626963585e-19 3.470246848151997e-24 3.277804329773335e-15 26.52532201432607
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9962102741387877 0.08697752411009067 2.170076755430262e-25 -0.08697752411009067 0.9962102741387877 2.47145299671937e-16 2.149608604472621e-17 -2.46208686757168e-16 1 -6.661338147750939e-16 -5.551115123125783e-17 -9.715584170259809e-18 2.819306636510527e-24 3.210846710667617e-15 25.9834738101815
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.985596462076307 -0.1691142038465921 1.776632563840556e-25 0.1691142038465921 0.985596462076307 2.47145299624275e-16 -4.179578075549098e-17 -2.435855328984288e-16 1 -3.33066907387547e-16 -2.220446049250313e-16 -1.77580504670431e-17 2.257743132835433e-24 3.140720358795235e-15 25.41598293449194
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.951996928747277e-16 1.177838625149369e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859063 0.2000000152587891 0.91262003244321 -0.4088088506666096 1.435056562251837e-25 0.4088088506666096 0.91262003244321 2.471452995824714e-16 -1.010351860009312e-16 -2.255497512644755e-16 1 1.471045507628332e-15 4.718447854656915e-16 -2.412660185940513e-17 1.781150006629184e-24 3.067494480718006e-15 24.82340943485673
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.7861031980113621 -0.6180952694175139 1.142965158135169e-25 0.6180952694175139 0.7861031980113621 2.471452995463195e-16 -1.527593405982034e-16 -1.942817102761916e-16 1 3.05311331771918e-16 -1.665334536937735e-16 -2.856020637354332e-17 1.38335003326964e-24 2.991241341868201e-15 24.20633811251254
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.293188849232685e-17 1.309862163863495e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6175317333335104 -0.7865459670776466 8.970192820050521e-26 0.7865459670776466 0.6175317333335104 2.471452995154995e-16 -1.94391138671507e-16 -1.526200651244813e-16 1 9.71445146547012e-17 1.665334536937735e-16 -3.098070002845034e-17 1.056929645880953e-24 2.912036195231509e-15 23.5653779452025
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4198217416864586 -0.9076065806324612 6.931873615977417e-26 0.9076065806324612 0.4198217416864586 2.471452994896064e-16 -2.243107002182488e-16 -1.037569700184339e-16 1 5.134781488891349e-16 -1.110223024625157e-16 -3.147081050372961e-17 7.937398127045775e-25 2.829957207081609e-15 22.90116148618576
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 8.793126674684281e-16 -1.127111647595201e-15 -0 0 -0 7.105427357601e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2061637158253379 -0.9785175125040375 5.270029650754888e-26 0.9785175125040375 0.2061637158253379 2.471452994681766e-16 -2.418360036735305e-16 -5.095239323555704e-17 1 1.387778780781446e-17 3.885780586188048e-16 -3.024122722869213e-17 5.853513577530004e-25 2.745085379839635e-15 22.21434423998101
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.37589542543443e-17 -2.497851640755803e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.010964679766678 -0.9999398860919662 3.937986243292304e-26 0.9999398860919662 -0.010964679766678 2.471452994507135e-16 -2.471304425804795e-16 2.70986910369431e-18 1 5.967448757360216e-16 -2.775557561562891e-16 -2.759207633567689e-17 4.234439678436295e-25 2.657504472134608e-15 21.50560401545954
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.193661685145566e-16 -6.334885744984615e-16 -0 0 -0 3.5527136788005e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.2205599392872654 -0.975373422429378 2.889109388139461e-26 0.975373422429378 -0.2205599392872654 2.471452994367103e-16 -2.410589565425453e-16 5.451035226707346e-17 1 -2.220446049250313e-16 4.718447854656915e-16 -2.387368137271177e-17 3.001154260736396e-25 2.567300916143757e-15 20.77564025692667
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.4136043520576159 -0.9104567205304158 2.078463595982705e-26 0.9104567205304158 -0.4136043520576159 2.471452994256685e-16 -2.250150988010052e-16 1.022203714519626e-16 1 0 0 -1.945054739322983e-17 2.081078176845447e-25 2.474563732294255e-15 20.02517335385135
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.784070446873098e-16 1.099019925932253e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.5833329390221448 -0.812233145255589 1.46418500465809e-26 0.812233145255589 -0.5833329390221448 2.471452994171147e-16 -2.007396038721563e-16 1.441679938863861e-16 1 4.440892098500626e-16 1.110223024625157e-16 -1.467131967418835e-17 1.409639217366583e-25 2.379384441410586e-15 19.25494392992542
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.497608982022716e-16 4.697153577825041e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.7252826699522287 -0.6884511955592543 1.008355289122936e-26 0.6884511955592543 -0.7252826699522287 2.471452994106106e-16 -1.701474768487713e-16 1.792502026296126e-16 1 1.942890293094024e-16 -3.885780586188048e-16 -9.846241346306267e-18 9.309998352759968e-26 2.281856974394233e-15 18.46571211215411
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8371652227616394 -0.5469500798047794 6.776056330863967e-27 0.5469500798047794 -0.8371652227616394 2.471452994057627e-16 -1.351761412276853e-16 2.069014496352236e-16 1 -2.498001805406602e-16 -4.163336342344337e-17 -5.232525242823682e-18 5.982661940628262e-26 2.182077579524829e-15 17.65825678069886
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.438647675730158e-16 -3.824488115345634e-16 -0 0 0 3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9186113733948528 -0.3951621751504341 4.433348983535511e-27 0.3951621751504341 -0.9186113733948528 2.471452994022254e-16 -9.766247408591612e-17 2.270304829137122e-16 1 1.387778780781446e-16 3.382710778154774e-16 -1.027167906221863e-18 3.731410689308538e-26 2.080144727474263e-15 16.83337480021304
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.121100750878867e-16 -2.960336943574292e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.9708355520230051 -0.2397463887698563 2.816837403269572e-27 0.2397463887698563 -0.9708355520230051 2.47145299399703e-16 -5.925219302978904e-17 2.399374431732769e-16 1 3.33066907387547e-16 -7.632783294297951e-17 2.633883420127624e-18 2.252321143922429e-26 1.97615901412752e-15 15.99188023342915
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.875377460453315e-16 7.339716485264881e-17 -0 0 0 -1.77635683940025e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.9962647144517248 -0.08635171531836097 1.732743763525641e-27 0.08635171531836097 -0.9962647144517248 2.471452993979487e-16 -2.134142053415648e-17 2.46222141132933e-16 1 -8.326672684688674e-17 -9.020562075079397e-17 5.671645125644561e-18 1.311221177350242e-26 1.87022306130612e-15 15.13460353777332
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.517906607891752e-16 -3.074977256958799e-17 -0 0 0 0
|
||||
2 0.07099997711167075 0.1600000141860041 0.2000000152587891 -0.9981681548422967 0.06050069965483693 2.696117258913816e-22 -0.06050069965483693 -0.9981681548422967 2.471462419276261e-16 1.495278967152393e-17 2.466934919694083e-16 1 -3.676253745865665e-12 -3.103337031795661e-12 8.056683233650421e-18 1.922653892186168e-21 1.762448136891684e-15 14.26239074602474
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.202488796969115e-16 -1.5079578376211e-16 -0 0 0 1.776356839383501e-15
|
||||
2 0.07099997711172333 0.1600000141859552 0.2000000152587891 -0.9803158263490372 0.197435763248719 1.976674030598357e-22 -0.197435763248719 -0.9803158263490372 2.471460320898752e-16 4.879565925604048e-17 2.422811276504571e-16 1 -1.844219221780463e-12 -1.992517262294768e-12 9.799520083444998e-18 1.322009734985948e-21 1.652925344963158e-15 13.37610263038387
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711176032 0.1600000141859291 0.2000000152587891 -0.946683473285941 0.3221651772108013 1.412778467021269e-22 -0.3221651772108013 -0.946683473285941 2.471458575713873e-16 7.962192274680407e-17 2.339688533391109e-16 1 -8.653217031806548e-13 -1.180583408810776e-12 1.094091200264159e-17 8.813345697732905e-22 1.54177171534983e-15 12.47661385467077
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.654491151357907e-16 3.795878340321182e-17 -0 0 0 0
|
||||
2 0.0709999771117846 0.1600000141859161 0.2000000152587891 -0.9012143948134447 0.4333735277806394 9.807724713147092e-23 -0.4333735277806394 -0.9012143948134447 2.471457149015187e-16 1.071064987313662e-16 2.227312333816257e-16 1 -3.777395063409017e-13 -6.465245006026521e-13 1.154188712071723e-17 5.671224676839706e-22 1.429096878294939e-15 11.56481210984701
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.273146355770382e-16 -1.96013840377528e-16 -0 0 0 1.776356839397487e-15
|
||||
2 0.07099997711179948 0.1600000141859101 0.2000000152587891 -0.8476405736970497 0.5305708791693494 6.583093545539727e-23 -0.5305708791693494 -0.8476405736970497 2.471456005280916e-16 1.311283143559983e-16 2.094906036903561e-16 1 -1.519201431321449e-13 -3.27002314115532e-13 1.167506382975349e-17 3.502731505689007e-22 1.315011970025006e-15 10.64159723834968
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.228395834425879e-17 -3.194638277404228e-16 -0 0 0 1.776356839398898e-15
|
||||
2 0.070999977111808 0.1600000141859076 0.2000000152587891 -0.7893605031421628 0.6139299602390745 4.247426574721387e-23 -0.6139299602390745 -0.7893605031421628 2.47145510886341e-16 1.517300671992249e-16 1.950868787463447e-16 1 -5.556666238248908e-14 -1.520172876467996e-13 1.141732322918265e-17 2.061675448190901e-22 1.199629523874013e-15 9.70788034605012
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.82476955884749e-17 9.741112563700466e-17 -0 0 0 0
|
||||
2 0.07099997711181256 0.1600000141859067 0.2000000152587891 -0.7293673554717981 0.6841222557204785 2.614313228120343e-23 -0.6841222557204785 -0.7293673554717981 2.471454424645538e-16 1.690777166578335e-16 1.802597999021804e-16 1 -1.797173521111972e-14 -6.397660179402465e-14 1.084407066170967e-17 1.145668250670591e-22 1.08306335980162e-15 8.764582903097272
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.443600181431364e-16 -2.617465481255759e-16 -0 0 0 8.881784196999974e-16
|
||||
2 0.07099997711181481 0.1600000141859064 0.2000000152587891 -0.6702189982549305 0.7421633879262419 1.519571615368944e-23 -0.7421633879262419 -0.6702189982549305 2.471453918657399e-16 1.834222715218938e-16 1.656415256818742e-16 1 -4.961309141293668e-15 -2.424449530025186e-14 1.002508499775244e-17 5.93592982553335e-23 9.654284724149575e-16 7.812635834532736
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.090201018939507e-17 -6.932986170517108e-17 -0 0 0 8.881784197000779e-16
|
||||
2 0.07099997711181583 0.1600000141859064 0.2000000152587891 -0.6140405061925213 0.7892745129261632 8.225284976492886e-24 -0.7892745129261632 -0.6140405061925213 2.471453558647921e-16 1.950655354228052e-16 1.5175725292634e-16 1 -1.27675647831893e-15 -7.799316747991725e-15 9.02182961253306e-18 2.818385094131428e-23 8.468409176100634e-16 6.852978601575277
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.590859299875944e-17 -3.670894605195295e-18 -0 0 0 0
|
||||
2 0.07099997711181621 0.1600000141859064 0.2000000152587891 -0.5625499249495644 0.8267633167595424 4.064098477981523e-24 -0.8267633167595424 -0.5625499249495644 2.471453314607004e-16 2.043306962463434e-16 1.390315843048047e-16 1 -2.289834988289385e-16 -2.220446049250313e-15 7.886024923554276e-18 1.196177627515813e-23 7.274176979547049e-16 5.8865582744813
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.442822074061233e-17 1.540164837084453e-16 -0 0 0 -8.881784197001213e-16
|
||||
2 0.07099997711181635 0.1600000141859063 0.2000000152587891 -0.5170988041449865 0.8559257133372176 1.778692556997993e-24 -0.8559257133372176 -0.5170988041449865 2.47145315923486e-16 2.115380317495215e-16 1.277985457916408e-16 1 1.908195823574488e-16 -5.412337245047638e-16 6.659250355397035e-18 4.370539878261813e-24 6.072766469394312e-16 4.914328597896137
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.879200447632301e-19 -1.827637097186102e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.4787201552338473 0.8779675466512877 6.570190628435377e-25 -0.8779675466512877 -0.4787201552338473 2.471453068356001e-16 2.169855590233598e-16 1.183134390768139e-16 1 -4.336808689942018e-18 -4.85722573273506e-17 5.373343386594103e-18 1.293423834378971e-24 4.865363122280968e-16 3.937249049618721
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.324281799063015e-17 7.753732086429985e-17 -0 0 0 -4.440892098500624e-16
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.4481777848766416 0.8939444463405245 1.881129917282151e-25 -0.8939444463405245 -0.4481777848766416 2.471453021276124e-16 2.209341703604382e-16 1.107650338820591e-16 1 8.586881206085195e-17 -6.938893903907228e-18 4.051384573222471e-18 2.780577165242055e-25 3.653158380427613e-16 2.95628389370826
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.4260122452748998 0.9047173961386167 3.512898683752647e-26 -0.9047173961386167 -0.4260122452748998 2.471453001080628e-16 2.23596652396629e-16 1.05286924176393e-16 1 -4.85722573273506e-17 -3.469446951953614e-18 2.709090830054717e-18 3.464423181126816e-26 2.437348468209914e-16 1.972401228867551
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.197907961083783e-18 1.58019682130611e-18 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.4125798284565302 0.9109214483975993 2.738974366733929e-27 -0.9109214483975993 -0.4125798284565302 2.471452994873996e-16 2.251299541748505e-16 1.019671652638541e-16 1 2.504507018441515e-17 1.734723475976807e-18 1.356477068022569e-18 1.351096863514e-27 1.219133202860237e-16 0.9865720330419583
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711171345 0.1600000141859114 0.2000000152587891 -0.4080820618133089 0.9129452507276647 3.706498560495001e-24 -0.9129452507276647 -0.4080820618133089 2.471460509034463e-16 2.256308149209545e-16 1.008558666378651e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859063 0.2000000152587891 -0.408082061813392 0.9129452507276277 1.124126789939942e-29 -0.9129452507276277 -0.408082061813392 2.4714529939596e-16 2.256301273232039e-16 1.008555633449812e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 2.465190328815662e-32 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445251e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.408082061813392 0.9129452507276277 0 -0.9129452507276277 -0.408082061813392 2.471452993948174e-16 2.256301273221562e-16 1.008555633445252e-16 1 0 0 0 0 0 0
|
||||
200
testapp/MBDynCase(Cosine-half drive)debug1.asmt
Normal file
200
testapp/MBDynCase(Cosine-half drive)debug1.asmt
Normal file
@@ -0,0 +1,200 @@
|
||||
OndselSolver
|
||||
Assembly
|
||||
Notes
|
||||
(Text string: '' runs: (Core.RunArray runs: #() values: #()))
|
||||
Name
|
||||
Assembly
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
Marker0
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Parts
|
||||
Part
|
||||
Name
|
||||
structural_node_1
|
||||
Position3D
|
||||
-0.1322131193924678 0.04215394533365132 0.2000000152587891
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
1
|
||||
MomentOfInertias
|
||||
1 2 3
|
||||
Density
|
||||
10
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
Marker0
|
||||
Position3D
|
||||
0.1322131193924678 -0.04215394533365132 -0.2000000152587891
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
Marker1
|
||||
Position3D
|
||||
0.2032130965042842 0.117846068852255 -2.842170943040401e-17
|
||||
RotationMatrix
|
||||
1 -0 0
|
||||
0 1 2.471452993948174e-16
|
||||
-0 -2.471452993948174e-16 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Part
|
||||
Name
|
||||
structural_node_2
|
||||
Position3D
|
||||
0.4257698614077033 0.1732822793381788 0.302175885912376
|
||||
RotationMatrix
|
||||
-0.8995965927692124 0.4234982246408653 -0.1066546951805642
|
||||
-0.4367218454325635 -0.8723574602808865 0.2196963614042295
|
||||
1.387778780781446e-17 0.2442165334663419 0.969720725148062
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
-0.003947705364974695 0.01042661386112648 -1.13686837721616e-16
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
12.63583350443436
|
||||
MomentOfInertias
|
||||
0.08708924866282601 0.085370944710882 0.06459712318937701
|
||||
Density
|
||||
10
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
Marker0
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
KinematicIJs
|
||||
ConstraintSets
|
||||
Joints
|
||||
FixedJoint
|
||||
Name
|
||||
joint_1
|
||||
MarkerI
|
||||
/Assembly/Marker0
|
||||
MarkerJ
|
||||
/Assembly/structural_node_1/Marker0
|
||||
Motions
|
||||
GeneralMotion
|
||||
Name
|
||||
joint_2
|
||||
MarkerI
|
||||
/Assembly/structural_node_1/Marker1
|
||||
MarkerJ
|
||||
/Assembly/structural_node_2/Marker0
|
||||
GeneralConstraintSets
|
||||
ForceTorques
|
||||
ConstantGravity
|
||||
0 0 0
|
||||
SimulationParameters
|
||||
tstart
|
||||
0
|
||||
tend
|
||||
4
|
||||
hmin
|
||||
1e-09
|
||||
hmax
|
||||
1
|
||||
hout
|
||||
0.01
|
||||
errorTol
|
||||
1e-06
|
||||
AnimationParameters
|
||||
nframe
|
||||
1000000
|
||||
icurrent
|
||||
1
|
||||
istart
|
||||
1
|
||||
iend
|
||||
1000000
|
||||
isForward
|
||||
true
|
||||
framesPerSecond
|
||||
30
|
||||
274
testapp/MBDynCase(Cosine-half drive)debug2.asmt
Normal file
274
testapp/MBDynCase(Cosine-half drive)debug2.asmt
Normal file
File diff suppressed because one or more lines are too long
174
testapp/MBDynCase(Sine-forever drive).mbd
Normal file
174
testapp/MBDynCase(Sine-forever drive).mbd
Normal file
@@ -0,0 +1,174 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Data Block]
|
||||
|
||||
begin: data;
|
||||
problem: initial value;
|
||||
end: data;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Problem Block]
|
||||
|
||||
begin: initial value;
|
||||
initial time: 0.0;
|
||||
final time: 4.0;
|
||||
time step: 0.01;
|
||||
max iterations: 100;
|
||||
tolerance: 1e-06;
|
||||
derivatives tolerance: 0.0001;
|
||||
derivatives max iterations: 100;
|
||||
derivatives coefficient: auto;
|
||||
end: initial value;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Control Data Block]
|
||||
|
||||
begin: control data;
|
||||
max iterations: 1000;
|
||||
default orientation: orientation matrix;
|
||||
omega rotates: no;
|
||||
print: none;
|
||||
initial stiffness: 1.0, 1.0;
|
||||
structural nodes: 2;
|
||||
rigid bodies: 1;
|
||||
joints: 2;
|
||||
end: control data;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Design Variables]
|
||||
|
||||
#Generic bodies
|
||||
|
||||
#body: 2
|
||||
set: integer body_2 = 2; #body label
|
||||
set: real mass_2 = 12.635833504434357; #mass [kg]
|
||||
set: real volume_2 = 0.0015994725954980198; #volume [m^3]
|
||||
|
||||
#Nodes
|
||||
|
||||
#node: 1
|
||||
set: integer structural_node_1 = 1; #node label
|
||||
|
||||
#node: 2
|
||||
set: integer structural_node_2 = 2; #node label
|
||||
|
||||
#Joints
|
||||
|
||||
#joint: 1
|
||||
set: integer joint_1 = 1; #joint label
|
||||
|
||||
#joint: 2_3
|
||||
set: integer joint_2 = 2; #joint label
|
||||
|
||||
set: integer joint_3 = 3; #joint label
|
||||
|
||||
#Nodes: initial conditions
|
||||
|
||||
#node: 1
|
||||
set: real Px_1 = -0.13221311939246777; #X component of the absolute position [m]
|
||||
set: real Py_1 = 0.04215394533365132; #Y component of the absolute position [m]
|
||||
set: real Pz_1 = 0.2000000152587891; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_1 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_1 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_1 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_1 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_1 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_1 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 2
|
||||
set: real Px_2 = 0.42576986140770334; #X component of the absolute position [m]
|
||||
set: real Py_2 = 0.17328227933817877; #Y component of the absolute position [m]
|
||||
set: real Pz_2 = 0.302175885912376; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_2 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_2 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_2 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_2 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_2 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_2 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Intermediate Variables]
|
||||
|
||||
#Moments of inertia and relative center of mass
|
||||
|
||||
#body 2:
|
||||
set: real Ixx_2 = 0.08708924866282601; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_2 = 0.085370944710882; #moment of inertia [kg*m^2]
|
||||
set: real Izz_2 = 0.064597123189377; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_2 = -0.003947705364974695; #X component of the relative center of mass [m]
|
||||
set: real Ry_2 = 0.010426613861126484; #Y component of the relative center of mass [m]
|
||||
set: real Rz_2 = -1.1368683772161603e-16; #Z component of the relative center of mass [m]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Nodes Block]
|
||||
|
||||
begin: nodes;
|
||||
|
||||
structural: structural_node_1,
|
||||
static,
|
||||
Px_1, Py_1, Pz_1, #<absolute_position> [m]
|
||||
3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<absolute_orientation_matrix>
|
||||
Vx_1, Vy_1, Vz_1, #<absolute_velocity> [m/s]
|
||||
Wx_1, Wy_1, Wz_1; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_2,
|
||||
dynamic,
|
||||
Px_2, Py_2, Pz_2, #<absolute_position> [m]
|
||||
3, -0.1066546951805642, 0.2196963614042295, 0.969720725148062, 2, 0.4234982246408653, -0.8723574602808866, 0.24421653346634187, #<absolute_orientation_matrix>
|
||||
Vx_2, Vy_2, Vz_2, #<absolute_velocity> [m/s]
|
||||
Wx_2, Wy_2, Wz_2; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
end: nodes;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Elements Block]
|
||||
|
||||
begin: elements;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Bodies]
|
||||
|
||||
body: body_2,
|
||||
structural_node_2, #<node_label>
|
||||
mass_2, #<mass> [kg]
|
||||
Rx_2, Ry_2, Rz_2, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_2, Iyy_2, Izz_2, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, 0.0028768192094494223, -0.0016134085099385742, 1.0006943193724125, 2, 0.3504771628806489, -0.9326094659776577, -0.002311334679062277;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Joints]
|
||||
|
||||
joint: joint_1,
|
||||
clamp,
|
||||
structural_node_1, #<node_label>
|
||||
-0.13221311939246777, 0.04215394533365132, 0.2000000152587891, #<absolute_pin_position> [m]
|
||||
3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<absolute_orientation_matrix>
|
||||
|
||||
joint: joint_2,
|
||||
total joint,
|
||||
structural_node_1, #<node_1_label>
|
||||
position, 0.20321309650428418, 0.11784606885225504, -2.842170943040401e-17, #<relative_position_1> [m]
|
||||
position orientation, 3, 0.0, 2.471452993948174e-16, 1.0, 2, -0.0, 1.0, -2.471452993948174e-16, #<relative_pin_orientation_matrix_1>
|
||||
rotation orientation, 3, 0.0, 2.471452993948174e-16, 1.0, 2, -0.0, 1.0, -2.471452993948174e-16, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_2, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
position orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<relative_pin_orientation_matrix_2>
|
||||
rotation orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<relative_pin_orientation_matrix_2>
|
||||
position constraint,
|
||||
active, active, active,
|
||||
null,
|
||||
orientation constraint,
|
||||
active, active, rotation,
|
||||
single, 0., 0., 1., string, "model::drive(1, Time)"; #<angle> [rad]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Drive callers]
|
||||
|
||||
drive caller: 1, name,"drive:1", sine, 0.25, 3.1416, 10.0, forever, 0.0;
|
||||
|
||||
end: elements;
|
||||
|
||||
802
testapp/MBDynCase(Sine-forever drive).mov
Normal file
802
testapp/MBDynCase(Sine-forever drive).mov
Normal file
@@ -0,0 +1,802 @@
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 3.262652233999262e-55 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.224646799147353e-16 0 -1.224646799147353e-16 -1 2.471452993948174e-16 3.026656998281774e-32 2.471452993948174e-16 1 0 0 0 0 0 0
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.110223024625157e-16 -4.163336342344337e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -1 1.898821519314986e-15 -2.155030799862896e-31 -1.898821519314986e-15 -1 2.471452993948174e-16 2.537817329021346e-31 2.471452993948174e-16 1 -5.551115123125783e-17 -3.33066907387547e-16 1.532561739687727e-17 0 3.882158362893792e-15 31.416
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.085683879132769e-16 6.863365061966144e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9510722564793356 0.3089685468705591 1.179977051182869e-24 -0.3089685468705591 -0.9510722564793356 2.47145300780559e-16 7.63601255703e-17 2.350530385270545e-16 1 -4.440892098500626e-16 7.216449660063518e-16 2.706876297822387e-17 1.852593362143467e-23 3.880242764889187e-15 31.40049802795534
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.007438595225288e-15 -3.144602974727113e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8092590162976676 0.5874519933925932 1.168930058770307e-24 -0.5874519933925932 -0.8092590162976676 2.471453007681429e-16 1.451860005398247e-16 2.000045622955282e-16 1 8.326672684688674e-17 -3.33066907387547e-16 3.61097432665823e-17 1.832532086981825e-23 3.874497795873311e-15 31.3540074104677
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.833710121036867e-16 8.972797368607273e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.5889112129625158 0.808197737714613 1.147127410138244e-24 -0.808197737714613 -0.5889112129625158 2.471453007436259e-16 1.997422736233523e-16 1.455466379118087e-16 1 -1.748601263784622e-15 5.551115123125783e-17 4.155422518126672e-17 1.79391077840422e-23 3.864929147236912e-15 31.27657402837826
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.213698561892433e-16 -9.492716797038202e-16 -0 0 0 3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3121555125233153 0.9500310184416645 1.115139519513888e-24 -0.9500310184416645 -0.3121555125233153 2.471453007076255e-16 2.347957020824339e-16 7.71477669507006e-17 1 -9.8879238130678e-17 -2.220446049250313e-16 4.289815473249976e-17 1.737848741288311e-23 3.851546262136901e-15 31.16827429944383
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.939038156741217e-17 -4.440799778606114e-16 -0 0 0 3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.006448003728825888 0.9999792114078737 1.07379273102141e-24 -0.9999792114078737 -0.006448003728825888 2.471453006610375e-16 2.4714016286511e-16 1.593592746453756e-18 1 -3.747002708109903e-16 2.775557561562891e-16 4.007618742445854e-17 1.665947264664082e-23 3.834362347943772e-15 31.02921510292152
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.603738066292697e-16 -1.589460763205428e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.2984050673345061 0.9544393201189318 1.024135514759558e-24 -0.9544393201189318 0.2984050673345061 2.471453006049998e-16 2.358851923744178e-16 -7.374941104591691e-17 1 5.273559366969494e-16 -2.220446049250313e-16 3.345702491915091e-17 1.580217174700464e-23 3.813394363206697e-15 30.85953367409124
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5733928234415597 0.8192805807693212 9.673969036927142e-25 -0.8192805807693212 0.5733928234415597 2.471453005408496e-16 2.024813448068172e-16 -1.417113424700001e-16 1 -2.220446049250313e-16 -2.498001805406602e-16 2.378801590550677e-17 1.482990304790246e-23 3.788663000916501e-15 30.65939746882048
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.499022912367853e-16 1.100838715619569e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.7932378927134892 0.6089118536894014 9.049385580249528e-25 -0.6089118536894014 0.7932378927134892 2.471453004700719e-16 1.50489702322024e-16 -1.960450178899498e-16 1 3.33066907387547e-16 1.110223024625157e-16 1.209811627411262e-17 1.376818955227702e-23 3.760192668083023e-15 30.42900399830474
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.659304578465252e-17 -3.014173357677963e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.9387969574885888 0.3444710040194512 8.382027620100503e-25 -0.3444710040194512 0.9387969574885888 2.471453003942454e-16 8.513438897859237e-17 -2.320192563564574e-16 1 0 1.266348137463069e-16 -4.265876960243834e-19 1.264369367404105e-23 3.728011461647135e-15 30.16858063414698
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.998678502876436 0.05139307241720751 7.686604785393991e-25 -0.05139307241720751 0.998678502876436 2.471453003149861e-16 1.270155554901588e-17 -2.468186985510213e-16 1 -1.110223024625157e-16 5.828670879282072e-16 -1.257780316193578e-17 1.148316661093696e-23 3.69215114075121e-15 29.87838438396823
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.113729046786965e-15 1.009551184774434e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.9699443924398042 -0.2433266848797704 6.97759938368073e-25 0.2433266848797704 0.9699443924398042 2.47145300233894e-16 -6.013704726631732e-17 -2.397171979099337e-16 1 -3.885780586188048e-16 2.775557561562891e-17 -2.325321928763525e-17 1.031243891072698e-23 3.652647095395487e-15 29.55870163777087
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.416093507032991e-16 5.952758343685377e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.8578828882703378 -0.5138452588211194 6.268794486682116e-25 0.5138452588211194 0.8578828882703378 2.471453001525008e-16 -1.269944412610742e-16 -2.120217235951479e-16 1 5.273559366969494e-16 5.551115123125783e-17 -3.156301217742342e-17 9.15552676574321e-24 3.609538311511301e-15 29.20984788530503
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.090872426876118e-15 -6.553517879297612e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6749532261446649 -0.7378605169792655 5.572861149577107e-25 0.7378605169792655 0.6749532261446649 2.471453000722265e-16 -1.823587592564308e-16 -1.668115171990411e-16 1 1.137978600240785e-15 -5.551115123125783e-16 -3.690383485587307e-17 8.033883309932904e-24 3.562867332485695e-15 28.83216740471676
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.619042438300698e-16 -1.915241185832155e-16 -0 0 -0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.4390910776603131 -0.8984425554920609 4.901021473410294e-25 0.8984425554920609 0.4390910776603131 2.471452999943412e-16 -2.220458551199674e-16 -1.085192956728681e-16 1 -1.873501354054952e-16 -6.106226635438361e-16 -3.89946698857788e-17 6.965829739212203e-24 3.512680217175428e-15 28.42603292278555
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.295984789820139e-15 6.972661538966841e-16 -0 0 0 -7.105427357601003e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.171620327541074 -0.9851631657622479 4.26279059981284e-25 0.9851631657622479 0.171620327541074 2.471452999199374e-16 -2.434784461455439e-16 -4.241515690254219e-17 1 2.241262730962035e-15 -7.216449660063518e-16 -3.787434219354609e-17 5.966168436821901e-24 3.459026494451794e-15 27.99184524708619
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1049643579706646 -0.9944759844037493 3.665822081939102e-25 0.9944759844037493 -0.1049643579706646 2.4714529984991e-16 -2.45780065320521e-16 2.594144808877039e-17 1 3.885780586188048e-16 -5.551115123125783e-17 -3.386530793267453e-17 5.046010508612036e-24 3.401959114321183e-15 27.53003287043836
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.369095789866512 -0.9293913588487982 3.115830230971275e-25 0.9293913588487982 -0.369095789866512 2.471452997849474e-16 -2.296947058852219e-16 9.122028992550363e-17 1 1.665334536937735e-16 2.775557561562891e-17 -2.751193328252007e-17 4.212766316711027e-24 3.341534395669515e-15 27.04105154803381
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.170821386924521e-16 4.266687790066255e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.6019095064378016 -0.798564303021242 2.616609467863473e-25 0.798564303021242 -0.6019095064378016 2.471452997255311e-16 -1.973614138627985e-16 1.487591055851701e-16 1 8.326672684688674e-16 -2.498001805406602e-16 -1.950350643955279e-17 3.470328495255687e-24 3.277811970682228e-15 26.52538384765904
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.797001090975473e-17 1.285850008272732e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.7885553862960237 -0.6149637409990354 2.170125781902926e-25 0.6149637409990354 -0.7885553862960237 2.47145299671943e-16 -1.519853978854593e-16 1.948877573875104e-16 1 -7.771561172376096e-16 1.52655665885959e-16 -1.059262620496721e-17 2.81937743677677e-24 3.210854725994513e-15 25.9835386734569
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.436490288098761e-16 -1.72170261210847e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9189759102026094 -0.3943136777583117 1.776675488967157e-25 0.3943136777583117 -0.9189759102026094 2.471452996242802e-16 -9.74527718722576e-17 2.271205767445763e-16 1 4.440892098500626e-16 -1.838806884535416e-16 -1.518574755745684e-18 2.257803727213716e-24 3.140728740629935e-15 25.41605076369724
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.693033136076024e-17 2.040382710158975e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.9881496766029162 -0.1534933765005908 1.435093724996044e-25 0.1534933765005908 -0.9881496766029162 2.471452995824759e-16 -3.793516637735554e-17 2.442165478783822e-16 1 -1.110223024625157e-16 5.967448757360216e-16 7.056814530871374e-18 1.781201085372797e-24 3.067503220788614e-15 24.82348016305238
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.5742132037053e-17 7.462952219178092e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9958562617296081 0.09094122263270041 1.142996928275532e-25 -0.09094122263270041 -0.9958562617296081 2.471452995463235e-16 2.24756958224937e-17 2.461211940998513e-16 1 5.273559366969494e-16 5.551115123125783e-17 1.459597436246049e-17 1.383392705714232e-24 2.991250431549285e-15 24.20641166989803
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.867615265531219e-16 -5.251687050992423e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9460598338366375 0.3239919610129143 8.970455362820542e-26 -0.3239919610129143 -0.9460598338366375 2.471452995155029e-16 8.007309033001771e-17 2.338142409640791e-16 1 -5.828670879282072e-16 -2.775557561562891e-17 2.071310259823651e-17 1.05696425715317e-24 2.912045625552607e-15 23.56545425918522
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.185896294103078e-16 -8.45355672124704e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8460318866614116 0.5331322976073879 6.932091785321517e-26 -0.5331322976073879 -0.8460318866614116 2.471452994896092e-16 1.317611414184091e-16 2.090928039697365e-16 1 4.718447854656915e-16 -1.665334536937735e-16 2.518288336984825e-17 7.937674228362602e-25 2.829966968736092e-15 22.90124048145269
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.219901201802679e-16 -3.409914571470565e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.7053387004592784 0.7088704519405618 5.270205911863398e-26 -0.7088704519405618 -0.7053387004592784 2.47145299468179e-16 1.751940001661663e-16 1.743211443141456e-16 1 -5.273559366969494e-16 5.551115123125783e-17 2.793296005017657e-17 5.853732486431203e-25 2.745095463193886e-15 22.21442583857299
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.064144383824725e-16 4.221486455939043e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.5348095038057536 0.8449726591074078 3.938124293950719e-26 -0.8449726591074078 -0.5348095038057536 2.471452994507154e-16 2.08831020883829e-16 1.321756549338854e-16 1 1.346145417358002e-15 -2.775557561562891e-16 2.902397949390962e-17 4.234605339226391e-25 2.657514867237527e-15 21.50568813684823
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.133922925117816e-17 1.302276256075585e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3455809620202697 0.9383889378552717 2.8892153913236e-26 -0.9383889378552717 -0.3455809620202697 2.471452994367117e-16 2.319184150443235e-16 8.540871031101435e-17 1 -1.153591111524577e-16 8.326672684688674e-17 2.862159886836107e-17 3.001278506328968e-25 2.567311612736585e-15 20.77572681809404
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.122019859752062e-16 4.666282299616571e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1482871953721699 0.9889443400357049 2.078544947263556e-26 -0.9889443400357049 -0.1482871953721699 2.471452994256697e-16 2.444129450365278e-16 3.664848328069204e-17 1 -8.326672684688674e-17 -3.05311331771918e-16 2.696478476218441e-17 2.08117086800181e-25 2.474574719820697e-15 20.02526226937154
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.917637587656067e-16 1.940691352638942e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.04756359539707115 0.9988682117241011 1.464244169225981e-26 -0.9988682117241011 0.04756359539707115 2.471452994171155e-16 2.468655832640952e-16 -1.175511904038955e-17 1 -2.498001805406602e-16 1.942890293094024e-16 2.433418956070696e-17 1.409702326239e-25 2.379395709027232e-15 19.25503511204917
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.425789779697629e-16 2.698491246557072e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2340110637864592 0.9722339337965579 1.008405825524677e-26 -0.9722339337965579 0.2340110637864592 2.471452994106113e-16 2.40283046662947e-16 -5.783473443470418e-17 1 -3.33066907387547e-16 0 2.102354161242314e-17 9.310511112348361e-26 2.281868510981254e-15 18.46580547089524
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.070944920629368e-17 -3.806847144027609e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4048702351329834 0.9143741535626226 6.776364479655069e-27 -0.9143741535626226 0.4048702351329834 2.471452994057632e-16 2.259832739483821e-16 -1.000617754886191e-16 1 -2.775557561562891e-17 2.775557561562891e-17 1.731600911902212e-17 5.98295776346772e-26 2.182089373696953e-15 17.65835222392313
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5557877222720876 0.831324249478869 4.433570850665103e-27 -0.831324249478869 0.5557877222720876 2.471452994022257e-16 2.054578805353215e-16 -1.373603230287019e-16 1 -5.551115123125783e-17 4.163336342344337e-17 1.346654128437604e-17 3.731627626057474e-26 2.080156767592015e-15 16.83347223372909
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.582402600677117e-16 -3.846176639463365e-16 -0 0 0 1.776356839400251e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6841597374332061 0.7293321970647713 2.816948336834369e-27 -0.7293321970647713 0.6841597374332061 2.471452993997032e-16 1.80251024203489e-16 -1.690868631472066e-16 1 -3.05311331771918e-16 -2.775557561562891e-17 9.69036168936196e-18 2.25242468191624e-26 1.976171288308697e-15 15.99197956108138
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.48633483161264e-17 3.284661409961871e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.7889493281036016 0.6144582635825444 1.732856237834393e-27 -0.6144582635825444 0.7889493281036016 2.471452993979488e-16 1.518604715192846e-16 -1.9498511790504e-16 1 4.996003610813204e-16 4.85722573273506e-17 6.157151261173365e-18 1.311313621987573e-26 1.870235557437534e-15 15.13470466153689
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.79153695480109e-16 -1.377844775687358e-16 -0 0 0 0
|
||||
2 0.07099997711188544 0.1600000141857451 0.2000000152587891 0.8704399288136611 0.4922746492831706 2.696211422004506e-22 -0.4922746492831706 0.8704399288136611 2.471462419543568e-16 1.216635948907268e-16 -2.151260899809674e-16 1 4.773625938980786e-12 6.036317279356496e-13 2.990024132279611e-18 1.922734902956442e-21 1.762460842880184e-15 14.26249356610226
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.298342162148561e-16 2.560538547328624e-16 -0 0 0 -1.776356839383501e-15
|
||||
2 0.07099997711186795 0.1600000141858147 0.2000000152587891 0.9299585726360381 0.3676643213323026 1.976748585565175e-22 -0.3676643213323026 0.9299585726360381 2.471460321122787e-16 9.08665943371031e-17 -2.298356439337878e-16 1 2.631950213327627e-12 6.688642695262814e-13 2.682430278258322e-19 1.322069917874661e-21 1.652938247979574e-15 13.37620704530383
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.021705809001623e-16 -2.372932451626779e-16 -0 0 0 1.776356839390609e-15
|
||||
2 0.0709999771118511 0.1600000141858568 0.2000000152587891 0.9695962373704048 0.2447103113421126 1.412836239064773e-22 -0.2447103113421126 0.9695962373704048 2.471458575898619e-16 6.047900276965839e-17 -2.396317281743716e-16 1 1.368266611123659e-12 5.194247809647834e-13 -1.967605221575097e-18 8.813780911554758e-22 1.541784802668281e-15 12.47671976138779
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.905014183180642e-17 6.676289617901263e-17 -0 0 0 0
|
||||
2 0.07099997711183781 0.1600000141858809 0.2000000152587891 0.9919459756903732 0.1266616805181165 9.808161585548995e-23 -0.1266616805181165 0.9919459756903732 2.471457149164763e-16 3.130379429250807e-17 -2.451552097437012e-16 1 6.687983500341943e-13 3.37105343639621e-13 -3.708915688607838e-18 5.67152991177584e-22 1.429110137007157e-15 11.56491940384343
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711182857 0.160000014185894 0.2000000152587891 0.999872632868946 0.01595988846207753 6.583414773744784e-23 -0.01595988846207753 0.999872632868946 2.471456005399494e-16 3.944350392748131e-18 -2.471141233645617e-16 1 3.053529651353415e-13 1.920200110028247e-13 -4.97184503332485e-18 3.502938163595756e-22 1.315025387052973e-15 10.64170581373879
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.191303767200474e-16 5.799712430469158e-17 -0 0 0 0
|
||||
2 0.07099997711182275 0.1600000141859007 0.2000000152587891 0.9963217560559945 -0.08569106376687931 4.247655170279833e-23 0.08569106376687931 0.9963217560559945 2.471455108955141e-16 -2.117820405415805e-17 -2.462364457769136e-16 1 1.291328155517135e-13 9.73388036840106e-14 -5.790262222073707e-18 2.061809716261275e-22 1.199643085982791e-15 9.707990095680641
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.488044910110986e-17 -2.348576788911707e-16 -0 0 0 1.776356839399635e-15
|
||||
2 0.07099997711181945 0.160000014185904 0.2000000152587891 0.984170147975685 -0.1772261826974737 2.614469728263177e-23 0.1772261826974737 0.984170147975685 2.471454424714471e-16 -4.380066907112327e-17 -2.432331620551154e-16 1 4.940492459581947e-14 4.408973186542653e-14 -6.209371464517295e-18 1.14575132031236e-22 1.083077053612352e-15 8.764693718659048
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181771 0.1600000141859054 0.2000000152587891 0.9661165882083815 -0.2581060595735726 1.519673859137833e-23 0.2581060595735726 0.9661165882083815 2.471453918707419e-16 -6.378973791934488e-17 -2.387712588632143e-16 1 1.761091272811655e-14 1.761785162202045e-14 -6.280314450750553e-18 5.936414154081681e-23 9.654422844180474e-16 7.812747606663676
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.612908315644571e-17 1.926597114249138e-16 -0 0 0 -8.881784197000779e-16
|
||||
2 0.07099997711181691 0.160000014185906 0.2000000152587891 0.9446085335467146 -0.3281992052865537 8.225915288682109e-24 0.3281992052865537 0.9446085335467146 2.471453558682674e-16 -8.111291715649765e-17 -2.334556094798661e-16 1 5.460909502374989e-15 6.036837696399289e-15 -6.055895201372187e-18 2.818647395312795e-23 8.468548341785016e-16 6.853091219969265
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.216373751031231e-16 -9.924219729607169e-17 -0 0 0 8.8817841970011e-16
|
||||
2 0.07099997711181658 0.1600000141859063 0.2000000152587891 0.9217989919676378 -0.3876681808034375 4.064459388008638e-24 0.3876681808034375 0.9217989919676378 2.471453314629852e-16 -9.581038478893261e-17 -2.278183158364259e-16 1 1.484923295436147e-15 1.824929096727601e-15 -5.587444673535438e-18 1.196306889770705e-23 7.274317053575414e-16 5.886671627997054
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.675329588516669e-17 1.984437046789452e-16 -0 0 0 -8.881784197001213e-16
|
||||
2 0.07099997711181646 0.1600000141859063 0.2000000152587891 0.8995270519153759 -0.4368650625449839 1.778879923788934e-24 0.4368650625449839 0.8995270519153759 2.471453159248818e-16 -1.079691554993739e-16 -2.223138966514726e-16 1 3.816391647148976e-16 4.718447854656915e-16 -4.922754017119513e-18 4.371101596530137e-24 6.072907313553717e-16 4.914442574666912
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8793155251113702 -0.4762396532189599 6.571038777168006e-25 0.4762396532189599 0.8793155251113702 2.4714530683637e-16 -1.177003958002479e-16 -2.173187049466944e-16 1 7.979727989493313e-17 1.387778780781446e-17 -4.104951107950524e-18 1.293628445176262e-24 4.865504597592014e-16 3.937363537162669
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.998982135384696e-17 -1.495990171976398e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8623796199760426 -0.5062621761992262 1.881442873194395e-25 0.5062621761992262 0.8623796199760426 2.471453021279767e-16 -1.251203186549765e-16 -2.131330716327384e-16 1 -1.040834085586084e-17 -1.040834085586084e-17 -3.172168320173829e-18 2.781147610284143e-25 3.653300347282466e-16 2.956398779039478
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.73594644090182e-17 2.284533767000398e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8496413251533054 -0.5273609945679858 3.513719592132143e-26 0.5273609945679858 0.8496413251533054 2.47145300108196e-16 -1.303347912977156e-16 -2.09984860270809e-16 1 -4.336808689942018e-17 2.42861286636753e-17 -2.157843092927474e-18 3.46543390916163e-26 2.437490786511006e-16 1.972516398607551
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.71454630997025e-17 7.300975003473407e-19 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8417451086101542 -0.5398751449463847 2.740022072623676e-27 0.5398751449463847 0.8417451086101542 2.471452994874285e-16 -1.334276043858995e-16 -2.080333469580554e-16 1 -2.688821387764051e-17 0 -1.091499457962449e-18 1.351768627878602e-27 1.219275732159616e-16 0.9866873735315668
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.954700572080904e-21 1.45024828315218e-21 -0 0 0 0
|
||||
2 0.07099997711190016 0.1600000141858461 0.2000000152587891 0.8390715291131038 -0.5440211108328405 3.709099743048249e-24 0.5440211108328405 0.8390715291131038 2.471460512550153e-16 -1.344526724539036e-16 -2.073732131229826e-16 1 -1.400187813458721e-17 -1.925941163819465e-17 1.28121963586258e-22 -2.140102547509315e-28 -1.426000729724546e-20 -0.0001153974115696585
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.687965163922973e-19 2.028629534937813e-17 -0 0 0 -1.110223024614862e-16
|
||||
2 0.0709999771118988 0.1600000141858439 0.2000000152587891 0.8417463544068977 -0.5398732025602839 -3.714304228218429e-24 0.5398732025602839 0.8417463544068977 2.471460519585645e-16 -1.334275274444985e-16 -2.080342902474327e-16 1 -1.224315787640151e-13 -1.632374790894175e-13 1.09175608497466e-18 1.832856948530761e-24 -1.219564503856818e-16 -0.9869180544800167
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.644883072086545e-17 1.473896972849663e-18 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8496437577866555 -0.5273570752859691 -2.742117484403169e-27 0.5273570752859691 0.8496437577866555 2.471452994874862e-16 -1.303338223060658e-16 -2.099854609773023e-16 1 4.683753385137379e-17 6.938893903907228e-18 2.158087447209478e-18 2.704757524969968e-27 -2.437775416889376e-16 -1.972746738007702
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.794741470621441e-18 -1.346396619271669e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8623831200490358 -0.5062562140403714 -3.515358943700805e-26 0.5062562140403714 0.8623831200490358 2.471453001084626e-16 -1.251188439204658e-16 -2.131339350307881e-16 1 1.387778780781446e-17 -1.387778780781446e-17 3.172397167735591e-18 5.196803637227748e-26 -3.65358425097875e-16 -2.956628549582235
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.463462978041261e-17 -2.135527647219493e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8793199100577921 -0.4762315568879874 -1.882069278056947e-25 0.4762315568879874 0.8793199100577921 2.471453021287052e-16 -1.176983918448112e-16 -2.173197849286489e-16 1 -4.163336342344337e-17 -3.469446951953614e-17 4.105157085742133e-18 3.705410819948585e-25 -4.865787455302527e-16 -3.937592512091195
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.420043094441831e-17 1.622856979629375e-16 -0 0 0 -8.881784197001244e-16
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.8995320724596262 -0.4368547248416684 -6.572735937449879e-25 0.4368547248416684 0.8995320724596262 2.471453068379097e-16 -1.079665944233461e-16 -2.223151303457082e-16 1 -2.081668171172169e-17 -5.551115123125783e-17 4.922928704762506e-18 1.615141550740699e-24 -6.073188778260717e-16 -4.914670528009515
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.524276750831699e-17 -7.706838271851143e-18 -0 0 0 0
|
||||
2 0.07099997711181644 0.1600000141859063 0.2000000152587891 0.9218043284552839 -0.3876554914367949 -1.779254688185697e-24 0.3876554914367949 0.9218043284552839 2.471453159276737e-16 -9.58072372621196e-17 -2.278196226693161e-16 1 -5.204170427930421e-16 -3.747002708109903e-16 5.587578443512044e-18 5.237145762053621e-24 -7.274596743929132e-16 -5.886898334790227
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.744022455056726e-17 -1.17428839445624e-16 -0 0 0 8.8817841970011e-16
|
||||
2 0.07099997711181649 0.1600000141859062 0.2000000152587891 0.9446137930586587 -0.3281840671990851 -4.065181318996431e-24 0.3281840671990851 0.9446137930586587 2.471453314675551e-16 -8.11091562302619e-17 -2.334568903284344e-16 1 -2.192690473634684e-15 -1.262878690511116e-15 6.05597719147343e-18 1.392998704400153e-23 -8.468825836443511e-16 -6.853316456479605
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.745384200808836e-17 -3.473614486972383e-16 -0 0 0 1.776356839400156e-15
|
||||
2 0.0709999771118166 0.1600000141859058 0.2000000152587891 0.9661213035986869 -0.2580884087532293 -8.227176079460903e-24 0.2580884087532293 0.9661213035986869 2.471453558752186e-16 -6.378534368013567e-17 -2.387723955198664e-16 1 -8.298917109073045e-15 -4.225786387479502e-15 6.280332693154599e-18 3.21393446951509e-23 -9.654697677299898e-16 -7.812971150608604
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.488044910112502e-17 2.348576788912182e-16 -0 0 0 -1.776356839399995e-15
|
||||
2 0.07099997711181674 0.1600000141859048 0.2000000152587891 0.9841737801751725 -0.177206011229053 -1.519878364240089e-23 0.177206011229053 0.9841737801751725 2.471453918807464e-16 -4.379563413058389e-17 -2.432340172734644e-16 1 -2.574329638349582e-14 -1.031813523511005e-14 6.209313207730142e-18 6.660802601367292e-23 -1.083104219417735e-15 -8.764915349426053
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.510008654428399e-17 6.369657279836787e-17 -0 0 0 0
|
||||
2 0.07099997711181674 0.1600000141859025 0.2000000152587891 0.9963237011327464 -0.08566844553945119 -2.614782755665939e-23 0.08566844553945119 0.9963237011327464 2.471454424852349e-16 -2.117253982816958e-17 -2.462368642150233e-16 1 -7.133182933216631e-14 -1.940808624922852e-14 5.790114481867103e-18 1.269242951740564e-22 -1.199669877991574e-15 -9.708209594544687
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.613670530415847e-16 4.444068907263163e-16 -0 0 0 -1.776356839398897e-15
|
||||
2 0.07099997711181598 0.1600000141858979 0.2000000152587891 0.9998722353953882 0.01598477042154229 -4.24811240033903e-23 -0.01598477042154229 0.9998722353953882 2.471455109138611e-16 3.950606728369264e-18 -2.471139337863266e-16 1 -1.750682931955794e-13 -2.600697435184429e-14 4.971595405509827e-18 2.260404245367412e-22 -1.315051744031484e-15 -10.64192296407784
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181305 0.1600000141858894 0.2000000152587891 0.9919425498888984 0.1266885066606683 -6.584057267325348e-23 -0.1266885066606683 0.9919425498888984 2.471456005636662e-16 3.131057237323044e-17 -2.451542288757024e-16 1 -3.918809721170646e-13 -7.69870278638507e-15 3.708553448479115e-18 3.807275225257116e-22 -1.429135992945935e-15 -11.56513399135164
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.467997353701478e-16 2.575318664336266e-16 -0 0 0 -1.776356839394949e-15
|
||||
2 0.07099997711180504 0.1600000141858751 0.2000000152587891 0.9695890972452653 0.2447386003537477 -9.809035383970691e-23 -0.2447386003537477 0.9695890972452653 2.471457149463925e-16 6.048619146674404e-17 -2.396297666364125e-16 1 -8.028855358332976e-13 9.417813751078086e-14 1.967122720372015e-18 6.119333164322557e-22 -1.541810087132101e-15 -12.47693157428628
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711178684 0.1600000141858535 0.2000000152587891 0.9299470717995778 0.3676934098558076 -1.412951789869424e-22 -0.3676934098558076 0.9299470717995778 2.471458576268125e-16 9.087403451957858e-17 -2.298325146541434e-16 1 -1.516231584730576e-12 4.072970259672015e-13 -2.688486820512351e-19 9.450115376108532e-22 -1.652962886644136e-15 -13.3764158745488
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -9.140063764991073e-17 1.594331632476729e-16 -0 0 0 0
|
||||
2 0.07099997711175032 0.1600000141858246 0.2000000152587891 0.870423509941322 0.4923036799998852 -1.976897704003714e-22 -0.4923036799998852 0.870423509941322 2.471460321570874e-16 1.21671073202128e-16 -2.151216194548414e-16 1 -2.648464780818927e-12 1.170969571306912e-12 -2.990749155407866e-18 1.409794865687551e-21 -1.762484758255813e-15 -14.26269920559006
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.076975315769322e-16 -1.397026185537765e-16 -0 0 0 0
|
||||
2 0.07099997711168379 0.1600000141857915 0.2000000152587891 0.7889275808961316 0.6144861854438859 -2.69639975206856e-22 -0.6144861854438859 0.7889275808961316 2.471462420078198e-16 1.5186816422459e-16 -1.949803211447594e-16 1 -4.275496623407093e-12 2.791190889528394e-12 -6.157983815792116e-18 2.040487961871592e-21 -1.870267682810415e-15 -15.13490690868963
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.626872992908041e-16 3.23899920942703e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.6841324625930689 0.7293577816314454 -1.733053453060698e-27 -0.7293577816314454 0.6841324625930689 2.471452993979492e-16 1.802573473107133e-16 -1.690801222941563e-16 1 1.665334536937735e-16 3.191891195797325e-16 -9.691222018502159e-18 1.385762369917806e-26 -1.976195836577032e-15 -15.99217821573855
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.505562058023089e-16 9.229796115477144e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5557549974969733 0.8313461269273703 -2.817281137528759e-27 -0.8313461269273703 0.5557549974969733 2.471452993997038e-16 2.054632874458148e-16 -1.37352235246929e-16 1 3.885780586188048e-16 4.163336342344337e-17 -1.34674404143458e-17 2.371227134242524e-26 -2.08018084772208e-15 -16.83366710007979
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.231999579176197e-16 -3.806916744775346e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4048324775034653 0.9143908711040406 -4.43401458492429e-27 -0.9143908711040406 0.4048324775034653 2.471452994022263e-16 2.259874056114657e-16 -1.000524438562846e-16 1 6.661338147750939e-16 0 -1.731690191992273e-17 3.914899735862946e-26 -2.182112961921641e-15 -17.65854310965693
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.282192721794582e-17 -6.746298226788296e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2339690813373369 0.9722440377694083 -6.777030081043847e-27 -0.9722440377694083 0.2339690813373369 2.471452994057641e-16 2.40285543811575e-16 -5.782435865221877e-17 1 0 -2.775557561562891e-17 -2.102437277781922e-17 6.257224978690435e-26 -2.281891584018167e-15 -18.46599218763007
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.04751861955370715 0.9988703523459439 -1.008497037566843e-26 -0.9988703523459439 0.04751861955370715 2.471452994106126e-16 2.468661123034016e-16 -1.174400344710637e-17 1 -1.942890293094024e-16 1.942890293094024e-16 -2.433489560527253e-17 9.709398629073366e-26 -2.379418244101589e-15 -19.25521747551728
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.148333505369078 0.9889373949775192 -1.464369893932751e-26 -0.9889373949775192 -0.148333505369078 2.471452994171172e-16 2.444112285843307e-16 3.665992861251303e-17 1 3.261280134836397e-16 2.220446049250313e-16 -2.696529742463395e-17 1.466232098707138e-25 -2.474596694687764e-15 -20.02544009960138
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 3.38585768229542e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3456265511515172 0.9383721474655499 -2.078710115015586e-26 -0.9383721474655499 -0.3456265511515172 2.471452994256719e-16 2.319142653508995e-16 8.541997749331006e-17 1 3.950832716537178e-16 -4.163336342344337e-16 -2.862184996145885e-17 2.159356844470528e-25 -2.567333005703611e-15 -20.77589993958779
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.885451624628092e-17 4.048219539164055e-17 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859063 0.2000000152587891 -0.534851996578789 0.8449457626118276 -2.889428630287042e-26 -0.8449457626118276 -0.534851996578789 2.471452994367146e-16 2.088243734930291e-16 1.321861568732036e-16 1 -6.800116025829084e-16 -2.220446049250313e-16 -2.90239070703132e-17 3.106979951171794e-25 -2.657535657185206e-15 -21.50585637875512
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.497608982022716e-16 4.69715357782504e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.7053755232436049 0.7088338107122224 -3.938405325648203e-26 -0.7088338107122224 -0.7053755232436049 2.471452994507191e-16 1.75184944381486e-16 1.743302449451651e-16 1 1.804112415015879e-16 1.665334536937735e-16 -2.793251554085197e-17 4.374501932158286e-25 -2.745115629597292e-15 -22.21458903485777
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.28056654385903e-16 -2.583118385806467e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.846060436347046 0.5330869891943022 -5.27055596889009e-26 -0.5330869891943022 -0.846060436347046 2.471452994681834e-16 1.31749943542426e-16 2.090998599372692e-16 1 -2.498001805406602e-16 -2.220446049250313e-16 -2.518203912074355e-17 6.035155703490063e-25 -2.829986491685109e-15 -22.90139847105959
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.760251362928687e-16 -4.989196845042629e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9460776864089281 0.3239398266331726 -6.932519495843567e-26 -0.3239398266331726 -0.9460776864089281 2.471452994896147e-16 8.006020540428228e-17 2.338186531704335e-16 1 -2.775557561562891e-16 1.942890293094024e-16 -2.071185901106133e-17 8.168451541880483e-25 -2.912064485771822e-15 -23.56560688619684
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -6.101954390028985e-16 1.520238863495335e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.9958614078766166 0.09088485188414615 -8.970980140211789e-26 -0.09088485188414615 -0.9958614078766166 2.471452995155095e-16 2.246176385099149e-17 2.461224659337567e-16 1 -1.27675647831893e-15 1.387778780781446e-16 -1.459436567539132e-17 1.085782800483187e-24 -2.99126861041733e-15 -24.20655878368922
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.835316145373251e-16 -3.03357329862093e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.988140764935476 -0.1535507364773361 -1.143059759814037e-25 0.1535507364773361 -0.988140764935476 2.471452995463313e-16 -3.794934287520138e-17 2.442143453263674e-16 1 -2.220446049250313e-16 2.775557561562891e-17 -7.054912197396334e-18 1.41874415132703e-24 -3.067520700356934e-15 -24.82362161843891
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.926454235636556e-16 -2.486840348073043e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9189524730183936 -0.394368295294359 -1.435167803965424e-25 0.394368295294359 -0.9189524730183936 2.47145299582485e-16 -9.746627061824333e-17 2.271147841895979e-16 1 -8.326672684688674e-16 4.649058915617843e-16 1.520662076856973e-18 1.823824620588473e-24 -3.140745503640938e-15 -25.41618642107908
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.583443623907867e-16 1.728698439105831e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.7885180191356869 -0.6150116531402738 -1.776761647369149e-25 0.6150116531402738 -0.7885180191356869 2.471452996242905e-16 -1.519972394278841e-16 1.948785219891685e-16 1 6.106226635438361e-16 5.134781488891349e-16 1.059475681951019e-17 2.308339142878305e-24 -3.210870755899092e-15 -25.98366839895597
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.497608982022715e-16 4.697153577825038e-16 -0 0 0 -3.552713678800499e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.6018599720248005 -0.7986016366589205 -2.170224512775595e-25 0.7986016366589205 -0.6018599720248005 2.471452996719547e-16 -1.973706409411996e-16 1.487468629733091e-16 1 2.775557561562891e-16 -6.938893903907228e-16 1.950551433207877e-17 2.878315404373322e-24 -3.277827251656595e-15 -26.52550751325134
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.127682793932992e-16 4.901323577443041e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.3690370202456343 -0.9294146962945138 -2.616720154909237e-25 0.9294146962945138 -0.3690370202456343 2.471452997255443e-16 -2.297004737816e-16 9.120576473522722e-17 1 -1.054711873393899e-15 -1.665334536937735e-16 2.751364122105787e-17 3.537958723951642e-24 -3.341548912631301e-15 -27.04116903167572
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.569004824294147e-16 -2.208195270306775e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.1049003362018917 -0.9944827396514884 -3.115953243968684e-25 0.9944827396514884 -0.1049003362018917 2.47145299784962e-16 -2.457817348548239e-16 2.592562472828365e-17 1 -9.992007221626409e-16 -5.551115123125783e-17 3.386654416997804e-17 4.289132193856173e-24 -3.401972852944788e-15 -27.5301440561872
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.253912297067496e-16 7.929603076023474e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.1716848130775347 -0.985151929886214 -3.665956681331056e-25 0.985151929886214 0.1716848130775347 2.471452998499258e-16 -2.434756690465225e-16 -4.24310949688782e-17 1 2.359223927328458e-16 1.110223024625157e-16 3.787495930951356e-17 5.130863740236455e-24 -3.459039441182893e-15 -27.99195002521454
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4391507983138506 -0.8984133660739402 -4.262934936706591e-25 0.8984133660739402 0.4391507983138506 2.471452999199543e-16 -2.220386406232325e-16 -1.085340561423517e-16 1 -9.020562075079397e-17 1.110223024625157e-16 3.899456373695693e-17 6.058937098769308e-24 -3.512692359244612e-15 -28.42613118988957
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.633302752868851e-16 -8.191392103941393e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6750029727152436 -0.7378150085391216 -4.901174931508262e-25 0.7378150085391216 0.6750029727152436 2.471452999943592e-16 -1.823475112949111e-16 -1.668238125504091e-16 1 2.498001805406602e-16 -5.551115123125783e-17 3.69029612144574e-17 7.065597372325957e-24 -3.562878657921216e-15 -28.83225906381821
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.831718940980224e-16 -4.048041273946493e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8579179846082736 -0.5137866596999946 -5.573021879986547e-25 0.5137866596999946 0.8579179846082736 2.471453000722451e-16 -1.26979957706552e-16 -2.120303980297219e-16 1 1.137978600240785e-15 -2.775557561562891e-16 3.156139855596991e-17 8.139379650940373e-24 -3.609548809150849e-15 -29.20993284594701
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.524768983523281e-16 -6.528544183321505e-16 -0 0 0 3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9699612091143438 -0.2432596407409996 -6.268959284655598e-25 0.2432596407409996 0.9699612091143438 2.471453001525198e-16 -6.012047631786374e-17 -2.39721354315364e-16 1 -8.326672684688674e-16 1.110223024625157e-16 2.325096972659942e-17 9.265139382954122e-24 -3.652656754897017e-15 -29.5587798161071
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9986749096778779 0.05146284854030564 -6.977765814842803e-25 -0.05146284854030564 0.9986749096778779 2.47145300233913e-16 1.271880185023819e-17 -2.468178103525054e-16 1 1.609823385706477e-15 2.775557561562891e-17 1.257509442293061e-17 1.042424334098519e-23 -3.692159952602744e-15 -29.87845570284578
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.245777745778853e-16 -1.367949207216378e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.93877265369622 0.3445372326355413 -7.686769621886074e-25 -0.3445372326355413 0.93877265369622 2.47145300315005e-16 8.515075855102449e-17 -2.320132491604287e-16 1 7.771561172376096e-16 -1.370431546021678e-16 4.236563069538764e-19 1.159497133701801e-23 -3.728019417175596e-15 -30.1686450231824
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.12574139354171e-16 1.320934300080314e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.7931945628830144 0.6089682959012102 -8.38218736443381e-25 -0.6089682959012102 0.7931945628830144 2.471453003942636e-16 1.505036530859579e-16 -1.960343080043705e-16 1 -1.609823385706477e-15 1.387778780781446e-16 -1.210099544999793e-17 1.275310463868306e-23 -3.760199759462065e-15 -30.42906139395352
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.273419510367508e-16 1.071148801645301e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.5733340837292388 0.8193216880043847 -9.049537066195233e-25 -0.8193216880043847 0.5733340837292388 2.471453004700891e-16 2.02491505282345e-16 -1.416968236515577e-16 1 -3.33066907387547e-16 -3.05311331771918e-16 -2.379055762745589e-17 1.38726903508221e-23 -3.788669221173369e-15 -30.65944781443979
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.031096334151472e-16 5.298322066679417e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.298336191452801 0.9544608514074517 -9.674109182997337e-25 -0.9544608514074517 0.298336191452801 2.471453005408655e-16 2.358905142641987e-16 -7.373238677546384e-17 1 9.992007221626409e-16 0 -3.34589649798938e-17 1.492694595544958e-23 -3.813399706228158e-15 -30.85957691999579
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.465630534364698e-16 1.387749277868028e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.006520561878458788 0.9999787409104202 -1.024147963970718e-24 -0.9999787409104202 -0.006520561878458788 2.47145300605014e-16 2.471400465142511e-16 1.611527249691483e-18 1 -4.024558464266192e-16 -6.106226635438361e-16 -4.007731367050299e-17 1.588927264056326e-23 -3.83436680848114e-15 -31.02925120643262
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.497608982022716e-16 4.69715357782504e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3122247545593947 0.9500082645115914 -1.07380338064363e-24 -0.9500082645115914 -0.3122247545593947 2.471453006610495e-16 2.347900778279311e-16 7.716488185952608e-17 1 8.066464163292153e-16 -1.110223024625157e-16 -4.289833359633048e-17 1.673431503616275e-23 -3.85154983581023e-15 -31.16830322493152
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.386630700475901e-16 1.491507856905092e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.5889703214259894 0.8081546637119449 -1.115148135354088e-24 -0.8081546637119449 -0.5889703214259894 2.471453007076352e-16 1.997316267245773e-16 1.455612480979109e-16 1 1.929012505286209e-15 5.551115123125783e-17 -4.155341997802524e-17 1.743901868229298e-23 -3.864931830538362e-15 -31.27659574729644
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.715230134612785e-17 2.695517427949093e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8093020856054812 0.5873926576274328 -1.147133696373583e-24 -0.5873926576274328 -0.8093020856054812 2.47145300743633e-16 1.45171334095556e-16 2.00015208013234e-16 1 8.604228440844963e-16 2.775557561562891e-16 -3.610802145028644e-17 1.79836275436588e-23 -3.874499586169794e-15 -31.35402190138232
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.918276023196389e-16 -1.319909377371208e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9510949408146875 0.3088987108369117 -1.1689339352821e-24 -0.3088987108369117 -0.9510949408146875 2.471453007681473e-16 7.634286368491435e-17 2.350586455677914e-16 1 3.33066907387547e-16 -5.551115123125783e-17 -2.706629097232389e-17 1.835255816611565e-23 -3.880243660424291e-15 -31.40050527656553
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.885780596673777e-16 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9999999973015129 -7.346410202723214e-05 -1.179978326032635e-24 7.346410202723214e-05 -0.9999999973015129 2.471453007805605e-16 -1.815748757041692e-20 2.471453001135554e-16 1 3.33066907387547e-16 -4.163336342344337e-17 -1.532264358501229e-17 1.853509954480571e-23 -3.882158384556285e-15 -31.41599999915224
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 5.939308838626397e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9510495670213738 -0.3090383812222319 -1.17997575079497e-24 0.3090383812222319 -0.9510495670213738 2.471453007805575e-16 -7.637738480212053e-17 2.350474309340587e-16 1 4.996003610813204e-16 -1.110223024625157e-16 -2.065218208130095e-18 1.852590877231616e-23 -3.880241868949774e-15 -31.40049077765047
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 8.231842449691361e-16 -3.088284964305248e-16 -0 0 0 3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8092159426594339 -0.5875113259723627 -1.168926213073395e-24 0.5875113259723627 -0.8092159426594339 2.471453007681386e-16 -1.452006643080412e-16 1.999939168481812e-16 1 3.885780586188048e-16 4.163336342344337e-16 1.135695239777148e-17 1.832525204170427e-23 -3.874496004983413e-15 -31.35399291786093
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.898366839968592e-16 5.944795043774839e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.5888521013899031 -0.8082408073641761 -1.147121086925051e-24 0.8082408073641761 -0.5888521013899031 2.471453007436188e-16 -1.997529180847692e-16 1.455320287643694e-16 1 -2.775557561562891e-16 -1.942890293094024e-16 2.358610119517568e-17 1.793899635743934e-23 -3.86492646316393e-15 -31.2765523077721
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.218801920372951e-16 -4.852848739729449e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.3120862688932683 -0.9500537673038714 -1.115130940651544e-24 0.9500537673038714 -0.3120862688932683 2.471453007076158e-16 -2.348013243567356e-16 7.713065371291029e-17 1 -9.71445146547012e-16 7.216449660063518e-16 3.340758480697403e-17 1.737833713488066e-23 -3.851542687529706e-15 -31.168245372274
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.497608982022716e-16 -4.69715357782504e-16 -0 0 -0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.006375445629674708 -0.9999796766399921 -1.073782056747286e-24 0.9999796766399921 -0.006375445629674708 2.471453006610253e-16 -2.471402778449516e-16 1.575660353233742e-18 1 -1.249000902703301e-15 5.551115123125783e-17 3.988205205803733e-17 1.665928765875854e-23 -3.83435788633009e-15 -31.02917899773577
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 8.724347791119032e-17 4.635822619692276e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2984739415657495 -0.9544177838903702 -1.024123040896494e-24 0.9544177838903702 0.2984739415657495 2.471453006049857e-16 -2.358798697966558e-16 -7.376643298846334e-17 1 5.204170427930421e-17 5.551115123125783e-16 4.244161980219197e-17 1.580195796569932e-23 -3.813389018989631e-15 -30.85949042652121
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.420749688493824e-16 -3.410769455996535e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.573451560110096 -0.819239469390542 -9.673829753673566e-25 0.819239469390542 0.573451560110096 2.471453005408339e-16 -2.024711843226915e-16 -1.41725858961538e-16 1 5.273559366969494e-16 -3.33066907387547e-16 4.093913173934461e-17 1.482966520633953e-23 -3.788656779370178e-15 -30.65934712154649
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.810893739077139e-16 -9.908089579365323e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.793281218445923 -0.6088554085010264 -9.049233231487209e-25 0.6088554085010264 0.793281218445923 2.471453004700547e-16 -1.504757521589454e-16 -1.960557256410362e-16 1 -5.551115123125783e-16 -1.665334536937735e-16 3.564633643399416e-17 1.376793179197624e-23 -3.760185575347392e-15 -30.42894660101371
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.790129037269521e-16 -9.120133531572679e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9388212565567973 -0.3444047738303236 -8.381867567618403e-25 0.3444047738303236 0.9388212565567973 2.471453003942272e-16 -8.511802049859363e-17 -2.32025261756891e-16 1 2.775557561562891e-16 -8.326672684688674e-17 2.720385770605999e-17 1.264342536272566e-23 -3.728003504721911e-15 -30.16851624348338
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9986820911912671 -0.05132329620978948 -7.686440095272588e-25 0.05132329620978948 0.9986820911912671 2.471453003149674e-16 -1.268431068729144e-17 -2.468195853860947e-16 1 -2.775557561562891e-16 5.551115123125783e-17 1.653205023753358e-17 1.148289317202569e-23 -3.69214232748896e-15 -29.87831306347815
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.479093796182179e-16 -1.346044902172441e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.969927571175642 0.243393727678673 -6.977433353112084e-25 -0.243393727678673 0.969927571175642 2.471453002338749e-16 6.015361657894812e-17 -2.397130406134907e-16 1 9.436895709313831e-16 -6.938893903907228e-18 4.71634327804717e-18 1.031216626067661e-23 -3.652637434493882e-15 -29.55862345783936
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.528768816723475e-15 -9.524023658968401e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8578477880319576 0.5139038553744051 -6.268630181746701e-25 -0.5139038553744051 0.8578477880319576 2.471453001524818e-16 1.27008923123778e-16 -2.120130487361534e-16 1 -1.554312234475219e-15 -6.938893903907228e-17 -7.117074821485956e-18 9.155259933542019e-24 -3.609527812504536e-15 -29.20976292308661
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.707944208814479e-17 1.118997304812573e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859063 0.2000000152587891 0.6749034766640915 0.7379060219206252 -5.572701405243799e-25 -0.7379060219206252 0.6749034766640915 2.471453000722079e-16 1.823700055887657e-16 -1.667992218487102e-16 1 -8.326672684688674e-16 5.273559366969494e-16 -1.791953072539565e-17 8.033627521784386e-24 -3.562856005735078e-15 -28.83207574405928
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.40086956994191e-16 -2.698010876621811e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.439031355273082 0.898471740839455 -4.900867892052808e-25 -0.898471740839455 0.439031355273082 2.471452999943234e-16 2.220530681413526e-16 -1.085045355655511e-16 1 9.992007221626409e-16 8.604228440844963e-16 -2.681869906484298e-17 6.965586770053395e-24 -3.512668073859147e-15 -28.4259346541474
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.704330691927407e-16 1.197493349315218e-15 -0 0 0 -7.105427357600999e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.1715558415106744 0.9851743973751877 -4.262646632697635e-25 -0.9851743973751877 0.1715558415106744 2.471452999199204e-16 2.434812219858457e-16 -4.23992194832249e-17 1 1.082467449009528e-15 2.775557561562891e-16 -3.318847787433853e-17 5.965944991970497e-24 -3.459013546553902e-15 -27.99174046744717
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.511894528713433e-16 -1.076480565171119e-15 -0 0 0 7.105427357601002e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1050283790458542 0.9944692250617916 -3.665687975585214e-25 -0.9944692250617916 -0.1050283790458542 2.471452998498941e-16 2.457783947808882e-16 2.595727059657737e-17 1 -1.124100812432971e-15 3.885780586188048e-16 -3.668510827975266e-17 5.045804813130999e-24 -3.401945374619743e-15 -27.52992168320372
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.210487472745903e-16 2.06361154339768e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3691545577562331 0.9293680177883248 -3.115707711011933e-25 -0.9293680177883248 -0.3691545577562331 2.471452997849329e-16 2.296889372518066e-16 9.123481413320245e-17 1 -3.365363543395006e-16 2.775557561562891e-16 -3.72495089122891e-17 4.212582117689657e-24 -3.341519877724027e-15 -27.04093406293249
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.140733515796194e-15 -6.87070843581361e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.6019590383040563 0.7985269664852001 -2.616498904077226e-25 -0.7985269664852001 -0.6019590383040563 2.471452997255179e-16 1.973521863133908e-16 1.48771347153075e-16 1 1.443289932012704e-15 5.551115123125783e-17 -3.507992829574448e-17 3.470165595478759e-24 -3.277796688820215e-15 -26.5252601806352
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.115720511849516e-16 2.522674440664294e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.7885927503585712 0.6149158268266514 -2.170027174289774e-25 -0.6149158268266514 -0.7885927503585712 2.471452996719311e-16 1.519735561229593e-16 1.948969917399199e-16 1 1.387778780781446e-16 6.938893903907228e-16 -3.058202394357254e-17 2.819235244598604e-24 -3.210838695297399e-15 -25.98340894655552
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.24846888208222e-16 2.805809136189173e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9189993440155849 0.3942590591209347 -1.77658951545444e-25 -0.3942590591209347 -0.9189993440155849 2.471452996242698e-16 9.743927313275764e-17 2.271263683012828e-16 1 6.661338147750939e-16 2.220446049250313e-16 -2.430510819595042e-17 2.257682439849538e-24 -3.140711976918158e-15 -25.4159151049437
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.247054352614472e-16 -4.114036548471869e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9881585848899472 0.1534360163335092 -1.435019861730816e-25 -0.1534360163335092 -0.9881585848899472 2.471452995824669e-16 3.79209900816827e-17 2.442187495196309e-16 1 3.05311331771918e-16 -5.551115123125783e-17 -1.687355512044111e-17 1.78109922370841e-24 -3.067485740606009e-15 -24.82333870632614
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9958511124230375 -0.09099759274727413 -1.142934189181663e-25 0.09099759274727413 -0.9958511124230375 2.471452995463156e-16 -2.248962743133793e-17 2.461199214729227e-16 1 2.775557561562891e-16 1.110223024625157e-16 -8.921439966064459e-18 1.383308371553083e-24 -2.991232252146759e-15 -24.20626455480044
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9460419785070947 -0.3240440940711336 -8.969932126173254e-26 0.3240440940711336 -0.9460419785070947 2.471452995154963e-16 -8.00859747702973e-17 2.338098281033021e-16 1 -2.220446049250313e-16 3.694961003830599e-16 -1.036717483499553e-18 1.056895724862028e-24 -2.912026764871119e-15 -23.5653016309018
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.249260748873834e-16 -2.083966220665718e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8460033347463957 -0.5331776041789246 -6.931657911823646e-26 0.5331776041789246 -0.8460033347463957 2.471452994896037e-16 -1.317723387245917e-16 2.090857474981433e-16 1 4.996003610813204e-16 -2.220446049250313e-16 6.280969583857588e-18 7.937123011805079e-25 -2.829947445388941e-15 -22.90108249060982
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.438999318836356e-16 -6.148788865106639e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.7053018760421326 -0.7089070909868572 -5.269857087431871e-26 0.7089070909868572 -0.7053018760421326 2.471452994681743e-16 -1.752030553342275e-16 1.743120433325396e-16 1 7.771561172376096e-16 -4.163336342344337e-17 1.264704640564368e-17 5.853298612933331e-25 -2.745075296448346e-15 -22.2142626410893
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.497608982022716e-16 4.69715357782504e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.5347670100125997 -0.8449995532556122 -3.937849425229055e-26 0.8449995532556122 -0.5347670100125997 2.471452994507117e-16 -2.088376676461342e-16 1.321651527926509e-16 1 3.608224830031759e-16 -1.942890293094024e-16 1.780356655374396e-17 4.234274017646199e-25 -2.657494076995834e-15 -21.5055198937807
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.183094895943772e-16 2.409254175185434e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3455353724532498 -0.9384057258902431 -2.888998454574664e-26 0.9384057258902431 -0.3455353724532498 2.471452994367087e-16 -2.319225641282486e-16 8.539744306382259e-17 1 1.387778780781446e-16 1.942890293094024e-16 2.161741110177849e-17 3.001026070839297e-25 -2.567290219516291e-15 -20.77555369547902
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.087223173297766e-16 -6.862228027923738e-18 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1482408854613406 -0.9889512828636392 -2.078379779511525e-26 0.9889512828636392 -0.1482408854613406 2.471452994256674e-16 -2.44414660923813e-16 3.663703800391493e-17 1 3.191891195797325e-16 -2.775557561562891e-17 2.406799939838352e-17 2.080985485689083e-25 -2.474552744734425e-15 -20.02508443806097
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.445933479864141e-16 -5.54482054214404e-17 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.04760857071804165 -0.9988660690974467 -1.464118444519211e-26 0.9988660690974467 0.04760857071804165 2.471452994171137e-16 -2.468650537239868e-16 -1.176623447955582e-17 1 4.440892098500626e-16 -1.110223024625157e-16 2.522786420711017e-17 1.409570192037376e-25 -2.379373173761836e-15 -19.25485274754188
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.283082664197104e-16 -4.722310595888931e-16 -0 0 -0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2340530453747434 -0.9722238281130576 -1.008309683101853e-26 0.9722238281130576 0.2340530453747434 2.471452994106099e-16 -2.40280549090771e-16 -5.784510998690906e-17 1 -6.938893903907228e-17 3.05311331771918e-16 2.523943512500148e-17 9.309544757739466e-26 -2.281845437776424e-15 -18.46561875316383
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.540519914841571e-16 -5.749769360345595e-16 -0 0 -0 3.552713678800502e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.4049079916640078 -0.9143574346428315 -6.775723530169577e-27 0.9143574346428315 0.4049079916640078 2.471452994057622e-16 -2.259791419459437e-16 -1.000711068377825e-16 1 -2.8796409701215e-16 4.163336342344337e-16 2.429099493780533e-17 5.982366117788804e-26 -2.182065785323262e-15 -17.65816133723632
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.171865948520297e-16 1.153663790880831e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5558204458071825 -0.831302370995479 -4.433139442357561e-27 0.831302370995479 0.5558204458071825 2.47145299402225e-16 -2.054524733709931e-16 -1.373684104965796e-16 1 -3.261280134836397e-16 5.551115123125783e-17 2.259416032887554e-17 3.731203613320918e-26 -2.080132687328447e-15 -16.83327736646987
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.611497048485252e-17 -2.226655729174919e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6841870109777637 -0.7293066117959671 -2.816677165898199e-27 0.7293066117959671 0.6841870109777637 2.471452993997027e-16 -1.802447009245699e-16 -1.690936036755413e-16 1 -9.71445146547012e-17 -1.942890293094024e-16 2.036452249032287e-17 2.252197884405989e-26 -1.976146739919676e-15 -15.99178090556112
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.619636532110094e-16 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.7889710740271525 -0.6144303413312541 -1.7326343707048e-27 0.6144303413312541 0.7889710740271525 2.471452993979485e-16 -1.518535706661295e-16 -1.949904923078262e-16 1 -3.608224830031759e-16 -2.775557561562891e-17 1.78063743894639e-17 1.311126267522583e-26 -1.870210565149473e-15 -15.13450241380554
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711187149 0.1600000141857398 0.2000000152587891 0.8704563464746149 -0.492245618448824 -2.696023098719724e-22 0.492245618448824 0.8704563464746149 2.471462419008957e-16 -1.216564200147674e-16 -2.151301474805408e-16 1 -3.975639262243646e-12 -2.708139268392529e-12 1.510187282242935e-17 1.922572884386449e-21 -1.76243543087941e-15 -14.2622879257548
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.153576743950947e-17 -6.782329155363801e-17 -0 0 0 0
|
||||
2 0.07099997711183846 0.1600000141858036 0.2000000152587891 0.9299700723803946 -0.3676352329100186 -1.976599478096732e-22 0.3676352329100186 0.9299700723803946 2.471460320674721e-16 -9.085940524407606e-17 -2.298384859970753e-16 1 -2.414610178469445e-12 -1.241423630560234e-12 1.240416879951328e-17 1.321949554562426e-21 -1.652912441924444e-15 -13.37599821528343
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.924316962866339e-16 -3.532603429508829e-16 -0 0 0 1.77635683939061e-15
|
||||
2 0.07099997711182325 0.1600000141858463 0.2000000152587891 0.9696033765480242 -0.2446820226062191 -1.412720696826658e-22 0.2446820226062191 0.9696033765480242 2.471458575529132e-16 -6.047201132691954e-17 -2.396334925498974e-16 1 -1.369626634328824e-12 -5.172806627484761e-13 9.834736744322865e-18 8.812910500920865e-22 -1.541758628010584e-15 -12.47650794778543
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.820931328131815e-16 -1.486556675924873e-16 -0 0 0 0
|
||||
2 0.07099997711181724 0.1600000141858731 0.2000000152587891 0.991949400702564 -0.1266348547826548 -9.807287854303736e-23 0.1266348547826548 0.991949400702564 2.471457148865616e-16 -3.129716443148203e-17 -2.451560561873762e-16 1 -7.239764343580646e-13 -1.904518209805417e-13 7.483100263870981e-18 5.670919453736487e-22 -1.429083619563446e-15 -11.56470481569455
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.32853329249838e-16 -2.671907039004413e-16 -0 0 0 1.776356839397487e-15
|
||||
2 0.07099997711181549 0.1600000141858891 0.2000000152587891 0.9998730297152061 -0.01593500700140113 -6.582772331894701e-23 0.01593500700140113 0.9998730297152061 2.471456005162341e-16 -3.938201055226523e-18 -2.471142214179162e-16 1 -3.555072902727829e-13 -5.823813653549337e-14 5.4090486779323e-18 3.502524856995908e-22 -1.314998552979298e-15 -10.64148866281696
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.488044910107875e-17 2.348576788910731e-16 -0 0 0 -1.776356839398897e-15
|
||||
2 0.07099997711181538 0.1600000141858979 0.2000000152587891 0.9963198105098018 0.08571368143833694 -4.247197979471088e-23 -0.08571368143833694 0.9963198105098018 2.471455108771682e-16 2.118379390391549e-17 -2.462359649250587e-16 1 -1.612460165389962e-13 -1.254898962521622e-14 3.646198837189434e-18 2.061541183202016e-22 -1.199615961749051e-15 -9.707770596288617
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.495686311337993e-16 6.625739399256606e-17 -0 0 0 0
|
||||
2 0.07099997711181572 0.1600000141859026 0.2000000152587891 0.9841665154546579 0.1772463535812137 -2.614156730442699e-23 -0.1772463535812137 0.9841665154546579 2.471454424576607e-16 4.380565420749122e-17 -2.432322642805581e-16 1 -6.659950368970158e-14 -2.775557561562891e-17 2.206301037981313e-18 1.145585184726607e-22 -1.083049665976275e-15 -8.764472087417239
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.686353369459967e-17 -5.237380241939986e-19 -0 0 0 0
|
||||
2 0.07099997711181606 0.1600000141859048 0.2000000152587891 0.9661118726305472 0.2581237098026782 -1.519469378379331e-23 -0.2581237098026782 0.9661118726305472 2.471453918607382e-16 6.379410008750446e-17 -2.387700934204775e-16 1 -2.468858451010192e-14 1.450228825916611e-15 1.083743691646355e-18 5.935445541358444e-23 -9.654146603988423e-16 -7.812524062296378
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.041024917830045e-16 -5.318412457602749e-17 -0 0 0 8.881784197000777e-16
|
||||
2 0.07099997711181624 0.1600000141859058 0.2000000152587891 0.9446032739650486 0.3282143427921932 -8.224654627325808e-24 -0.3282143427921932 0.9446032739650486 2.471453558613168e-16 8.111665831720048e-17 -2.334543095924072e-16 1 -8.187894806610529e-15 1.159228962821501e-15 2.598495643611881e-19 2.818122795415252e-23 -8.468270010301988e-16 -6.852865983088815
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.75221228068982e-17 1.081801954103757e-16 -0 0 0 -8.881784197001102e-16
|
||||
2 0.07099997711181635 0.1600000141859062 0.2000000152587891 0.9217936555108381 0.3876808696079369 -4.063737574117386e-24 -0.3876808696079369 0.9217936555108381 2.471453314584159e-16 9.581352076526798e-17 -2.278169969520576e-16 1 -2.206568261442499e-15 2.94469310047063e-16 -2.933103737983412e-19 1.196048372656493e-23 -7.274036905420515e-16 -5.886444920886098
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.309439439751365e-17 -1.462195270119032e-16 -0 0 0 8.881784197001213e-16
|
||||
2 0.0709999771118164 0.1600000141859063 0.2000000152587891 0.8995220314852008 0.4368753997111045 -1.778505171718124e-24 -0.4368753997111045 0.8995220314852008 2.471453159220903e-16 1.07971710279995e-16 -2.223126558733052e-16 1 -4.093947403305265e-16 1.257674520083185e-16 -6.097421543234527e-19 4.369978086037779e-24 -6.07262562515299e-16 -4.914214621059067
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.874179942188173e-17 6.559055214733975e-17 -0 0 0 -4.440892098500622e-16
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8793111403454046 0.4762477490387373 -6.569341493626617e-25 -0.4762477490387373 0.8793111403454046 2.471453068348305e-16 1.177023966432256e-16 -2.173176212710863e-16 1 0 -2.51534904016637e-17 -7.270539085826497e-19 1.293219075670259e-24 -4.865221646904291e-16 -3.937134562021656
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.655500065790658e-17 2.991968201435967e-17 -0 0 0 -4.440892098500625e-16
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8623761201338493 0.5062681378705248 -1.880816961369909e-25 -0.5062681378705248 0.8623761201338493 2.471453021272484e-16 1.251217920536075e-16 -2.131322066625847e-16 1 1.52655665885959e-16 -6.245004513516506e-17 -6.846686309398542e-19 2.780006473680934e-25 -3.653016413523487e-16 -2.956169008337167
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8496388927859321 0.5273649133811381 -3.512074077587658e-26 -0.5273649133811381 0.8496388927859321 2.471453001079295e-16 1.303357598138136e-16 -2.099842591224267e-16 1 -2.081668171172169e-17 -8.673617379884035e-19 -5.226603947545891e-19 3.463408755306508e-26 -2.43720614987595e-16 -1.972286059100951
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.749943520990641e-18 2.391118654121037e-17 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.8417438631002043 0.5398770868754705 -2.737865031085962e-27 -0.5398770868754705 0.8417438631002043 2.471452994873708e-16 1.334280843245121e-16 -2.080330391360784e-16 1 -1.040834085586084e-17 9.974659986866641e-18 -2.811154805636499e-19 1.350388121294465e-27 -1.218990673544392e-16 -0.9864566925390243
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.670037423616418e-21 5.120608620391247e-21 -0 0 0 -5.421010862377443e-20
|
||||
2 0.07099997711179362 0.1600000141858059 0.2000000152587891 0.8390715294067111 0.544021110379995 -3.703897316311993e-24 -0.544021110379995 0.8390715294067111 2.471460505517949e-16 1.344526719550527e-16 -2.073732126083246e-16 1 6.963330804435515e-17 -1.544130474932749e-17 1.009561898659897e-22 -6.411302445497822e-28 4.278002177010331e-20 0.0003461922347097172
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.774268968081879e-18 2.923542002844036e-17 -0 0 0 -1.110223024614843e-16
|
||||
2 0.07099997711179599 0.1600000141858048 0.2000000152587891 0.8417476004903346 0.5398712597173183 3.719516441760289e-24 -0.5398712597173183 0.8417476004903346 2.471460526624427e-16 1.334270476541416e-16 -2.080345988073291e-16 1 2.002946419832341e-13 -4.129118921780695e-14 2.81304321435812e-19 1.835857972629448e-24 1.219849566682233e-16 0.9871487353660703
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8496461906859765 0.5273531555350829 2.744299177844171e-27 -0.5273531555350829 0.8496461906859765 2.47145299487544e-16 1.303328535580878e-16 -2.099860622569838e-16 1 6.591949208711867e-17 -6.938893903907228e-18 5.228066011430266e-19 2.707222715298784e-27 2.438060053258551e-16 1.972977077301385
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.217663914534527e-17 1.111460602836444e-17 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.8623866203528172 0.5062502513939583 3.516997062674304e-26 -0.5062502513939583 0.8623866203528172 2.471453001087293e-16 1.251173702805494e-16 -2.131348001146546e-16 1 1.387778780781446e-17 -3.209238430557093e-17 6.847449820440161e-19 5.199631210534899e-26 3.653868184334251e-16 2.956858319965434
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.252722588557557e-16 -6.711691790555768e-17 -0 0 0 4.440892098500625e-16
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8793242951846566 0.4762234600458138 1.882695806179016e-25 -0.4762234600458138 0.8793242951846566 2.471453021294338e-16 1.17696390748597e-16 -2.173208686928217e-16 1 -1.595945597898663e-16 1.647987302177967e-17 7.27032223451776e-19 3.706859365785798e-25 4.866070405443733e-16 3.93782148680722
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.744022455056787e-17 -1.174288394456259e-16 -0 0 0 8.881784197001244e-16
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8995370931179325 0.4368443866011557 6.574433282621027e-25 -0.4368443866011557 0.8995370931179325 2.471453068394497e-16 1.079640393762392e-16 -2.223163711792985e-16 1 9.020562075079397e-17 6.071532165918825e-17 6.095944119365452e-19 1.61563360273033e-24 6.073470465964818e-16 4.914898481086885
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.32287332792692e-17 2.22402441830418e-17 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859063 0.2000000152587891 0.9218096649737519 0.3876428015080111 1.779629489560314e-24 -0.3876428015080111 0.9218096649737519 2.471453159304658e-16 9.580410100638856e-17 -2.278209415675553e-16 1 6.800116025829084e-16 9.410874857174178e-17 2.930093197294038e-19 5.238450710554179e-24 7.274876891228894e-16 5.887125041265744
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.015698099765602e-17 -2.133053990534959e-16 -0 0 0 8.881784197001102e-16
|
||||
2 0.07099997711181646 0.1600000141859062 0.2000000152587891 0.9446190525008428 0.3281689285298198 4.065903311613985e-24 -0.3281689285298198 0.9446190525008428 2.471453314721254e-16 8.110541477962479e-17 -2.334581901795089e-16 1 2.317590563905014e-15 3.80338122107915e-16 -2.603294095784489e-19 1.393291889485959e-23 8.469104166903381e-16 6.853541692620303
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.210846278951983e-16 -4.215662863846237e-17 -0 0 0 0
|
||||
2 0.07099997711181663 0.1600000141859058 0.2000000152587891 0.9661260188014019 0.2580707573417668 8.228437036640044e-24 -0.2580707573417668 0.9661260188014019 2.471453558821706e-16 6.378098121630512e-17 -2.387735608672161e-16 1 8.867906409193438e-15 2.163200174543078e-15 -1.084424561658116e-18 3.214519030237001e-23 9.654973916290408e-16 7.813194694132575
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.81088248007118e-16 1.789898712931047e-16 -0 0 0 -1.776356839399995e-15
|
||||
2 0.0709999771118172 0.160000014185905 0.2000000152587891 0.9841774120530266 0.1771858391762929 1.520082888139422e-23 -0.1771858391762929 0.9841774120530266 2.471453918907516e-16 4.379064870040417e-17 -2.432349148852426e-16 1 2.625677453238495e-14 9.318934512947408e-15 -2.207199953110946e-18 6.66186736760671e-23 1.083131606914729e-15 8.765136979721781
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.808438816601178e-16 2.137255660552545e-16 -0 0 0 -1.776356839399635e-15
|
||||
2 0.07099997711181871 0.1600000141859033 0.2000000152587891 0.9963256457399502 0.08564582675688981 2.61509581172654e-23 -0.08564582675688981 0.9963256457399502 2.471454424990234e-16 2.116694969715599e-17 -2.462373448292456e-16 1 6.626643678231403e-14 3.244279844771825e-14 -3.647325145112385e-18 1.269423613028922e-22 1.199697002066199e-15 9.708429092888819
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.187253902389683e-16 3.179179434636275e-17 -0 0 0 0
|
||||
2 0.07099997711182235 0.1600000141859003 0.2000000152587891 0.9998718372945252 -0.01600965287788924 4.248569667222008e-23 0.01600965287788924 0.9998718372945252 2.471455109322095e-16 -3.956756320604843e-18 -2.471138354147012e-16 1 1.486033518460772e-13 9.661021982410034e-14 -5.410401160779898e-18 2.26069368407266e-22 1.315078577924932e-15 10.64214011385099
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.109987133130347e-17 -2.899725941245666e-16 -0 0 0 1.776356839397486e-15
|
||||
2 0.0709999771118302 0.1600000141858959 0.2000000152587891 0.9919391232986048 -0.1267153332063463 6.584699805009707e-23 0.1267153332063463 0.9919391232986048 2.471456005873843e-16 -3.13172024451265e-17 -2.451533820299329e-16 1 2.986777491997827e-13 2.538455556866381e-13 -7.4846639389877e-18 3.807717426167918e-22 1.429162510187295e-15 11.5653485782522
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.488044910091228e-17 -2.34857678890551e-16 -0 0 0 1.776356839394948e-15
|
||||
2 0.07099997711184564 0.1600000141858905 0.2000000152587891 0.9695819561744866 -0.2447668896334958 9.809909232928791e-23 0.2447668896334958 0.9695819561744866 2.471457149763103e-16 -6.04931830561078e-17 -2.396280017754634e-16 1 5.390132784555135e-13 6.024208909494178e-13 -9.836479569697209e-18 6.119982205302266e-22 1.54183626156442e-15 12.4771433865419
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.804598883045335e-16 3.133101552320142e-16 -0 0 0 -1.776356839390606e-15
|
||||
2 0.07099997711187356 0.1600000141858864 0.2000000152587891 0.9299355698763678 -0.3677224984668669 1.413067346775421e-22 0.3677224984668669 0.9299355698763678 2.471458576637647e-16 -9.088122367201507e-17 -2.298296720274712e-16 1 8.665845818711659e-13 1.309494179757564e-12 -1.240603859019346e-17 9.451035788937422e-22 1.652988692450112e-15 13.37662470312538
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.0709999771119201 0.1600000141858889 0.2000000152587891 0.8704070898704386 -0.4923327105761655 1.977046828420341e-22 0.4923327105761655 0.8704070898704386 2.47146032201898e-16 -1.216782480256624e-16 -2.151175613253973e-16 1 1.208796951424063e-12 2.631728168722702e-12 -1.510379478423194e-17 1.409921539246078e-21 1.762510169983102e-15 14.26290484439804
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.704618162344692e-16 4.525370874168743e-16 -0 0 0 -1.776356839372293e-15
|
||||
2 0.07099997711199187 0.1600000141859081 0.2000000152587891 0.7889058324149615 -0.6145141069020765 2.696588094828346e-22 0.6145141069020765 0.7889058324149615 2.471462420612851e-16 -1.518750649499026e-16 -1.949749461124452e-16 1 1.353958611893802e-12 4.923783603061338e-12 -1.780831979573057e-17 2.040657758067769e-21 1.870292675396524e-15 15.13510915478735
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.09294142295344e-16 -2.73300144576351e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6841051864573546 -0.7293833654959153 1.733250668287004e-27 0.7293833654959153 0.6841051864573546 2.471452993979495e-16 -1.802636702425578e-16 -1.690733811254288e-16 1 1.387778780781446e-16 -2.775557561562891e-16 -2.036622458787113e-17 1.385949724382796e-26 1.976220384752741e-15 15.99237686953261
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.007814019319609e-17 -8.076284118400023e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5557222714818587 -0.8313680033409052 2.817576960368217e-27 0.8313680033409052 0.5557222714818587 2.471452993997043e-16 -2.054686940985881e-16 -1.373441471661252e-16 1 -2.081668171172169e-17 -1.110223024625157e-16 -2.259556231746447e-17 2.371513096320667e-26 2.080204927761113e-15 16.83386196552199
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.4047947187754974 -0.9144075872670053 4.434507622990053e-27 0.9144075872670053 0.4047947187754974 2.471452994022271e-16 -2.259915369325672e-16 -1.000431119641557e-16 1 7.702172233337023e-16 -2.498001805406602e-16 -2.429194800434723e-17 3.915373052406078e-26 2.182136550059794e-15 17.65873399443768
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.282148227426733e-17 6.746368325313377e-17 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2339270980274453 -0.9722541400315341 6.777671030529341e-27 0.9722541400315341 0.2339270980274453 2.471452994057651e-16 -2.402880405381736e-16 -5.781398267452512e-17 1 -3.469446951953614e-17 8.326672684688674e-17 -2.523978738241989e-17 6.257875788937242e-26 2.281914656976687e-15 18.46617890336827
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.686721705050887e-17 4.574506357293303e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.04747364318804187 -0.9988724909629129 1.008585784418681e-26 0.9988724909629129 0.04747364318804187 2.471452994106139e-16 -2.468666408525336e-16 -1.173288774974677e-17 1 -1.665334536937735e-16 -2.775557561562891e-16 -2.522747291227912e-17 9.710345262159631e-26 2.379440779110147e-15 19.25539983794618
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.613251302048372e-17 -9.606916836800815e-17 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1483798154519516 -0.9889304476890398 1.464490688258863e-26 0.9889304476890398 -0.1483798154519516 2.47145299417119e-16 -2.444095115946402e-16 3.667137393181223e-17 1 -1.387778780781446e-17 -1.665334536937735e-16 -2.406674579097571e-17 1.466368177213289e-25 2.474618669506925e-15 20.02561792875043
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.098950428786237e-16 7.422709005652851e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.345672139846866 -0.9383553547210612 2.078882678338604e-26 0.9383553547210612 -0.345672139846866 2.471452994256742e-16 -2.319101151030353e-16 8.543124452507453e-17 1 1.110223024625157e-15 0 -2.161521697132102e-17 2.159550115392307e-25 2.567354398646783e-15 20.77607305996028
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.642499463902418e-16 9.966764000273719e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.5348944883315626 -0.8449188637688922 2.889648032226306e-26 0.8449188637688922 -0.5348944883315626 2.471452994367174e-16 -2.088177255704374e-16 1.321966585101689e-16 1 -2.498001805406602e-16 8.326672684688674e-17 -1.780041113129925e-17 3.10724224742278e-25 2.657556447140038e-15 21.50602461950135
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.566347998894128e-16 6.516705554869666e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.7054123443949666 -0.7087971673018996 3.938682659560195e-26 0.7087971673018996 -0.7054123443949666 2.471452994507227e-16 -1.75175888134868e-16 1.743393451196476e-16 1 2.220446049250313e-16 1.110223024625157e-16 -1.264298169596999e-17 4.374843114499794e-25 2.745135796046512e-15 22.21475222994362
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.590332562311515e-16 3.207584018585958e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.8460889838031554 -0.533041678939784 5.27089986294096e-26 0.533041678939784 -0.8460889838031554 2.471452994681879e-16 -1.317387453260021e-16 2.091069153068618e-16 1 2.220446049250313e-16 2.775557561562891e-17 -6.276131889691904e-18 6.035590563064066e-25 2.830006014726777e-15 22.90155645943046
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.22706661306645e-16 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9460955362238481 -0.3238876909320719 6.93294843896078e-26 0.3238876909320719 -0.9460955362238481 2.471452994896202e-16 -8.004732031081613e-17 2.338230646682908e-16 1 -2.775557561562891e-16 3.469446951953614e-18 1.042102244919531e-18 8.169009660970927e-25 2.912083346138965e-15 23.56575951193657
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.9958665508639859 -0.09082848050181321 8.971503993156662e-26 0.09082848050181321 -0.9958665508639859 2.471452995155161e-16 -2.244783192881563e-17 2.461237369989124e-16 1 4.440892098500626e-16 4.163336342344337e-17 8.927059400604496e-18 1.085852787236622e-24 2.991286789496958e-15 24.20670589617393
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.497608982022716e-16 -4.69715357782504e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.9881318498876057 0.1536080962635051 1.143122437278147e-25 -0.1536080962635051 -0.9881318498876057 2.471452995463391e-16 3.796351907674241e-17 2.442121420141911e-16 1 1.665334536937735e-16 8.881784197001252e-16 1.687902366688125e-17 1.418830038558086e-24 3.067538180208408e-15 24.82376307248565
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.249023496294043e-16 6.631405103940016e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9189290324629864 0.3944229117288188 1.435241698045531e-25 -0.3944229117288188 -0.9189290324629864 2.471452995824941e-16 9.747976881330709e-17 2.27108990966507e-16 1 -3.05311331771918e-16 -2.775557561562891e-17 2.430999139659038e-17 1.823928257189896e-24 3.140762267013676e-15 25.41632207708913
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.520134026768569e-16 -6.565420281415402e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.7884806488776828 0.61505956325012 1.776847559252109e-25 -0.61505956325012 -0.7884806488776828 2.471452996243011e-16 1.520090801863437e-16 1.948692861055515e-16 1 -8.326672684688674e-16 1.387778780781446e-16 3.058587316920377e-17 2.308462599609972e-24 3.210886786249596e-15 25.98379812305262
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.477027808331759e-16 6.650005274761019e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.601810435065256 0.7986389673980148 2.170322504091166e-25 -0.7986389673980148 -0.601810435065256 2.471452996719666e-16 1.973798670579046e-16 1.487346201465889e-16 1 1.52655665885959e-16 5.551115123125783e-17 3.508232386817162e-17 2.878458779842846e-24 3.277842533164767e-15 26.52563117741194
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.463676882234594e-16 -6.449271881296055e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3689782488938663 0.9294380301253097 2.616830841955001e-25 -0.9294380301253097 -0.3689782488938663 2.471452997255576e-16 2.297062406282068e-16 9.119123967186774e-17 1 -1.760744328116459e-16 5.551115123125783e-17 3.725010794748765e-17 3.538123990311286e-24 3.341563430216073e-15 27.04128651385814
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.093202784362557e-16 3.036289108708281e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.104836313739862 0.9944894908049241 3.116076256966091e-25 -0.9944894908049241 -0.104836313739862 2.471452997849765e-16 2.457834033706594e-16 2.590980187769953e-17 1 -1.804112415015879e-16 2.775557561562891e-16 3.668369213209538e-17 4.289318759460258e-24 3.401986592278987e-15 27.53025524045015
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.353102782023238e-16 -6.562355257514031e-16 -0 0 0 3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.1717492981196948 0.9851406897471001 3.666091034203976e-25 -0.9851406897471001 0.1717492981196948 2.471452998499416e-16 2.434728910989605e-16 -4.244703214397053e-17 1 -9.992007221626409e-16 1.110223024625157e-16 3.31849930752656e-17 5.131070619008849e-24 3.459052388707391e-15 27.99205480183207
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4392105172333323 0.8983841725852191 4.263080506195508e-25 -0.8983841725852191 0.4392105172333323 2.471452999199712e-16 2.220314255896902e-16 -1.08548815392626e-16 1 5.551115123125783e-17 -4.718447854656915e-16 2.681328538198187e-17 6.059165079570917e-24 3.512704502181704e-15 28.42622945545929
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.266930395053358e-16 -2.252493875477764e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6750527163754994 0.7377694966004352 4.901328143087198e-25 -0.7377694966004352 0.6750527163754994 2.471452999943769e-16 1.823362632331495e-16 -1.668361064622469e-16 1 4.440892098500626e-16 -2.775557561562891e-16 1.791253061685161e-17 7.065840933130444e-24 3.562889984287231e-15 28.83235072136345
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.478695886535633e-16 1.245623413457428e-17 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.8579530770455118 0.5137280580113743 5.573181994098402e-25 -0.5137280580113743 0.8579530770455118 2.471453000722636e-16 1.269654745746095e-16 -2.120390709606449e-16 1 -3.885780586188048e-16 -3.747002708109903e-16 7.109020200710465e-18 8.13963760845638e-24 3.609559307767978e-15 29.21001780501242
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 8.928786821822005e-16 4.038344746933538e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.969978021199119 0.2431925952627698 6.269124267518355e-25 -0.2431925952627698 0.969978021199119 2.471453001525387e-16 6.010390634300085e-17 -2.397255093430823e-16 1 1.609823385706477e-15 3.747002708109903e-16 -4.724768503627495e-18 9.265407595661897e-24 3.652666415404338e-15 29.55885799284796
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.246320065031962e-15 -5.716981277731032e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9986713115955811 -0.05153262457862787 6.977932122745361e-25 0.05153262457862787 0.9986713115955811 2.47145300233932e-16 -1.273604667019355e-17 -2.468169211033454e-16 1 -1.332267629550188e-15 -8.326672684688674e-17 -1.654007019781582e-17 1.042451668128885e-23 3.692168765466454e-15 29.87852702011069
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.956657740931853e-16 4.168880108589615e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9387483451798231 -0.3446034596781404 7.686934419859552e-25 0.3446034596781404 0.9387483451798231 2.471453003150238e-16 -8.516712625335988e-17 -2.320072414248045e-16 1 -3.33066907387547e-16 4.440892098500626e-16 -2.721068209664112e-17 1.159524457871406e-23 3.728027373698416e-15 30.16870941058952
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.126982243487942e-16 3.412227181031903e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.7931512289547746 -0.6090247351360457 8.382347601805183e-25 0.6090247351360457 0.7931512289547746 2.471453003942816e-16 -1.505176017775928e-16 -1.960235982276157e-16 1 -8.326672684688674e-17 2.775557561562891e-16 -3.565124735860637e-17 1.275337265417561e-23 3.760206851791823e-15 30.42911878795996
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -6.36418118681068e-17 -6.822565771464487e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5732753409735383 -0.8193627910954179 9.049687935843359e-25 0.8193627910954179 0.5732753409735383 2.471453004701064e-16 -2.025016637180983e-16 -1.416823056555101e-16 1 -9.020562075079397e-16 5.551115123125783e-17 -4.094156943403001e-17 1.387294436403358e-23 3.788675442310754e-15 30.65949815840431
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.497608982022716e-16 4.69715357782504e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.2982673139211223 -0.9544823777557544 9.674248959288981e-25 0.9544823777557544 0.2982673139211223 2.471453005408813e-16 -2.358958343999722e-16 -7.371536401716715e-17 1 -9.089951014118469e-16 -7.216449660063518e-16 -4.244125589818989e-17 1.492718143042979e-23 3.813405050033621e-15 30.85962016423476
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.934990677152997e-16 -7.355067673356874e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.006593120078036072 -0.9999782651476163 1.024160511789492e-24 0.9999782651476163 -0.006593120078036072 2.471453006050281e-16 -2.471399289316497e-16 1.629459667749523e-18 1 -1.457167719820518e-15 -5.551115123125783e-17 -3.987883976876783e-17 1.588948523857722e-23 3.834371269680964e-15 31.02928730826902
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.921684115655746e-16 -7.119196523650799e-16 -0 0 -0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3122939950009791 -0.9499855055138097 1.073814128873464e-24 0.9499855055138097 -0.3122939950009791 2.471453006610615e-16 -2.347844530485153e-16 7.718199430926889e-17 1 -7.494005416219807e-16 1.110223024625157e-16 -3.340177783723137e-17 1.673449765746231e-23 3.851553410001719e-15 31.16833214873701
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.827013682448426e-16 7.887818467551717e-18 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.5890294267798601 -0.8081115853564961 1.115156800498094e-24 0.8081115853564961 -0.5890294267798601 2.47145300707645e-16 -1.997209801114028e-16 1.455758557083314e-16 1 -7.216449660063518e-16 -5.273559366969494e-16 -2.357823702168295e-17 1.743916619928225e-23 3.864934514194198e-15 31.27661746452656
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -7.469226974940239e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8093451505825328 -0.5873333186773396 1.147140056564631e-24 0.5873333186773396 -0.8093451505825328 2.471453007436401e-16 -1.451566687528391e-16 2.000258513198803e-16 1 -4.440892098500626e-16 -2.775557561562891e-17 -1.134780034088092e-17 1.798373542038759e-23 3.87450137664152e-15 31.35403639060472
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.501847724974379e-16 7.919645106607001e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9511176200272496 -0.3088288731218316 1.168937780979013e-24 0.3088288731218316 -0.9511176200272496 2.471453007681516e-16 -7.632560362178708e-17 2.350642506285249e-16 1 3.885780586188048e-16 6.938893903907228e-17 2.074738728390607e-18 1.835262275410227e-23 3.880244555944916e-15 31.40051252348103
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.550474598723962e-16 -6.361577396542083e-17 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.9999999892060515 0.0001469282034757814 1.179979622494947e-24 -0.0001469282034757814 -0.9999999892060515 2.471453007805619e-16 3.631379502077935e-20 2.471452981127149e-16 1 -5.551115123125783e-16 -4.996003610813204e-16 1.533156483447845e-17 1.853511990816857e-23 3.882158384242028e-15 31.41599999660897
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.958554629702577e-16 1.319814913526543e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.9510268724409859 0.3091082138913761 1.17997443808112e-24 -0.3091082138913761 -0.9510268724409859 2.47145300780556e-16 7.639464361811199e-17 2.350418220750792e-16 1 1.110223024625157e-15 8.326672684688674e-17 2.707370589843378e-17 1.852588392319764e-23 3.880240972800948e-15 31.40048352565094
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.234842103292779e-15 9.432804625460909e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8091728646911321 0.5875706553662688 1.168922367376482e-24 -0.5875706553662688 -0.8091728646911321 2.471453007681343e-16 1.452153272888865e-16 1.999832703306782e-16 1 -7.771561172376096e-16 1.110223024625157e-16 3.611318585219426e-17 1.832518301637506e-23 3.874494213884414e-15 31.35397842356202
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.332400495115994e-16 -7.509890848562479e-17 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.5887929867086399 0.8082838726602921 1.147114776037809e-24 -0.8082838726602921 -0.5887929867086399 2.471453007436116e-16 1.997635614702521e-16 1.455174188486418e-16 1 -2.775557561562891e-16 2.775557561562891e-16 4.155583468808196e-17 1.793888532526693e-23 3.864923778882365e-15 31.27653058547801
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.033820977084648e-15 -1.05479681777658e-15 -0 0 0 3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3120170236698309 0.9500765110980379 1.115122337137296e-24 -0.9500765110980379 -0.3120170236698309 2.471453007076061e-16 2.34806945378495e-16 7.711354008132106e-17 1 -2.30891694652513e-15 -2.775557561562891e-16 4.289779633300057e-17 1.737818685687822e-23 3.851539112714656e-15 31.16821644342211
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -9.714644431272357e-16 -1.387751214785834e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.006302887581600313 0.9999801366067896 1.073771382473162e-24 -0.9999801366067896 -0.006302887581600313 2.471453006610134e-16 2.471403915234942e-16 1.557727972637123e-18 1 -1.040834085586084e-15 -2.220446049250313e-16 4.007393453858828e-17 1.665910227644581e-23 3.834353424509486e-15 31.02914289087551
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.131269625100504e-17 -1.589389024928496e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2985428141459751 0.9543962427219639 1.024110517729623e-24 -0.9543962427219639 0.2985428141459751 2.471453006049716e-16 2.358745459980343e-16 -7.37834545229684e-17 1 -7.771561172376096e-16 -2.775557561562891e-16 3.345314469884064e-17 1.58017426066722e-23 3.813383674566776e-15 30.85944717728584
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.30093956331539e-16 1.023179483474696e-15 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5735102937343806 0.819198353868405 9.673689730862889e-25 -0.819198353868405 0.5735102937343806 2.47145300540818e-16 2.024610228145543e-16 -1.417403747007034e-16 1 -3.33066907387547e-16 2.775557561562891e-16 2.37829326431583e-17 1.482942637870048e-23 3.788650557619401e-15 30.65929677261798
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -6.122621307347149e-16 3.082685096389347e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.7933245400799795 0.6087989603365702 9.049081868801021e-25 -0.6087989603365702 0.7933245400799795 2.471453004700376e-16 1.504618012603423e-16 -1.960664323792281e-16 1 -7.216449660063518e-16 3.469446951953614e-16 1.209235834390486e-17 1.376767580661249e-23 3.760178482408849e-15 30.42888920208062
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.817799971566275e-16 3.730695255921212e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.9388455509006726 0.3443385420687215 8.381707576766063e-25 -0.3443385420687215 0.9388455509006726 2.471453003942089e-16 8.510165162996524e-17 -2.320312659897278e-16 1 -6.661338147750939e-16 -1.144917494144693e-16 -4.324498706607375e-19 1.264315695280266e-23 3.727995547595512e-15 30.16845185119179
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.378493568145982e-16 -2.280926339364847e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.9986856746223763 0.05125351991862635 7.686275305002825e-25 -0.05125351991862635 0.9986856746223763 2.471453003149485e-16 1.26670658048698e-17 -2.468204710141791e-16 1 -2.220446049250313e-16 -5.967448757360216e-16 -1.25832199214624e-17 1.148261956055109e-23 3.692133514027475e-15 29.87824174137579
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.119735323907156e-16 -2.890652796074611e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.9699107453220328 -0.2434607691371628 6.977266952764887e-25 0.2434607691371628 0.9699107453220328 2.471453002338558e-16 -6.017018556030218e-17 -2.397088821827876e-16 1 3.885780586188048e-16 1.942890293094024e-16 -2.325771764391642e-17 1.031189292037295e-23 3.652627773395181e-15 29.55854527631286
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.156694711372318e-16 -3.333271873659067e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.8578126838934589 -0.5139624493593874 6.268465137254187e-25 0.5139624493593874 0.8578126838934589 2.471453001524628e-16 -1.270234043517377e-16 -2.12004372913263e-16 1 1.110223024625157e-15 -3.33066907387547e-16 -3.156623866902774e-17 9.154992312479923e-24 3.609517313303006e-15 29.20967795929204
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.033245377877026e-16 1.22893615844198e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6748537242739634 -0.7379515233628571 5.57254141439146e-25 0.7379515233628571 0.6748537242739634 2.471453000721893e-16 -1.823812510563076e-16 -1.667869257792967e-16 1 -1.235123114895487e-15 1.110223024625157e-16 -3.690558145327013e-17 8.033371536420642e-24 3.562844678792215e-15 28.83198408184605
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.853458906882315e-16 -2.493841028450086e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4389716311526659 -0.8985009221159252 4.900714310695324e-25 0.8985009221159252 0.4389716311526659 2.471452999943056e-16 -2.22060280156628e-16 -1.084897750298856e-16 1 -2.151057110211241e-16 -3.33066907387547e-16 -3.899488160234911e-17 6.965345378616397e-24 3.512655930353334e-15 28.42583638397548
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.634588024642916e-17 2.734439410248509e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.1714913549868617 -0.9851856247249907 4.262501432987269e-25 0.9851856247249907 0.1714913549868617 2.471452999199035e-16 -2.434839967725336e-16 -4.238328194196308e-17 1 -2.775557561562891e-17 2.220446049250313e-16 -3.787310750979506e-17 5.965719180536378e-24 3.459000598469372e-15 27.99163568629779
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.674607741568537e-16 5.658385000364213e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1050923994269488 -0.9944624616257201 3.665553622712294e-25 0.9944624616257201 -0.1050923994269488 2.471452998498783e-16 -2.457767232294145e-16 2.5973092932842e-17 1 5.273559366969494e-16 -1.665334536937735e-16 -3.386283514742482e-17 5.045600103726094e-24 3.401931634734758e-15 27.52981049448375
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -9.29727928836145e-16 -4.965440546908951e-16 -0 0 0 3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.3692133239143431 -0.9293446731133301 3.115584698014525e-25 0.9293446731133301 -0.3692133239143431 2.471452997849183e-16 -2.296831677250793e-16 9.124933791294168e-17 1 -6.106226635438361e-16 1.665334536937735e-16 -2.750851723639341e-17 4.212397918668288e-24 3.341505359598255e-15 27.04081657637226
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.6020085676231995 -0.7984896270511369 2.616388340290979e-25 0.7984896270511369 -0.6020085676231995 2.471452997255047e-16 -1.973429580477509e-16 1.487835880914733e-16 1 6.661338147750939e-16 0 -1.949949061793379e-17 3.470002892917057e-24 3.277781406781364e-15 26.5251365121803
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.63532029403361e-16 7.119648161497784e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.7886301113230726 -0.6148679106235405 2.169929799271785e-25 0.6148679106235405 -0.7886301113230726 2.471452996719193e-16 -1.519617138585746e-16 1.949062253266619e-16 1 -1.110223024625157e-16 3.885780586188048e-16 -1.058836505535428e-17 2.819094630142249e-24 3.210822664427068e-15 25.98327921825237
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.23853563967143e-15 1.422737437067265e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.9190227744571864 -0.3942044393826832 1.776503850090514e-25 0.3942044393826832 -0.9190227744571864 2.471452996242593e-16 -9.742577412118167e-17 2.2713215902477e-16 1 -1.165734175856414e-15 -2.099015405931937e-16 -1.514400287493422e-18 2.257561349700586e-24 3.140695213036951e-15 25.41577944481908
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.247034103203959e-16 -1.371357874197727e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9881674897965567 -0.1533786559765471 1.434945813576314e-25 0.1533786559765471 -0.9881674897965567 2.471452995824577e-16 -3.790681373908177e-17 2.442209503254243e-16 1 -2.220446049250313e-16 -1.595945597898663e-16 7.06061895382271e-18 1.780997115524991e-24 3.06746826025793e-15 24.82319724826082
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.114854173503995e-16 -3.178631951957092e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9958459599570025 0.09105396222743997 1.142871342235718e-25 -0.09105396222743997 -0.9958459599570025 2.471452995463079e-16 2.250355888339124e-17 2.461186480651476e-16 1 1.665334536937735e-16 -3.191891195797325e-16 1.459919144793563e-17 1.383223938784321e-24 2.991214072582879e-15 24.2061174383971
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859063 0.2000000152587891 -0.9460241204204921 0.3240962258074508 8.969408273228379e-26 -0.3240962258074508 -0.9460241204204921 2.471452995154897e-16 8.009885888387499e-17 2.338054145611307e-16 1 1.332267629550188e-15 8.326672684688674e-17 2.071558946370513e-17 1.056827192570887e-24 2.912007904032555e-15 23.56514900134726
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.017078598338294e-15 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8459747806022635 0.5332229089086029 6.931224038325774e-26 -0.5332229089086029 -0.8459747806022635 2.471452994895982e-16 1.317835355755678e-16 2.090786904756346e-16 1 -9.71445146547012e-16 2.775557561562891e-17 2.518457156096799e-17 7.936572781323687e-25 2.829927921889151e-15 22.90092449853174
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.460662140100779e-16 -2.295739934210582e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.705265049992492 0.7089437278508696 5.269511960785837e-26 -0.7089437278508696 -0.705265049992492 2.471452994681698e-16 1.752121099629479e-16 1.743029419474703e-16 1 -5.551115123125783e-16 8.326672684688674e-17 2.79338487819498e-17 5.852872628044512e-25 2.745055129554753e-15 22.21409944240751
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 8.801977177587752e-16 -1.237288101484541e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.5347245151996732 0.845026445056292 3.937573323912229e-26 -0.845026445056292 -0.5347245151996732 2.471452994507081e-16 2.088443138282598e-16 1.321546503993844e-16 1 2.775557561562891e-16 -4.163336342344337e-16 2.902412408853429e-17 4.233944668218269e-25 2.657473286610819e-15 21.50535164955334
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.957684334445644e-17 -7.03254338441113e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3454897824508172 0.9384225115703944 2.888783983016057e-26 -0.9384225115703944 -0.3454897824508172 2.471452994367059e-16 2.319267126301912e-16 8.538617570902059e-17 1 -4.484260185400046e-16 5.551115123125783e-17 2.862109647336555e-17 3.000779551806416e-25 2.567268826157549e-15 20.77538057174361
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.104910118332788e-16 -6.038803045435366e-16 -0 0 0 3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1481945756369411 0.9889582234613284 2.078217076949823e-26 -0.9889582234613284 -0.1481945756369411 2.471452994256651e-16 2.444163762599036e-16 3.662559274849848e-17 1 -1.804112415015879e-16 0 2.69637592771818e-17 2.080806019833146e-25 2.474530769514714e-15 20.02490660567055
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.557428781996657e-17 -0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.04765354551629133 0.998863924466054 1.463997650193099e-26 -0.998863924466054 0.04765354551629133 2.471452994171119e-16 2.468645236884167e-16 -1.177734978953414e-17 1 6.938893903907228e-17 0 2.433277736101041e-17 1.409440029988014e-25 2.379350638368145e-15 19.25467038199637
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.709768340874936e-17 5.666713802393522e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2340950261018949 0.9722137207190367 1.008223401440345e-26 -0.9722137207190367 0.2340950261018949 2.471452994106087e-16 2.40278051095848e-16 -5.785548532628917e-17 1 4.996003610813204e-16 -2.220446049250313e-16 2.102187921805799e-17 9.308637567698461e-26 2.28182236444857e-15 18.46543203443685
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.865487866878669e-16 6.217622944684351e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.4049457470962867 0.9143407143448389 6.77513188449066e-27 -0.9143407143448389 0.4049457470962867 2.471452994057612e-16 2.259750096028892e-16 -1.000804379153962e-16 1 6.938893903907228e-16 -5.551115123125783e-17 1.731422349555266e-17 5.981754750587258e-26 2.182042196831934e-15 17.65797044959754
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.338894139846826e-17 8.075433988649381e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5558531681020507 0.8312804914774035 4.432708034050018e-27 -0.8312804914774035 0.5558531681020507 2.471452994022243e-16 2.054470659509471e-16 -1.373764976579411e-16 1 0 6.938893903907228e-17 1.346474303793103e-17 3.730799322106992e-26 2.080108606952749e-15 16.83308249830325
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -9.181148121691951e-17 -8.09664586293451e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.6842142832265812 0.7292810258252547 2.816356691155453e-27 -0.7292810258252547 0.6842142832265812 2.471452993997022e-16 1.802383774721775e-16 -1.6910034388364e-16 1 3.608224830031759e-16 -6.938893903907228e-17 9.688641072180934e-18 2.251902061566531e-26 1.976122191424143e-15 15.99158224917892
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.143300909920175e-16 2.846863479048292e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.7889928186717885 0.6144024186836722 1.732486459285071e-27 -0.6144024186836722 0.7889928186717885 2.471452993979483e-16 1.518466697150328e-16 -1.949958663945347e-16 1 5.551115123125783e-17 3.122502256758253e-16 6.155576655384397e-18 1.3110079383868e-26 1.870185572760617e-15 15.13430016525851
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711188544 0.1600000141857451 0.2000000152587891 0.8704727629305462 0.4922165874856932 2.695834785418964e-22 -0.4922165874856932 0.8704727629305462 2.471462418474368e-16 1.216492451069838e-16 -2.151342046822991e-16 1 4.771599781960845e-12 6.041937783418661e-13 2.988642527335106e-18 1.922410876712597e-21 1.762410018783689e-15 14.26208228463877
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.48804491004299e-17 2.34857678889038e-16 -0 0 0 -1.776356839383505e-15
|
||||
2 0.07099997711186795 0.1600000141858148 0.2000000152587891 0.9299815710353045 0.3676061445823598 1.976450378763417e-22 -0.3676061445823598 0.9299815710353045 2.471460320226673e-16 9.085221617443832e-17 -2.298413277911122e-16 1 2.630784479151771e-12 6.690672321729707e-13 2.670819684729849e-19 1.321829199829054e-21 1.652886635780279e-15 13.37578938454235
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.696001167749661e-17 1.217548994466826e-16 -0 0 0 -1.776356839390611e-15
|
||||
2 0.07099997711185109 0.1600000141858568 0.2000000152587891 0.9696105147790745 0.2446537341424778 1.412605161244557e-22 -0.2446537341424778 0.9696105147790745 2.471458575159661e-16 6.04650199514441e-17 -2.396352566914844e-16 1 1.368516411304199e-12 5.188800777933267e-13 -1.968534790233327e-18 8.812040156107553e-22 1.541732453269853e-15 12.47629613351099
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.165950269955607e-16 6.262801773794691e-17 -0 0 0 0
|
||||
2 0.07099997711183779 0.1600000141858809 0.2000000152587891 0.9919528249257388 0.1266080294525057 9.806414184071936e-23 -0.1266080294525057 0.9919528249257388 2.471457148566485e-16 3.12905346706286e-17 -2.451569024360513e-16 1 6.690203946391193e-13 3.369388101859272e-13 -3.709616100758962e-18 5.670309049315023e-22 1.429057102042785e-15 11.56449022692284
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.97458746710479e-16 -3.789389490254108e-16 -0 0 0 3.552713678794976e-15
|
||||
2 0.07099997711182857 0.160000014185894 0.2000000152587891 0.9998734259342187 0.01591012603873666 6.582129938385458e-23 -0.01591012603873666 0.9998734259342187 2.471456004925201e-16 3.932051840787137e-18 -2.47114319316251e-16 1 3.047562202596055e-13 1.922836889711732e-13 -4.972328518535585e-18 3.502111589839106e-22 1.31497171883483e-15 10.64127151132215
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.043620513551322e-16 -4.14312127170576e-17 -0 0 0 1.776356839398898e-15
|
||||
2 0.07099997711182275 0.1600000141859007 0.2000000152587891 0.9963178644941808 -0.08573629855408552 4.246740828413539e-23 0.08573629855408552 0.9963178644941808 2.471455108588235e-16 -2.11893836163316e-17 -2.46235483957188e-16 1 1.292577156419839e-13 9.757472607674345e-14 -5.790547734580142e-18 2.061272679355263e-22 1.199588837450747e-15 9.70755109637404
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.681814908537195e-17 -3.752812280858717e-16 -0 0 0 1.776356839399636e-15
|
||||
2 0.07099997711181943 0.160000014185904 0.2000000152587891 0.9841628826121166 -0.1772665238803117 2.61384376066376e-23 0.1772665238803117 0.9841628826121166 2.471454424438751e-16 -4.381063919936748e-17 -2.432313664265411e-16 1 4.977962486663046e-14 4.390238173002103e-14 -6.209481912879055e-18 1.145419068739116e-22 1.083022278281928e-15 8.764250455703829
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -6.98343375978785e-17 -2.002851730072679e-17 -0 0 0 0
|
||||
2 0.07099997711181771 0.1600000141859054 0.2000000152587891 0.9661071568652292 -0.2581413594404883 1.519264917958649e-23 0.2581413594404883 0.9661071568652292 2.471453918507354e-16 -6.379846210952812e-17 -2.387689279314058e-16 1 1.749989042565403e-14 1.748601263784622e-14 -6.280274430384851e-18 5.934477051894724e-23 9.653870363277196e-16 7.8123005175089
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.235636125003414e-17 1.109136776743159e-16 -0 0 0 0
|
||||
2 0.07099997711181691 0.160000014185906 0.2000000152587891 0.9445980143137153 -0.3282294797159239 8.223394163184733e-24 0.3282294797159239 0.9445980143137153 2.471453558543668e-16 -8.112039933408748e-17 -2.33453009687731e-16 1 5.322131624296844e-15 6.120104423246175e-15 -6.055729264450343e-18 2.817598294125322e-23 8.467991678363819e-16 6.852640745840014
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.253184036009723e-17 -1.311578468366432e-16 -0 0 0 8.8817841970011e-16
|
||||
2 0.07099997711181658 0.1600000141859063 0.2000000152587891 0.9217883190849413 -0.3876935578502155 4.063015864996721e-24 0.3876935578502155 0.9217883190849413 2.47145331453847e-16 -9.581665660265327e-17 -2.278156780753272e-16 1 1.450228825916611e-15 1.804112415015879e-15 -5.587176120759978e-18 1.195789899915707e-23 7.273756756874963e-16 5.88621821345899
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.406747544878191e-17 1.621113271611974e-16 -0 0 0 -8.881784197001213e-16
|
||||
2 0.07099997711181645 0.1600000141859064 0.2000000152587891 0.8995170111691501 -0.4368857363399716 1.778130524417902e-24 0.4368857363399716 0.8995170111691501 2.471453159192991e-16 -1.079742649278366e-16 -2.223114151233435e-16 1 3.122502256758253e-16 3.677613769070831e-16 -4.922404163005221e-18 4.368854822064454e-24 6.072343936426422e-16 4.913986667187525
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.660845405823347e-17 -3.757943932771984e-17 -0 0 0 0
|
||||
2 0.07099997711181644 0.1600000141859063 0.2000000152587891 0.8793067557599389 -0.4762558443472703 6.567645442680391e-25 0.4762558443472703 0.8793067557599389 2.471453068332912e-16 -1.177043973598518e-16 -2.17316537640088e-16 1 1.700029006457271e-16 9.71445146547012e-17 -4.104538952865552e-18 1.292810001987095e-24 4.864938695955922e-16 3.936905586669714
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.890631208135194e-17 3.739945074649999e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8623726205224888 -0.5062740990542333 1.880190679766873e-25 0.5062740990542333 0.8623726205224888 2.471453021265202e-16 -1.251232653317328e-16 -2.131313417494803e-16 1 4.85722573273506e-17 3.816391647148976e-17 -3.171710555246959e-18 2.778864597520627e-25 3.652732479569297e-16 2.955939237476881
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.501112365586842e-17 -7.369421571976747e-18 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8496364606845588 -0.5273688317254027 3.510439656399653e-26 0.5273688317254027 0.8496364606845588 2.471453001076631e-16 -1.303367282140283e-16 -2.09983658039785e-16 1 -1.561251128379126e-17 -6.938893903907228e-18 -2.157354364519124e-18 3.461388531832044e-26 2.436921513111339e-16 1.972055719489508
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -9.018632734022097e-18 7.30095339980712e-19 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.8417426178770101 -0.5398790283476085 2.735781945258113e-27 0.5398790283476085 0.8417426178770101 2.471452994873131e-16 -1.334285641501921e-16 -2.080327313849716e-16 1 1.908195823574488e-17 1.734723475976807e-18 -1.09099282348637e-18 1.349044592565261e-27 1.218705614865394e-16 0.9862260114948741
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.486382772616557e-21 -3.267170006329515e-21 -0 0 0 0
|
||||
2 0.07099997711189986 0.1600000141858463 0.2000000152587891 0.8390715299939245 -0.5440211094743058 3.698699672044976e-24 0.5440211094743058 0.8390715299939245 2.471460498489037e-16 -1.344526713444662e-16 -2.073732121665036e-16 1 -6.976840979944221e-17 -9.595104523201989e-17 6.40609811634598e-22 -1.067050920156444e-27 -7.130003587242511e-20 -0.0005769870561638793
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.454154352208281e-18 4.322403248858659e-18 -0 0 0 0
|
||||
2 0.07099997711189911 0.1600000141858437 0.2000000152587891 0.841748846860499 -0.5398693164174272 -3.724733511727096e-24 0.5398693164174272 0.841748846860499 2.471460533666498e-16 -1.334265677510281e-16 -2.080349074383702e-16 1 -1.229710777650439e-13 -1.639174906920005e-13 1.092262718919227e-18 1.838862602068991e-24 -1.220134629442967e-16 -0.9873794161971539
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.698111121875436e-17 2.327361786666136e-18 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.8496486238512437 -0.5273492353153532 -2.746419241526953e-27 0.5273492353153532 0.8496486238512437 2.471452994876018e-16 -1.303318846942373e-16 -2.099866636023927e-16 1 -3.469446951953614e-17 -2.081668171172169e-17 2.15857615862153e-18 2.709638601821023e-27 -2.43834468949402e-16 -1.973207416486868
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.726052957133917e-17 -1.047205871707636e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8623901208873519 -0.5062442882600244 -3.518641344623623e-26 0.5062442882600244 0.8623901208873519 2.471453001089961e-16 -1.251158965201444e-16 -2.131356652555509e-16 1 6.591949208711867e-17 -6.938893903907228e-18 3.172854905998034e-18 5.202466179413037e-26 -3.654152117490399e-16 -2.957088090187306
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.934512688784317e-17 -3.813480262872592e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8793286804919167 -0.4762153626924951 -1.883322704079633e-25 0.4762153626924951 0.8793286804919167 2.471453021301626e-16 -1.176943895260557e-16 -2.173219525015787e-16 1 1.387778780781446e-17 -4.85722573273506e-17 4.105569203188194e-18 3.70830963725624e-25 -4.866353355320131e-16 -3.938050461308949
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.048821970582609e-16 1.248365458076158e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.8995421138902375 -0.4368340478235217 -6.576131182459998e-25 0.4368340478235217 0.8995421138902375 2.4714530684099e-16 -1.079614841963853e-16 -2.223176120410633e-16 1 3.469446951953614e-17 -3.469446951953614e-17 4.923278508689941e-18 1.616125777979478e-24 -6.07375215333899e-16 -4.915126433897256
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 8.637165904342269e-18 1.632572186068101e-16 -0 0 0 -8.881784197001211e-16
|
||||
2 0.07099997711181642 0.1600000141859063 0.2000000152587891 0.9218150015229812 -0.3876301110171734 -1.780004401868496e-24 0.3876301110171734 0.9218150015229812 2.471453159332584e-16 -9.580096461174859e-17 -2.278222604733976e-16 1 -2.636779683484747e-16 -3.122502256758253e-16 5.587846931866753e-18 5.239756028833287e-24 -7.275157038133912e-16 -5.887351747421803
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.0250986937989e-16 -6.347144360833909e-17 -0 0 0 8.881784197001098e-16
|
||||
2 0.07099997711181649 0.1600000141859062 0.2000000152587891 0.9446243118732063 -0.3281537892788555 -4.066625439817003e-24 0.3281537892788555 0.9446243118732063 2.471453314766962e-16 -8.11016731852234e-17 -2.334594900133282e-16 1 -2.35228503342455e-15 -1.304512053934559e-15 6.056143048145315e-18 1.393585146062285e-23 -8.469382496904008e-16 -6.853766928389342
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.0709999771118166 0.1600000141859058 0.2000000152587891 0.9661307338164772 -0.2580531053392601 -8.229698141730605e-24 0.2580531053392601 0.9661307338164772 2.47145355889123e-16 -6.377661860640048e-17 -2.38774726168192e-16 1 -8.118505867571457e-15 -4.288236432614667e-15 6.280372616191443e-18 3.215103677240573e-23 -9.65525015475769e-16 -7.813418237233097
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.488044910112502e-17 -2.348576788912182e-16 -0 0 0 1.776356839399995e-15
|
||||
2 0.07099997711181676 0.1600000141859048 0.2000000152587891 0.9841810436092159 -0.1771656665391879 -1.520287436382508e-23 0.1771656665391879 0.9841810436092159 2.471453919007577e-16 -4.378566312580578e-17 -2.432358124175237e-16 1 -2.611799665430681e-14 -1.024180740216707e-14 6.209202644362014e-18 6.662932287920522e-23 -1.083158994353057e-15 -8.765358609542709
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.561123031790621e-16 -5.303698479438597e-18 -0 0 0 0
|
||||
2 0.07099997711181674 0.1600000141859025 0.2000000152587891 0.9963275898775897 -0.08562320741897807 -2.615408897523498e-23 0.08562320741897807 0.9963275898775897 2.471454425128128e-16 -2.116135942888926e-17 -2.462378253274182e-16 1 -7.102651800039439e-14 -1.946359740045978e-14 5.789828837079236e-18 1.269604295271397e-22 -1.199724126075863e-15 -9.708648590707195
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.236402145186486e-16 7.671876319688905e-17 -0 0 0 -1.776356839398896e-15
|
||||
2 0.07099997711181598 0.1600000141858978 0.2000000152587891 0.9998714385663076 0.01603453583184131 -4.249026972353953e-23 -0.01603453583184131 0.9998714385663076 2.471455109505589e-16 3.962906035822578e-18 -2.471137368880286e-16 1 -1.75470749042006e-13 -2.638861351655919e-14 4.971111772526037e-18 2.260983153007305e-22 -1.315105411747196e-15 -10.64235726304801
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.539789395456129e-17 4.435325396007726e-16 -0 0 0 -1.776356839397486e-15
|
||||
2 0.07099997711181304 0.1600000141858893 0.2000000152587891 0.9919356959192321 0.126742160156866 -6.585342393846765e-23 -0.126742160156866 0.9919356959192321 2.471456006111037e-16 3.132383261707925e-17 -2.451525349891465e-16 1 -3.920197499951428e-13 -7.61196661258623e-15 3.707852876613593e-18 3.808159670959108e-22 -1.429189027351313e-15 -11.56556316452677
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.488044910091223e-17 2.348576788905508e-16 -0 0 0 -1.776356839394947e-15
|
||||
2 0.07099997711180503 0.1600000141858751 0.2000000152587891 0.9695748141571352 0.2447951791848785 -9.810783146598132e-23 -0.2447951791848785 0.9695748141571352 2.471457150062295e-16 6.050017471260733e-17 -2.396262366805731e-16 1 -8.026357356527569e-13 9.453895999378403e-14 1.966192985730332e-18 6.120631304460466e-22 -1.541862435913321e-15 -12.47735519812235
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.192192197933708e-16 4.512293190593556e-16 -0 0 0 -1.776356839390605e-15
|
||||
2 0.07099997711178682 0.1600000141858536 0.2000000152587891 0.929924066863787 0.3677515871719862 -1.413182910768841e-22 -0.3677515871719862 0.929924066863787 2.471458577007187e-16 9.08884128477011e-17 -2.298268291315653e-16 1 -1.515815251096342e-12 4.077324415596717e-13 -2.700099055860785e-19 9.451956273256831e-22 -1.65301449816667e-15 -13.3768335309782
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.488044910042944e-17 2.348576788890366e-16 -0 0 0 -1.776356839383494e-15
|
||||
2 0.0709999771117503 0.1600000141858246 0.2000000152587891 0.8703906685947015 0.4923617410230698 -1.977195961341873e-22 -0.4923617410230698 0.8703906685947015 2.471460322467103e-16 1.216854228172255e-16 -2.151135028981773e-16 1 -2.648853358877545e-12 1.17096610185996e-12 -2.992130912129245e-18 1.410048222123025e-21 -1.76253558161507e-15 -14.26311048243446
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.220372622670441e-17 -1.041239035101777e-16 -0 0 0 1.77635683937229e-15
|
||||
2 0.07099997711168374 0.1600000141857915 0.2000000152587891 0.7888840826551536 0.6145420279633743 -2.696776447448892e-22 -0.6145420279633743 0.7888840826551536 2.471462421147525e-16 1.518819655771285e-16 -1.949695707641184e-16 1 -4.276912157763491e-12 2.792883979640948e-12 -6.159558554709766e-18 2.040827565505213e-21 -1.870317667881504e-15 -15.13531140006649
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.737868585473752e-16 -2.234520654410119e-16 -0 0 0 1.77635683940025e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.6840779090263068 0.7294089486578814 -1.733497187319885e-27 -0.7294089486578814 0.6840779090263068 2.471452993979499e-16 1.802699930007818e-16 -1.690666396365657e-16 1 -2.775557561562891e-17 -8.326672684688674e-17 -9.692942716678276e-18 1.386166661131731e-26 -1.976244932821579e-15 -15.99257552246184
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.83768661095919e-16 7.038089916682087e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5556895442270571 0.8313898787191998 -2.817885109159318e-27 -0.8313898787191998 0.5556895442270571 2.471452993997046e-16 2.054741004955066e-16 -1.373360587789387e-16 1 8.326672684688674e-17 4.163336342344337e-17 -1.346923868608883e-17 2.37183850144407e-26 -2.080229007687665e-15 -16.83405683005397
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4047569589494628 0.9144243020512868 -4.434976009152528e-27 -0.9144243020512868 0.4047569589494628 2.471452994022278e-16 2.259956679129336e-16 -1.000337798006448e-16 1 -1.387778780781446e-16 1.942890293094024e-16 -1.731868749791862e-17 3.915826647426581e-26 -2.182160138079963e-15 -17.65892487826368
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.233885113857227 0.9722642405827708 -6.778361283821408e-27 -0.9722642405827708 0.233885113857227 2.471452994057661e-16 2.402905368419341e-16 -5.78036064842057e-17 1 -1.249000902703301e-16 0 -2.102603504274933e-17 6.258585763751941e-26 -2.281937729811846e-15 -18.46636561810818
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.778684616608399e-17 1.386217012809452e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.04742866630058317 0.9988746275749264 -1.008672066080189e-26 -0.9988746275749264 0.04742866630058317 2.471452994106152e-16 2.468671689061504e-16 -1.172177192342842e-17 1 5.551115123125783e-17 1.387778780781446e-16 -2.433630758214383e-17 9.711272173723266e-26 -2.379463313990081e-15 -19.25558219933419
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.122658149674162e-16 -5.489628186307544e-16 -0 0 0 3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1484261256202493 0.9889234981702892 -1.464613947775303e-26 -0.9889234981702892 -0.1484261256202493 2.471452994171207e-16 2.444077940537487e-16 3.668281927222359e-17 1 -2.775557561562891e-16 1.387778780781446e-16 -2.696632258979116e-17 1.466506227871702e-25 -2.474640644192329e-15 -20.02579575681706
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3457177281057454 0.9383385596219532 -2.079037985329319e-26 -0.9383385596219532 -0.3457177281057454 2.471452994256765e-16 2.31905964273238e-16 8.544251144896746e-17 1 1.682681771697503e-16 1.942890293094024e-16 -2.862235194374059e-17 2.159733525552771e-25 -2.567375791451193e-15 -20.77624617920986
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.272977614584906e-16 2.579550902983469e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.5349369790635258 0.8448919625788784 -2.889864968975243e-26 -0.8448919625788784 -0.5349369790635258 2.471452994367204e-16 2.088110770677763e-16 1.32207159894846e-16 1 -9.71445146547012e-17 2.775557561562891e-16 -2.902376198369863e-17 3.107496655064714e-25 -2.657577236951245e-15 -21.50619285908529
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.7054491639128732 0.7087605217099978 -3.938958760877023e-26 -0.7087605217099978 -0.7054491639128732 2.471452994507264e-16 1.751668313490831e-16 1.743484448904294e-16 1 3.885780586188048e-16 -2.498001805406602e-16 -2.793162626186139e-17 4.375182324689039e-25 -2.745155962347386e-15 -22.21491542382898
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.592483257787783e-16 -2.583292696235147e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8461175290293479 0.5329963668443441 -5.271249919967652e-26 -0.5329963668443441 -0.8461175290293479 2.471452994681924e-16 1.31727546654603e-16 2.091139701253407e-16 1 4.718447854656915e-16 -2.220446049250313e-16 -2.518035036173292e-17 6.036033311247121e-25 -2.830025537615528e-15 -22.90171444656387
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.520369897236495e-16 2.625992155061794e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9461133832811314 0.3238355539102077 -6.933382312458652e-26 -0.3238355539102077 -0.9461133832811314 2.471452994896258e-16 8.003443489092947e-17 2.338274754846111e-16 1 3.608224830031759e-16 5.551115123125783e-17 -2.070937160088659e-17 8.16957369651816e-25 -2.912102206348772e-15 -23.56591213640307
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9958716906915961 0.090772108486374 -8.972028462399119e-26 -0.090772108486374 -0.9958716906915961 2.471452995155228e-16 2.243389985017054e-17 2.461250072831487e-16 1 -7.771561172376096e-16 1.110223024625157e-16 -1.459114811892274e-17 1.08592287259767e-24 -2.99130496841498e-15 -24.20685300735086
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.966243501934096e-16 -1.782684848207704e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9881229314593536 -0.1536654558584122 -1.143185392076169e-25 0.1536654558584122 -0.9881229314593536 2.471452995463468e-16 -3.7977695231014e-17 2.442099378665695e-16 1 -2.220446049250313e-16 -1.734723475976807e-16 -7.051107430267629e-18 1.418916270915788e-24 -3.067555659894172e-15 -24.82390452519141
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.256234844888669e-16 5.802331431772321e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9189055885366133 -0.3944775270610231 -1.435315961904186e-25 0.3944775270610231 -0.9189055885366133 2.471452995825031e-16 -9.749326673595354e-17 2.271031969102977e-16 1 2.05391259555654e-15 -1.630640067418199e-16 1.524836712156239e-18 1.824032288221772e-24 -3.140779030216758e-15 -25.41645773172626
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.168270797606144e-16 -2.461915907144609e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.788443275522415 -0.6151074713279666 -1.776933347875551e-25 0.6151074713279666 -0.788443275522415 2.471452996243115e-16 -1.52020920442604e-16 1.948600494564604e-16 1 -2.775557561562891e-16 -2.775557561562891e-17 1.059901791773261e-17 2.308585661911187e-24 -3.210902816426664e-15 -25.98392784574576
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.148333692159955e-16 -2.216772030488966e-16 -0 0 0 3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 -0.6017608955597284 -0.7986762952380355 -2.170420495406736e-25 0.7986762952380355 -0.6017608955597284 2.471452996719785e-16 -1.973890924581172e-16 1.487223766906409e-16 1 -1.609823385706477e-15 5.273559366969494e-16 1.950952985797671e-17 2.878602352527596e-24 -3.277857814495901e-15 -26.52575484013987
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.791720030542219e-16 2.19280748084341e-16 -0 0 0 -3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3689194758118919 -0.9294613603408584 -2.616941282481732e-25 0.9294613603408584 -0.3689194758118919 2.471452997255708e-16 -2.297120065813222e-16 9.11767141808959e-17 1 1.942890293094024e-16 -4.718447854656915e-16 2.751705672241541e-17 3.538288270594798e-24 -3.341577947620376e-15 -27.04140399458013
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.581836221974042e-17 5.520563105898142e-17 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1047722905853205 -0.9944962378639274 -3.116198530406401e-25 0.9944962378639274 -0.1047722905853205 2.471452997849911e-16 -2.457850708745753e-16 2.589397885596448e-17 1 -8.326672684688674e-17 0 3.386901618204119e-17 4.289504536203437e-24 -3.402000331429465e-15 -27.53036642322635
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.634909350599901e-17 -1.640570088687328e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.1718137826667888 -0.9851294453449909 -3.666225140557863e-25 0.9851294453449909 0.1718137826667888 2.471452998499574e-16 -2.434701120978192e-16 -4.246296919670957e-17 1 4.85722573273506e-17 -1.665334536937735e-16 3.787619303933462e-17 5.131278089426922e-24 -3.459065336045096e-15 -27.99215957693797
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.853760020518819e-16 2.618107741096667e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4392702344180534 -0.8983549750261911 -4.263224719829744e-25 0.8983549750261911 0.4392702344180534 2.471452999199881e-16 -2.220242095501907e-16 -1.085635742141622e-16 1 1.838806884535416e-16 2.220446049250313e-16 3.899435095894351e-17 6.059391285435489e-24 -3.512716644929116e-15 -28.42632771949406
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -0 -1.433316761985627e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.675102457124831 -0.7377239811636978 -4.901481970963716e-25 0.7377239811636978 0.675102457124831 2.471452999943948e-16 -1.823250143068611e-16 -1.668483996546635e-16 1 5.551115123125783e-17 -1.665334536937735e-16 3.690121354187086e-17 7.066084888365384e-24 -3.562901310460867e-15 -28.83244237735188
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.475950587971832e-16 -5.2390701895654e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8579881655816222 -0.5136694537558982 -5.573342724507841e-25 0.5136694537558982 0.8579881655816222 2.471453000722821e-16 -1.269509908082805e-16 -2.120477429274224e-16 1 -6.106226635438361e-16 2.775557561562891e-16 3.155817108130694e-17 8.139895565972387e-24 -3.609569806190214e-15 -29.21010276250069
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.171391684937917e-15 -3.567266337932172e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9699948286938956 -0.2431255484458597 -6.269288942232319e-25 0.2431255484458597 0.9699948286938956 2.471453001525577e-16 -6.008733603728943e-17 -2.39729663236404e-16 1 -1.165734175856414e-15 -3.05311331771918e-16 2.324647058621396e-17 9.265675463243026e-24 -3.652676075714446e-15 -29.55893616799287
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.428713521686709e-16 2.130867152197369e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.998667708629552 0.05160240053137191 -6.978098345907e-25 -0.05160240053137191 0.998667708629552 2.47145300233951e-16 1.275329146899865e-17 -2.468160306471939e-16 1 -1.665334536937735e-16 1.804112415015879e-16 1.25696771733093e-17 1.042478988600704e-23 -3.692177578130827e-15 -29.8785983357625
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.497608982022716e-16 4.697153577825041e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9387240319396468 0.3446696851464788 -7.687099341092553e-25 -0.3446696851464788 0.9387240319396468 2.471453003150425e-16 8.518349356662417e-17 -2.320012325217206e-16 1 1.609823385706477e-15 -3.981190377366772e-16 4.177940068564867e-19 1.159551831344817e-23 -3.728035330019968e-15 -30.16877379636792
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.058035825396795e-15 5.022633234004731e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.793107890929232 0.6090811713932598 -8.382506976359941e-25 -0.6090811713932598 0.793107890929232 2.471453003942999e-16 1.505315497333225e-16 -1.96012887438232e-16 1 -1.054711873393899e-15 9.436895709313831e-16 -1.210675310565633e-17 1.275363909194635e-23 -3.760213943918587e-15 -30.42917618032369
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.25029753056483e-16 -2.274302662979991e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5732165951750829 0.819403890041953 -9.049840161346163e-25 -0.819403890041953 0.5732165951750829 2.471453004701236e-16 2.025118211295584e-16 -1.416677869074597e-16 1 4.996003610813204e-16 0 -2.379564022234331e-17 1.387320054661255e-23 -3.788681663243617e-15 -30.65954850071378
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.524921764689108e-16 3.708992720810642e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2981984347402214 0.9545038991635822 -9.674388982099656e-25 -0.9545038991635822 0.2981984347402214 2.471453005408971e-16 2.359011533147305e-16 -7.369834085127292e-17 1 -1.387778780781446e-16 -3.33066907387547e-16 -3.346284419167838e-17 1.492742006085362e-23 -3.813410393633237e-15 -30.85966340680795
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.893814640185311e-16 4.718343030182991e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.006665678326784372 0.9999777841194493 -1.024173034956362e-24 -0.9999777841194493 -0.006665678326784372 2.471453006050422e-16 2.471398100477385e-16 1.64739209795992e-18 1 8.326672684688674e-16 -2.775557561562891e-16 -4.007956529994662e-17 1.588969823102163e-23 -3.834375730673813e-15 -31.0293234084305
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.834338854839815e-16 -4.746017286414946e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3123632338473321 0.949962741448546 -1.073824778495685e-24 -0.949962741448546 -0.3123632338473321 2.471453006610736e-16 2.347788270166953e-16 7.719910636475766e-17 1 1.177877240188252e-15 3.885780586188048e-16 -4.289869061690073e-17 1.673467909547051e-23 -3.851556983985314e-15 -31.16836107086012
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.14675299221626e-16 3.588545028459838e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.589088529023516 0.8080685026486987 -1.115165354708534e-24 -0.8080685026486987 -0.589088529023516 2.471453007076546e-16 1.997103324225657e-16 1.455904625500768e-16 1 2.775557561562891e-16 -1.665334536937735e-16 -4.155180911360796e-17 1.743931213854972e-23 -3.864937197641429e-15 -31.27663918006856
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.471327797420056e-16 1.48966063175661e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.8093882112283647 0.5872739765429319 -1.147146355125922e-24 -0.5872739765429319 -0.8093882112283647 2.471453007436472e-16 1.451420026231338e-16 2.00036493556086e-16 1 -8.326672684688674e-17 5.551115123125783e-16 -3.610457767382333e-17 1.798384250825548e-23 -3.874503166904128e-15 -31.35405087813486
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.172560689266117e-16 3.034147475189111e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.951140294116784 0.3087590337260396 -1.168941669816757e-24 -0.3087590337260396 -0.951140294116784 2.471453007681561e-16 7.630834314327978e-17 2.350698544231263e-16 1 1.054711873393899e-15 5.551115123125783e-17 -2.70613471574052e-17 1.835268793373456e-23 -3.880245451256117e-15 -31.40051976870179
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.165734204167883e-15 -1.942890245908244e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.999999975713616 -0.0002203923035953472 -1.17998091831779e-24 0.0002203923035953472 -0.999999975713616 2.471453007805634e-16 -5.447010214268299e-20 2.471452947780377e-16 1 1.110223024625157e-15 -2.220446049250313e-16 -1.531669592542279e-17 1.85351402604814e-23 -3.882158383718255e-15 -31.41599999237019
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.837109112930014e-17 -3.959350234082891e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9510041727383998 -0.3091780448773035 -1.179973131530246e-24 0.3091780448773035 -0.9510041727383998 2.471453007805547e-16 -7.641190201810438e-17 2.350362119501726e-16 1 5.551115123125783e-17 -1.040834085586084e-17 -2.058871423105145e-18 1.852585907407913e-23 -3.880240076442713e-15 -31.40047627195678
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.497608982022716e-16 -4.697153577825039e-16 -0 0 0 3.5527136788005e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.8091297823931768 -0.5876299815737539 -1.16891853400552e-24 0.5876299815737539 -0.8091297823931768 2.471453007681299e-16 -1.452299894822229e-16 1.999726227431216e-16 1 -1.054711873393899e-15 -6.938893903907228e-17 1.136305317837411e-17 1.832511458269153e-23 -3.874492422576321e-15 -31.35396392757104
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.030111992876222e-16 8.413342247908329e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.5887338689192838 -0.8083269336025687 -1.147108440498664e-24 0.8083269336025687 -0.5887338689192838 2.471453007436045e-16 -1.997742037797041e-16 1.455028081647636e-16 1 1.665334536937735e-16 2.775557561562891e-17 2.359134309044357e-17 1.793877389866407e-23 -3.86492109439223e-15 -31.27650886149608
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3119477768536245 -0.9500992498239756 -1.115113659667339e-24 0.9500992498239756 -0.3119477768536245 2.471453007075964e-16 -2.348125651476654e-16 7.709642605608655e-17 1 1.082467449009528e-15 -2.775557561562891e-16 3.341145503286626e-17 1.737803618444532e-23 -3.851535537691762e-15 -31.16818751288827
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.110244573019807e-16 -3.746929983689471e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.006230329585248837 -0.9999805913082809 -1.073760683547135e-24 0.9999805913082809 -0.006230329585248837 2.471453006610013e-16 -2.471405039007408e-16 1.539795604823612e-18 1 -1.110223024625157e-16 -2.775557561562891e-16 3.988419241090425e-17 1.665891728856354e-23 -3.83434896248197e-15 -31.02910678234084
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.724741670364178e-17 -3.311152382188834e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2986116850745803 -0.9543746966139242 -1.024098019214656e-24 0.9543746966139242 0.2986116850745803 2.471453006049575e-16 -2.358692209786057e-16 -7.380047564928328e-17 1 -4.85722573273506e-17 -4.440892098500626e-16 4.244186126371991e-17 1.580152764207553e-23 -3.813378329938147e-15 -30.85940392638528
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.065970408129135e-16 -8.185024999806753e-16 -0 0 0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.57356902431392 -0.8191572342032865 -9.673549584792696e-25 0.8191572342032865 0.57356902431392 2.471453005408022e-16 -2.024508602824987e-16 -1.417548896873742e-16 1 -1.387778780781446e-17 -1.110223024625157e-16 4.093750560937722e-17 1.482918695941574e-23 -3.788644335664194e-15 -30.65924642203514
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.760495484406942e-16 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.7933678576153267 -0.6087425091965131 -9.048930506114832e-25 0.6087425091965131 0.7933678576153267 2.471453004700203e-16 -1.504478496263333e-16 -1.960771381044431e-16 1 2.498001805406602e-16 5.551115123125783e-17 3.564306171305968e-17 1.37674194268183e-23 -3.760171389267413e-15 -30.42883180150566
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.731686915424235e-16 6.99333863350653e-17 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 0.9388698405200568 -0.3442723087351682 -8.381547462654206e-25 0.3442723087351682 0.9388698405200568 2.471453003941907e-16 -8.508528237283651e-17 -2.320372690549289e-16 1 -6.106226635438361e-16 3.885780586188048e-16 2.719930762939588e-17 1.264288854287966e-23 -3.727987590267964e-15 -30.16838745727242
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.216568091193674e-16 -3.586170863846249e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9986892531697714 -0.05118374354425657 -7.686110530140503e-25 0.05118374354425657 0.9986892531697714 2.471453003149297e-16 -1.264982090188404e-17 -2.468213554352764e-16 1 4.996003610813204e-16 -3.33066907387547e-16 1.652670342918145e-17 1.148234602303221e-23 -3.692124700366781e-15 -29.87817041766134
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.073142195882103e-17 7.402990070730701e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.9698939148791349 0.2435278092547652 -6.977100490787936e-25 -0.2435278092547652 0.9698939148791349 2.471453002338369e-16 6.018675421026225e-17 -2.397047226178634e-16 1 0 9.020562075079397e-17 4.710726601486928e-18 1.031161977728452e-23 -3.652618112099404e-15 -29.55846709319154
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.482877791283106e-16 -8.332838628813192e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8577775758551209 0.5140210407756789 -6.268300462540222e-25 -0.5140210407756789 0.8577775758551209 2.47145300152444e-16 1.270378849448576e-16 -2.119956961265458e-16 1 1.387778780781446e-15 -7.632783294297951e-17 -7.122444154601268e-18 9.154725283063505e-24 -3.609506813906731e-15 -29.20959299392154
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.418647458752874e-16 1.133534352703825e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.6748039689746335 0.7379970213056973 -5.572380807241536e-25 -0.7379970213056973 0.6748039689746335 2.471453000721708e-16 1.823924956589913e-16 -1.667746289908876e-16 1 -2.220446049250313e-16 -3.05311331771918e-16 -1.792419683437621e-17 8.033114170550313e-24 -3.562833351657131e-15 -28.8318924180773
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.149515836487304e-16 -1.496353206877888e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.4389119052994778 0.8985300993213206 -4.900560482818805e-25 -0.8985300993213206 0.4389119052994778 2.471452999942878e-16 2.220674911657564e-16 -1.084750140659737e-16 1 -1.02695629777827e-15 -8.326672684688674e-17 -2.682230741268802e-17 6.965102015027137e-24 -3.512643786658016e-15 -28.42573811227002
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.916250028843467e-16 6.015835233257313e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.1714268679700477 0.985196847811634 -4.262356972834001e-25 -0.985196847811634 0.1714268679700477 2.471452999198866e-16 2.434867705056014e-16 -4.236734427885816e-17 1 1.02695629777827e-15 -5.551115123125783e-17 -3.31908002332865e-17 5.965494749608842e-24 -3.458987650198233e-15 -27.99153090363832
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.1051564191135741 0.9944556940956245 -3.665419269839373e-25 -0.9944556940956245 -0.1051564191135741 2.471452998498626e-16 2.457750506661221e-16 2.59889150974718e-17 1 -4.579669976578771e-16 7.771561172376096e-16 -3.668605154648219e-17 5.045394605460284e-24 -3.401917894666247e-15 -27.52969930427864
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -6.047966308348034e-16 -1.289692415118436e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.369272088340539 0.9293213248239907 -3.115462424574216e-25 -0.9293213248239907 -0.369272088340539 2.471452997849038e-16 2.296773973050838e-16 9.126386126464656e-17 1 -6.418476861114186e-16 -1.665334536937735e-16 -3.724910879816265e-17 4.212213916862146e-24 -3.341490841292223e-15 -27.04069908835329
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.6020580943950197 0.7984522847192796 -2.616277776504731e-25 -0.7984522847192796 -0.6020580943950197 2.471452997254914e-16 1.973337290659347e-16 1.487958284003126e-16 1 -2.081668171172169e-16 -5.551115123125783e-17 -3.507833061572256e-17 3.469840190355355e-24 -3.277766124565693e-15 -26.52501284229451
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.7886674691893988 0.6148199923899587 -2.169831191658633e-25 -0.6148199923899587 -0.7886674691893988 2.471452996719074e-16 1.519498710923686e-16 1.949154581477043e-16 1 -3.608224830031759e-16 2.498001805406602e-16 -3.057945732092493e-17 2.818952437964083e-24 -3.210806633383531e-15 -25.98314948854759
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.624049659680013e-16 -7.397510338817329e-16 -0 0 0 3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9190462015273687 0.3941498185438059 -1.776417999837313e-25 -0.3941498185438059 -0.9190462015273687 2.471452996242488e-16 9.741227483759118e-17 2.271379489150267e-16 1 2.775557561562891e-17 -2.775557561562891e-17 -2.430185243207685e-17 2.257440358159248e-24 -3.140678448986323e-15 -25.41564378332344
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.932274258228907e-16 6.719714114979893e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.988176391322766 0.1533212954299425 -1.434871827051571e-25 -0.1533212954299425 -0.988176391322766 2.471452995824485e-16 3.789263734961158e-17 2.442231502957675e-16 1 7.771561172376096e-16 -2.775557561562891e-17 -1.686990930063228e-17 1.780895155252991e-24 -3.067450779744388e-15 -24.82305578885651
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.131729699042534e-16 -1.796608758474004e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.9958408043315811 -0.09111033107298899 -1.142808664771608e-25 0.09111033107298899 -0.9958408043315811 2.471452995463e-16 -2.251749017860197e-17 2.461173738765447e-16 1 6.106226635438361e-16 -1.804112415015879e-16 -8.917693713813283e-18 1.383139604623172e-24 -2.991195892857654e-15 -24.20597032068811
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.334176335906229e-16 2.440586055623631e-16 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859064 0.2000000152587891 -0.9460062595769479 -0.3241483562217033 -8.968883803985922e-26 0.3241483562217033 -0.9460062595769479 2.47145299515483e-16 -8.011174267071056e-17 2.338010003375941e-16 1 -4.996003610813204e-16 5.984795992119984e-16 -1.033127814120716e-18 1.056758561672133e-24 -2.911989043036926e-15 -23.56499637052169
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.640504728354368e-16 -2.934965549168495e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.8459462242291508 -0.5332682117963187 -6.93079509520856e-26 0.5332682117963187 -0.8459462242291508 2.471452994895927e-16 -1.317947319713115e-16 2.090716329022439e-16 1 -1.665334536937735e-16 -2.081668171172169e-17 6.284194439635089e-18 7.936026495146822e-25 -2.829908398236724e-15 -22.90076650521845
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 7.438230514780187e-16 -1.327045784324202e-15 -0 0 0 7.105427357601003e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.7052282223104954 -0.7089803625325447 -5.269160671163982e-26 0.7089803625325447 -0.7052282223104954 2.471452994681653e-16 -1.752211640523138e-16 1.742938401589719e-16 1 -5.551115123125783e-17 1.52655665885959e-16 1.264975587097336e-17 5.852440726698903e-25 -2.745034962513107e-15 -22.2139362425276
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.299133337213438e-16 9.381976690086406e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.5346820193671026 -0.8450533345094364 -3.937300920380894e-26 0.8450533345094364 -0.5346820193671026 2.471452994507044e-16 -2.088509594302029e-16 1.321441477541176e-16 1 -2.775557561562891e-16 2.775557561562891e-17 1.780566979396801e-17 4.233621235247128e-25 -2.657452496082477e-15 -21.50518340416612
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -5.915262876691923e-17 -4.948915333929736e-16 -0 0 -0 3.552713678800501e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3454441920130731 -0.9384392948957514 -2.888564581076792e-26 0.9384392948957514 -0.3454441920130731 2.471452994367029e-16 -2.319308605501572e-16 8.537490824663343e-17 1 -4.996003610813204e-16 2.220446049250313e-16 2.161887347738255e-17 3.000527116316745e-25 -2.567247432660343e-15 -20.77520744688772
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.613054268626121e-16 4.323264329532095e-16 -0 0 0 -3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1481482658990488 -0.9889651618288203 -2.078051909197792e-26 0.9889651618288203 -0.1481482658990488 2.471452994256629e-16 -2.444180910448115e-16 3.661414751446191e-17 1 1.02695629777827e-15 -3.33066907387547e-16 2.406883478030722e-17 2.080620637520419e-25 -2.474508794161548e-15 -20.02472877220017
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.922256000961623e-17 -6.338197681079518e-16 -0 0 -0 3.552713678800501e-15
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.04769851979178234 -0.9988617778299823 -1.463874390676659e-26 0.9988617778299823 0.04769851979178234 2.471452994171103e-16 -2.468639931573998e-16 -1.178846497031509e-17 1 8.326672684688674e-17 -1.665334536937735e-16 2.522812475433748e-17 1.40930789578639e-25 -2.379328102846134e-15 -19.25448801541243
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.984729884437248e-16 1.349203542797767e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.2341370059679022 -0.972203611614556 -1.00812972420785e-26 0.972203611614556 0.2341370059679022 2.471452994106073e-16 -2.402755526781929e-16 -5.786586045284143e-17 1 -3.122502256758253e-16 1.387778780781446e-16 2.523920002324373e-17 9.307671213089566e-26 -2.28179929099766e-15 -18.46524531471405
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.40167653538154e-16 2.537758871569992e-17 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4049835014298259 -0.9143239926687029 -6.77446628310188e-27 0.9143239926687029 0.4049835014298259 2.471452994057602e-16 -2.259708769192331e-16 -1.000897687214615e-16 1 -4.77048955893622e-16 2.775557561562891e-17 2.429035935522099e-17 5.981123661863081e-26 -2.182018608222938e-15 -17.65777956100655
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.64439117942789e-17 -1.961125204691343e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.5558858891567192 -0.8312586109246891 -4.432202670032611e-27 0.8312586109246891 0.5558858891567192 2.471452994022236e-16 -2.05441658275195e-16 -1.373845845127929e-16 1 -4.579669976578771e-16 -1.942890293094024e-16 2.259322552436314e-17 3.730335866325175e-26 -2.080084526464888e-15 -16.83288762922896
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6842415541797042 -0.7292554391526627 -2.816097846170927e-27 0.7292554391526627 0.6842415541797042 2.471452993997018e-16 -1.802320538463189e-16 -1.691070837715139e-16 1 1.942890293094024e-16 1.665334536937735e-16 2.036338766933471e-17 2.251665403294965e-26 -1.976097642822056e-15 -15.99138359193443
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.290795765247618e-16 -6.569866001539757e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.7890145620375612 -0.6143744956398137 -1.732239940252189e-27 0.6143744956398137 0.7890145620375612 2.471452993979479e-16 -1.518397686659982e-16 -1.95001240165178e-16 1 6.245004513516506e-16 -8.326672684688674e-17 1.780513058609061e-17 1.310791001637864e-26 -1.87016058027092e-15 -15.13409791589545
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.583150050143346e-16 -4.428349716439694e-17 -0 0 0 0
|
||||
2 0.07099997711187146 0.1600000141857399 0.2000000152587891 0.8704891781815094 -0.4921875563937801 -2.695646481609186e-22 0.4921875563937801 0.8704891781815094 2.471462417939799e-16 -1.216420701673762e-16 -2.151382615862556e-16 1 -3.974445772492174e-12 -2.707362112275291e-12 1.510059881389857e-17 1.922248879639063e-21 -1.762384606592972e-15 -14.2618766427538
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.134410761334674e-16 -3.183509339255792e-16 -0 0 0 1.776356839383506e-15
|
||||
2 0.07099997711183845 0.1600000141858036 0.2000000152587891 0.9299930686008253 -0.3675770563493056 -1.976301288982714e-22 0.3675770563493056 0.9299930686008253 2.471460319778646e-16 -9.084502712818478e-17 -2.29844169315913e-16 1 -2.414429767227944e-12 -1.240799130108883e-12 1.240292892966295e-17 1.321708854414101e-21 -1.652860829547022e-15 -13.37558055308012
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.701094610089063e-17 -1.118459834798946e-16 -0 0 0 0
|
||||
2 0.07099997711182325 0.1600000141858463 0.2000000152587891 0.9696176520636093 -0.2446254459508526 -1.412489633427806e-22 0.2446254459508526 0.9696176520636093 2.471458574790209e-16 -6.045802864322316e-17 -2.396370205991463e-16 1 -1.369002133877473e-12 -5.172529071728604e-13 9.833580238855367e-18 8.811169883524318e-22 -1.541706278446027e-15 -12.47608431856395
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.296886690992601e-16 1.408691783724049e-16 -0 0 0 -1.776356839394952e-15
|
||||
2 0.07099997711181724 0.1600000141858731 0.2000000152587891 0.9919562483599452 -0.1265812045276181 -9.805540570847664e-23 0.1265812045276181 0.9919562483599452 2.471457148267368e-16 -3.128390500993517e-17 -2.451577484897381e-16 1 -7.240735788727193e-13 -1.904726376622534e-13 7.482061801491291e-18 5.669698696662557e-22 -1.4290305844451e-15 -11.5642756375277
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.025881899552284e-16 3.437602126958221e-16 -0 0 0 -1.776356839397488e-15
|
||||
2 0.07099997711181549 0.1600000141858891 0.2000000152587891 0.9998738215260226 -0.015885245574038 -6.581487593332612e-23 0.015885245574038 0.9998738215260226 2.471456004688074e-16 -3.925902749418573e-18 -2.471144170595754e-16 1 -3.554379013337439e-13 -5.831446436843635e-14 5.408149781951902e-18 3.501698362279423e-22 -1.3149448846195e-15 -10.6410543592538
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.179197522321523e-16 -2.825651905295211e-16 -0 0 0 1.776356839398898e-15
|
||||
2 0.07099997711181538 0.160000014185898 0.2000000152587891 0.9963159180091615 0.08575891511418363 -4.246283714333843e-23 -0.08575891511418363 0.9963159180091615 2.471455108404799e-16 2.119497319142083e-17 -2.46235002873309e-16 1 -1.610239719340711e-13 -1.241368119409003e-14 3.645449763188432e-18 2.061004203180272e-22 -1.199561713087799e-15 -9.707331595936264
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.141851874168068e-16 4.985813713174285e-17 -0 0 0 0
|
||||
2 0.07099997711181573 0.1600000141859026 0.2000000152587891 0.9841592494480838 0.1772866935948227 -2.613530823856742e-23 -0.1772866935948227 0.9841592494480838 2.471454424300904e-16 4.381562404676567e-17 -2.4323046849307e-16 1 -6.668277041654846e-14 -1.700029006457271e-16 2.205702871281422e-18 1.145252973582484e-22 -1.082994890529227e-15 -8.764028823518135
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.601009163018898e-16 -1.00429822580174e-16 -0 0 0 0
|
||||
2 0.07099997711181605 0.1600000141859048 0.2000000152587891 0.9661024409124401 0.2581590084870664 -1.519060478492085e-23 -0.2581590084870664 0.9661024409124401 2.471453918407332e-16 6.380282398543155e-17 -2.387677623960024e-16 1 -2.475797344914099e-14 1.455432996344541e-15 1.083290431681574e-18 5.9335086906209e-23 -9.653594122045839e-16 -7.812076972300464
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.999288806544291e-17 -1.046028510494041e-17 -0 0 0 0
|
||||
2 0.07099997711181626 0.1600000141859058 0.2000000152587891 0.9445927545927201 0.3282446160578074 -8.222133785325319e-24 -0.3282446160578074 0.9445927545927201 2.471453558474175e-16 8.112414020717375e-17 -2.33451709765839e-16 1 -8.021361352916756e-15 9.293781022545744e-16 2.595300375864073e-19 2.81707385199996e-23 -8.467713345969451e-16 -6.852415508222007
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.744022455056726e-17 1.17428839445624e-16 -0 0 0 -8.8817841970011e-16
|
||||
2 0.07099997711181637 0.1600000141859062 0.2000000152587891 0.9217829826899484 0.3877062455303272 -4.062294309950452e-24 -0.3877062455303272 0.9217829826899484 2.471453314492784e-16 9.581979230110177e-17 -2.278143592062348e-16 1 -2.206568261442499e-15 3.512815038853034e-16 -2.935108716129102e-19 1.195531488804679e-23 -7.273476607937647e-16 -5.885991505714832
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.0709999771118164 0.1600000141859063 0.2000000152587891 0.899511990967221 0.4368960724316322 -1.777755969562318e-24 -0.4368960724316322 0.899511990967221 2.471453159165083e-16 1.079768194429102e-16 -2.223101744015866e-16 1 -3.05311331771918e-16 8.413408858487514e-17 -6.098405354830549e-19 4.367731927869679e-24 -6.072062247372896e-16 -4.913758713051384
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -1.872011227528393e-17 -5.871441972281295e-17 -0 0 0 4.440892098500622e-16
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 0.8793023713549678 0.476263939144599 -6.565948775436582e-25 -0.476263939144599 0.8793023713549678 2.47145306831752e-16 1.177063979501362e-16 -2.173154540536982e-16 1 -2.081668171172169e-17 5.204170427930421e-18 -7.270683001574816e-19 1.292400854348222e-24 -4.864655744745757e-16 -3.936676611105908
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.268047045845784e-17 1.495971959402441e-18 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.8623691211419575 0.5062800597503795 -1.879564891201904e-25 -0.5062800597503795 0.8623691211419575 2.471453021257922e-16 1.251247384893596e-16 -2.131304768934244e-16 1 -1.249000902703301e-16 5.204170427930421e-18 -6.846176913450815e-19 2.777723830695968e-25 -3.652448545418729e-16 -2.955709466457674
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.143816735121579e-17 -2.358208153333492e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8496340288491824 0.5273727496007986 -3.508799072235827e-26 -0.5273727496007986 0.8496340288491824 2.471453001073967e-16 1.303376964983643e-16 -2.099830570228833e-16 1 -2.42861286636753e-17 -2.168404344971009e-17 -5.225629009396299e-19 3.459369540952744e-26 -2.436636876215966e-16 -1.971825379772246
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.576093340161985e-19 -1.168150816272765e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8417413729405704 0.5398809693628064 -2.733612577768755e-27 -0.5398809693628064 0.8417413729405704 2.471452994872554e-16 1.334290438629415e-16 -2.08032423704735e-16 1 -1.734723475976807e-18 -1.257674520083185e-17 -2.809901339648992e-19 1.347664085981124e-27 -1.218420556121314e-16 -0.9859953303980555
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.570339910915933e-21 1.433457512750797e-20 -0 0 0 -1.084202172475526e-19
|
||||
2 0.07099997711179371 0.1600000141858063 0.2000000152587891 0.8390715308747451 0.5440211081157713 -3.693506945832663e-24 -0.5440211081157713 0.8390715308747451 2.471460491463412e-16 1.344526706221439e-16 -2.073732117975197e-16 1 1.618476674295627e-16 -3.588476256866525e-17 2.355644375615666e-22 -1.491773990833742e-27 9.982004974674196e-20 0.0008077818770846388
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.76558669140068e-17 -1.606486951306288e-17 -0 0 0 1.110223024614804e-16
|
||||
2 0.07099997711179591 0.1600000141858045 0.2000000152587891 0.8417500935173949 0.5398673726605979 3.729955487422659e-24 -0.5398673726605979 0.8417500935173949 2.47146054071186e-16 1.334260877351549e-16 -2.080352161405572e-16 1 2.011169009108471e-13 -4.14742025445225e-14 2.814296482629109e-19 1.841870855338317e-24 1.22041969214048e-16 0.9876100969744472
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -4.440674236688713e-17 -1.326518671910762e-17 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.849651057282462 0.5273453146267579 2.74852697925809e-27 -0.5273453146267579 0.849651057282462 2.471452994876596e-16 1.303309157145089e-16 -2.099872650135302e-16 1 -3.816391647148976e-17 -1.214306433183765e-17 5.229040514677609e-19 2.712029836439974e-27 2.438629325597341e-16 1.973437755565411
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8623936216526488 0.5062383246385324 3.520280696192285e-26 -0.5062383246385324 0.8623936216526488 2.471453001092628e-16 1.251144226392418e-16 -2.131365304534789e-16 1 1.665334536937735e-16 0 6.84795856214004e-19 5.205294985315353e-26 3.654436050448781e-16 2.957317860249138
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.8793330659795834 0.4762072648279799 1.883949601980251e-25 -0.4762072648279799 0.8793330659795834 2.471453021308915e-16 1.176923881771746e-16 -2.173230363549223e-16 1 -6.245004513516506e-17 6.245004513516506e-17 7.270177444996542e-19 3.709760155245715e-25 4.866636304933422e-16 3.938279435597756
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.785322665969157e-18 1.82574467296014e-16 -0 0 0 -8.881784197001246e-16
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.899547134776556 0.4368237085086942 6.577829821856069e-25 -0.4368237085086942 0.899547134776556 2.471453068425305e-16 1.079589288837666e-16 -2.223188529310063e-16 1 1.457167719820518e-16 -3.469446951953614e-18 6.094959217682127e-19 1.616618224399563e-24 6.074033840384862e-16 4.915354386441944
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 6.993571586023902e-17 9.114889272498687e-17 -0 0 0 -8.881784197001211e-16
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.9218203381029824 0.3876174199642004 1.780379381969412e-24 -0.3876174199642004 0.9218203381029824 2.471453159360512e-16 9.579782807817945e-17 -2.278235793868452e-16 1 6.661338147750939e-16 -9.194034422677078e-17 2.928086922205799e-19 5.241061642935234e-24 7.275437184645796e-16 5.887578453259712
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.723058299778668e-16 -1.832668394016454e-17 -0 0 0 0
|
||||
2 0.07099997711181646 0.1600000141859062 0.2000000152587891 0.9446295711757575 0.3281386494460907 4.067347672790611e-24 -0.3281386494460907 0.9446295711757575 2.471453314812676e-16 8.109793144703267e-17 -2.334607898298943e-16 1 2.831068712794149e-15 3.985527186056714e-16 -2.606490848212872e-19 1.393878451942417e-23 8.469660826447143e-16 6.853992163788132
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 9.315478060205355e-17 3.012021908110027e-18 -0 0 0 0
|
||||
2 0.07099997711181663 0.1600000141859058 0.2000000152587891 0.9661354486439117 0.2580354527456013 8.230959407058535e-24 -0.2580354527456013 0.9661354486439117 2.471453558960763e-16 6.377225585039514e-17 -2.387758914227942e-16 1 9.076073226310655e-15 2.211772431870429e-15 -1.084877985609506e-18 3.215688415456187e-23 9.65552639270349e-16 7.813641779911581
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181719 0.160000014185905 0.2000000152587891 0.9841846748437302 0.1771454933176148 1.520492002498225e-23 -0.1771454933176148 0.9841846748437302 2.471453919107644e-16 4.378067740675833e-17 -2.43236709870305e-16 1 2.604860771526774e-14 9.270362255620057e-15 -2.207798294327595e-18 6.663997326563471e-23 1.083186381732888e-15 8.765580238890225
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 4.183007015804334e-16 -2.270643064345041e-16 -0 0 0 1.776356839399635e-15
|
||||
2 0.07099997711181871 0.1600000141859033 0.2000000152587891 0.9963295335456426 0.08560058752556712 2.615722011978294e-23 -0.08560058752556712 0.9963295335456426 2.471454425266033e-16 2.115576902333261e-17 -2.462383057095355e-16 1 6.647460359943125e-14 3.272035420387454e-14 -3.64807439707625e-18 1.269784998467991e-22 1.19975125002075e-15 9.708868088001305
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.587734344517831e-16 -3.880899053489052e-17 -0 0 0 0
|
||||
2 0.07099997711182235 0.1600000141859003 0.2000000152587891 0.999871039210695 -0.01605941928355301 4.249484315927462e-23 0.01605941928355301 0.999871039210695 2.471455109689093e-16 -3.969055874060656e-18 -2.471136382062991e-16 1 1.484090628167678e-13 9.654776977896518e-14 -5.411300228703149e-18 2.261272652140532e-22 1.315132245498458e-15 10.64257441167038
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.730187726962172e-16 -6.555548092535417e-17 -0 0 0 0
|
||||
2 0.0709999771118302 0.1600000141858959 0.2000000152587891 0.9919322677507172 -0.1267689875124018 6.585985029830589e-23 0.1267689875124018 0.9919322677507172 2.471456006348245e-16 -3.133046288913178e-17 -2.45151687753328e-16 1 2.986916269875906e-13 2.537553500658873e-13 -7.485702555292567e-18 3.808601956302679e-22 1.429215544438182e-15 11.56577775017692
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -7.488044910091222e-17 -2.348576788905508e-16 -0 0 0 1.776356839394947e-15
|
||||
2 0.07099997711184565 0.1600000141858905 0.2000000152587891 0.9695676711931233 -0.2448234690080662 9.811657115117963e-23 0.2448234690080662 0.9695676711931233 2.471457150361505e-16 -6.050716643628473e-17 -2.396244713517203e-16 1 5.381944889748524e-13 6.027123244933819e-13 -9.837636196603884e-18 6.121280456620258e-22 1.541888610178996e-15 12.47756700902916
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.925531968688588e-16 1.241828009195294e-17 -0 0 0 0
|
||||
2 0.07099997711187356 0.1600000141858864 0.2000000152587891 0.9299125627617139 -0.3677806759713479 1.41329848258924e-22 0.3677806759713479 0.9299125627617139 2.471458577376743e-16 -9.089560204668184e-17 -2.298239859663956e-16 1 8.664458039930878e-13 1.309785613301528e-12 -1.240727853240352e-17 9.452876833504102e-22 1.653040303794014e-15 13.37704235810891
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.170710780227686e-16 -1.108168335891761e-16 -0 0 0 0
|
||||
2 0.07099997711192013 0.1600000141858889 0.2000000152587891 0.8703742461139579 -0.4923907713407711 1.977345102398535e-22 0.4923907713407711 0.8703742461139579 2.471460322915248e-16 -1.216925975768603e-16 -2.151094441731438e-16 1 1.209213285058297e-12 2.632491447052132e-12 -1.510506879803238e-17 1.410174913776049e-21 1.762560993151917e-15 14.26331611970094
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.216743355616223e-16 -5.565242941833616e-17 -0 0 0 1.776356839372287e-15
|
||||
2 0.07099997711199191 0.1600000141859082 0.2000000152587891 0.7888623316165242 -0.6145699486279337 2.69696480980694e-22 0.6145699486279337 0.7888623316165242 2.471462421682221e-16 -1.518888661063059e-16 -1.949641950997334e-16 1 1.354402701103652e-12 4.925337915295813e-12 -1.780956353339717e-17 2.040997383986711e-21 1.870342660265552e-15 15.13551364452863
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 0 0 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.6840506302997089 -0.7294345311174752 1.733608120884682e-27 0.7294345311174752 0.6840506302997089 2.471452993979502e-16 -1.802763155854177e-16 -1.690598978275136e-16 1 -5.689893001203927e-16 4.996003610813204e-16 -2.036735923021891e-17 1.386255407983569e-26 1.976269480783741e-15 15.99277417452781
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 2.837611951766004e-16 2.307631177984473e-16 -0 0 0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.5556568157323232 -0.831411753062353 2.818205583902065e-27 0.831411753062353 0.5556568157323232 2.471452993997051e-16 -2.054795066365949e-16 -1.373279700853087e-16 1 2.775557561562891e-16 2.498001805406602e-16 -2.259649683112617e-17 2.372134324283528e-26 2.08025308750193e-15 16.83425169367726
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.035250513315983e-16 -1.39594602128013e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.4047191980250813 -0.9144410154569484 4.435419743411715e-27 0.9144410154569484 0.4047191980250813 2.471452994022285e-16 -2.259997985525805e-16 -1.000244473656826e-16 1 3.139849491518021e-16 -1.665334536937735e-16 -2.429258317749182e-17 3.916280242447083e-26 2.182183725982352e-15 17.65911576113655
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -3.711118028860653e-16 6.071857638073726e-16 -0 0 0 -3.552713678800502e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 0.2338431288263919 -0.9722743394231298 6.779002233306902e-27 0.9722743394231298 0.2338431288263919 2.47145299405767e-16 -2.40293032722859e-16 -5.779323008118894e-17 1 2.081668171172169e-17 -1.387778780781446e-16 -2.524002195813586e-17 6.259236573998749e-26 2.281960802523836e-15 18.46655233185137
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -8.986624070680973e-17 5.822123895721448e-16 -0 0 0 -3.552713678800503e-15
|
||||
2 0.07099997711181641 0.1600000141859063 0.2000000152587891 0.04738368889101496 -0.9988767621819418 1.008768208503013e-26 0.9988767621819418 0.04738368889101496 2.471452994106165e-16 -2.468676964642411e-16 -1.171065596807304e-17 1 9.020562075079397e-16 -2.498001805406602e-16 -2.522721173502341e-17 9.712277971377423e-26 2.379485848741587e-15 19.25576455968292
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 3.0873316143493e-16 -4.734771026850007e-16 -0 0 -0 3.5527136788005e-15
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.1484724358742776 -0.9889165464211621 1.464739672482073e-26 0.9889165464211621 -0.1484724358742776 2.471452994171224e-16 -2.4440607596163e-16 3.66942646338229e-17 1 -1.52655665885959e-16 2.498001805406602e-16 -2.406590970004146e-17 1.466644278530116e-25 2.474662618744172e-15 20.02597358380287
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 1.479000953334919e-16 1.367292182636386e-16 -0 0 -0 0
|
||||
2 0.07099997711181641 0.1600000141859064 0.2000000152587891 -0.3457633159284645 -0.9383217621680491 2.07920315308135e-26 0.9383217621680491 -0.3457633159284645 2.471452994256788e-16 -2.319018128614639e-16 8.545377826506556e-17 1 8.326672684688674e-17 1.387778780781446e-16 -2.161375384598452e-17 2.159920880017761e-25 2.567397184117041e-15 20.77641929733813
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 -2.87545424504972e-16 4.156016662338282e-17 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.5349794687749437 -0.8448650590415484 2.89007944053385e-26 0.8448650590415484 -0.5349794687749437 2.471452994367233e-16 -2.088044279849871e-16 1.322176610272999e-16 1 -3.05311331771918e-16 3.33066907387547e-16 -1.779830715171195e-17 3.107756979163437e-25 2.657598026619023e-15 21.50636109750855
|
||||
1 -0.1322131193924678 0.04215394533365132 0.2000000152587891 1 0 0 0 1 0 0 0 1 5.446811336632661e-16 2.449518267721526e-16 -0 0 0 0
|
||||
2 0.07099997711181642 0.1600000141859064 0.2000000152587891 -0.7054859817975437 -0.7087238739362149 3.939234862193848e-26 0.7087238739362149 -0.7054859817975437 2.471452994507299e-16 -1.751577740240565e-16 1.743575442575645e-16 1 -1.110223024625157e-16 6.106226635438361e-16 -1.264027156351292e-17 4.375521534878284e-25 2.745176128500113e-15 22.21507861651548
|
||||
200
testapp/MBDynCase(Sine-forever drive)debug1.asmt
Normal file
200
testapp/MBDynCase(Sine-forever drive)debug1.asmt
Normal file
@@ -0,0 +1,200 @@
|
||||
OndselSolver
|
||||
Assembly
|
||||
Notes
|
||||
(Text string: '' runs: (Core.RunArray runs: #() values: #()))
|
||||
Name
|
||||
Assembly
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
Marker0
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Parts
|
||||
Part
|
||||
Name
|
||||
structural_node_1
|
||||
Position3D
|
||||
-0.1322131193924678 0.04215394533365132 0.2000000152587891
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
1
|
||||
MomentOfInertias
|
||||
1 2 3
|
||||
Density
|
||||
10
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
Marker0
|
||||
Position3D
|
||||
0.1322131193924678 -0.04215394533365132 -0.2000000152587891
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
Marker1
|
||||
Position3D
|
||||
0.2032130965042842 0.117846068852255 -2.842170943040401e-17
|
||||
RotationMatrix
|
||||
1 -0 0
|
||||
0 1 2.471452993948174e-16
|
||||
-0 -2.471452993948174e-16 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Part
|
||||
Name
|
||||
structural_node_2
|
||||
Position3D
|
||||
0.4257698614077033 0.1732822793381788 0.302175885912376
|
||||
RotationMatrix
|
||||
-0.8995965927692124 0.4234982246408653 -0.1066546951805642
|
||||
-0.4367218454325635 -0.8723574602808865 0.2196963614042295
|
||||
1.387778780781446e-17 0.2442165334663419 0.969720725148062
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
-0.003947705364974695 0.01042661386112648 -1.13686837721616e-16
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
12.63583350443436
|
||||
MomentOfInertias
|
||||
0.08708924866282601 0.085370944710882 0.06459712318937701
|
||||
Density
|
||||
10
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
Marker0
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
KinematicIJs
|
||||
ConstraintSets
|
||||
Joints
|
||||
FixedJoint
|
||||
Name
|
||||
joint_1
|
||||
MarkerI
|
||||
/Assembly/Marker0
|
||||
MarkerJ
|
||||
/Assembly/structural_node_1/Marker0
|
||||
Motions
|
||||
GeneralMotion
|
||||
Name
|
||||
joint_2
|
||||
MarkerI
|
||||
/Assembly/structural_node_1/Marker1
|
||||
MarkerJ
|
||||
/Assembly/structural_node_2/Marker0
|
||||
GeneralConstraintSets
|
||||
ForceTorques
|
||||
ConstantGravity
|
||||
0 0 0
|
||||
SimulationParameters
|
||||
tstart
|
||||
0
|
||||
tend
|
||||
4
|
||||
hmin
|
||||
1e-09
|
||||
hmax
|
||||
1
|
||||
hout
|
||||
0.01
|
||||
errorTol
|
||||
1e-06
|
||||
AnimationParameters
|
||||
nframe
|
||||
1000000
|
||||
icurrent
|
||||
1
|
||||
istart
|
||||
1
|
||||
iend
|
||||
1000000
|
||||
isForward
|
||||
true
|
||||
framesPerSecond
|
||||
30
|
||||
274
testapp/MBDynCase(Sine-forever drive)debug2.asmt
Normal file
274
testapp/MBDynCase(Sine-forever drive)debug2.asmt
Normal file
File diff suppressed because one or more lines are too long
655
testapp/MBDynCaseBird.mbd
Normal file
655
testapp/MBDynCaseBird.mbd
Normal file
@@ -0,0 +1,655 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Data Block]
|
||||
|
||||
begin: data;
|
||||
problem: initial value;
|
||||
end: data;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Problem Block]
|
||||
|
||||
begin: initial value;
|
||||
initial time: 0.0;
|
||||
final time: 46.0;
|
||||
time step: 0.1;
|
||||
max iterations: 100;
|
||||
tolerance: 0.0001;
|
||||
derivatives tolerance: 0.0001;
|
||||
derivatives max iterations: 100;
|
||||
derivatives coefficient: auto;
|
||||
end: initial value;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Control Data Block]
|
||||
|
||||
begin: control data;
|
||||
max iterations: 1000;
|
||||
default orientation: orientation matrix;
|
||||
omega rotates: no;
|
||||
print: none;
|
||||
initial stiffness: 1.0, 1.0;
|
||||
structural nodes: 10;
|
||||
rigid bodies: 9;
|
||||
joints: 12;
|
||||
end: control data;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Design Variables]
|
||||
|
||||
#Generic bodies
|
||||
|
||||
#body: 2
|
||||
set: integer body_2 = 2; #body label
|
||||
set: real mass_2 = 0.0097198376573862; #mass [kg]
|
||||
set: real volume_2 = 1.2303591971374963e-06; #volume [m^3]
|
||||
|
||||
#body: 3
|
||||
set: integer body_3 = 3; #body label
|
||||
set: real mass_3 = 0.0002016932293236; #mass [kg]
|
||||
set: real volume_3 = 2.5530788521977774e-08; #volume [m^3]
|
||||
|
||||
#body: 4
|
||||
set: integer body_4 = 4; #body label
|
||||
set: real mass_4 = 0.00094063969244025; #mass [kg]
|
||||
set: real volume_4 = 1.1906831549876583e-07; #volume [m^3]
|
||||
|
||||
#body: 5
|
||||
set: integer body_5 = 5; #body label
|
||||
set: real mass_5 = 0.0002016932293236; #mass [kg]
|
||||
set: real volume_5 = 2.553078852197781e-08; #volume [m^3]
|
||||
|
||||
#body: 6
|
||||
set: integer body_6 = 6; #body label
|
||||
set: real mass_6 = 0.0007849031279947; #mass [kg]
|
||||
set: real volume_6 = 9.935482632844295e-08; #volume [m^3]
|
||||
|
||||
#body: 7
|
||||
set: integer body_7 = 7; #body label
|
||||
set: real mass_7 = 0.0002016932293236; #mass [kg]
|
||||
set: real volume_7 = 2.5530788521977788e-08; #volume [m^3]
|
||||
|
||||
#body: 8
|
||||
set: integer body_8 = 8; #body label
|
||||
set: real mass_8 = 0.0002016932293236; #mass [kg]
|
||||
set: real volume_8 = 2.5530788521977784e-08; #volume [m^3]
|
||||
|
||||
#body: 9
|
||||
set: integer body_9 = 9; #body label
|
||||
set: real mass_9 = 0.0014283808500322; #mass [kg]
|
||||
set: real volume_9 = 1.8080770253572263e-07; #volume [m^3]
|
||||
|
||||
#body: 10
|
||||
set: integer body_10 = 10; #body label
|
||||
set: real mass_10 = 0.0124600761051829; #mass [kg]
|
||||
set: real volume_10 = 1.5772248234408773e-06; #volume [m^3]
|
||||
|
||||
#Nodes
|
||||
|
||||
#node: 1
|
||||
set: integer structural_node_1 = 1; #node label
|
||||
|
||||
#node: 2
|
||||
set: integer structural_node_2 = 2; #node label
|
||||
|
||||
#node: 3
|
||||
set: integer structural_node_3 = 3; #node label
|
||||
|
||||
#node: 4
|
||||
set: integer structural_node_4 = 4; #node label
|
||||
|
||||
#node: 5
|
||||
set: integer structural_node_5 = 5; #node label
|
||||
|
||||
#node: 6
|
||||
set: integer structural_node_6 = 6; #node label
|
||||
|
||||
#node: 7
|
||||
set: integer structural_node_7 = 7; #node label
|
||||
|
||||
#node: 8
|
||||
set: integer structural_node_8 = 8; #node label
|
||||
|
||||
#node: 9
|
||||
set: integer structural_node_9 = 9; #node label
|
||||
|
||||
#node: 10
|
||||
set: integer structural_node_10 = 10; #node label
|
||||
|
||||
#Joints
|
||||
|
||||
#joint: 1
|
||||
set: integer joint_1 = 1; #joint label
|
||||
|
||||
#joint: 2_3
|
||||
set: integer joint_2 = 2; #joint label
|
||||
|
||||
set: integer joint_3 = 3; #joint label
|
||||
|
||||
#joint: 4_5
|
||||
set: integer joint_4 = 4; #joint label
|
||||
|
||||
set: integer joint_5 = 5; #joint label
|
||||
|
||||
#joint: 6_7
|
||||
set: integer joint_6 = 6; #joint label
|
||||
|
||||
set: integer joint_7 = 7; #joint label
|
||||
|
||||
#joint: 8_9
|
||||
set: integer joint_8 = 8; #joint label
|
||||
|
||||
set: integer joint_9 = 9; #joint label
|
||||
|
||||
#joint: 10_11
|
||||
set: integer joint_10 = 10; #joint label
|
||||
|
||||
set: integer joint_11 = 11; #joint label
|
||||
|
||||
#joint: 12_13
|
||||
set: integer joint_12 = 12; #joint label
|
||||
|
||||
set: integer joint_13 = 13; #joint label
|
||||
|
||||
#joint: 14_15
|
||||
set: integer joint_14 = 14; #joint label
|
||||
|
||||
set: integer joint_15 = 15; #joint label
|
||||
|
||||
#joint: 16_17
|
||||
set: integer joint_16 = 16; #joint label
|
||||
|
||||
set: integer joint_17 = 17; #joint label
|
||||
|
||||
#joint: 18_19
|
||||
set: integer joint_18 = 18; #joint label
|
||||
|
||||
set: integer joint_19 = 19; #joint label
|
||||
|
||||
#joint: 20_21
|
||||
set: integer joint_20 = 20; #joint label
|
||||
|
||||
set: integer joint_21 = 21; #joint label
|
||||
|
||||
#joint: 22
|
||||
set: integer joint_22 = 22; #joint label
|
||||
|
||||
#Nodes: initial conditions
|
||||
|
||||
#node: 1
|
||||
set: real Px_1 = 0.051296215921961506; #X component of the absolute position [m]
|
||||
set: real Py_1 = 0.017908175538920625; #Y component of the absolute position [m]
|
||||
set: real Pz_1 = 0.021903828027305762; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_1 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_1 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_1 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_1 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_1 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_1 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 2
|
||||
set: real Px_2 = 0.020036506082326072; #X component of the absolute position [m]
|
||||
set: real Py_2 = 0.020006856008332005; #Y component of the absolute position [m]
|
||||
set: real Pz_2 = 0.041903827363678814; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_2 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_2 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_2 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_2 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_2 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_2 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 3
|
||||
set: real Px_3 = 0.029205905393734976; #X component of the absolute position [m]
|
||||
set: real Py_3 = 0.020259710981056347; #Y component of the absolute position [m]
|
||||
set: real Pz_3 = 0.04653684954817832; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_3 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_3 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_3 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_3 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_3 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_3 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 4
|
||||
set: real Px_4 = 0.03045167648190976; #X component of the absolute position [m]
|
||||
set: real Py_4 = 0.024261418527537274; #Y component of the absolute position [m]
|
||||
set: real Pz_4 = 0.055928344834759586; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_4 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_4 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_4 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_4 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_4 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_4 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 5
|
||||
set: real Px_5 = 0.05563913952652191; #X component of the absolute position [m]
|
||||
set: real Py_5 = 0.019678705691307384; #Y component of the absolute position [m]
|
||||
set: real Pz_5 = 0.0465542507758631; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_5 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_5 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_5 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_5 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_5 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_5 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 6
|
||||
set: real Px_6 = 0.05688760071336628; #X component of the absolute position [m]
|
||||
set: real Py_6 = 0.019381009534592798; #Y component of the absolute position [m]
|
||||
set: real Pz_6 = 0.051385443253078825; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_6 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_6 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_6 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_6 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_6 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_6 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 7
|
||||
set: real Px_7 = 0.05481778281233034; #X component of the absolute position [m]
|
||||
set: real Py_7 = 0.009829679963252255; #Y component of the absolute position [m]
|
||||
set: real Pz_7 = 0.06555548828993542; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_7 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_7 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_7 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_7 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_7 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_7 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 8
|
||||
set: real Px_8 = 0.042515789893180646; #X component of the absolute position [m]
|
||||
set: real Py_8 = 0.024552230242874045; #Y component of the absolute position [m]
|
||||
set: real Pz_8 = 0.06421420666448795; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_8 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_8 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_8 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_8 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_8 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_8 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 9
|
||||
set: real Px_9 = 0.054526611833130866; #X component of the absolute position [m]
|
||||
set: real Py_9 = 0.017471169090787612; #Y component of the absolute position [m]
|
||||
set: real Pz_9 = 0.05863255536975865; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_9 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_9 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_9 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_9 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_9 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_9 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 10
|
||||
set: real Px_10 = 0.09251606523223796; #X component of the absolute position [m]
|
||||
set: real Py_10 = 0.04383786289542596; #Y component of the absolute position [m]
|
||||
set: real Pz_10 = 0.17087647695874514; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_10 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_10 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_10 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_10 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_10 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_10 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Intermediate Variables]
|
||||
|
||||
#Moments of inertia and relative center of mass
|
||||
|
||||
#body 2:
|
||||
set: real Ixx_2 = 2.7489439610000006e-06; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_2 = 2.744127568e-06; #moment of inertia [kg*m^2]
|
||||
set: real Izz_2 = 2.87678026e-07; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_2 = -0.00012202234401964418; #X component of the relative center of mass [m]
|
||||
set: real Ry_2 = 0.00010912443891739087; #Y component of the relative center of mass [m]
|
||||
set: real Rz_2 = 0.030385870620870174; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 3:
|
||||
set: real Ixx_3 = 4.19727e-10; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_3 = 4.13881e-10; #moment of inertia [kg*m^2]
|
||||
set: real Izz_3 = 3.50681e-10; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_3 = 3.552713678800501e-18; #X component of the relative center of mass [m]
|
||||
set: real Ry_3 = 7.105427357601002e-18; #Y component of the relative center of mass [m]
|
||||
set: real Rz_3 = 0.0015000011045973665; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 4:
|
||||
set: real Ixx_4 = 8.2552788e-08; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_4 = 8.158085100000001e-08; #moment of inertia [kg*m^2]
|
||||
set: real Izz_4 = 2.8500040000000003e-09; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_4 = -0.011708133331376342; #X component of the relative center of mass [m]
|
||||
set: real Ry_4 = 0.006203395204739124; #Y component of the relative center of mass [m]
|
||||
set: real Rz_4 = -0.0006994637391446616; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 5:
|
||||
set: real Ixx_5 = 4.19727e-10; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_5 = 4.13881e-10; #moment of inertia [kg*m^2]
|
||||
set: real Izz_5 = 3.50681e-10; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_5 = 3.552713678800501e-18; #X component of the relative center of mass [m]
|
||||
set: real Ry_5 = -7.105427357601002e-18; #Y component of the relative center of mass [m]
|
||||
set: real Rz_5 = 0.001500001104597331; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 6:
|
||||
set: real Ixx_6 = 3.532959e-08; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_6 = 3.3955384999999996e-08; #moment of inertia [kg*m^2]
|
||||
set: real Izz_6 = 2.808292e-09; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_6 = 0.005958423993341263; #X component of the relative center of mass [m]
|
||||
set: real Ry_6 = 0.007075286815075088; #Y component of the relative center of mass [m]
|
||||
set: real Rz_6 = -0.0006999999999983686; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 7:
|
||||
set: real Ixx_7 = 4.19727e-10; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_7 = 4.13881e-10; #moment of inertia [kg*m^2]
|
||||
set: real Izz_7 = 3.50681e-10; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_7 = 4.00016020307703e-11; #X component of the relative center of mass [m]
|
||||
set: real Ry_7 = -1.1038728615631043e-09; #Y component of the relative center of mass [m]
|
||||
set: real Rz_7 = -0.0007000000000000242; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 8:
|
||||
set: real Ixx_8 = 4.19727e-10; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_8 = 4.13881e-10; #moment of inertia [kg*m^2]
|
||||
set: real Izz_8 = 3.50681e-10; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_8 = -1.1045973558054812e-09; #X component of the relative center of mass [m]
|
||||
set: real Ry_8 = -7.105427357601002e-18; #Y component of the relative center of mass [m]
|
||||
set: real Rz_8 = -0.0007000000000000312; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 9:
|
||||
set: real Ixx_9 = 5.0332796e-08; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_9 = 4.7497486e-08; #moment of inertia [kg*m^2]
|
||||
set: real Izz_9 = 9.388439e-09; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_9 = 0.0009481098328082354; #X component of the relative center of mass [m]
|
||||
set: real Ry_9 = 0.0009120272923143915; #Y component of the relative center of mass [m]
|
||||
set: real Rz_9 = 0.013326150133030701; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 10:
|
||||
set: real Ixx_10 = 1.0698233404000002e-05; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_10 = 9.651757376000001e-06; #moment of inertia [kg*m^2]
|
||||
set: real Izz_10 = 1.0517916220000001e-06; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_10 = -0.008980752288228672; #X component of the relative center of mass [m]
|
||||
set: real Ry_10 = -0.015243524654396726; #Y component of the relative center of mass [m]
|
||||
set: real Rz_10 = -0.05566314823715192; #Z component of the relative center of mass [m]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Nodes Block]
|
||||
|
||||
begin: nodes;
|
||||
|
||||
structural: structural_node_1,
|
||||
static,
|
||||
Px_1, Py_1, Pz_1, #<absolute_position> [m]
|
||||
3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<absolute_orientation_matrix>
|
||||
Vx_1, Vy_1, Vz_1, #<absolute_velocity> [m/s]
|
||||
Wx_1, Wy_1, Wz_1; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_2,
|
||||
dynamic,
|
||||
Px_2, Py_2, Pz_2, #<absolute_position> [m]
|
||||
3, 1.0, -2.220446049250313e-16, 2.220446049250313e-16, 2, -2.220446049250313e-16, 0.0, 1.0, #<absolute_orientation_matrix>
|
||||
Vx_2, Vy_2, Vz_2, #<absolute_velocity> [m/s]
|
||||
Wx_2, Wy_2, Wz_2; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_3,
|
||||
dynamic,
|
||||
Px_3, Py_3, Pz_3, #<absolute_position> [m]
|
||||
3, 0.979619048522896, -0.18399559321644432, -0.08057382607289298, 2, 0.07918912690662278, -0.01487358826213736, 0.9967486436168225, #<absolute_orientation_matrix>
|
||||
Vx_3, Vy_3, Vz_3, #<absolute_velocity> [m/s]
|
||||
Wx_3, Wy_3, Wz_3; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_4,
|
||||
dynamic,
|
||||
Px_4, Py_4, Pz_4, #<absolute_position> [m]
|
||||
3, 0.20003936377712567, 0.8573429391601034, 0.4742861347456384, 2, -0.10776811512755485, -0.4618802560987123, 0.880370752801365, #<absolute_orientation_matrix>
|
||||
Vx_4, Vy_4, Vz_4, #<absolute_velocity> [m/s]
|
||||
Wx_4, Wy_4, Wz_4; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_5,
|
||||
dynamic,
|
||||
Px_5, Py_5, Pz_5, #<absolute_position> [m]
|
||||
3, 0.979619048522896, -0.18399559321644432, -0.08057382607289298, 2, 0.07918912690662255, -0.014873588262137583, 0.9967486436168225, #<absolute_orientation_matrix>
|
||||
Vx_5, Vy_5, Vz_5, #<absolute_velocity> [m/s]
|
||||
Wx_5, Wy_5, Wz_5; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_6,
|
||||
dynamic,
|
||||
Px_6, Py_6, Pz_6, #<absolute_position> [m]
|
||||
3, 0.18033925140217938, 0.9823029733067711, -0.05058283341588399, 2, 0.00913376272378734, 0.04975135591001112, 0.9987198691142684, #<absolute_orientation_matrix>
|
||||
Vx_6, Vy_6, Vz_6, #<absolute_velocity> [m/s]
|
||||
Wx_6, Wy_6, Wz_6; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_7,
|
||||
dynamic,
|
||||
Px_7, Py_7, Pz_7, #<absolute_position> [m]
|
||||
3, -0.6039065235318068, -0.6931799981295375, 0.3934442794461013, 2, 0.2584477771028243, 0.29665324461308473, 0.9193484643872194, #<absolute_orientation_matrix>
|
||||
Vx_7, Vy_7, Vz_7, #<absolute_velocity> [m/s]
|
||||
Wx_7, Wy_7, Wz_7; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_8,
|
||||
dynamic,
|
||||
Px_8, Py_8, Pz_8, #<absolute_position> [m]
|
||||
3, 0.6479179469743502, 0.64791794697435, 0.4005055155389079, 2, -0.28320016594017605, -0.28320016594017594, 0.9162943479160578, #<absolute_orientation_matrix>
|
||||
Vx_8, Vy_8, Vz_8, #<absolute_velocity> [m/s]
|
||||
Wx_8, Wy_8, Wz_8; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_9,
|
||||
dynamic,
|
||||
Px_9, Py_9, Pz_9, #<absolute_position> [m]
|
||||
3, 0.7071067811865506, -0.7071067811865448, -6.661338147750939e-16, 2, 3.3306690738754696e-16, -6.661338147750939e-16, 1.0000000000000002, #<absolute_orientation_matrix>
|
||||
Vx_9, Vy_9, Vz_9, #<absolute_velocity> [m/s]
|
||||
Wx_9, Wy_9, Wz_9; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_10,
|
||||
dynamic,
|
||||
Px_10, Py_10, Pz_10, #<absolute_position> [m]
|
||||
3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<absolute_orientation_matrix>
|
||||
Vx_10, Vy_10, Vz_10, #<absolute_velocity> [m/s]
|
||||
Wx_10, Wy_10, Wz_10; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
end: nodes;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Elements Block]
|
||||
|
||||
begin: elements;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Bodies]
|
||||
|
||||
body: body_2,
|
||||
structural_node_2, #<node_label>
|
||||
mass_2, #<mass> [kg]
|
||||
Rx_2, Ry_2, Rz_2, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_2, Iyy_2, Izz_2, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, -0.009999999999999778, -0.01000000000000022, 1.0000000000000002, 2, 0.96, 0.2899999999999999, 0.009999999999999837;
|
||||
|
||||
body: body_3,
|
||||
structural_node_3, #<node_label>
|
||||
mass_3, #<mass> [kg]
|
||||
Rx_3, Ry_3, Rz_3, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_3, Iyy_3, Izz_3, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, -0.4754428894286995, 0.8826943462104969, -0.0021794631707106465, 2, 0.882139650757323, 0.47151840197579287, -0.0001820987158225526;
|
||||
|
||||
body: body_4,
|
||||
structural_node_4, #<node_label>
|
||||
mass_4, #<mass> [kg]
|
||||
Rx_4, Ry_4, Rz_4, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_4, Iyy_4, Izz_4, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, -0.8842459963929752, 0.4676495429566993, -0.0035948345420598604, 2, -0.22399138681464692, -0.43669907856092416, 0.8738545493483976;
|
||||
|
||||
body: body_5,
|
||||
structural_node_5, #<node_label>
|
||||
mass_5, #<mass> [kg]
|
||||
Rx_5, Ry_5, Rz_5, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_5, Iyy_5, Izz_5, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, 0.05592620134211661, 1.0032807215079327, 0.00023206456551014276, 2, 0.996385478617406, -0.05015950583454379, 4.443868565056925e-05;
|
||||
|
||||
body: body_6,
|
||||
structural_node_6, #<node_label>
|
||||
mass_6, #<mass> [kg]
|
||||
Rx_6, Ry_6, Rz_6, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_6, Iyy_6, Izz_6, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, 0.6467296595054439, 0.7607355333973596, -0.004711235783428892, 2, -0.27386535051478694, 0.23755682393098726, 0.934165148777899;
|
||||
|
||||
body: body_7,
|
||||
structural_node_7, #<node_label>
|
||||
mass_7, #<mass> [kg]
|
||||
Rx_7, Ry_7, Rz_7, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_7, Iyy_7, Izz_7, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, 1.000008238972704, 0.031176155531257854, 0.0034013692834091638, 2, -0.0008565874526685241, 0.0012135039337075049, -0.9940813818124443;
|
||||
|
||||
body: body_8,
|
||||
structural_node_8, #<node_label>
|
||||
mass_8, #<mass> [kg]
|
||||
Rx_8, Ry_8, Rz_8, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_8, Iyy_8, Izz_8, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, -5.773159728050814e-17, 1.0015828930092718, 0.005631023990159245, 2, 2.331468351712829e-16, -0.0016424765558055165, 1.0024955372822186;
|
||||
|
||||
body: body_9,
|
||||
structural_node_9, #<node_label>
|
||||
mass_9, #<mass> [kg]
|
||||
Rx_9, Ry_9, Rz_9, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_9, Iyy_9, Izz_9, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, 0.09899494936612065, 0.029999999999999128, -0.9899494936611659, 2, 0.8980256121069149, 0.40999999999999986, 0.10606601717798556;
|
||||
|
||||
body: body_10,
|
||||
structural_node_10, #<node_label>
|
||||
mass_10, #<mass> [kg]
|
||||
Rx_10, Ry_10, Rz_10, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_10, Iyy_10, Izz_10, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, 0.26, 0.28, 0.92, 2, 0.92, 0.22, -0.33;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Joints]
|
||||
|
||||
joint: joint_1,
|
||||
clamp,
|
||||
structural_node_1, #<node_label>
|
||||
0.051296215921961506, 0.017908175538920625, 0.021903828027305762, #<absolute_pin_position> [m]
|
||||
3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<absolute_orientation_matrix>
|
||||
|
||||
joint: joint_2,
|
||||
axial rotation,
|
||||
structural_node_1, #<node_1_label>
|
||||
position, -0.03125970983963543, 0.004098680469401038, 0.009999999336380188, #<relative_position_1> [m]
|
||||
orientation, 3, 1.0, -2.220446049250313e-16, 2.220446049250313e-16, 2, -2.220446049250313e-16, 0.0, 1.0, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_2, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<relative_pin_orientation_matrix_2>
|
||||
string, "model::drive(1, Time)"; #<angular_velocity> [rad/s]
|
||||
|
||||
joint: joint_4,
|
||||
revolute hinge,
|
||||
structural_node_2, #<node_1_label>
|
||||
position, 0.0019304158516275792, 0.0018133779158601797, 0.008805714272156564, #<relative_position_1> [m]
|
||||
orientation, 3, -0.1839955932187977, -0.08057382607097904, 0.9796190485226113, 2, -0.014873588261971882, 0.9967486436169771, 0.07918912690470653, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_3, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<relative_pin_orientation_matrix_2>
|
||||
|
||||
joint: joint_6,
|
||||
revolute hinge,
|
||||
structural_node_3, #<node_1_label>
|
||||
position, 0.0006156748634029441, 0.00033308326672734266, 0.0015, #<relative_position_1> [m]
|
||||
orientation, 3, 0.8795355191470654, 0.4758332381819309, 1.1102230246251565e-15, 2, -0.47383616552500607, 0.8758441075449799, -0.09152260660239489, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_4, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<relative_pin_orientation_matrix_2>
|
||||
|
||||
joint: joint_8,
|
||||
revolute hinge,
|
||||
structural_node_2, #<node_1_label>
|
||||
position, -0.0030374651652239457, -0.00036211538810186286, 0.03525542858227387, #<relative_position_1> [m]
|
||||
orientation, 3, -0.18399559321349285, -0.08057382607529058, 0.9796190485232531, 2, -0.01487358826234423, 0.9967486436166285, 0.07918912690902351, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_5, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<relative_pin_orientation_matrix_2>
|
||||
|
||||
joint: joint_10,
|
||||
revolute hinge,
|
||||
structural_node_5, #<node_1_label>
|
||||
position, 0.0006990980490339567, -3.552348289397855e-05, 0.0015, #<relative_position_1> [m]
|
||||
orientation, 3, 0.9987114986199351, -0.05074783270568111, -2.6645352591003757e-15, 2, 0.050582409469853984, 0.9954559884049977, -0.08067710332463017, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_6, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<relative_pin_orientation_matrix_2>
|
||||
|
||||
joint: joint_12,
|
||||
revolute hinge,
|
||||
structural_node_4, #<node_1_label>
|
||||
position, -0.023136022009388416, 0.012935717331937333, -0.0010620585220347464, #<relative_position_1> [m]
|
||||
orientation, 3, 0.4003513828652565, 0.7556142728371739, -0.5184263119505281, 2, -0.18492741744034347, 0.6207249407342676, 0.7619070797868236, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_7, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<relative_pin_orientation_matrix_2>
|
||||
|
||||
joint: joint_14,
|
||||
revolute hinge,
|
||||
structural_node_6, #<node_1_label>
|
||||
position, 0.011552657092899963, 0.014457275509012013, -0.00018687335832999352, #<relative_position_1> [m]
|
||||
orientation, 3, -0.5202727054035214, 0.43814554123110794, 0.7330380595244699, 2, 0.2274073703197676, 0.8984450958523724, -0.3756092353271806, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_8, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<relative_pin_orientation_matrix_2>
|
||||
|
||||
joint: joint_16,
|
||||
revolute hinge,
|
||||
structural_node_8, #<node_1_label>
|
||||
position, 0.0014999999999999963, 0.0, -0.0007000000000000028, #<relative_position_1> [m]
|
||||
orientation, 3, -1.0000000000000002, -5.828670879282072e-16, 9.992007221626409e-16, 2, 2.7755575615628914e-17, 0.9162943479160578, 0.4005055155389079, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_9, #<node_2_label>
|
||||
position, 0.0, 0.0, 0.0, #<relative_position_2> [m]
|
||||
orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0; #<relative_pin_orientation_matrix_2>
|
||||
|
||||
joint: joint_18,
|
||||
revolute hinge,
|
||||
structural_node_7, #<node_1_label>
|
||||
position, 5.432058558623964e-05, -0.0014990161019754283, -0.0006999999999999886, #<relative_position_1> [m]
|
||||
orientation, 3, -0.03621372372415403, 0.9993440679836105, -7.771561172376096e-15, 2, 0.08426278547208627, 0.0030534721034348733, 0.9964388888901312, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_10, #<node_2_label>
|
||||
position, -0.037591172638640744, -0.03199514211122047, -0.1025095196111728, #<relative_position_2> [m]
|
||||
orientation, 3, 0.29772917627408235, 0.2977291762740852, 0.90703620390275, 2, -0.6413714505613356, -0.6413714505613417, 0.42105263900097917; #<relative_pin_orientation_matrix_2>
|
||||
|
||||
joint: joint_20,
|
||||
revolute hinge,
|
||||
structural_node_9, #<node_1_label>
|
||||
position, 0.00021259038801904495, 0.005891650863571172, 0.013649999999999992, #<relative_position_1> [m]
|
||||
orientation, 3, -0.4210526390009809, -0.9070362039027493, -1.3322676295501878e-15, 2, -0.9070362039027493, 0.4210526390009808, -4.163336342344337e-15, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_10, #<node_2_label>
|
||||
position, -0.0335749691710067, -0.03169987551682306, -0.09334081219451422, #<relative_position_2> [m]
|
||||
orientation, 3, -0.29772917627408635, -0.29772917627408807, -0.9070362039027478, 2, -0.6413714505613352, -0.6413714505613388, 0.42105263900098405; #<relative_pin_orientation_matrix_2>
|
||||
|
||||
joint: joint_22,
|
||||
spherical hinge,
|
||||
structural_node_1, #<node_1_label>
|
||||
0.004757447447889902, -0.013617775960092804, 0.021999999336380183, #<relative_pin_position_1> [m]
|
||||
structural_node_9, #<node_2_label>
|
||||
-0.00450768300881002, -0.001649482916578833, 0.021400000000000006; #<relative_pin_position_2> [m]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Drive callers]
|
||||
|
||||
drive caller: 1, name,"drive:1", ramp, 1.0, 0.25, 2.0, 0.0;
|
||||
|
||||
end: elements;
|
||||
|
||||
317
testapp/MBDynSliderCrankTotalJoint.mbd
Normal file
317
testapp/MBDynSliderCrankTotalJoint.mbd
Normal file
@@ -0,0 +1,317 @@
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Data Block]
|
||||
|
||||
begin: data;
|
||||
problem: initial value;
|
||||
end: data;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Problem Block]
|
||||
|
||||
begin: initial value;
|
||||
initial time: 0.0;
|
||||
final time: 4.0;
|
||||
time step: 0.01;
|
||||
max iterations: 100;
|
||||
tolerance: 1e-06;
|
||||
derivatives tolerance: 0.0001;
|
||||
derivatives max iterations: 100;
|
||||
derivatives coefficient: auto;
|
||||
end: initial value;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Control Data Block]
|
||||
|
||||
begin: control data;
|
||||
max iterations: 1000;
|
||||
default orientation: orientation matrix;
|
||||
omega rotates: no;
|
||||
print: none;
|
||||
initial stiffness: 1.0, 1.0;
|
||||
structural nodes: 4;
|
||||
rigid bodies: 3;
|
||||
joints: 6;
|
||||
end: control data;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Design Variables]
|
||||
|
||||
#Generic bodies
|
||||
|
||||
#body: 2
|
||||
set: integer body_2 = 2; #body label
|
||||
set: real mass_2 = 12.635833504434364; #mass [kg]
|
||||
set: real volume_2 = 0.0015994725954980207; #volume [m^3]
|
||||
|
||||
#body: 3
|
||||
set: integer body_3 = 3; #body label
|
||||
set: real mass_3 = 4.761616622776476; #mass [kg]
|
||||
set: real volume_3 = 0.0006027362813641108; #volume [m^3]
|
||||
|
||||
#body: 4
|
||||
set: integer body_4 = 4; #body label
|
||||
set: real mass_4 = 2.8656033319778023; #mass [kg]
|
||||
set: real volume_4 = 0.00036273459898453187; #volume [m^3]
|
||||
|
||||
#Nodes
|
||||
|
||||
#node: 1
|
||||
set: integer structural_node_1 = 1; #node label
|
||||
|
||||
#node: 2
|
||||
set: integer structural_node_2 = 2; #node label
|
||||
|
||||
#node: 3
|
||||
set: integer structural_node_3 = 3; #node label
|
||||
|
||||
#node: 4
|
||||
set: integer structural_node_4 = 4; #node label
|
||||
|
||||
#Joints
|
||||
|
||||
#joint: 1
|
||||
set: integer joint_1 = 1; #joint label
|
||||
|
||||
#joint: 2_3
|
||||
set: integer joint_2 = 2; #joint label
|
||||
|
||||
set: integer joint_3 = 3; #joint label
|
||||
|
||||
#joint: 4_5
|
||||
set: integer joint_4 = 4; #joint label
|
||||
|
||||
set: integer joint_5 = 5; #joint label
|
||||
|
||||
#joint: 6_7_8
|
||||
set: integer joint_6 = 6; #joint label
|
||||
|
||||
set: integer joint_7 = 7; #joint label
|
||||
|
||||
set: integer joint_8 = 8; #joint label
|
||||
|
||||
#joint: 9
|
||||
set: integer joint_9 = 9; #joint label
|
||||
|
||||
#Nodes: initial conditions
|
||||
|
||||
#node: 1
|
||||
set: real Px_1 = -0.419; #X component of the absolute position [m]
|
||||
set: real Py_1 = 0.09000000999999999; #Y component of the absolute position [m]
|
||||
set: real Pz_1 = 0.2; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_1 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_1 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_1 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_1 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_1 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_1 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 2
|
||||
set: real Px_2 = 0.07099999999999991; #X component of the absolute position [m]
|
||||
set: real Py_2 = 0.16; #Y component of the absolute position [m]
|
||||
set: real Pz_2 = 0.19999999999999996; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_2 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_2 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_2 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_2 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_2 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_2 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 3
|
||||
set: real Px_3 = -0.017337619999999984; #X component of the absolute position [m]
|
||||
set: real Py_3 = 0.20686650000000006; #Y component of the absolute position [m]
|
||||
set: real Pz_3 = 0.2; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_3 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_3 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_3 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_3 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_3 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_3 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#node: 4
|
||||
set: real Px_4 = -0.29363859999999997; #X component of the absolute position [m]
|
||||
set: real Py_4 = 0.09000000999999998; #Y component of the absolute position [m]
|
||||
set: real Pz_4 = 0.19999999999999982; #Z component of the absolute position [m]
|
||||
|
||||
set: real Vx_4 = 0.0; #X component of the absolute velocity [m/s]
|
||||
set: real Vy_4 = 0.0; #Y component of the absolute velocity [m/s]
|
||||
set: real Vz_4 = 0.0; #Z component of the absolute velocity [m/s]
|
||||
|
||||
set: real Wx_4 = 0.0; #X component of the absolute angular velocity [rad/s]
|
||||
set: real Wy_4 = 0.0; #Y component of the absolute angular velocity [rad/s]
|
||||
set: real Wz_4 = 0.0; #Z component of the absolute angular velocity [rad/s]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Intermediate Variables]
|
||||
|
||||
#Moments of inertia and relative center of mass
|
||||
|
||||
#body 2:
|
||||
set: real Ixx_2 = 0.08708924866282601; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_2 = 0.085370944710882; #moment of inertia [kg*m^2]
|
||||
set: real Izz_2 = 0.064597123189377; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_2 = 0.23369760691597463; #X component of the relative center of mass [m]
|
||||
set: real Ry_2 = -0.017056058774585096; #Y component of the relative center of mass [m]
|
||||
set: real Rz_2 = 0.02412068691121374; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 3:
|
||||
set: real Ixx_3 = 0.052187573112937; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_3 = 0.049571280557501; #moment of inertia [kg*m^2]
|
||||
set: real Izz_3 = 0.0035529543779500004; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_3 = 0.10067231525120601; #X component of the relative center of mass [m]
|
||||
set: real Ry_3 = 0.1919853054998222; #Y component of the relative center of mass [m]
|
||||
set: real Rz_3 = 0.04071350992502829; #Z component of the relative center of mass [m]
|
||||
|
||||
#body 4:
|
||||
set: real Ixx_4 = 0.010133521085753; #moment of inertia [kg*m^2]
|
||||
set: real Iyy_4 = 0.006853402672398001; #moment of inertia [kg*m^2]
|
||||
set: real Izz_4 = 0.00669113151275; #moment of inertia [kg*m^2]
|
||||
|
||||
set: real Rx_4 = -0.0330388768314067; #X component of the relative center of mass [m]
|
||||
set: real Ry_4 = -0.010904342272327113; #Y component of the relative center of mass [m]
|
||||
set: real Rz_4 = -0.26627346364210613; #Z component of the relative center of mass [m]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Nodes Block]
|
||||
|
||||
begin: nodes;
|
||||
|
||||
structural: structural_node_1,
|
||||
static,
|
||||
Px_1, Py_1, Pz_1, #<absolute_position> [m]
|
||||
3, 1.0, -2.220446049250313e-16, 2.220446049250313e-16, 2, -2.220446049250313e-16, 0.0, 1.0, #<absolute_orientation_matrix>
|
||||
Vx_1, Vy_1, Vz_1, #<absolute_velocity> [m/s]
|
||||
Wx_1, Wy_1, Wz_1; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_2,
|
||||
dynamic,
|
||||
Px_2, Py_2, Pz_2, #<absolute_position> [m]
|
||||
3, 3.0728199502890935e-08, -8.312621051592148e-09, 0.9999999999999994, 2, 9.860761315262648e-32, 1.0, 8.312621051592151e-09, #<absolute_orientation_matrix>
|
||||
Vx_2, Vy_2, Vz_2, #<absolute_velocity> [m/s]
|
||||
Wx_2, Wy_2, Wz_2; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_3,
|
||||
dynamic,
|
||||
Px_3, Py_3, Pz_3, #<absolute_position> [m]
|
||||
3, 1.2241820623870575e-07, -7.110463684512068e-09, 0.9999999999999925, 2, -0.9983174164285165, 0.057985653876428844, 1.2262453226214997e-07, #<absolute_orientation_matrix>
|
||||
Vx_3, Vy_3, Vz_3, #<absolute_velocity> [m/s]
|
||||
Wx_3, Wy_3, Wz_3; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
structural: structural_node_4,
|
||||
dynamic,
|
||||
Px_4, Py_4, Pz_4, #<absolute_position> [m]
|
||||
3, 1.0, -2.220446049250313e-16, 2.220446049250313e-16, 2, -2.220446049250313e-16, 0.0, 1.0, #<absolute_orientation_matrix>
|
||||
Vx_4, Vy_4, Vz_4, #<absolute_velocity> [m/s]
|
||||
Wx_4, Wy_4, Wz_4; #<absolute_angular_velocity> [rad/s]
|
||||
|
||||
end: nodes;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Elements Block]
|
||||
|
||||
begin: elements;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Bodies]
|
||||
|
||||
body: body_2,
|
||||
structural_node_2, #<node_label>
|
||||
mass_2, #<mass> [kg]
|
||||
Rx_2, Ry_2, Rz_2, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_2, Iyy_2, Izz_2, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, -0.12000003011363553, -0.1699999918536315, 0.9799999977257611, 2, 0.8099999999999996, -0.5899999999999999, 2.9794288017781016e-08;
|
||||
|
||||
body: body_3,
|
||||
structural_node_3, #<node_label>
|
||||
mass_3, #<mass> [kg]
|
||||
Rx_3, Ry_3, Rz_3, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_3, Iyy_3, Izz_3, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, 0.05682594079890069, -0.9783510423487942, 0.21000011996984053, 2, 0.9977375598897598, 0.06796883662443129, 0.06999999166535376;
|
||||
|
||||
body: body_4,
|
||||
structural_node_4, #<node_label>
|
||||
mass_4, #<mass> [kg]
|
||||
Rx_4, Ry_4, Rz_4, #<relative_center_of_mass> [m]
|
||||
diag, Ixx_4, Iyy_4, Izz_4, #<inertia matrix> [kg*m^2]
|
||||
orientation, 3, -0.010000000000000047, 0.98, -0.20999999999999977, 2, 0.98, -0.029999999999999954, -0.21000000000000021;
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Joints]
|
||||
|
||||
joint: joint_1,
|
||||
clamp,
|
||||
structural_node_1, #<node_label>
|
||||
-0.419, 0.09000000999999999, 0.2, #<absolute_pin_position> [m]
|
||||
3, 1.0, -2.220446049250313e-16, 2.220446049250313e-16, 2, -2.220446049250313e-16, 0.0, 1.0; #<absolute_orientation_matrix>
|
||||
|
||||
joint: joint_2,
|
||||
total joint,
|
||||
structural_node_1, #<node_1_label>
|
||||
position, 0.07000000000000012, -5.684341886080802e-17, 0.48999999999999994, #<relative_position_1> [m]
|
||||
position orientation, 3, 3.885780586188048e-16, 1.0, 1.1102230246251565e-16, 2, 1.0, -4.440892098500626e-16, -1.6653345369377348e-16, #<relative_pin_orientation_matrix_1>
|
||||
rotation orientation, 3, 3.885780586188048e-16, 1.0, 1.1102230246251565e-16, 2, 1.0, -4.440892098500626e-16, -1.6653345369377348e-16, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_2, #<node_2_label>
|
||||
position, 8.526512829121202e-17, 9.999999974752426e-09, 2.842170943040401e-17, #<relative_position_2> [m]
|
||||
position orientation, 3, -3.0728199502890935e-08, 8.312621298737451e-09, 0.9999999999999994, 2, 2.554318856595847e-16, 1.0, -8.312621298737448e-09, #<relative_pin_orientation_matrix_2>
|
||||
rotation orientation, 3, -3.0728199502890935e-08, 8.312621298737451e-09, 0.9999999999999994, 2, 2.554318856595847e-16, 1.0, -8.312621298737448e-09, #<relative_pin_orientation_matrix_2>
|
||||
position constraint,
|
||||
active, active, active,
|
||||
null,
|
||||
orientation constraint,
|
||||
active, active, angular velocity,
|
||||
single, 0., 0., 1., string, "0.0+model::drive(1, Time)"; #<angle> [rad]
|
||||
|
||||
joint: joint_4,
|
||||
total joint,
|
||||
structural_node_2, #<node_1_label>
|
||||
position, -0.08833762115250354, 0.0468664559052288, 2.842170943040401e-17, #<relative_position_1> [m]
|
||||
position orientation, 3, -3.7239980926641352e-16, 1.6936012837021416e-16, 1.0, 2, 5.204131742837832e-24, 1.0, -1.6936012837021416e-16, #<relative_pin_orientation_matrix_1>
|
||||
rotation orientation, 3, -3.7239980926641352e-16, 1.6936012837021416e-16, 1.0, 2, 5.204131742837832e-24, 1.0, -1.6936012837021416e-16, #<relative_pin_orientation_matrix_1>
|
||||
structural_node_3, #<node_2_label>
|
||||
position, -4.408740682038115e-08, -1.4062993436425586e-09, 3.1040392514114503e-09, #<relative_position_2> [m]
|
||||
position orientation, 3, -6.51683948387302e-09, 9.146602313741393e-08, 0.9999999999999958, 2, 0.9983174164285239, 0.057985653876430066, 1.2021571977199034e-09, #<relative_pin_orientation_matrix_2>
|
||||
rotation orientation, 3, -6.51683948387302e-09, 9.146602313741393e-08, 0.9999999999999958, 2, 0.9983174164285239, 0.057985653876430066, 1.2021571977199034e-09, #<relative_pin_orientation_matrix_2>
|
||||
position constraint,
|
||||
active, active, active,
|
||||
null,
|
||||
orientation constraint,
|
||||
active, active, inactive,
|
||||
null;
|
||||
|
||||
joint: joint_6,
|
||||
in line,
|
||||
structural_node_1, #<node_1_label>
|
||||
0.0, 0.0, 0.0, #<relative_line_position> [m]
|
||||
3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #<relative_orientation>
|
||||
structural_node_4, #<node_2_label>
|
||||
offset, 0.0, 0.0, 0.0; #<relative_offset> [m]
|
||||
|
||||
joint: joint_7,
|
||||
prismatic,
|
||||
structural_node_1, #<node_1_label>
|
||||
orientation, 3, 0.0, 0.0, 1.0, 2, 0.0, 1.0, 0.0, #relative_orientation_matrix_1>
|
||||
structural_node_4, #<node_2_label>
|
||||
orientation, 3, 0, 0, 1, 2, 0, 1, 0; #relative_orientation_matrix_2>
|
||||
|
||||
joint: joint_9,
|
||||
in line,
|
||||
structural_node_3, #<node_1_label>
|
||||
-0.13269133782709974, 0.26905948945475705, 1.4177195929807734e-15, #<relative_line_position> [m]
|
||||
3, 1.3390417087237118e-16, -2.3053784001404156e-15, 1.0, 2, -1.0919852799773366e-09, 1.0, 2.3053784002866372e-15, #<relative_orientation>
|
||||
structural_node_4, #<node_2_label>
|
||||
offset, 0.0, 0.0, 0.0; #<relative_offset> [m]
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# [Drive callers]
|
||||
|
||||
drive caller: 1, name,"drive:1", cosine, 0.25, 3.1416, 10.0, half, 0.0;
|
||||
|
||||
end: elements;
|
||||
|
||||
1608
testapp/MBDynSliderCrankTotalJointorig.mov
Normal file
1608
testapp/MBDynSliderCrankTotalJointorig.mov
Normal file
File diff suppressed because it is too large
Load Diff
@@ -26,6 +26,11 @@ void sharedptrTest();
|
||||
|
||||
int main()
|
||||
{
|
||||
ASMTAssembly::runFile("../testapp/RevCylJt.asmt");
|
||||
ASMTAssembly::runFile("../testapp/CylSphJt.asmt");
|
||||
ASMTAssembly::runFile("../testapp/SphSphJt.asmt");
|
||||
//MBDynSystem::runFile("../testapp/MBDynCase(Cosine-half drive).mbd");
|
||||
//MBDynSystem::runFile("../testapp/MBDynCase(Sine-forever drive).mbd");
|
||||
MBDynSystem::runFile("../testapp/MBDynCase9orig.mbd"); //SimulationStoppingError
|
||||
MBDynSystem::runFile("../testapp/MBDynCase8orig.mbd"); //Incompatible geometry at t=3.15
|
||||
MBDynSystem::runFile("../testapp/MBDynCase5orig.mbd"); //Test Product::integrateWRT
|
||||
|
||||
202
testapp/RevCylJt.asmt
Normal file
202
testapp/RevCylJt.asmt
Normal file
@@ -0,0 +1,202 @@
|
||||
OndselSolver
|
||||
Assembly
|
||||
Notes
|
||||
(Text string: '' runs: (Core.RunArray runs: #() values: #()))
|
||||
Name
|
||||
OndselAssembly
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
marker-part32#Body001
|
||||
Position3D
|
||||
-50.97707939147949 -6.651639938354492 5.976193904876709
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Parts
|
||||
Part
|
||||
Name
|
||||
part32#Body001
|
||||
Position3D
|
||||
-50.97707939147949 -6.651639938354492 5.976193904876709
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
1
|
||||
MomentOfInertias
|
||||
1 1 1
|
||||
Density
|
||||
1
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
FixingMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
part32#Distance
|
||||
Position3D
|
||||
24.73092618997876 13.40888489553289 5
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Part
|
||||
Name
|
||||
part32#Body002
|
||||
Position3D
|
||||
58.55961227416992 25.54718399047852 23.1300048828125
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
1
|
||||
MomentOfInertias
|
||||
1 1 1
|
||||
Density
|
||||
1
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
part32#Distance
|
||||
Position3D
|
||||
-22.68139865429635 -16.64244751954205 5
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
KinematicIJs
|
||||
ConstraintSets
|
||||
Joints
|
||||
FixedJoint
|
||||
Name
|
||||
part32#GroundedJoint
|
||||
MarkerI
|
||||
/OndselAssembly/marker-part32#Body001
|
||||
MarkerJ
|
||||
/OndselAssembly/part32#Body001/FixingMarker
|
||||
RevCylJoint
|
||||
Name
|
||||
part32#RevCylJoint
|
||||
MarkerI
|
||||
/OndselAssembly/part32#Body001/part32#Distance
|
||||
MarkerJ
|
||||
/OndselAssembly/part32#Body002/part32#Distance
|
||||
distanceIJ
|
||||
2
|
||||
Motions
|
||||
GeneralConstraintSets
|
||||
ForceTorques
|
||||
ConstantGravity
|
||||
0 0 0
|
||||
SimulationParameters
|
||||
tstart
|
||||
0
|
||||
tend
|
||||
1
|
||||
hmin
|
||||
1e-09
|
||||
hmax
|
||||
1000000000
|
||||
hout
|
||||
0.1
|
||||
errorTol
|
||||
1e-06
|
||||
AnimationParameters
|
||||
nframe
|
||||
1000000
|
||||
icurrent
|
||||
1
|
||||
istart
|
||||
1
|
||||
iend
|
||||
1000000
|
||||
isForward
|
||||
true
|
||||
framesPerSecond
|
||||
30
|
||||
202
testapp/SphSphJt.asmt
Normal file
202
testapp/SphSphJt.asmt
Normal file
@@ -0,0 +1,202 @@
|
||||
OndselSolver
|
||||
Assembly
|
||||
Notes
|
||||
(Text string: '' runs: (Core.RunArray runs: #() values: #()))
|
||||
Name
|
||||
OndselAssembly
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
marker-part32#Body001
|
||||
Position3D
|
||||
-50.97707939147949 -6.651639938354492 5.976193904876709
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Parts
|
||||
Part
|
||||
Name
|
||||
part32#Body001
|
||||
Position3D
|
||||
-50.97707939147949 -6.651639938354492 5.976193904876709
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
1
|
||||
MomentOfInertias
|
||||
1 1 1
|
||||
Density
|
||||
1
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
FixingMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
part32#Distance
|
||||
Position3D
|
||||
24.73092618997876 13.40888489553289 5
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
Part
|
||||
Name
|
||||
part32#Body002
|
||||
Position3D
|
||||
58.55961227416992 25.54718399047852 23.1300048828125
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Velocity3D
|
||||
0 0 0
|
||||
Omega3D
|
||||
0 0 0
|
||||
FeatureOrder
|
||||
PrincipalMassMarker
|
||||
Name
|
||||
MassMarker
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Mass
|
||||
1
|
||||
MomentOfInertias
|
||||
1 1 1
|
||||
Density
|
||||
1
|
||||
RefPoints
|
||||
RefPoint
|
||||
Position3D
|
||||
0 0 0
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
Markers
|
||||
Marker
|
||||
Name
|
||||
part32#Distance
|
||||
Position3D
|
||||
-22.68139865429635 -16.64244751954205 5
|
||||
RotationMatrix
|
||||
1 0 0
|
||||
0 1 0
|
||||
0 0 1
|
||||
RefCurves
|
||||
RefSurfaces
|
||||
KinematicIJs
|
||||
ConstraintSets
|
||||
Joints
|
||||
FixedJoint
|
||||
Name
|
||||
part32#GroundedJoint
|
||||
MarkerI
|
||||
/OndselAssembly/marker-part32#Body001
|
||||
MarkerJ
|
||||
/OndselAssembly/part32#Body001/FixingMarker
|
||||
SphSphJoint
|
||||
Name
|
||||
part32#SphSphJoint
|
||||
MarkerI
|
||||
/OndselAssembly/part32#Body001/part32#Distance
|
||||
MarkerJ
|
||||
/OndselAssembly/part32#Body002/part32#Distance
|
||||
distanceIJ
|
||||
2
|
||||
Motions
|
||||
GeneralConstraintSets
|
||||
ForceTorques
|
||||
ConstantGravity
|
||||
0 0 0
|
||||
SimulationParameters
|
||||
tstart
|
||||
0
|
||||
tend
|
||||
1
|
||||
hmin
|
||||
1e-09
|
||||
hmax
|
||||
1000000000
|
||||
hout
|
||||
0.1
|
||||
errorTol
|
||||
1e-06
|
||||
AnimationParameters
|
||||
nframe
|
||||
1000000
|
||||
icurrent
|
||||
1
|
||||
istart
|
||||
1
|
||||
iend
|
||||
1000000
|
||||
isForward
|
||||
true
|
||||
framesPerSecond
|
||||
30
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user