diff --git a/src/Mod/Fem/App/FemConstraintForce.cpp b/src/Mod/Fem/App/FemConstraintForce.cpp index 68099c550a..1a54f680aa 100644 --- a/src/Mod/Fem/App/FemConstraintForce.cpp +++ b/src/Mod/Fem/App/FemConstraintForce.cpp @@ -42,6 +42,9 @@ ConstraintForce::ConstraintForce() "ConstraintForce", (App::PropertyType)(App::Prop_None), "Element giving direction of constraint"); + // RefDispl must get a global scope, see + Direction.setScope(App::LinkScope::Global); + ADD_PROPERTY(Reversed, (0)); ADD_PROPERTY_TYPE(Points, (Base::Vector3d()), @@ -53,8 +56,9 @@ ConstraintForce::ConstraintForce() "ConstraintForce", App::PropertyType(App::Prop_ReadOnly | App::Prop_Output), "Direction of arrows"); - naturalDirectionVector = - Base::Vector3d(0, 0, 0); // by default use the null vector to indicate an invalid value + + // by default use the null vector to indicate an invalid value + naturalDirectionVector = Base::Vector3d(0, 0, 0); Points.setValues(std::vector()); } @@ -63,6 +67,21 @@ App::DocumentObjectExecReturn* ConstraintForce::execute() return Constraint::execute(); } +void ConstraintForce::handleChangedPropertyType(Base::XMLReader& reader, + const char* TypeName, + App::Property* prop) +{ + // property Force had App::PropertyFloat, was changed to App::PropertyForce + if (prop == &Force && strcmp(TypeName, "App::PropertyFloat") == 0) { + App::PropertyFloat ForceProperty; + // restore the PropertyFloat to be able to set its value + ForceProperty.Restore(reader); + // force uses m while FreeCAD uses internally mm thus + // e.g. "2.5" must become 2500 to result in 2.5 N + Force.setValue(ForceProperty.getValue() * 1000); + } +} + void ConstraintForce::onChanged(const App::Property* prop) { // Note: If we call this at the end, then the arrows are not oriented correctly initially diff --git a/src/Mod/Fem/App/FemConstraintForce.h b/src/Mod/Fem/App/FemConstraintForce.h index 8b35686f18..f669f63a6a 100644 --- a/src/Mod/Fem/App/FemConstraintForce.h +++ b/src/Mod/Fem/App/FemConstraintForce.h @@ -38,7 +38,7 @@ public: /// Constructor ConstraintForce(); - App::PropertyFloat Force; + App::PropertyForce Force; App::PropertyLinkSub Direction; App::PropertyBool Reversed; // Read-only (calculated values). These trigger changes in the ViewProvider @@ -55,6 +55,9 @@ public: } protected: + void handleChangedPropertyType(Base::XMLReader& reader, + const char* TypeName, + App::Property* prop) override; void onChanged(const App::Property* prop) override; private: diff --git a/src/Mod/Fem/Gui/Command.cpp b/src/Mod/Fem/Gui/Command.cpp index 2d995057cf..d759b4cb05 100644 --- a/src/Mod/Fem/Gui/Command.cpp +++ b/src/Mod/Fem/Gui/Command.cpp @@ -459,8 +459,8 @@ void CmdFemConstraintForce::activated(int) "App.activeDocument().addObject(\"Fem::ConstraintForce\",\"%s\")", FeatName.c_str()); doCommand(Doc, - "App.activeDocument().%s.Force = 1.0", - FeatName.c_str()); // OvG: set default not equal to 0 + "App.activeDocument().%s.Force = \"1 N\"", + FeatName.c_str()); // OvG: set default to 1 N doCommand(Doc, "App.activeDocument().%s.Reversed = False", FeatName.c_str()); // OvG: set default to False diff --git a/src/Mod/Fem/Gui/TaskFemConstraintForce.cpp b/src/Mod/Fem/Gui/TaskFemConstraintForce.cpp index da3a74d901..324fc7800d 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintForce.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraintForce.cpp @@ -57,35 +57,12 @@ TaskFemConstraintForce::TaskFemConstraintForce(ViewProviderFemConstraintForce* C ui->setupUi(proxy); QMetaObject::connectSlotsByName(this); - // create a context menu for the listview of the references - createDeleteAction(ui->listReferences); - connect(deleteAction, &QAction::triggered, this, &TaskFemConstraintForce::onReferenceDeleted); - connect(ui->spinForce, - qOverload(&Gui::QuantitySpinBox::valueChanged), - this, - &TaskFemConstraintForce::onForceChanged); - connect(ui->buttonDirection, - &QToolButton::clicked, - this, - &TaskFemConstraintForce::onButtonDirection); - connect(ui->checkReverse, &QCheckBox::toggled, this, &TaskFemConstraintForce::onCheckReverse); - connect(ui->listReferences, - &QListWidget::itemClicked, - this, - &TaskFemConstraintForce::setSelection); - this->groupLayout()->addWidget(proxy); - // Temporarily prevent unnecessary feature recomputes - ui->spinForce->blockSignals(true); - ui->listReferences->blockSignals(true); - ui->buttonDirection->blockSignals(true); - ui->checkReverse->blockSignals(true); - // Get the feature data Fem::ConstraintForce* pcConstraint = static_cast(ConstraintView->getObject()); - double f = pcConstraint->Force.getValue(); + auto force = pcConstraint->Force.getQuantityValue(); std::vector Objects = pcConstraint->References.getValues(); std::vector SubElements = pcConstraint->References.getSubValues(); std::vector dirStrings = pcConstraint->Direction.getSubValues(); @@ -96,9 +73,10 @@ TaskFemConstraintForce::TaskFemConstraintForce(ViewProviderFemConstraintForce* C bool reversed = pcConstraint->Reversed.getValue(); // Fill data into dialog elements + ui->spinForce->setUnit(pcConstraint->Force.getUnit()); ui->spinForce->setMinimum(0); ui->spinForce->setMaximum(FLOAT_MAX); - ui->spinForce->setValue(f); + ui->spinForce->setValue(force); ui->listReferences->clear(); for (std::size_t i = 0; i < Objects.size(); i++) { ui->listReferences->addItem(makeRefText(Objects[i], SubElements[i])); @@ -109,15 +87,25 @@ TaskFemConstraintForce::TaskFemConstraintForce(ViewProviderFemConstraintForce* C ui->lineDirection->setText(dir.isEmpty() ? QString() : dir); ui->checkReverse->setChecked(reversed); - ui->spinForce->blockSignals(false); - ui->listReferences->blockSignals(false); - ui->buttonDirection->blockSignals(false); - ui->checkReverse->blockSignals(false); + // create a context menu for the listview of the references + createDeleteAction(ui->listReferences); + connect(deleteAction, &QAction::triggered, this, &TaskFemConstraintForce::onReferenceDeleted); + connect(ui->buttonDirection, + &QToolButton::clicked, + this, + &TaskFemConstraintForce::onButtonDirection); + connect(ui->checkReverse, &QCheckBox::toggled, this, &TaskFemConstraintForce::onCheckReverse); + connect(ui->listReferences, + &QListWidget::itemClicked, + this, + &TaskFemConstraintForce::setSelection); // Selection buttons buttonGroup->addButton(ui->btnAdd, (int)SelectionChangeModes::refAdd); buttonGroup->addButton(ui->btnRemove, (int)SelectionChangeModes::refRemove); + ui->spinForce->bind(pcConstraint->Force); + updateUI(); } @@ -259,13 +247,6 @@ void TaskFemConstraintForce::removeFromSelection() updateUI(); } -void TaskFemConstraintForce::onForceChanged(double f) -{ - Fem::ConstraintForce* pcConstraint = - static_cast(ConstraintView->getObject()); - pcConstraint->Force.setValue(f); -} - void TaskFemConstraintForce::onReferenceDeleted() { TaskFemConstraintForce::removeFromSelection(); // OvG: On right-click face is automatically @@ -359,9 +340,9 @@ void TaskFemConstraintForce::onCheckReverse(const bool pressed) pcConstraint->Reversed.setValue(pressed); } -double TaskFemConstraintForce::getForce() const +const std::string TaskFemConstraintForce::getForce() const { - return ui->spinForce->value().getValue(); + return ui->spinForce->value().getSafeUserString().toStdString(); } const std::string TaskFemConstraintForce::getReferences() const @@ -467,21 +448,10 @@ bool TaskDlgFemConstraintForce::accept() static_cast(parameter); try { - // Gui::Command::openCommand(QT_TRANSLATE_NOOP("Command", "FEM force constraint changed")); - - if (parameterForce->getForce() <= 0) { - QMessageBox::warning(parameter, - tr("Input error"), - tr("Please specify a force greater than 0")); - return false; - } - else { - QByteArray num = QByteArray::number(parameterForce->getForce()); - Gui::Command::doCommand(Gui::Command::Doc, - "App.ActiveDocument.%s.Force = %s", - name.c_str(), - num.data()); - } + Gui::Command::doCommand(Gui::Command::Doc, + "App.ActiveDocument.%s.Force = \"%s\"", + name.c_str(), + parameterForce->getForce().c_str()); std::string dirname = parameterForce->getDirectionName().data(); std::string dirobj = parameterForce->getDirectionObject().data(); diff --git a/src/Mod/Fem/Gui/TaskFemConstraintForce.h b/src/Mod/Fem/Gui/TaskFemConstraintForce.h index 1791766e3a..2563d2de6e 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintForce.h +++ b/src/Mod/Fem/Gui/TaskFemConstraintForce.h @@ -55,7 +55,7 @@ public: explicit TaskFemConstraintForce(ViewProviderFemConstraintForce* ConstraintView, QWidget* parent = nullptr); ~TaskFemConstraintForce() override; - double getForce() const; + const std::string getForce() const; const std::string getReferences() const override; const std::string getDirectionName() const; const std::string getDirectionObject() const; @@ -63,7 +63,6 @@ public: private Q_SLOTS: void onReferenceDeleted(); - void onForceChanged(double); void onButtonDirection(const bool pressed = false); void onCheckReverse(bool); void addToSelection() override; diff --git a/src/Mod/Fem/Gui/TaskFemConstraintForce.ui b/src/Mod/Fem/Gui/TaskFemConstraintForce.ui index c8a4795cd8..595305221c 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintForce.ui +++ b/src/Mod/Fem/Gui/TaskFemConstraintForce.ui @@ -90,12 +90,18 @@ - Load [N] + Force + + N + + + 0.000000000000000 + 500.000000000000000 diff --git a/src/Mod/Fem/femexamples/boxanalysis_static.py b/src/Mod/Fem/femexamples/boxanalysis_static.py index cb1651f4b7..9131bd3068 100644 --- a/src/Mod/Fem/femexamples/boxanalysis_static.py +++ b/src/Mod/Fem/femexamples/boxanalysis_static.py @@ -103,7 +103,7 @@ def setup(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "FemConstraintForce") con_force.References = [(geom_obj, "Face6")] - con_force.Force = 40000.0 + con_force.Force = "40000.0 N" con_force.Direction = (geom_obj, ["Edge5"]) con_force.Reversed = True analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/buckling_lateraltorsionalbuckling.py b/src/Mod/Fem/femexamples/buckling_lateraltorsionalbuckling.py index e2476fa96d..3099b749e3 100644 --- a/src/Mod/Fem/femexamples/buckling_lateraltorsionalbuckling.py +++ b/src/Mod/Fem/femexamples/buckling_lateraltorsionalbuckling.py @@ -161,14 +161,14 @@ def setup(doc=None, solvertype="ccxtools"): # constraints force con_force_in_x = ObjectsFem.makeConstraintForce(doc, "Force_in_X") con_force_in_x.References = [(geom_obj, ("Edge3", "Edge7", "Edge8", "Edge12"))] - con_force_in_x.Force = 155350 + con_force_in_x.Force = "155350 N" con_force_in_x.Reversed = False con_force_in_x.Direction = (geom_obj, ["Edge4"]) analysis.addObject(con_force_in_x) con_force_rev_x = ObjectsFem.makeConstraintForce(doc, "Force_rev_X") con_force_rev_x.References = [(geom_obj, ("Edge1", "Edge5", "Edge10", "Edge14"))] - con_force_rev_x.Force = 155350 + con_force_rev_x.Force = "155350 N" con_force_rev_x.Reversed = True con_force_rev_x.Direction = (geom_obj, ["Edge4"]) analysis.addObject(con_force_rev_x) diff --git a/src/Mod/Fem/femexamples/buckling_platebuckling.py b/src/Mod/Fem/femexamples/buckling_platebuckling.py index dc79991250..fed4499959 100644 --- a/src/Mod/Fem/femexamples/buckling_platebuckling.py +++ b/src/Mod/Fem/femexamples/buckling_platebuckling.py @@ -141,7 +141,7 @@ def setup(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") con_force.References = [(geom_obj, "Edge3")] - con_force.Force = 17162160 # 17'162.16 N + con_force.Force = "17162160 N" con_force.Reversed = True con_force.Direction = (geom_obj, ["Edge2"]) analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/ccx_buckling_flexuralbuckling.py b/src/Mod/Fem/femexamples/ccx_buckling_flexuralbuckling.py index f70c812754..61cf636023 100644 --- a/src/Mod/Fem/femexamples/ccx_buckling_flexuralbuckling.py +++ b/src/Mod/Fem/femexamples/ccx_buckling_flexuralbuckling.py @@ -122,7 +122,7 @@ def setup(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") con_force.References = [(geom_obj, "Face6")] - con_force.Force = 21 + con_force.Force = "21 N" con_force.Reversed = True analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/ccx_cantilever_base_edge.py b/src/Mod/Fem/femexamples/ccx_cantilever_base_edge.py index 58c533f723..5c2b2f91a7 100644 --- a/src/Mod/Fem/femexamples/ccx_cantilever_base_edge.py +++ b/src/Mod/Fem/femexamples/ccx_cantilever_base_edge.py @@ -115,7 +115,7 @@ def setup_cantilever_base_edge(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") con_force.References = [(geom_obj, "Vertex2")] - con_force.Force = 9000000.0 # 9'000'000 N = 9 MN + con_force.Force = "9000000.0 N" # 9 MN con_force.Direction = (load_line, ["Edge1"]) con_force.Reversed = False analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/ccx_cantilever_base_face.py b/src/Mod/Fem/femexamples/ccx_cantilever_base_face.py index b05a08bfbd..d4e9fd4256 100644 --- a/src/Mod/Fem/femexamples/ccx_cantilever_base_face.py +++ b/src/Mod/Fem/femexamples/ccx_cantilever_base_face.py @@ -100,7 +100,7 @@ def setup_cantilever_base_face(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") con_force.References = [(geom_obj, "Edge3")] - con_force.Force = 9000000.0 # 9'000'000 N = 9 MN + con_force.Force = "9000000.0 N" con_force.Direction = (geom_obj, ["Edge3"]) con_force.Reversed = True analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/ccx_cantilever_faceload.py b/src/Mod/Fem/femexamples/ccx_cantilever_faceload.py index 6216385c89..8733aa6989 100644 --- a/src/Mod/Fem/femexamples/ccx_cantilever_faceload.py +++ b/src/Mod/Fem/femexamples/ccx_cantilever_faceload.py @@ -73,7 +73,7 @@ def setup(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") con_force.References = [(geom_obj, "Face2")] - con_force.Force = 9000000.0 + con_force.Force = "9000000.0 N" con_force.Direction = (geom_obj, ["Edge5"]) con_force.Reversed = True analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/ccx_cantilever_nodeload.py b/src/Mod/Fem/femexamples/ccx_cantilever_nodeload.py index 6de1a9b0ac..bd87936c4c 100644 --- a/src/Mod/Fem/femexamples/ccx_cantilever_nodeload.py +++ b/src/Mod/Fem/femexamples/ccx_cantilever_nodeload.py @@ -78,7 +78,7 @@ def setup(doc=None, solvertype="ccxtools"): (geom_obj, "Vertex7"), (geom_obj, "Vertex8") ] - con_force.Force = 9000000.0 + con_force.Force = "9000000.0 N" con_force.Direction = (doc.Box, ["Edge5"]) con_force.Reversed = True analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/constraint_contact_shell_shell.py b/src/Mod/Fem/femexamples/constraint_contact_shell_shell.py index da9b4fe342..3e6464a041 100644 --- a/src/Mod/Fem/femexamples/constraint_contact_shell_shell.py +++ b/src/Mod/Fem/femexamples/constraint_contact_shell_shell.py @@ -182,7 +182,7 @@ def setup(doc=None, solvertype="ccxtools"): con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") # TODO use point of tube boolean fragment con_force.References = [(force_point, "Vertex1")] - con_force.Force = 5000.0 + con_force.Force = "5000.0 N" con_force.Direction = (load_line, ["Edge1"]) con_force.Reversed = True analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/constraint_tie.py b/src/Mod/Fem/femexamples/constraint_tie.py index 12aefaf853..d2c58c1956 100644 --- a/src/Mod/Fem/femexamples/constraint_tie.py +++ b/src/Mod/Fem/femexamples/constraint_tie.py @@ -142,7 +142,7 @@ def setup(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") con_force.References = [(geom_obj, "Edge2")] - con_force.Force = 10000.0 # 10000 N = 10 kN + con_force.Force = "10000.0 N" # 10 kN con_force.Direction = (geom_obj, ["Edge2"]) con_force.Reversed = False analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/constraint_transform_torque.py b/src/Mod/Fem/femexamples/constraint_transform_torque.py index 47a40d03d5..d192ea5892 100644 --- a/src/Mod/Fem/femexamples/constraint_transform_torque.py +++ b/src/Mod/Fem/femexamples/constraint_transform_torque.py @@ -149,7 +149,7 @@ def setup(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") con_force.References = [(geom_obj, "Face1")] - con_force.Force = 2500.0 # 2500 N = 2.5 kN + con_force.Force = "2500.0 N" # 2.5 kN con_force.Direction = (load_line, ["Edge1"]) con_force.Reversed = True analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fiveboxes.py b/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fiveboxes.py index cb297ec14f..cef122878a 100644 --- a/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fiveboxes.py +++ b/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fiveboxes.py @@ -183,7 +183,7 @@ def setup(doc=None, solvertype="ccxtools"): (doc.Box4, "Face6"), (doc.Box5, "Face6") ] - con_force.Force = 10000.00 + con_force.Force = "10000.00 N" con_force.Direction = (doc.Box1, ["Edge1"]) con_force.Reversed = True analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fivefaces.py b/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fivefaces.py index 0922fb554c..af45ed3eab 100644 --- a/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fivefaces.py +++ b/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fivefaces.py @@ -182,7 +182,7 @@ def setup(doc=None, solvertype="ccxtools"): (doc.Face4, "Edge4"), (doc.Face5, "Edge4") ] - con_force.Force = 10000.00 + con_force.Force = "10000.00 N" con_force.Direction = (doc.Face1, ["Edge1"]) con_force.Reversed = True analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/mystran_plate.py b/src/Mod/Fem/femexamples/mystran_plate.py index 8bfad80df2..debadc30af 100644 --- a/src/Mod/Fem/femexamples/mystran_plate.py +++ b/src/Mod/Fem/femexamples/mystran_plate.py @@ -170,7 +170,7 @@ def setup(doc=None, solvertype="ccxtools"): (geom_obj, "Vertex4"), (geom_obj, "Vertex8"), ] - con_force.Force = 600 # 600 N on six nodes == 100 N/Node + con_force.Force = "600 N" # 600 N on six nodes == 100 N/Node con_force.Reversed = False con_force.Direction = (geom_obj, ["Edge2"]) analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/rc_wall_2d.py b/src/Mod/Fem/femexamples/rc_wall_2d.py index 50b9b11824..bc93bffa08 100644 --- a/src/Mod/Fem/femexamples/rc_wall_2d.py +++ b/src/Mod/Fem/femexamples/rc_wall_2d.py @@ -151,7 +151,7 @@ def setup(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") con_force.References = [(geom_obj, "Edge7")] - con_force.Force = 1000000.0 + con_force.Force = "1000000.0 N" con_force.Direction = (geom_obj, ["Edge8"]) con_force.Reversed = False analysis.addObject(con_force) diff --git a/src/Mod/Fem/femexamples/square_pipe_end_twisted_edgeforces.py b/src/Mod/Fem/femexamples/square_pipe_end_twisted_edgeforces.py index b0f09bed81..c8d698bd93 100644 --- a/src/Mod/Fem/femexamples/square_pipe_end_twisted_edgeforces.py +++ b/src/Mod/Fem/femexamples/square_pipe_end_twisted_edgeforces.py @@ -135,7 +135,7 @@ def setup(doc=None, solvertype="ccxtools"): # con_force1 con_force1 = ObjectsFem.makeConstraintForce(doc, name="ConstraintForce1") con_force1.References = [(geom_obj, "Edge9")] - con_force1.Force = 100000.00 + con_force1.Force = "100000.00 N" con_force1.Direction = (geom_obj, ["Edge9"]) con_force1.Reversed = True analysis.addObject(con_force1) @@ -143,7 +143,7 @@ def setup(doc=None, solvertype="ccxtools"): # con_force2 con_force2 = ObjectsFem.makeConstraintForce(doc, name="ConstraintForce2") con_force2.References = [(geom_obj, "Edge3")] - con_force2.Force = 100000.00 + con_force2.Force = "100000.00 N" con_force2.Direction = (geom_obj, ["Edge3"]) con_force2.Reversed = True analysis.addObject(con_force2) @@ -151,7 +151,7 @@ def setup(doc=None, solvertype="ccxtools"): # con_force3 con_force3 = ObjectsFem.makeConstraintForce(doc, name="ConstraintForce3") con_force3.References = [(geom_obj, "Edge11")] - con_force3.Force = 100000.00 + con_force3.Force = "100000.00 N" con_force3.Direction = (geom_obj, ["Edge11"]) con_force3.Reversed = True analysis.addObject(con_force3) @@ -159,7 +159,7 @@ def setup(doc=None, solvertype="ccxtools"): # con_force4 con_force4 = ObjectsFem.makeConstraintForce(doc, name="ConstraintForce4") con_force4.References = [(geom_obj, "Edge6")] - con_force4.Force = 100000.00 + con_force4.Force = "100000.00 N" con_force4.Direction = (geom_obj, ["Edge6"]) con_force4.Reversed = True analysis.addObject(con_force4) diff --git a/src/Mod/Fem/femexamples/square_pipe_end_twisted_nodeforces.py b/src/Mod/Fem/femexamples/square_pipe_end_twisted_nodeforces.py index d1caf92501..4567a51f41 100644 --- a/src/Mod/Fem/femexamples/square_pipe_end_twisted_nodeforces.py +++ b/src/Mod/Fem/femexamples/square_pipe_end_twisted_nodeforces.py @@ -289,7 +289,7 @@ def setup(doc=None, solvertype="ccxtools"): # con_force1 con_force1 = ObjectsFem.makeConstraintForce(doc, name="ConstraintForce1") con_force1.References = [(geoforces_obj, "Vertex1"), (geoforces_obj, "Vertex14")] - con_force1.Force = 5555.56 + con_force1.Force = "5555.56 N" con_force1.Direction = (geom_obj, ["Edge9"]) con_force1.Reversed = False analysis.addObject(con_force1) @@ -297,7 +297,7 @@ def setup(doc=None, solvertype="ccxtools"): # con_force2 con_force2 = ObjectsFem.makeConstraintForce(doc, name="ConstraintForce2") con_force2.References = [(geoforces_obj, "Vertex2"), (geoforces_obj, "Vertex8")] - con_force2.Force = 5555.56 + con_force2.Force = "5555.56 N" con_force2.Direction = (geom_obj, ["Edge3"]) con_force2.Reversed = False analysis.addObject(con_force2) @@ -310,7 +310,7 @@ def setup(doc=None, solvertype="ccxtools"): (geoforces_obj, "Vertex22"), (geoforces_obj, "Vertex23"), (geoforces_obj, "Vertex24"), ] - con_force3.Force = 27777.78 + con_force3.Force = "27777.78 N" con_force3.Direction = (geom_obj, ["Edge9"]) con_force3.Reversed = False analysis.addObject(con_force3) @@ -323,7 +323,7 @@ def setup(doc=None, solvertype="ccxtools"): (geoforces_obj, "Vertex11"), (geoforces_obj, "Vertex12"), (geoforces_obj, "Vertex13"), ] - con_force4.Force = 27777.78 + con_force4.Force = "27777.78 N" con_force4.Direction = (geom_obj, ["Edge3"]) con_force4.Reversed = False analysis.addObject(con_force4) @@ -337,7 +337,7 @@ def setup(doc=None, solvertype="ccxtools"): (geoforces_obj, "Vertex46"), (geoforces_obj, "Vertex47"), (geoforces_obj, "Vertex48"), ] - con_force5.Force = 66666.67 + con_force5.Force = "66666.67 N" con_force5.Direction = (geom_obj, ["Edge9"]) con_force5.Reversed = False analysis.addObject(con_force5) @@ -351,7 +351,7 @@ def setup(doc=None, solvertype="ccxtools"): (geoforces_obj, "Vertex34"), (geoforces_obj, "Vertex35"), (geoforces_obj, "Vertex36"), ] - con_force6.Force = 66666.67 + con_force6.Force = "66666.67 N" con_force6.Direction = (geom_obj, ["Edge3"]) con_force6.Reversed = False analysis.addObject(con_force6) @@ -359,7 +359,7 @@ def setup(doc=None, solvertype="ccxtools"): # con_force7 con_force7 = ObjectsFem.makeConstraintForce(doc, name="ConstraintForce7") con_force7.References = [(geoforces_obj, "Vertex1"), (geoforces_obj, "Vertex2")] - con_force7.Force = 5555.56 + con_force7.Force = "5555.56 N" con_force7.Direction = (geom_obj, ["Edge11"]) con_force7.Reversed = False analysis.addObject(con_force7) @@ -367,7 +367,7 @@ def setup(doc=None, solvertype="ccxtools"): # con_force8 con_force8 = ObjectsFem.makeConstraintForce(doc, name="ConstraintForce8") con_force8.References = [(geoforces_obj, "Vertex8"), (geoforces_obj, "Vertex14")] - con_force8.Force = 5555.56 + con_force8.Force = "5555.56 N" con_force8.Direction = (geom_obj, ["Edge6"]) con_force8.Reversed = False analysis.addObject(con_force8) @@ -380,7 +380,7 @@ def setup(doc=None, solvertype="ccxtools"): (geoforces_obj, "Vertex5"), (geoforces_obj, "Vertex6"), (geoforces_obj, "Vertex7"), ] - con_force9.Force = 27777.78 + con_force9.Force = "27777.78 N" con_force9.Direction = (geom_obj, ["Edge11"]) con_force9.Reversed = False analysis.addObject(con_force9) @@ -393,7 +393,7 @@ def setup(doc=None, solvertype="ccxtools"): (geoforces_obj, "Vertex17"), (geoforces_obj, "Vertex18"), (geoforces_obj, "Vertex19"), ] - con_force10.Force = 27777.78 + con_force10.Force = "27777.78 N" con_force10.Direction = (geom_obj, ["Edge6"]) con_force10.Reversed = False analysis.addObject(con_force10) @@ -407,7 +407,7 @@ def setup(doc=None, solvertype="ccxtools"): (geoforces_obj, "Vertex28"), (geoforces_obj, "Vertex29"), (geoforces_obj, "Vertex30"), ] - con_force11.Force = 66666.67 + con_force11.Force = "66666.67 N" con_force11.Direction = (geom_obj, ["Edge11"]) con_force11.Reversed = False analysis.addObject(con_force11) @@ -421,7 +421,7 @@ def setup(doc=None, solvertype="ccxtools"): (geoforces_obj, "Vertex40"), (geoforces_obj, "Vertex41"), (geoforces_obj, "Vertex42"), ] - con_force12.Force = 66666.67 + con_force12.Force = "66666.67 N" con_force12.Direction = (geom_obj, ["Edge6"]) con_force12.Reversed = False analysis.addObject(con_force12) diff --git a/src/Mod/Fem/femexamples/truss_3d_cs_circle_ele_seg3.py b/src/Mod/Fem/femexamples/truss_3d_cs_circle_ele_seg3.py index 9d1902f417..1a6db1d409 100644 --- a/src/Mod/Fem/femexamples/truss_3d_cs_circle_ele_seg3.py +++ b/src/Mod/Fem/femexamples/truss_3d_cs_circle_ele_seg3.py @@ -446,7 +446,7 @@ def setup(doc=None, solvertype="ccxtools"): # constraint force con_force = ObjectsFem.makeConstraintForce(doc, "ConstraintForce") con_force.References = [(geom_obj, ("Vertex5", "Vertex6"))] - con_force.Force = 60000.0 # 30 kN on each Node + con_force.Force = "60000.0 N" # 30 kN on each Node con_force.Direction = (load_line, ["Edge1"]) con_force.Reversed = False analysis.addObject(con_force) diff --git a/src/Mod/Fem/femmesh/meshtools.py b/src/Mod/Fem/femmesh/meshtools.py index 6876291268..77349a9d65 100644 --- a/src/Mod/Fem/femmesh/meshtools.py +++ b/src/Mod/Fem/femmesh/meshtools.py @@ -803,7 +803,8 @@ def get_force_obj_vertex_nodeload_table( # ("refshape_name.elemname", node_load_table) # ] force_obj_node_load_table = [] - node_load = frc_obj.Force / len(frc_obj.References) + force_quantity = FreeCAD.Units.Quantity(frc_obj.Force.getValueAs("N")) + node_load = force_quantity / len(frc_obj.References) for o, elem_tup in frc_obj.References: node_count = len(elem_tup) for elem in elem_tup: @@ -863,7 +864,8 @@ def get_force_obj_edge_nodeload_table( ) sum_ref_edge_length += ref_edge.Length if sum_ref_edge_length != 0: - force_per_sum_ref_edge_length = frc_obj.Force / sum_ref_edge_length + force_quantity = FreeCAD.Units.Quantity(frc_obj.Force.getValueAs("N")) + force_per_sum_ref_edge_length = force_quantity / sum_ref_edge_length for o, elem_tup in frc_obj.References: for elem in elem_tup: ref_edge = o.Shape.getElement(elem) @@ -907,7 +909,8 @@ def get_force_obj_edge_nodeload_table( for node in ref_shape[1]: sum_node_load += ref_shape[1][node] # for debugging - ratio = sum_node_load / frc_obj.Force + force_quantity = FreeCAD.Units.Quantity(frc_obj.Force.getValueAs("N")) + ratio = sum_node_load / force_quantity if ratio < 0.99 or ratio > 1.01: FreeCAD.Console.PrintMessage( "Deviation sum_node_load to frc_obj.Force is more than 1% : {}\n" @@ -927,7 +930,7 @@ def get_force_obj_edge_nodeload_table( ) FreeCAD.Console.PrintMessage( " frc_obj.Force: {}\n" - .format(frc_obj.Force) + .format(force_quantity) ) FreeCAD.Console.PrintMessage( " the reason could be simply a circle length --> " @@ -1135,7 +1138,8 @@ def get_force_obj_face_nodeload_table( ) sum_ref_face_area += ref_face.Area if sum_ref_face_area != 0: - force_per_sum_ref_face_area = frc_obj.Force / sum_ref_face_area + force_quantity = FreeCAD.Units.Quantity(frc_obj.Force.getValueAs("N")) + force_per_sum_ref_face_area = force_quantity / sum_ref_face_area for o, elem_tup in frc_obj.References: for elem in elem_tup: ref_face = o.Shape.getElement(elem) @@ -1178,7 +1182,8 @@ def get_force_obj_face_nodeload_table( for node in ref_shape[1]: sum_node_load += ref_shape[1][node] # for debugging - ratio = sum_node_load / frc_obj.Force + force_quantity = FreeCAD.Units.Quantity(frc_obj.Force.getValueAs("N")) + ratio = sum_node_load / force_quantity if ratio < 0.99 or ratio > 1.01: FreeCAD.Console.PrintMessage( "Deviation sum_node_load to frc_obj.Force is more than 1% : {}\n" @@ -1198,7 +1203,7 @@ def get_force_obj_face_nodeload_table( ) FreeCAD.Console.PrintMessage( " frc_obj.Force: {}\n" - .format(frc_obj.Force) + .format(force_quantity) ) FreeCAD.Console.PrintMessage( " the reason could be simply a circle area --> " diff --git a/src/Mod/Fem/femsolver/calculix/write_constraint_force.py b/src/Mod/Fem/femsolver/calculix/write_constraint_force.py index b12567e80c..a5a08b7945 100644 --- a/src/Mod/Fem/femsolver/calculix/write_constraint_force.py +++ b/src/Mod/Fem/femsolver/calculix/write_constraint_force.py @@ -54,14 +54,15 @@ def write_meshdata_constraint(f, femobj, force_obj, ccxwriter): f.write("** {}\n".format(ref_shape[0])) for n in sorted(ref_shape[1]): node_load = ref_shape[1][n] + # the loads in ref_shape[1][n] are without unit if abs(direction_vec.x) > dir_zero_tol: - v1 = "{:.13E}".format(direction_vec.x * node_load) + v1 = "{}".format(direction_vec.x * node_load) f.write("{},1,{}\n".format(n, v1)) if abs(direction_vec.y) > dir_zero_tol: - v2 = "{:.13E}".format(direction_vec.y * node_load) + v2 = "{}".format(direction_vec.y * node_load) f.write("{},2,{}\n".format(n, v2)) if abs(direction_vec.z) > dir_zero_tol: - v3 = "{:.13E}".format(direction_vec.z * node_load) + v3 = "{}".format(direction_vec.z * node_load) f.write("{},3,{}\n".format(n, v3)) f.write("\n") f.write("\n") diff --git a/src/Mod/Fem/femsolver/elmer/equations/deformation_writer.py b/src/Mod/Fem/femsolver/elmer/equations/deformation_writer.py index 295a9a9a38..080976218d 100644 --- a/src/Mod/Fem/femsolver/elmer/equations/deformation_writer.py +++ b/src/Mod/Fem/femsolver/elmer/equations/deformation_writer.py @@ -97,7 +97,7 @@ class DeformationWriter: for obj in self.write.getMember("Fem::ConstraintForce"): if obj.References: for name in obj.References[0][1]: - force = self.write.getFromUi(obj.Force, "N", "M*L*T^-2") + force = float(obj.Force.getValueAs("N")) self.write.boundary(name, "Force 1", obj.DirectionVector.x * force) self.write.boundary(name, "Force 2", obj.DirectionVector.y * force) self.write.boundary(name, "Force 3", obj.DirectionVector.z * force) diff --git a/src/Mod/Fem/femsolver/elmer/equations/elasticity_writer.py b/src/Mod/Fem/femsolver/elmer/equations/elasticity_writer.py index 60c5327504..bc71a67368 100644 --- a/src/Mod/Fem/femsolver/elmer/equations/elasticity_writer.py +++ b/src/Mod/Fem/femsolver/elmer/equations/elasticity_writer.py @@ -313,7 +313,7 @@ class ElasticityWriter: for obj in self.write.getMember("Fem::ConstraintForce"): if obj.References: for name in obj.References[0][1]: - force = self.write.getFromUi(obj.Force, "N", "M*L*T^-2") + force = float(obj.Force.getValueAs("N")) self.write.boundary(name, "Force 1", obj.DirectionVector.x * force) self.write.boundary(name, "Force 2", obj.DirectionVector.y * force) self.write.boundary(name, "Force 3", obj.DirectionVector.z * force) diff --git a/src/Mod/Fem/femsolver/mystran/add_con_force.py b/src/Mod/Fem/femsolver/mystran/add_con_force.py index a267779c2a..4adc42f667 100644 --- a/src/Mod/Fem/femsolver/mystran/add_con_force.py +++ b/src/Mod/Fem/femsolver/mystran/add_con_force.py @@ -50,6 +50,7 @@ def add_con_force(f, model, mystran_writer): for ref_shape in femobj["NodeLoadTable"]: force_code += "# {}\n".format(ref_shape[0]) for n in sorted(ref_shape[1]): + # the loads in ref_shape[1][n] are without unit node_load = ref_shape[1][n] force_code += ( "model.add_force(sid={}, node={}, mag={}, xyz=({}, {}, {}))\n" diff --git a/src/Mod/Fem/femsolver/z88/writer.py b/src/Mod/Fem/femsolver/z88/writer.py index 55ca7b26bc..3bb63eb22f 100644 --- a/src/Mod/Fem/femsolver/z88/writer.py +++ b/src/Mod/Fem/femsolver/z88/writer.py @@ -157,6 +157,7 @@ class FemInputWriterZ88(writerbase.FemInputWriter): direction_vec = femobj["Object"].DirectionVector for ref_shape in femobj["NodeLoadTable"]: for n in sorted(ref_shape[1]): + # the loads in ref_shape[1][n] are without unit node_load = ref_shape[1][n] if (direction_vec.x != 0.0): v1 = direction_vec.x * node_load diff --git a/src/Mod/Fem/femtest/data/calculix/box_frequency.FCStd b/src/Mod/Fem/femtest/data/calculix/box_frequency.FCStd index c2a351424a..041cc08a3e 100644 Binary files a/src/Mod/Fem/femtest/data/calculix/box_frequency.FCStd and b/src/Mod/Fem/femtest/data/calculix/box_frequency.FCStd differ diff --git a/src/Mod/Fem/femtest/data/calculix/box_static.inp b/src/Mod/Fem/femtest/data/calculix/box_static.inp index 4cf403b43c..a11e5e3820 100644 --- a/src/Mod/Fem/femtest/data/calculix/box_static.inp +++ b/src/Mod/Fem/femtest/data/calculix/box_static.inp @@ -507,47 +507,47 @@ FemConstraintFixed,3 *CLOAD ** FemConstraintForce ** node loads on shape: Box:Face6 -2,3,-0.0000000000000E+00 -4,3,-0.0000000000000E+00 -6,3,-0.0000000000000E+00 -8,3,-0.0000000000000E+00 -18,3,-0.0000000000000E+00 -19,3,-8.3333333333333E+02 -20,3,-8.3333333333333E+02 -30,3,-0.0000000000000E+00 -31,3,-8.3333333333333E+02 -32,3,-8.3333333333333E+02 -36,3,-0.0000000000000E+00 -37,3,-8.3333333333333E+02 -38,3,-8.3333333333333E+02 -42,3,-0.0000000000000E+00 -43,3,-8.3333333333333E+02 -44,3,-8.3333333333333E+02 -170,3,-0.0000000000000E+00 -171,3,-0.0000000000000E+00 -172,3,-0.0000000000000E+00 -173,3,-0.0000000000000E+00 -174,3,-0.0000000000000E+00 -175,3,-1.6666666666667E+03 -176,3,-1.6666666666667E+03 -177,3,-1.6666666666667E+03 -178,3,-1.6666666666667E+03 -179,3,-1.6666666666667E+03 -180,3,-1.6666666666667E+03 -181,3,-1.6666666666667E+03 -182,3,-1.6666666666667E+03 -183,3,-1.6666666666667E+03 -184,3,-1.6666666666667E+03 -185,3,-1.6666666666667E+03 -186,3,-1.6666666666667E+03 -187,3,-1.6666666666667E+03 -188,3,-1.6666666666667E+03 -189,3,-1.6666666666667E+03 -190,3,-1.6666666666667E+03 -191,3,-1.6666666666667E+03 -192,3,-1.6666666666667E+03 -193,3,-1.6666666666667E+03 -194,3,-1.6666666666667E+03 +2,3,-0.0 +4,3,-0.0 +6,3,-0.0 +8,3,-0.0 +18,3,-0.0 +19,3,-833.3333333333335 +20,3,-833.3333333333335 +30,3,-0.0 +31,3,-833.3333333333335 +32,3,-833.3333333333335 +36,3,-0.0 +37,3,-833.3333333333335 +38,3,-833.3333333333335 +42,3,-0.0 +43,3,-833.3333333333335 +44,3,-833.3333333333335 +170,3,-0.0 +171,3,-0.0 +172,3,-0.0 +173,3,-0.0 +174,3,-0.0 +175,3,-1666.666666666667 +176,3,-1666.666666666667 +177,3,-1666.666666666667 +178,3,-1666.666666666667 +179,3,-1666.666666666667 +180,3,-1666.666666666667 +181,3,-1666.666666666667 +182,3,-1666.666666666667 +183,3,-1666.666666666667 +184,3,-1666.666666666667 +185,3,-1666.666666666667 +186,3,-1666.666666666667 +187,3,-1666.666666666667 +188,3,-1666.666666666667 +189,3,-1666.666666666667 +190,3,-1666.666666666667 +191,3,-1666.666666666667 +192,3,-1666.666666666667 +193,3,-1666.666666666667 +194,3,-1666.666666666667 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_buckling_flexuralbuckling.inp b/src/Mod/Fem/femtest/data/calculix/ccx_buckling_flexuralbuckling.inp index 10c99f02ab..f9c5550214 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_buckling_flexuralbuckling.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_buckling_flexuralbuckling.inp @@ -764,31 +764,31 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: Beam:Face6 -65,3,-3.2812500000000E-01 -66,3,-6.5625000000000E-01 -67,3,-6.5625000000000E-01 -68,3,-1.3125000000000E+00 -101,3,-6.5625000000000E-01 -102,3,-1.3125000000000E+00 -135,3,-6.5625000000000E-01 -136,3,-1.3125000000000E+00 -169,3,-3.2812500000000E-01 -170,3,-6.5625000000000E-01 -203,3,-6.5625000000000E-01 -204,3,-1.3125000000000E+00 -221,3,-1.3125000000000E+00 -238,3,-1.3125000000000E+00 -255,3,-6.5625000000000E-01 -288,3,-6.5625000000000E-01 -289,3,-1.3125000000000E+00 -306,3,-1.3125000000000E+00 -323,3,-1.3125000000000E+00 -340,3,-6.5625000000000E-01 -373,3,-3.2812500000000E-01 -374,3,-6.5625000000000E-01 -391,3,-6.5625000000000E-01 -408,3,-6.5625000000000E-01 -425,3,-3.2812500000000E-01 +65,3,-0.328125 +66,3,-0.65625 +67,3,-0.65625 +68,3,-1.3125 +101,3,-0.65625 +102,3,-1.3125 +135,3,-0.65625 +136,3,-1.3125 +169,3,-0.328125 +170,3,-0.65625 +203,3,-0.65625 +204,3,-1.3125 +221,3,-1.3125 +238,3,-1.3125 +255,3,-0.65625 +288,3,-0.65625 +289,3,-1.3125 +306,3,-1.3125 +323,3,-1.3125 +340,3,-0.65625 +373,3,-0.328125 +374,3,-0.65625 +391,3,-0.65625 +408,3,-0.65625 +425,3,-0.328125 @@ -809,8 +809,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25065 (Git) -** written on --> Tue Jun 15 10:36:32 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 03:37:15 2023 ** file name --> ccx_buckling_flexuralbuckling.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_circle.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_circle.inp index 683406edf8..99de648003 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_circle.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_circle.inp @@ -83,7 +83,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9.0000000000000E+06 +2,3,-9000000.0 @@ -104,8 +104,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25432 (Git) -** written on --> Wed Aug 4 22:12:24 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:29:54 2023 ** file name --> ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_pipe.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_pipe.inp index 7b88d0cd62..1fb6fb1330 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_pipe.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_pipe.inp @@ -83,7 +83,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9.0000000000000E+06 +2,3,-9000000.0 @@ -104,8 +104,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25432 (Git) -** written on --> Wed Aug 4 22:13:20 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 03:47:22 2023 ** file name --> ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_rect.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_rect.inp index edb546f88c..49ca31c216 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_rect.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_rect.inp @@ -83,7 +83,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9.0000000000000E+06 +2,3,-9000000.0 @@ -104,8 +104,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25432 (Git) -** written on --> Wed Aug 4 22:14:46 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 03:48:55 2023 ** file name --> ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_hexa20.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_hexa20.inp index 8196de6c7e..7e200cbdb4 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_hexa20.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_hexa20.inp @@ -403,27 +403,27 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: Box:Face2 -5,3,1.8750000000000E+05 -6,3,1.8750000000000E+05 -7,3,1.8750000000000E+05 -8,3,1.8750000000000E+05 -21,3,-7.5000000000000E+05 -22,3,3.7500000000000E+05 -23,3,-7.5000000000000E+05 -24,3,-7.5000000000000E+05 -25,3,3.7500000000000E+05 -26,3,-7.5000000000000E+05 -27,3,-7.5000000000000E+05 -28,3,3.7500000000000E+05 -29,3,-7.5000000000000E+05 -30,3,-7.5000000000000E+05 -31,3,3.7500000000000E+05 -32,3,-7.5000000000000E+05 -98,3,-1.5000000000000E+06 -99,3,-1.5000000000000E+06 -100,3,7.5000000000000E+05 -101,3,-1.5000000000000E+06 -102,3,-1.5000000000000E+06 +5,3,187500.00000000003 +6,3,187500.00000000003 +7,3,187500.00000000003 +8,3,187500.00000000003 +21,3,-750000.0000000001 +22,3,375000.00000000006 +23,3,-750000.0000000001 +24,3,-750000.0000000001 +25,3,375000.00000000006 +26,3,-750000.0000000001 +27,3,-750000.0000000001 +28,3,375000.00000000006 +29,3,-750000.0000000001 +30,3,-750000.0000000001 +31,3,375000.00000000006 +32,3,-750000.0000000001 +98,3,-1500000.0000000002 +99,3,-1500000.0000000002 +100,3,750000.0000000001 +101,3,-1500000.0000000002 +102,3,-1500000.0000000002 @@ -444,8 +444,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.19.19767 (Git) -** written on --> Sun Mar 1 22:34:34 2020 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 04:39:55 2023 ** file name --> CantilverHexa20FaceLoad.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad4.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad4.inp index aa88c6e3a1..c01e8323f4 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad4.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad4.inp @@ -107,9 +107,9 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: CanileverPlate:Edge3 -3,3,-2.2500000000000E+06 -4,3,-2.2500000000000E+06 -13,3,-4.5000000000000E+06 +3,3,-2250000.0 +4,3,-2250000.0 +13,3,-4500000.0 @@ -130,8 +130,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25347 (Git) -** written on --> Thu Jul 29 22:17:23 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:29:04 2023 ** file name --> test.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad8.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad8.inp index 01817ff723..79f484fef1 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad8.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad8.inp @@ -95,11 +95,11 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: CanileverPlate:Edge3 -3,3,-7.5000000000000E+05 -4,3,-7.5000000000000E+05 -11,3,-1.5000000000000E+06 -12,3,-3.0000000000000E+06 -13,3,-3.0000000000000E+06 +3,3,-750000.0 +4,3,-750000.0 +11,3,-1500000.0 +12,3,-3000000.0 +13,3,-3000000.0 @@ -120,8 +120,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25343 (Git) -** written on --> Thu Jul 29 13:06:02 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:28:22 2023 ** file name --> ccx_cantilever_ele_quad8.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg2.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg2.inp index 08e6809a2a..30c3cd3896 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg2.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg2.inp @@ -225,7 +225,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9.0000000000000E+06 +2,3,-9000000.0 @@ -246,8 +246,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25335 (Git) -** written on --> Wed Jul 28 17:01:46 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 04:06:59 2023 ** file name --> test.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg3.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg3.inp index c9d196b933..104ce9d205 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg3.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg3.inp @@ -83,7 +83,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9.0000000000000E+06 +2,3,-9000000.0 @@ -104,8 +104,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25335 (Git) -** written on --> Wed Jul 28 16:59:39 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 04:06:59 2023 ** file name --> test.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria3.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria3.inp index 22b20b22a7..410a0b5ddb 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria3.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria3.inp @@ -1583,14 +1583,14 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: CanileverPlate:Edge3 -3,3,-6.4285714285714E+05 -4,3,-6.4285714285715E+05 -64,3,-1.2857142857143E+06 -65,3,-1.2857142857143E+06 -66,3,-1.2857142857143E+06 -67,3,-1.2857142857143E+06 -68,3,-1.2857142857143E+06 -69,3,-1.2857142857143E+06 +3,3,-642857.1428571417 +4,3,-642857.1428571455 +64,3,-1285714.2857142843 +65,3,-1285714.285714283 +66,3,-1285714.28571428 +67,3,-1285714.2857142847 +68,3,-1285714.28571429 +69,3,-1285714.2857142906 @@ -1611,8 +1611,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25335 (Git) -** written on --> Wed Jul 28 16:57:44 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:27:22 2023 ** file name --> test.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria6.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria6.inp index 1cac5e0ac2..7eea04c337 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria6.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria6.inp @@ -313,11 +313,11 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: CanileverPlate:Edge3 -3,3,-7.5000000000000E+05 -4,3,-7.5000000000000E+05 -39,3,-1.5000000000000E+06 -40,3,-3.0000000000000E+06 -41,3,-3.0000000000000E+06 +3,3,-750000.0 +4,3,-750000.0 +39,3,-1500000.0 +40,3,-3000000.0 +41,3,-3000000.0 @@ -338,8 +338,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25335 (Git) -** written on --> Wed Jul 28 17:09:34 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 04:06:59 2023 ** file name --> test.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_faceload.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_faceload.inp index 8f13ca6fac..46e8715e3b 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_faceload.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_faceload.inp @@ -377,19 +377,19 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: Box:Face2 -1,3,-0.0000000000000E+00 -2,3,-0.0000000000000E+00 -3,3,-0.0000000000000E+00 -4,3,-0.0000000000000E+00 -49,3,-0.0000000000000E+00 -64,3,-7.5000000000000E+05 -88,3,-7.5000000000000E+05 -100,3,-7.5000000000000E+05 -102,3,-7.5000000000000E+05 -188,3,-1.5000000000000E+06 -189,3,-1.5000000000000E+06 -190,3,-1.5000000000000E+06 -191,3,-1.5000000000000E+06 +1,3,-0.0 +2,3,-0.0 +3,3,-0.0 +4,3,-0.0 +49,3,-0.0 +64,3,-750000.0000000001 +88,3,-750000.0000000001 +100,3,-750000.0000000001 +102,3,-750000.0000000001 +188,3,-1500000.0000000002 +189,3,-1500000.0000000002 +190,3,-1500000.0000000002 +191,3,-1500000.0000000002 @@ -410,8 +410,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.19.21875 (Git) -** written on --> Tue Jul 7 07:19:22 2020 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:26:29 2023 ** file name --> ccx_cantilever_faceload.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_nodeload.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_nodeload.inp index bd7dbec4cd..1ecad0c387 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_nodeload.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_nodeload.inp @@ -377,16 +377,16 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node load on shape: Box:Vertex5 -4,3,-2.2500000000000E+06 +4,3,-2250000.0 ** node load on shape: Box:Vertex6 -3,3,-2.2500000000000E+06 +3,3,-2250000.0 ** node load on shape: Box:Vertex7 -2,3,-2.2500000000000E+06 +2,3,-2250000.0 ** node load on shape: Box:Vertex8 -1,3,-2.2500000000000E+06 +1,3,-2250000.0 @@ -407,8 +407,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.19.21875 (Git) -** written on --> Tue Jul 7 07:19:27 2020 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 03:54:52 2023 ** file name --> ccx_cantilever_nodeload.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.FCStd b/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.FCStd index 207f39360e..7475b147ec 100644 Binary files a/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.FCStd and b/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.FCStd differ diff --git a/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.inp b/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.inp index 9e75a79e40..437d5c7feb 100644 --- a/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.inp +++ b/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.inp @@ -38394,7 +38394,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: Load_place_point:Vertex1 -5,2,-5.0000000000000E+03 +5,2,-5000.0 @@ -38415,8 +38415,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.19.19278 (Git) -** written on --> Tue Jan 14 20:17:09 2020 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:18:47 2023 ** file name --> Contact_Shell_Shell.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/constraint_tie.inp b/src/Mod/Fem/femtest/data/calculix/constraint_tie.inp index ea73b8caa3..d028a0ba94 100644 --- a/src/Mod/Fem/femtest/data/calculix/constraint_tie.inp +++ b/src/Mod/Fem/femtest/data/calculix/constraint_tie.inp @@ -18630,9 +18630,9 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: BooleanFragments:Edge2 -2,2,1.6666666666667E+03 -8,2,1.6666666666667E+03 -385,2,6.6666666666667E+03 +2,2,1666.6666666666667 +8,2,1666.6666666666667 +385,2,6666.666666666667 @@ -18653,8 +18653,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.19.19481 (Git) -** written on --> Wed Feb 5 08:55:37 2020 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 04:35:16 2023 ** file name --> ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/constraint_transform_torque.inp b/src/Mod/Fem/femtest/data/calculix/constraint_transform_torque.inp index 8f95976602..80dad5dcea 100644 --- a/src/Mod/Fem/femtest/data/calculix/constraint_transform_torque.inp +++ b/src/Mod/Fem/femtest/data/calculix/constraint_transform_torque.inp @@ -10998,2152 +10998,2152 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: Cut:Face1 -3,2,-0.0000000000000E+00 -4,2,-0.0000000000000E+00 -58,2,-0.0000000000000E+00 -59,2,-0.0000000000000E+00 -60,2,-0.0000000000000E+00 -61,2,-0.0000000000000E+00 -62,2,-0.0000000000000E+00 -63,2,-0.0000000000000E+00 -64,2,-0.0000000000000E+00 -65,2,-0.0000000000000E+00 -66,2,-0.0000000000000E+00 -67,2,-0.0000000000000E+00 -68,2,-0.0000000000000E+00 -69,2,-0.0000000000000E+00 -70,2,-0.0000000000000E+00 -71,2,-0.0000000000000E+00 -72,2,-0.0000000000000E+00 -73,2,-0.0000000000000E+00 -74,2,-0.0000000000000E+00 -75,2,-0.0000000000000E+00 -76,2,-0.0000000000000E+00 -77,2,-0.0000000000000E+00 -78,2,-0.0000000000000E+00 -79,2,-0.0000000000000E+00 -80,2,-0.0000000000000E+00 -81,2,-0.0000000000000E+00 -82,2,-0.0000000000000E+00 -83,2,-0.0000000000000E+00 -84,2,-0.0000000000000E+00 -85,2,-0.0000000000000E+00 -86,2,-0.0000000000000E+00 -87,2,-0.0000000000000E+00 -88,2,-0.0000000000000E+00 -89,2,-0.0000000000000E+00 -90,2,-0.0000000000000E+00 -91,2,-0.0000000000000E+00 -92,2,-0.0000000000000E+00 -93,2,-0.0000000000000E+00 -94,2,-0.0000000000000E+00 -95,2,-0.0000000000000E+00 -96,2,-0.0000000000000E+00 -97,2,-0.0000000000000E+00 -98,2,-0.0000000000000E+00 -99,2,-0.0000000000000E+00 -100,2,-0.0000000000000E+00 -101,2,-0.0000000000000E+00 -102,2,-0.0000000000000E+00 -103,2,-0.0000000000000E+00 -104,2,-0.0000000000000E+00 -105,2,-0.0000000000000E+00 -106,2,-0.0000000000000E+00 -107,2,-0.0000000000000E+00 -108,2,-0.0000000000000E+00 -109,2,-0.0000000000000E+00 -110,2,-0.0000000000000E+00 -111,2,-0.0000000000000E+00 -112,2,-0.0000000000000E+00 -113,2,-0.0000000000000E+00 -114,2,-0.0000000000000E+00 -115,2,-0.0000000000000E+00 -116,2,-0.0000000000000E+00 -500,2,-0.0000000000000E+00 -501,2,-0.0000000000000E+00 -502,2,-0.0000000000000E+00 -503,2,-0.0000000000000E+00 -504,2,-0.0000000000000E+00 -505,2,-0.0000000000000E+00 -506,2,-0.0000000000000E+00 -507,2,-0.0000000000000E+00 -508,2,-0.0000000000000E+00 -509,2,-0.0000000000000E+00 -510,2,-0.0000000000000E+00 -511,2,-0.0000000000000E+00 -512,2,-0.0000000000000E+00 -513,2,-0.0000000000000E+00 -514,2,-0.0000000000000E+00 -515,2,-0.0000000000000E+00 -516,2,-0.0000000000000E+00 -517,2,-0.0000000000000E+00 -518,2,-0.0000000000000E+00 -519,2,-0.0000000000000E+00 -520,2,-0.0000000000000E+00 -521,2,-0.0000000000000E+00 -522,2,-0.0000000000000E+00 -523,2,-0.0000000000000E+00 -524,2,-0.0000000000000E+00 -525,2,-0.0000000000000E+00 -526,2,-0.0000000000000E+00 -527,2,-0.0000000000000E+00 -528,2,-0.0000000000000E+00 -529,2,-0.0000000000000E+00 -530,2,-0.0000000000000E+00 -531,2,-0.0000000000000E+00 -532,2,-0.0000000000000E+00 -533,2,-0.0000000000000E+00 -534,2,-0.0000000000000E+00 -535,2,-0.0000000000000E+00 -536,2,-0.0000000000000E+00 -537,2,-0.0000000000000E+00 -538,2,-0.0000000000000E+00 -539,2,-0.0000000000000E+00 -540,2,-0.0000000000000E+00 -541,2,-0.0000000000000E+00 -542,2,-0.0000000000000E+00 -543,2,-0.0000000000000E+00 -544,2,-0.0000000000000E+00 -545,2,-0.0000000000000E+00 -546,2,-0.0000000000000E+00 -547,2,-0.0000000000000E+00 -548,2,-0.0000000000000E+00 -549,2,-0.0000000000000E+00 -550,2,-0.0000000000000E+00 -551,2,-0.0000000000000E+00 -552,2,-0.0000000000000E+00 -553,2,-0.0000000000000E+00 -554,2,-0.0000000000000E+00 -555,2,-0.0000000000000E+00 -556,2,-0.0000000000000E+00 -557,2,-0.0000000000000E+00 -558,2,-0.0000000000000E+00 -559,2,-0.0000000000000E+00 -560,2,-0.0000000000000E+00 -561,2,-0.0000000000000E+00 -562,2,-0.0000000000000E+00 -563,2,-0.0000000000000E+00 -564,2,-0.0000000000000E+00 -565,2,-0.0000000000000E+00 -566,2,-0.0000000000000E+00 -567,2,-0.0000000000000E+00 -568,2,-0.0000000000000E+00 -569,2,-0.0000000000000E+00 -570,2,-0.0000000000000E+00 -571,2,-0.0000000000000E+00 -572,2,-0.0000000000000E+00 -573,2,-0.0000000000000E+00 -574,2,-0.0000000000000E+00 -575,2,-0.0000000000000E+00 -576,2,-0.0000000000000E+00 -577,2,-0.0000000000000E+00 -578,2,-0.0000000000000E+00 -579,2,-0.0000000000000E+00 -580,2,-0.0000000000000E+00 -581,2,-0.0000000000000E+00 -582,2,-0.0000000000000E+00 -583,2,-0.0000000000000E+00 -584,2,-0.0000000000000E+00 -585,2,-0.0000000000000E+00 -586,2,-0.0000000000000E+00 -587,2,-0.0000000000000E+00 -588,2,-0.0000000000000E+00 -589,2,-0.0000000000000E+00 -590,2,-0.0000000000000E+00 -591,2,-0.0000000000000E+00 -592,2,-0.0000000000000E+00 -593,2,-0.0000000000000E+00 -594,2,-0.0000000000000E+00 -595,2,-0.0000000000000E+00 -596,2,-0.0000000000000E+00 -597,2,-0.0000000000000E+00 -598,2,-0.0000000000000E+00 -599,2,-0.0000000000000E+00 -600,2,-0.0000000000000E+00 -601,2,-0.0000000000000E+00 -602,2,-0.0000000000000E+00 -603,2,-0.0000000000000E+00 -604,2,-0.0000000000000E+00 -605,2,-0.0000000000000E+00 -606,2,-0.0000000000000E+00 -607,2,-0.0000000000000E+00 -608,2,-0.0000000000000E+00 -609,2,-0.0000000000000E+00 -610,2,-0.0000000000000E+00 -611,2,-0.0000000000000E+00 -612,2,-0.0000000000000E+00 -613,2,-0.0000000000000E+00 -614,2,-0.0000000000000E+00 -615,2,-0.0000000000000E+00 -616,2,-0.0000000000000E+00 -617,2,-0.0000000000000E+00 -618,2,-0.0000000000000E+00 -619,2,-0.0000000000000E+00 -620,2,-0.0000000000000E+00 -621,2,-0.0000000000000E+00 -622,2,-0.0000000000000E+00 -623,2,-0.0000000000000E+00 -624,2,-0.0000000000000E+00 -625,2,-0.0000000000000E+00 -626,2,-0.0000000000000E+00 -627,2,-0.0000000000000E+00 -628,2,-0.0000000000000E+00 -629,2,-0.0000000000000E+00 -630,2,-0.0000000000000E+00 -631,2,-0.0000000000000E+00 -632,2,-0.0000000000000E+00 -633,2,-0.0000000000000E+00 -634,2,-0.0000000000000E+00 -635,2,-0.0000000000000E+00 -636,2,-0.0000000000000E+00 -637,2,-0.0000000000000E+00 -638,2,-0.0000000000000E+00 -639,2,-0.0000000000000E+00 -640,2,-0.0000000000000E+00 -641,2,-0.0000000000000E+00 -642,2,-0.0000000000000E+00 -643,2,-0.0000000000000E+00 -644,2,-0.0000000000000E+00 -645,2,-0.0000000000000E+00 -646,2,-0.0000000000000E+00 -647,2,-0.0000000000000E+00 -648,2,-0.0000000000000E+00 -649,2,-0.0000000000000E+00 -650,2,-0.0000000000000E+00 -651,2,-0.0000000000000E+00 -652,2,-0.0000000000000E+00 -653,2,-0.0000000000000E+00 -654,2,-0.0000000000000E+00 -655,2,-0.0000000000000E+00 -656,2,-0.0000000000000E+00 -657,2,-0.0000000000000E+00 -658,2,-0.0000000000000E+00 -659,2,-0.0000000000000E+00 -660,2,-0.0000000000000E+00 -661,2,-0.0000000000000E+00 -662,2,-0.0000000000000E+00 -663,2,-0.0000000000000E+00 -664,2,-0.0000000000000E+00 -665,2,-0.0000000000000E+00 -666,2,-0.0000000000000E+00 -667,2,-0.0000000000000E+00 -668,2,-0.0000000000000E+00 -669,2,-0.0000000000000E+00 -670,2,-0.0000000000000E+00 -671,2,-0.0000000000000E+00 -672,2,-0.0000000000000E+00 -673,2,-0.0000000000000E+00 -674,2,-0.0000000000000E+00 -675,2,-0.0000000000000E+00 -676,2,-0.0000000000000E+00 -677,2,-0.0000000000000E+00 -678,2,-0.0000000000000E+00 -679,2,-0.0000000000000E+00 -680,2,-0.0000000000000E+00 -681,2,-0.0000000000000E+00 -682,2,-0.0000000000000E+00 -683,2,-0.0000000000000E+00 -684,2,-0.0000000000000E+00 -685,2,-0.0000000000000E+00 -686,2,-0.0000000000000E+00 -687,2,-0.0000000000000E+00 -688,2,-0.0000000000000E+00 -689,2,-0.0000000000000E+00 -690,2,-0.0000000000000E+00 -691,2,-0.0000000000000E+00 -692,2,-0.0000000000000E+00 -693,2,-0.0000000000000E+00 -694,2,-0.0000000000000E+00 -695,2,-0.0000000000000E+00 -696,2,-0.0000000000000E+00 -697,2,-0.0000000000000E+00 -698,2,-0.0000000000000E+00 -699,2,-0.0000000000000E+00 -700,2,-0.0000000000000E+00 -701,2,-0.0000000000000E+00 -702,2,-0.0000000000000E+00 -703,2,-0.0000000000000E+00 -704,2,-0.0000000000000E+00 -705,2,-0.0000000000000E+00 -706,2,-0.0000000000000E+00 -707,2,-0.0000000000000E+00 -708,2,-0.0000000000000E+00 -709,2,-0.0000000000000E+00 -710,2,-0.0000000000000E+00 -711,2,-0.0000000000000E+00 -712,2,-0.0000000000000E+00 -713,2,-0.0000000000000E+00 -714,2,-0.0000000000000E+00 -715,2,-0.0000000000000E+00 -716,2,-0.0000000000000E+00 -717,2,-0.0000000000000E+00 -718,2,-0.0000000000000E+00 -719,2,-0.0000000000000E+00 -720,2,-0.0000000000000E+00 -721,2,-0.0000000000000E+00 -722,2,-0.0000000000000E+00 -723,2,-0.0000000000000E+00 -724,2,-0.0000000000000E+00 -725,2,-0.0000000000000E+00 -726,2,-0.0000000000000E+00 -727,2,-0.0000000000000E+00 -728,2,-0.0000000000000E+00 -729,2,-0.0000000000000E+00 -730,2,-0.0000000000000E+00 -731,2,-0.0000000000000E+00 -732,2,-0.0000000000000E+00 -733,2,-0.0000000000000E+00 -734,2,-0.0000000000000E+00 -735,2,-0.0000000000000E+00 -736,2,-0.0000000000000E+00 -737,2,-0.0000000000000E+00 -738,2,-0.0000000000000E+00 -739,2,-0.0000000000000E+00 -740,2,-0.0000000000000E+00 -741,2,-0.0000000000000E+00 -742,2,-0.0000000000000E+00 -743,2,-0.0000000000000E+00 -744,2,-0.0000000000000E+00 -745,2,-0.0000000000000E+00 -746,2,-0.0000000000000E+00 -747,2,-0.0000000000000E+00 -748,2,-0.0000000000000E+00 -749,2,-0.0000000000000E+00 -750,2,-0.0000000000000E+00 -751,2,-0.0000000000000E+00 -752,2,-0.0000000000000E+00 -753,2,-0.0000000000000E+00 -754,2,-0.0000000000000E+00 -755,2,-0.0000000000000E+00 -756,2,-0.0000000000000E+00 -757,2,-0.0000000000000E+00 -758,2,-0.0000000000000E+00 -759,2,-0.0000000000000E+00 -760,2,-0.0000000000000E+00 -761,2,-0.0000000000000E+00 -762,2,-0.0000000000000E+00 -763,2,-0.0000000000000E+00 -764,2,-0.0000000000000E+00 -765,2,-0.0000000000000E+00 -766,2,-0.0000000000000E+00 -767,2,-0.0000000000000E+00 -768,2,-0.0000000000000E+00 -769,2,-0.0000000000000E+00 -770,2,-0.0000000000000E+00 -771,2,-0.0000000000000E+00 -772,2,-0.0000000000000E+00 -773,2,-0.0000000000000E+00 -774,2,-0.0000000000000E+00 -775,2,-0.0000000000000E+00 -776,2,-0.0000000000000E+00 -777,2,-0.0000000000000E+00 -778,2,-0.0000000000000E+00 -779,2,-0.0000000000000E+00 -780,2,-0.0000000000000E+00 -781,2,-0.0000000000000E+00 -782,2,-0.0000000000000E+00 -783,2,-0.0000000000000E+00 -784,2,-0.0000000000000E+00 -785,2,-0.0000000000000E+00 -786,2,-0.0000000000000E+00 -787,2,-0.0000000000000E+00 -788,2,-0.0000000000000E+00 -789,2,-0.0000000000000E+00 -790,2,-0.0000000000000E+00 -791,2,-0.0000000000000E+00 -792,2,-0.0000000000000E+00 -793,2,-0.0000000000000E+00 -794,2,-0.0000000000000E+00 -795,2,-0.0000000000000E+00 -796,2,-0.0000000000000E+00 -797,2,-0.0000000000000E+00 -798,2,-0.0000000000000E+00 -799,2,-0.0000000000000E+00 -800,2,-0.0000000000000E+00 -801,2,-0.0000000000000E+00 -802,2,-0.0000000000000E+00 -803,2,-0.0000000000000E+00 -804,2,-0.0000000000000E+00 -805,2,-0.0000000000000E+00 -806,2,-0.0000000000000E+00 -807,2,-0.0000000000000E+00 -808,2,-0.0000000000000E+00 -809,2,-0.0000000000000E+00 -810,2,-0.0000000000000E+00 -811,2,-0.0000000000000E+00 -812,2,-0.0000000000000E+00 -813,2,-0.0000000000000E+00 -814,2,-0.0000000000000E+00 -815,2,-0.0000000000000E+00 -816,2,-0.0000000000000E+00 -817,2,-0.0000000000000E+00 -818,2,-0.0000000000000E+00 -819,2,-0.0000000000000E+00 -820,2,-0.0000000000000E+00 -821,2,-0.0000000000000E+00 -822,2,-0.0000000000000E+00 -823,2,-0.0000000000000E+00 -824,2,-0.0000000000000E+00 -825,2,-0.0000000000000E+00 -826,2,-0.0000000000000E+00 -827,2,-0.0000000000000E+00 -828,2,-0.0000000000000E+00 -829,2,-0.0000000000000E+00 -830,2,-0.0000000000000E+00 -831,2,-0.0000000000000E+00 -832,2,-0.0000000000000E+00 -833,2,-0.0000000000000E+00 -834,2,-0.0000000000000E+00 -835,2,-0.0000000000000E+00 -836,2,-0.0000000000000E+00 -837,2,-0.0000000000000E+00 -838,2,-0.0000000000000E+00 -839,2,-0.0000000000000E+00 -840,2,-0.0000000000000E+00 -841,2,-0.0000000000000E+00 -842,2,-0.0000000000000E+00 -843,2,-0.0000000000000E+00 -844,2,-0.0000000000000E+00 -845,2,-0.0000000000000E+00 -846,2,-0.0000000000000E+00 -847,2,-0.0000000000000E+00 -848,2,-0.0000000000000E+00 -849,2,-0.0000000000000E+00 -850,2,-0.0000000000000E+00 -851,2,-0.0000000000000E+00 -852,2,-0.0000000000000E+00 -853,2,-0.0000000000000E+00 -854,2,-0.0000000000000E+00 -855,2,-0.0000000000000E+00 -856,2,-0.0000000000000E+00 -857,2,-0.0000000000000E+00 -858,2,-0.0000000000000E+00 -859,2,-0.0000000000000E+00 -860,2,-0.0000000000000E+00 -861,2,-0.0000000000000E+00 -862,2,-0.0000000000000E+00 -863,2,-0.0000000000000E+00 -864,2,-0.0000000000000E+00 -865,2,-0.0000000000000E+00 -866,2,-0.0000000000000E+00 -867,2,-0.0000000000000E+00 -868,2,-0.0000000000000E+00 -869,2,-0.0000000000000E+00 -870,2,-0.0000000000000E+00 -871,2,-0.0000000000000E+00 -872,2,-0.0000000000000E+00 -873,2,-0.0000000000000E+00 -874,2,-0.0000000000000E+00 -875,2,-0.0000000000000E+00 -876,2,-0.0000000000000E+00 -877,2,-0.0000000000000E+00 -878,2,-0.0000000000000E+00 -879,2,-0.0000000000000E+00 -880,2,-0.0000000000000E+00 -881,2,-0.0000000000000E+00 -882,2,-0.0000000000000E+00 -883,2,-0.0000000000000E+00 -884,2,-0.0000000000000E+00 -885,2,-0.0000000000000E+00 -886,2,-0.0000000000000E+00 -887,2,-0.0000000000000E+00 -888,2,-0.0000000000000E+00 -889,2,-0.0000000000000E+00 -890,2,-0.0000000000000E+00 -891,2,-0.0000000000000E+00 -892,2,-0.0000000000000E+00 -893,2,-0.0000000000000E+00 -894,2,-0.0000000000000E+00 -895,2,-0.0000000000000E+00 -896,2,-0.0000000000000E+00 -897,2,-0.0000000000000E+00 -898,2,-0.0000000000000E+00 -899,2,-0.0000000000000E+00 -900,2,-0.0000000000000E+00 -901,2,-0.0000000000000E+00 -902,2,-0.0000000000000E+00 -903,2,-0.0000000000000E+00 -904,2,-0.0000000000000E+00 -905,2,-0.0000000000000E+00 -906,2,-0.0000000000000E+00 -907,2,-0.0000000000000E+00 -908,2,-0.0000000000000E+00 -909,2,-0.0000000000000E+00 -910,2,-0.0000000000000E+00 -911,2,-0.0000000000000E+00 -912,2,-0.0000000000000E+00 -913,2,-0.0000000000000E+00 -914,2,-0.0000000000000E+00 -915,2,-0.0000000000000E+00 -916,2,-0.0000000000000E+00 -917,2,-0.0000000000000E+00 -918,2,-0.0000000000000E+00 -919,2,-0.0000000000000E+00 -920,2,-0.0000000000000E+00 -921,2,-0.0000000000000E+00 -922,2,-0.0000000000000E+00 -923,2,-0.0000000000000E+00 -924,2,-0.0000000000000E+00 -925,2,-0.0000000000000E+00 -926,2,-0.0000000000000E+00 -927,2,-0.0000000000000E+00 -928,2,-0.0000000000000E+00 -929,2,-0.0000000000000E+00 -930,2,-0.0000000000000E+00 -931,2,-0.0000000000000E+00 -932,2,-0.0000000000000E+00 -933,2,-0.0000000000000E+00 -934,2,-0.0000000000000E+00 -935,2,-0.0000000000000E+00 -936,2,-0.0000000000000E+00 -937,2,-0.0000000000000E+00 -938,2,-0.0000000000000E+00 -939,2,-0.0000000000000E+00 -940,2,-0.0000000000000E+00 -941,2,-0.0000000000000E+00 -942,2,-0.0000000000000E+00 -943,2,-0.0000000000000E+00 -944,2,-0.0000000000000E+00 -945,2,-0.0000000000000E+00 -946,2,-0.0000000000000E+00 -947,2,-0.0000000000000E+00 -948,2,-0.0000000000000E+00 -949,2,-0.0000000000000E+00 -950,2,-0.0000000000000E+00 -951,2,-0.0000000000000E+00 -952,2,-0.0000000000000E+00 -953,2,-0.0000000000000E+00 -954,2,-0.0000000000000E+00 -955,2,-0.0000000000000E+00 -956,2,-0.0000000000000E+00 -957,2,-0.0000000000000E+00 -958,2,-0.0000000000000E+00 -959,2,-0.0000000000000E+00 -960,2,-0.0000000000000E+00 -961,2,-0.0000000000000E+00 -962,2,-0.0000000000000E+00 -963,2,-0.0000000000000E+00 -964,2,-0.0000000000000E+00 -965,2,-0.0000000000000E+00 -966,2,-0.0000000000000E+00 -967,2,-0.0000000000000E+00 -968,2,-0.0000000000000E+00 -969,2,-0.0000000000000E+00 -970,2,-0.0000000000000E+00 -971,2,-0.0000000000000E+00 -972,2,-0.0000000000000E+00 -973,2,-0.0000000000000E+00 -974,2,-0.0000000000000E+00 -975,2,-0.0000000000000E+00 -976,2,-0.0000000000000E+00 -977,2,-0.0000000000000E+00 -978,2,-0.0000000000000E+00 -979,2,-0.0000000000000E+00 -980,2,-0.0000000000000E+00 -981,2,-0.0000000000000E+00 -982,2,-0.0000000000000E+00 -983,2,-0.0000000000000E+00 -1042,2,-7.5176133391817E-01 -1043,2,-7.2576863923594E-01 -1044,2,-7.0141781841044E-01 -1045,2,-7.4203043721356E-01 -1046,2,-8.1971851192094E-01 -1047,2,-8.0595887637624E-01 -1048,2,-8.2418490973666E-01 -1049,2,-7.7018007208038E-01 -1050,2,-7.9309318036112E-01 -1051,2,-8.1920045738533E-01 -1052,2,-8.1674384149916E-01 -1053,2,-8.0546803858948E-01 -1054,2,-7.9480758483186E-01 -1055,2,-8.3246822797422E-01 -1056,2,-8.4039161264991E-01 -1057,2,-8.0065658261302E-01 -1058,2,-8.9644801716053E-01 -1059,2,-9.2363120045875E-01 -1060,2,-7.2750439722781E-01 -1061,2,-7.0527328940663E-01 -1062,2,-7.2490872378519E-01 -1063,2,-7.7274154457361E-01 -1064,2,-7.4639182681652E-01 -1065,2,-7.7800846519760E-01 -1066,2,-7.4913586346236E-01 -1067,2,-7.4966503894896E-01 -1068,2,-7.6932560945593E-01 -1069,2,-7.8083099985191E-01 -1070,2,-7.8672598113787E-01 -1071,2,-7.7761495809917E-01 -1072,2,-8.1041002193833E-01 -1073,2,-8.1273195112408E-01 -1074,2,-7.8616347328177E-01 -1075,2,-5.9523287068781E-01 -1076,2,-1.6175308640971E+00 -1077,2,-1.2194372942525E+00 -1078,2,-1.4550143298595E+00 -1079,2,-1.5343781387695E+00 -1080,2,-1.4270016803745E+00 -1081,2,-1.4561907979228E+00 -1082,2,-1.5129676716499E+00 -1083,2,-1.4052343696966E+00 -1084,2,-1.3922242066586E+00 -1085,2,-1.3037539986236E+00 -1086,2,-1.4621085806739E+00 -1087,2,-1.5045042074716E+00 -1088,2,-1.3843130331262E+00 -1089,2,-1.4741210461891E+00 -1090,2,-1.4602602380808E+00 -1091,2,-1.3684038963953E+00 -1092,2,-1.4101942479476E+00 -1093,2,-1.5605582785369E+00 -1094,2,-1.4560534987209E+00 -1095,2,-1.4159156220586E+00 -1096,2,-1.5348054276706E+00 -1097,2,-1.4826100050144E+00 -1098,2,-1.3824393071430E+00 -1099,2,-1.5438037640087E+00 -1100,2,-1.4192412454606E+00 -1101,2,-1.4069179902554E+00 -1102,2,-1.7845027967480E+00 -1103,2,-1.5486072621936E+00 -2330,2,-1.4944580040764E+00 -2331,2,-1.5619053666244E+00 -2332,2,-1.8472156683847E+00 -2335,2,-1.4041748622548E+00 -2336,2,-1.7874834918165E+00 -2339,2,-1.5216856792551E+00 -2340,2,-1.3522047787441E+00 -2341,2,-1.3596857925623E+00 -2342,2,-1.4736345483580E+00 -2343,2,-1.1737853156895E+00 -2406,2,-2.0234951306097E+00 -2407,2,-1.8273683273787E+00 -2408,2,-1.5004200120476E+00 -2409,2,-1.4781889042265E+00 -2410,2,-1.4319341898702E+00 -2411,2,-1.5101054273305E+00 -2412,2,-1.4515696242488E+00 -2413,2,-1.4890229088791E+00 -2414,2,-1.4822773555703E+00 -2415,2,-1.5368557296675E+00 -2416,2,-1.5437263854533E+00 -2417,2,-1.5953369428159E+00 -2418,2,-1.5173766676962E+00 -2419,2,-1.4945826295990E+00 -2420,2,-1.5937324124653E+00 -2421,2,-1.5261992679801E+00 -2422,2,-1.5422550398023E+00 -2423,2,-1.5070051515965E+00 -2424,2,-1.5133824380671E+00 -2425,2,-1.5052046873872E+00 -2426,2,-1.5092395307164E+00 -2427,2,-1.5057338628738E+00 -2428,2,-1.5377019655435E+00 -2429,2,-1.5164367482128E+00 -2430,2,-1.5573625360505E+00 -2431,2,-1.5225361274422E+00 -2432,2,-1.6440638198607E+00 -2433,2,-1.5340415178382E+00 -2434,2,-1.5495736094169E+00 -2435,2,-1.5635790967321E+00 -2436,2,-1.5554685907029E+00 -2437,2,-1.5661137225711E+00 -2438,2,-1.5898142251497E+00 -2439,2,-1.5570026995324E+00 -2440,2,-1.6142256449495E+00 -2441,2,-1.5804214949084E+00 -2442,2,-1.6470207087886E+00 -2443,2,-1.6207594686401E+00 -2444,2,-1.6982772836531E+00 -2445,2,-1.6230813978259E+00 -2446,2,-1.5687980529676E+00 -2447,2,-1.6483120114764E+00 -2448,2,-1.5422295751253E+00 -2449,2,-1.3370597245937E+00 -2450,2,-1.6931651488107E+00 -2451,2,-1.1461291219998E+00 -2452,2,-1.2202089324227E+00 -2453,2,-1.2254197821920E+00 -2454,2,-1.2098258158759E+00 -2455,2,-1.9762054231304E+00 -2456,2,-1.5808706004143E+00 -2457,2,-1.8148462961986E+00 -2458,2,-1.4853650864385E+00 -2459,2,-1.5714045903412E+00 -2460,2,-1.4335946912587E+00 -2461,2,-1.4785776590523E+00 -2462,2,-1.3842583203284E+00 -2463,2,-1.4477239785499E+00 -2464,2,-1.3545443242777E+00 -2465,2,-1.3387136627190E+00 -2466,2,-1.5060981727518E+00 -2467,2,-1.5481641323853E+00 -2468,2,-1.5296272523147E+00 -2469,2,-1.4968122406323E+00 -2470,2,-1.3352260807458E+00 -2471,2,-1.3333457674902E+00 -2472,2,-1.5657920683621E+00 -2473,2,-1.5720804345031E+00 -2474,2,-1.4811401972916E+00 -2475,2,-1.5429670209987E+00 -2476,2,-1.4801613974325E+00 -2477,2,-1.5488682275257E+00 -2478,2,-1.4798925625869E+00 -2479,2,-1.5269131835561E+00 -2480,2,-1.4363662832760E+00 -2481,2,-1.4791550188850E+00 -2482,2,-1.4526634167388E+00 -2483,2,-1.5740425400734E+00 -2484,2,-1.5838521477956E+00 -2485,2,-1.2593732850211E+00 -2486,2,-1.4728441808548E+00 -2487,2,-1.3761326565818E+00 -2488,2,-1.3841629378019E+00 -2489,2,-1.3501399618996E+00 -2490,2,-1.4937177992133E+00 -2491,2,-1.4423865802219E+00 -2492,2,-1.6218329115464E+00 -2493,2,-1.6024648403405E+00 -2494,2,-1.5683918557914E+00 -2495,2,-1.5773890878074E+00 -2496,2,-1.6295768833711E+00 -2497,2,-1.6270738019379E+00 -2498,2,-1.6131368802346E+00 -2499,2,-1.6088627594762E+00 -2500,2,-1.6525568862242E+00 -2501,2,-1.6534676787519E+00 -2502,2,-1.6849420445977E+00 -2503,2,-1.5153315268552E+00 -2504,2,-9.9425864114017E-01 -2505,2,-9.5670268990152E-01 -2506,2,-1.1333163668890E+00 -2507,2,-1.3563477182436E+00 -2508,2,-9.8705339899638E-01 -2509,2,-1.4599911810144E+00 -2510,2,-1.5246032798106E+00 -2511,2,-1.4812324531306E+00 -2512,2,-1.4695138434741E+00 -2513,2,-1.4582595813438E+00 -2514,2,-1.5578170711466E+00 -2515,2,-1.4854826257520E+00 -2516,2,-1.4791220537628E+00 -2517,2,-1.5406983564691E+00 -2518,2,-1.4996332592236E+00 -2519,2,-1.4810279051505E+00 -2520,2,-1.5074047230803E+00 -2521,2,-1.4292688347873E+00 -2522,2,-1.4141198142853E+00 -2523,2,-1.4556154559028E+00 -2524,2,-1.4079269081806E+00 -2525,2,-1.3912294645649E+00 -2526,2,-1.4133628305795E+00 -2527,2,-1.3430290904145E+00 -2528,2,-1.3448372672620E+00 -2529,2,-1.4003369098673E+00 -2530,2,-1.4091500103947E+00 -2531,2,-1.4245332083111E+00 -2532,2,-1.4069181637232E+00 -2533,2,-1.4422293786764E+00 -2534,2,-1.4357489781928E+00 -2535,2,-1.4204611241925E+00 -2536,2,-1.3744810235290E+00 -2537,2,-1.3684249940625E+00 -2538,2,-1.4254615616565E+00 -2539,2,-1.4060723289077E+00 -2540,2,-1.4223998150756E+00 -2541,2,-1.4271902083436E+00 -2542,2,-1.4438068464893E+00 -2543,2,-1.4488208720197E+00 -2544,2,-1.4307570769220E+00 -2545,2,-1.4223950332079E+00 -2546,2,-1.4163285987952E+00 -2547,2,-1.4289452305481E+00 -2548,2,-1.4167786309677E+00 -2549,2,-1.4271670230901E+00 -2550,2,-1.4336297300304E+00 -2551,2,-1.4739463550634E+00 -2552,2,-1.4740923229335E+00 -2553,2,-1.4358812572345E+00 -2554,2,-1.4294323440632E+00 -2555,2,-1.4177953682634E+00 -2556,2,-1.4366685212983E+00 -2557,2,-1.3983158176019E+00 -2558,2,-1.4076020553095E+00 -2559,2,-1.4308954970916E+00 -2560,2,-1.4686035107355E+00 -2561,2,-1.4705342513597E+00 -2562,2,-1.4322368488603E+00 -2563,2,-1.4420737757343E+00 -2564,2,-1.4300989705904E+00 -2565,2,-1.4335812355288E+00 -2566,2,-1.3881845505861E+00 -2567,2,-1.3954211791821E+00 -2568,2,-1.4388481478480E+00 -2569,2,-1.4853015537587E+00 -2570,2,-1.4677832528848E+00 -2571,2,-1.4632792983777E+00 -2572,2,-1.4231160454934E+00 -2573,2,-1.4196418845026E+00 -2574,2,-1.4233814667375E+00 -2575,2,-1.3886193807006E+00 -2576,2,-1.4294091038196E+00 -2577,2,-1.4034816379110E+00 -2578,2,-1.9640428679545E+00 -2579,2,-2.1727610630450E+00 -2580,2,-1.2309930840531E+00 -2581,2,-1.5956842442019E+00 -2582,2,-1.6398339590338E+00 -2583,2,-1.4766115859122E+00 -2584,2,-1.4330780643801E+00 -2585,2,-1.5036982101401E+00 -2586,2,-1.4698603595251E+00 -2587,2,-1.3789834966036E+00 -2588,2,-1.3774410633951E+00 -2589,2,-1.5234646759530E+00 -2590,2,-1.4485861631953E+00 -2591,2,-1.4446515624146E+00 -2592,2,-1.4471749530702E+00 -2593,2,-1.3987762703639E+00 -2594,2,-1.4943594127926E+00 -2595,2,-1.4684957358870E+00 -2596,2,-1.3765664001255E+00 -2597,2,-1.5636253469996E+00 -2598,2,-1.5059472674165E+00 -2599,2,-1.5726031745565E+00 -2600,2,-1.5390285474776E+00 -2601,2,-1.4554291012671E+00 -2602,2,-1.4219051195653E+00 -2603,2,-1.4604557702882E+00 -2604,2,-1.3999972514302E+00 -2605,2,-1.6400589449068E+00 -2606,2,-1.5858697079108E+00 -2607,2,-1.6313939254637E+00 -2608,2,-1.4455312673145E+00 -2609,2,-1.3598121169764E+00 -2610,2,-1.3405947054707E+00 -2611,2,-1.4017739614188E+00 -2612,2,-1.3938576020848E+00 -2613,2,-1.6162244758852E+00 -2614,2,-1.5714058739207E+00 -2615,2,-1.5962553453673E+00 -2616,2,-1.6009665249137E+00 -2617,2,-1.5913049640722E+00 -2618,2,-1.6178560440123E+00 -2619,2,-1.6201385623859E+00 -2620,2,-1.6271202674850E+00 -2621,2,-1.6158070356095E+00 -2622,2,-1.6024764264770E+00 -2623,2,-1.5550665568920E+00 -2624,2,-1.6604802708999E+00 -2625,2,-1.7566956265572E+00 -2626,2,-1.5506434033311E+00 -2627,2,-1.6693176535147E+00 -2628,2,-2.0051802333604E+00 -2629,2,-1.5009287063513E+00 -2630,2,-1.3739368001357E+00 -2631,2,-1.4027360797088E+00 -2632,2,-1.4654664847743E+00 -2633,2,-1.5289657231127E+00 -2634,2,-1.2526161954695E+00 -2635,2,-1.5017604054322E+00 -2636,2,-1.4868049413393E+00 -2637,2,-1.4214352370580E+00 -2638,2,-1.3723228949487E+00 -2639,2,-1.4915742561685E+00 -2640,2,-1.5957102855713E+00 -2641,2,-1.6434740282848E+00 -2642,2,-1.5777875976679E+00 -2643,2,-1.6774979487505E+00 -2644,2,-1.5041412233756E+00 -2645,2,-1.3744442616128E+00 -2646,2,-1.5424842942835E+00 -2647,2,-1.4558547150096E+00 -2648,2,-1.3388595444868E+00 -2649,2,-1.6717617196537E+00 -2650,2,-1.6354763268346E+00 -2651,2,-1.5520163782111E+00 -2652,2,-1.5074847102870E+00 -2653,2,-1.5326753562993E+00 -2654,2,-1.8385092184060E+00 -2655,2,-1.4374279015006E+00 -2656,2,-1.5728013292748E+00 -2657,2,-1.5937631131341E+00 -2658,2,-1.5566027906932E+00 -2659,2,-1.6254055541917E+00 -2660,2,-1.3066775212371E+00 -2661,2,-1.0279551182492E+00 -2662,2,-1.4704920554800E+00 -2663,2,-1.5710935676389E+00 -2664,2,-1.6466998702542E+00 -2665,2,-1.6362203646543E+00 -2666,2,-1.6058282549457E+00 -2667,2,-1.6277451785179E+00 -2668,2,-1.6111012874603E+00 -2669,2,-1.5303161951816E+00 -2670,2,-1.5471680646887E+00 -2671,2,-1.5209551015522E+00 -2672,2,-1.5231365114370E+00 -2673,2,-1.5071337088499E+00 -2674,2,-1.4969913749808E+00 -2675,2,-1.4935582827481E+00 -2676,2,-1.5123663431571E+00 -2677,2,-1.5832461802400E+00 -2678,2,-1.4981228197859E+00 -2679,2,-1.6789051492183E+00 -2680,2,-1.6724112906921E+00 -2681,2,-1.5858303156317E+00 -2682,2,-1.6267529761717E+00 -2683,2,-1.6221762155924E+00 -2684,2,-1.5759340390524E+00 -2685,2,-1.6328792524313E+00 -2686,2,-1.6424211344232E+00 -2687,2,-1.5788179647441E+00 -2688,2,-1.6223832723137E+00 -2689,2,-1.6412488046775E+00 -2690,2,-1.6176598157503E+00 -2691,2,-1.7018816480051E+00 -2692,2,-1.6802780675392E+00 -2693,2,-1.6594033107073E+00 -2694,2,-1.6565740355110E+00 -2695,2,-1.8542545009282E+00 -2696,2,-1.6005956557963E+00 -2697,2,-1.9533909831209E+00 -2698,2,-1.8298654604415E+00 -2699,2,-1.9358011589941E+00 -2700,2,-1.5516959780382E+00 -2701,2,-1.7305365496052E+00 -2702,2,-1.8380758200078E+00 -2703,2,-1.4770086815303E+00 -2704,2,-1.5114428842132E+00 -2705,2,-1.3765711436501E+00 -2706,2,-1.3950411438716E+00 -2707,2,-1.3611260132937E+00 -2708,2,-1.2968529722631E+00 -2709,2,-1.8647315277553E+00 -2710,2,-1.4054631603525E+00 -2711,2,-1.4376617744697E+00 -2712,2,-1.5425565932145E+00 -2713,2,-1.4703328621695E+00 -2714,2,-1.4708774873739E+00 -2715,2,-1.5076047433388E+00 -2716,2,-1.4949209279088E+00 -2717,2,-1.4925828809383E+00 -2718,2,-1.2448918013026E+00 -2719,2,-1.4003978917116E+00 -2720,2,-1.8461588238854E+00 -2721,2,-1.5895677473810E+00 -2722,2,-1.5367231761429E+00 -2723,2,-1.6824458758049E+00 -2724,2,-1.5222319183959E+00 -2725,2,-1.4986653974911E+00 -2726,2,-1.4315443789004E+00 -2727,2,-1.4379109924778E+00 -2728,2,-1.4118438272908E+00 -2729,2,-1.3424692958982E+00 -2730,2,-1.4856842921840E+00 -2731,2,-1.4284575531170E+00 -2732,2,-1.5729481477712E+00 -2733,2,-1.5102515040039E+00 -2734,2,-1.5991220604156E+00 -2735,2,-1.6009062941183E+00 -2736,2,-1.3820721180247E+00 -2737,2,-1.3724270654654E+00 -2738,2,-1.2781621706483E+00 -2739,2,-1.4358173041270E+00 -2740,2,-1.6188017840706E+00 -2741,2,-1.6541426229681E+00 -2742,2,-1.5924541218983E+00 -2743,2,-1.5919988046709E+00 -2744,2,-1.6638159147497E+00 -2745,2,-1.6607081532900E+00 -2746,2,-1.6432652778118E+00 -2747,2,-1.6116062580151E+00 -2748,2,-1.4769730490231E+00 -2749,2,-1.4364671889500E+00 -2750,2,-1.5461733047248E+00 -2751,2,-1.5669097067884E+00 -2752,2,-1.1380496804994E+00 -2753,2,-1.1773448608258E+00 -2754,2,-1.8373587254757E+00 -2755,2,-1.6730376155314E+00 -2756,2,-1.5003526579922E+00 -2757,2,-1.5058942247441E+00 -2758,2,-1.4771822265787E+00 -2759,2,-1.4617799088900E+00 -2760,2,-1.5098841527903E+00 -2761,2,-1.4108794990878E+00 -2762,2,-1.5883919873872E+00 -2763,2,-1.5488182110584E+00 -2764,2,-1.5432422434424E+00 -2765,2,-1.6210033567580E+00 -2766,2,-1.8651376727929E+00 -2767,2,-1.2686150156201E+00 -2768,2,-1.5386722804926E+00 -2769,2,-1.6588699786890E+00 -2770,2,-1.6708424979087E+00 -2771,2,-1.6199758509903E+00 -2772,2,-1.7915582331210E+00 -2773,2,-1.6141113984430E+00 -2774,2,-1.5800146667004E+00 -2775,2,-1.6751786104947E+00 -2776,2,-1.5530816053008E+00 -2777,2,-1.5023764492424E+00 -2778,2,-1.5949897210509E+00 -2779,2,-1.4691925361381E+00 -2780,2,-1.4621824601119E+00 -2781,2,-1.4817074337882E+00 -2782,2,-1.4350788552906E+00 -2783,2,-1.4167747062644E+00 -2784,2,-1.4673043624180E+00 -2785,2,-1.4204462291680E+00 -2786,2,-1.4258951152657E+00 -2787,2,-1.4308749784396E+00 -2788,2,-1.4306681922740E+00 -2789,2,-1.4235169762191E+00 -2790,2,-1.4410566770662E+00 -2791,2,-1.4216767387721E+00 -2792,2,-1.4252565004815E+00 -2793,2,-1.4347560604263E+00 -2794,2,-1.4367373384291E+00 -2795,2,-1.4509666251747E+00 -2796,2,-1.4399330287907E+00 -2797,2,-1.4587513013283E+00 -2798,2,-1.4594571299629E+00 -2799,2,-1.4510923566181E+00 -2800,2,-1.4466965123734E+00 -2801,2,-1.4251604549941E+00 -2802,2,-1.4400782424161E+00 -2803,2,-1.4183345830898E+00 -2804,2,-1.4298330446202E+00 -2805,2,-1.4150915790550E+00 -2806,2,-1.4405839785153E+00 -2807,2,-1.4405151350226E+00 -2808,2,-1.4283298300850E+00 -2809,2,-1.4323782701043E+00 -2810,2,-1.4237975252278E+00 -2811,2,-1.4286848048682E+00 -2812,2,-1.4244388214214E+00 -2813,2,-1.4349056740536E+00 -2814,2,-1.4168698211626E+00 -2815,2,-1.4407696256468E+00 -2816,2,-1.4380605995492E+00 -2817,2,-1.4312955222718E+00 -2818,2,-1.4301157136103E+00 -2819,2,-1.4201023712245E+00 -2820,2,-1.4313842233429E+00 -2821,2,-1.4195160172688E+00 -2822,2,-1.4319166844906E+00 -2823,2,-1.4283922184069E+00 -2824,2,-1.4491584019537E+00 -2825,2,-1.4660444101089E+00 -2826,2,-1.4528478676332E+00 -2827,2,-1.4832389320426E+00 -2828,2,-1.4916892768943E+00 -2829,2,-1.4782657020165E+00 -2830,2,-1.4693097461280E+00 -2831,2,-1.4203356539842E+00 -2832,2,-1.4858686668196E+00 -2833,2,-1.4039099861485E+00 -2834,2,-1.2756435202923E+00 -2835,2,-1.1829366777258E+00 -2836,2,-1.5242841700101E+00 -2837,2,-1.4058251240843E+00 -2838,2,-1.4809895882445E+00 -2839,2,-1.5369934352385E+00 -2840,2,-1.5290242073718E+00 -2841,2,-1.4520654128840E+00 -2842,2,-1.4382099712494E+00 -2843,2,-1.3995362874983E+00 -2844,2,-1.5796754182502E+00 -2845,2,-1.5385516635076E+00 -2846,2,-1.5022159646081E+00 -2847,2,-1.5857869581499E+00 -2848,2,-1.6652293919622E+00 -2849,2,-1.6663801806511E+00 -2850,2,-1.6294271656588E+00 -2851,2,-1.6046876168998E+00 -2852,2,-1.2588962583147E+00 -2853,2,-1.1622885740892E+00 -2854,2,-1.0327439942513E+00 -2855,2,-1.3492920689420E+00 -2856,2,-1.7547957174781E+00 -2857,2,-1.5320634280784E+00 -2858,2,-1.4123272282700E+00 -2859,2,-1.5036762254341E+00 -2860,2,-1.4252006179323E+00 -2861,2,-1.3755361719187E+00 -2862,2,-1.5690679233924E+00 -2863,2,-1.4758089467349E+00 -2864,2,-1.4522868845176E+00 -2865,2,-1.4637891082648E+00 -2866,2,-1.3799801240025E+00 -2867,2,-1.2623515589582E+00 -2868,2,-1.1567681390297E+00 -2869,2,-1.8629139600937E+00 -2870,2,-1.5855099592793E+00 -2871,2,-1.6127610179622E+00 -2872,2,-1.4599926611012E+00 -2873,2,-1.4997853035376E+00 -2874,2,-1.5538687281889E+00 -2875,2,-1.3819624016914E+00 -2876,2,-1.4306104902672E+00 -2877,2,-1.4840698704276E+00 -2878,2,-1.2675245777129E+00 -2879,2,-1.6614772195795E+00 -2880,2,-1.5117377697834E+00 -2881,2,-1.7744203854673E+00 -2882,2,-1.6007508141758E+00 -2883,2,-1.7554427466848E+00 -2884,2,-1.4806350516516E+00 -2885,2,-1.5656734136174E+00 -2886,2,-1.2202047957958E+00 -2887,2,-1.1711465171661E+00 -2888,2,-1.4921088957659E+00 -2889,2,-1.4836011992142E+00 -2890,2,-1.4874649681780E+00 -2891,2,-1.6946112276265E+00 -2892,2,-2.1147915377603E+00 -2893,2,-1.3652434126985E+00 -2894,2,-1.7797041861651E+00 -2895,2,-1.4605756413049E+00 -2896,2,-1.5709871877737E+00 -2897,2,-1.5403952902276E+00 -2898,2,-1.3669997415566E+00 -2899,2,-1.5070547834962E+00 -2900,2,-1.4913071152791E+00 -2901,2,-1.4858085661634E+00 -2902,2,-1.4784425197776E+00 -2903,2,-1.4596016692981E+00 -2904,2,-1.4690658766111E+00 -2905,2,-1.4735212286147E+00 -2906,2,-1.4701559630622E+00 -2907,2,-1.4716309450620E+00 -2908,2,-1.4594322070282E+00 -2909,2,-1.4863378159690E+00 -2910,2,-1.5289699222475E+00 -2911,2,-1.4588292922105E+00 -2912,2,-1.5457975810104E+00 -2913,2,-1.4832943049709E+00 -2914,2,-1.4798918869178E+00 -2915,2,-1.5578266911312E+00 -2916,2,-1.5652873774021E+00 -2917,2,-1.5178849772587E+00 -2918,2,-1.5471849462730E+00 -2919,2,-1.6115332297388E+00 -2920,2,-1.5035882918112E+00 -2921,2,-1.6344111923319E+00 -2922,2,-1.6046910988014E+00 -2923,2,-1.5674870243563E+00 -2924,2,-1.5442074890848E+00 -2925,2,-1.6817325268654E+00 -2926,2,-1.8057999663247E+00 -2927,2,-1.5078115045635E+00 -2928,2,-1.5644135262237E+00 -2929,2,-1.5180506902194E+00 -2930,2,-1.4978370265472E+00 -2931,2,-1.5495426423231E+00 -2932,2,-1.5500951526137E+00 -2933,2,-1.5207659940667E+00 -2934,2,-1.5367151047832E+00 -2935,2,-1.5556756964594E+00 -2936,2,-1.5301464647307E+00 -2937,2,-1.5247268090499E+00 -2938,2,-1.5840846676918E+00 -2939,2,-1.5837284618855E+00 -2940,2,-1.5178923679089E+00 -2941,2,-1.5265443774581E+00 -2942,2,-1.4886527494287E+00 -2943,2,-1.4970227808977E+00 -2944,2,-1.5038566910642E+00 -2945,2,-1.4734010901575E+00 -2946,2,-1.7381669577250E+00 -2947,2,-1.8258176252972E+00 -2948,2,-1.4794905382060E+00 -2949,2,-1.5613709875209E+00 -2950,2,-1.4794534650860E+00 -2951,2,-1.5218612846690E+00 -2952,2,-1.3188778411064E+00 -2953,2,-1.4246683166701E+00 -2954,2,-1.5539338829189E+00 -2955,2,-1.5442225744369E+00 -2956,2,-1.5511978757676E+00 -2957,2,-1.5382098776503E+00 -2958,2,-1.4498221761233E+00 -2959,2,-1.4956023432098E+00 -2960,2,-1.5310541760536E+00 -2961,2,-1.5811140661343E+00 -2962,2,-2.0477604531647E+00 -2963,2,-2.0397120214627E+00 -2964,2,-1.7433833725316E+00 -2965,2,-1.4655781885363E+00 -2966,2,-1.4397624982286E+00 -2967,2,-1.4191397209167E+00 -2968,2,-1.4058859001287E+00 -2969,2,-1.3358372740347E+00 -2970,2,-1.4626113122115E+00 -2971,2,-1.2270328685737E+00 -2972,2,-1.6246099557957E+00 -2973,2,-1.6554850605768E+00 -2974,2,-1.4183152749924E+00 -2975,2,-1.4519513645474E+00 -2976,2,-1.4116728927728E+00 -2977,2,-1.6095974526460E+00 -2978,2,-1.7583330214595E+00 -2979,2,-1.6928200457517E+00 -2980,2,-1.6947536947175E+00 -2981,2,-1.8102957489628E+00 -2982,2,-1.6486615370163E+00 -2983,2,-1.5609958732901E+00 -2984,2,-1.8145436324960E+00 -2985,2,-1.4984187420857E+00 -2986,2,-1.5119148948429E+00 -2987,2,-1.5927221438763E+00 -2988,2,-1.5045218994989E+00 -2989,2,-1.4632321898326E+00 -2990,2,-1.5443387683941E+00 -2991,2,-1.4451069548805E+00 -2992,2,-1.4361890220640E+00 -2993,2,-1.4338994025641E+00 -2994,2,-1.4409218345929E+00 -2995,2,-1.4454909466898E+00 -2996,2,-1.4299920966365E+00 -2997,2,-1.4463415461048E+00 -2998,2,-1.4521377265672E+00 -2999,2,-1.4398012245792E+00 -3000,2,-1.4537349332222E+00 -3001,2,-1.4509997311828E+00 -3002,2,-1.4590505729385E+00 -3003,2,-1.4479297722646E+00 -3004,2,-1.4381051810335E+00 -3005,2,-1.4431235981064E+00 -3006,2,-1.4263852381970E+00 -3007,2,-1.4223826499092E+00 -3008,2,-1.4258238817374E+00 -3009,2,-1.4189320439274E+00 -3010,2,-1.4165610839225E+00 -3011,2,-1.4399806242580E+00 -3012,2,-1.4183008734221E+00 -3013,2,-1.4148007174089E+00 -3014,2,-1.4359529699746E+00 -3015,2,-1.4152245356847E+00 -3016,2,-1.4209301803862E+00 -3017,2,-1.4185932118093E+00 -3018,2,-1.4176959415571E+00 -3019,2,-1.4187274568525E+00 -3020,2,-1.4394426760122E+00 -3021,2,-1.4226863053295E+00 -3022,2,-1.4252583275215E+00 -3023,2,-1.4411006224158E+00 -3024,2,-1.4280560546902E+00 -3025,2,-1.4174777558309E+00 -3026,2,-1.4325918254613E+00 -3027,2,-1.4244990932806E+00 -3028,2,-1.4534671214353E+00 -3029,2,-1.4122752077817E+00 -3030,2,-1.4655221034398E+00 -3031,2,-1.4615015580700E+00 -3032,2,-1.4697625750167E+00 -3033,2,-1.4700333842982E+00 -3034,2,-1.4981175830224E+00 -3035,2,-1.4526812594918E+00 -3036,2,-1.4972702029738E+00 -3037,2,-1.6020174284385E+00 -3038,2,-1.5152346146313E+00 -3039,2,-1.5296280837490E+00 -3040,2,-1.5434750739419E+00 -3041,2,-1.5064066757241E+00 -3042,2,-1.5708345797325E+00 -3043,2,-1.2816795970175E+00 -3044,2,-1.3596914869242E+00 -3045,2,-1.5737904159988E+00 -3046,2,-1.5760196171750E+00 -3047,2,-1.2430901808929E+00 -3048,2,-1.2327843207209E+00 -3049,2,-1.2198541007169E+00 -3050,2,-1.2543661343540E+00 -3051,2,-1.7954837228593E+00 -3052,2,-1.5250310496376E+00 -3053,2,-1.5710962286114E+00 -3054,2,-1.4800658169630E+00 -3055,2,-1.4788378550556E+00 -3056,2,-1.4730963501148E+00 -3057,2,-1.4360564734860E+00 -3058,2,-1.4724800753817E+00 -3059,2,-1.5903855560000E+00 -3060,2,-1.6013187074400E+00 -3061,2,-1.6024984433986E+00 -3062,2,-1.5093306603889E+00 -3063,2,-1.5867724930361E+00 -3064,2,-1.4815867037173E+00 -3065,2,-1.5919080549853E+00 -3066,2,-1.6224454923906E+00 -3067,2,-1.6224575297162E+00 -3068,2,-1.7202003921559E+00 -3069,2,-1.8705713052178E+00 -3070,2,-1.5833485726447E+00 -3071,2,-1.6216272874819E+00 -3072,2,-1.5413691536967E+00 -3073,2,-1.5161975997976E+00 -3074,2,-1.5289143551253E+00 -3075,2,-1.5588714686408E+00 -3076,2,-1.4266060237921E+00 -3077,2,-1.7905646989600E+00 -3078,2,-1.7033369370773E+00 -3079,2,-1.7234609321468E+00 -3080,2,-1.4819220128438E+00 -3081,2,-1.4122363155973E+00 -3082,2,-1.5435090597946E+00 -3083,2,-1.4146705509557E+00 -3084,2,-1.7136581659883E+00 -3085,2,-1.7143375888440E+00 -3086,2,-1.7022546009912E+00 -3087,2,-1.7179006675311E+00 -3088,2,-1.6674461041983E+00 -3089,2,-1.6871826086438E+00 -3090,2,-1.5302177418430E+00 -3091,2,-1.5597598125746E+00 -3092,2,-1.6465905755527E+00 -3093,2,-1.5738434438398E+00 -3094,2,-1.7046241749579E+00 -3095,2,-1.6281525566568E+00 -3096,2,-1.7102449504047E+00 -3097,2,-1.5795564906834E+00 -3098,2,-1.3622928980412E+00 -3099,2,-1.7545027139396E+00 -3100,2,-1.6894070237729E+00 -3101,2,-1.6277515773838E+00 -3102,2,-1.5854895145319E+00 -3103,2,-1.4867437135914E+00 -3104,2,-1.3819342102347E+00 -3105,2,-1.5924932947066E+00 -3106,2,-1.4809802461019E+00 -3107,2,-1.2912030844678E+00 -3108,2,-1.3830289025241E+00 -3109,2,-1.3122511417635E+00 -3110,2,-1.2339241293153E+00 -3111,2,-1.4434843160326E+00 -3112,2,-1.4882289029541E+00 -3113,2,-1.5304003675354E+00 -3114,2,-1.5305846436077E+00 -3115,2,-1.7941246808453E+00 -3116,2,-1.7724848076395E+00 -3117,2,-1.6650006427346E+00 -3118,2,-1.5115156844075E+00 -3119,2,-1.5591022698060E+00 -3120,2,-1.5512552598990E+00 -3121,2,-1.5588511106670E+00 -3122,2,-1.5478350568190E+00 -3123,2,-1.5701319658659E+00 -3124,2,-1.5262799640936E+00 -3125,2,-1.3571864902989E+00 -3126,2,-1.4984309641570E+00 -3127,2,-1.4135059055174E+00 -3128,2,-1.3130335552755E+00 -3129,2,-1.4905177790445E+00 -3130,2,-1.6596307244043E+00 -3131,2,-1.6230958459945E+00 -3132,2,-1.6422485458754E+00 -3133,2,-1.6856959609971E+00 -3134,2,-1.8513938707879E+00 -3135,2,-2.0463893195591E+00 -3136,2,-1.4050325677625E+00 -3137,2,-1.4063618487319E+00 -3138,2,-2.0487035541264E+00 -3139,2,-1.9055862179179E+00 -3140,2,-2.2166238540055E+00 -3141,2,-1.7714303930244E+00 -3142,2,-1.6534677613755E+00 -3143,2,-2.0784740382407E+00 -3144,2,-1.5915882331362E+00 -3145,2,-1.5148619281929E+00 -3146,2,-1.6090503555593E+00 -3147,2,-1.4457122720291E+00 -3148,2,-1.4081465787137E+00 -3149,2,-1.3533518697055E+00 -3150,2,-1.4131572056026E+00 -3151,2,-1.4204054016037E+00 -3152,2,-1.4085950216922E+00 -3153,2,-1.4256454174494E+00 -3154,2,-1.4458588331939E+00 -3155,2,-1.4328391149534E+00 -3156,2,-1.4593120010909E+00 -3157,2,-1.4608114558895E+00 -3158,2,-1.4532023412255E+00 -3159,2,-1.4476196830968E+00 -3160,2,-1.4288636883490E+00 -3161,2,-1.4566609634379E+00 -3162,2,-1.4213885632111E+00 -3163,2,-1.4306651651709E+00 -3164,2,-1.4432299648606E+00 -3165,2,-1.4488244959794E+00 -3166,2,-1.4608397191915E+00 -3167,2,-1.4680945829550E+00 -3168,2,-1.4591830249129E+00 -3169,2,-1.4465716555733E+00 -3170,2,-1.4755832861451E+00 -3171,2,-1.4327120534212E+00 -3172,2,-1.4324954689004E+00 -3173,2,-1.4597809185322E+00 -3174,2,-1.4476392884019E+00 -3175,2,-1.4626230647310E+00 -3176,2,-1.4615764440887E+00 -3177,2,-1.4632494958391E+00 -3178,2,-1.4494374776348E+00 -3179,2,-1.4801837921722E+00 -3180,2,-1.4383566584885E+00 -3181,2,-1.4309339186859E+00 -3182,2,-1.4652845553508E+00 -3183,2,-1.4211955998655E+00 -3184,2,-1.4371048497548E+00 -3185,2,-1.4546059833603E+00 -3186,2,-1.4656241888351E+00 -3187,2,-1.4691135783039E+00 -3188,2,-1.4616853942785E+00 -3189,2,-1.4560528081487E+00 -3190,2,-1.4542551848616E+00 -3191,2,-1.4431592342234E+00 -3192,2,-1.4887243412769E+00 -3193,2,-1.4131074150540E+00 -3194,2,-1.4613642638398E+00 -3195,2,-1.5965500654369E+00 -3196,2,-1.6193569730910E+00 -3197,2,-1.6316982239377E+00 -3198,2,-1.4411186833672E+00 -3199,2,-1.5208659651956E+00 -3200,2,-1.6490650292960E+00 -3201,2,-1.6280056650692E+00 -3202,2,-1.6194775837867E+00 -3203,2,-1.5629711906623E+00 -3204,2,-1.5673304595972E+00 -3205,2,-1.5728258960784E+00 -3206,2,-1.4719261587293E+00 -3207,2,-1.4455622128502E+00 -3208,2,-1.4962485562569E+00 -3209,2,-1.5735399975012E+00 -3210,2,-1.5730828808147E+00 -3211,2,-1.5575875128981E+00 -3212,2,-1.5617046930120E+00 -3213,2,-1.4272161973630E+00 -3214,2,-1.3786150894900E+00 -3215,2,-1.4727546447393E+00 -3216,2,-1.4349420237962E+00 -3217,2,-1.5928653026154E+00 -3218,2,-1.7172441121349E+00 -3219,2,-1.7551853997723E+00 -3220,2,-1.5201434356714E+00 -3221,2,-1.5747289672333E+00 -3222,2,-1.4672531210972E+00 -3223,2,-1.4161623276877E+00 -3224,2,-1.4383160890962E+00 -3225,2,-1.4282030282812E+00 -3226,2,-1.5181889042187E+00 -3227,2,-1.7184967432453E+00 -3228,2,-1.7037278618461E+00 -3229,2,-1.6841864923820E+00 -3230,2,-1.6716551571256E+00 -3231,2,-1.5866191169424E+00 -3232,2,-1.2057317649202E+00 -3233,2,-1.1691746533157E+00 -3234,2,-1.2123700774813E+00 -3235,2,-1.2626460626925E+00 -3236,2,-1.6857669875072E+00 -3237,2,-1.6676324548365E+00 -3238,2,-1.7130755158708E+00 -3239,2,-1.6332260000859E+00 -3240,2,-1.5854047870702E+00 -3241,2,-1.5689767522306E+00 -3242,2,-1.5916760588298E+00 -3243,2,-1.5741771659168E+00 -3244,2,-1.7392401288916E+00 -3245,2,-1.7094294238303E+00 -3246,2,-1.7599976549492E+00 -3247,2,-1.5972334126573E+00 -3248,2,-1.6395678579415E+00 -3249,2,-1.8315786878541E+00 -3250,2,-1.5665244620142E+00 -3251,2,-1.2558763245037E+00 -3252,2,-1.3873713358214E+00 -3253,2,-1.6936780086273E+00 -3254,2,-1.6735761313889E+00 -3255,2,-1.7724350854351E+00 -3256,2,-1.8112113876594E+00 -3257,2,-1.6880918102031E+00 -3258,2,-1.5483671307217E+00 -3259,2,-1.7017024516018E+00 -3260,2,-1.6022072797589E+00 -3261,2,-1.5773207324084E+00 -3262,2,-1.6066338986885E+00 -3263,2,-1.5752961757249E+00 -3264,2,-1.4560947432978E+00 -3265,2,-1.5699261616795E+00 -3266,2,-1.6424909941756E+00 -3267,2,-1.6008580372015E+00 -3268,2,-1.5932532341739E+00 -3269,2,-1.4350355954735E+00 -3270,2,-1.5420291109978E+00 -3271,2,-1.5560043037984E+00 -3272,2,-1.5264130965664E+00 -3273,2,-1.7207658883768E+00 -3274,2,-1.7312968711845E+00 -3275,2,-1.7743697962773E+00 -3276,2,-1.7870617503678E+00 -3277,2,-1.6692447627748E+00 -3278,2,-1.5172164673832E+00 -3279,2,-1.4588851252360E+00 -3280,2,-1.4703208207602E+00 -3281,2,-1.5709718920066E+00 -3282,2,-1.5605859888685E+00 -3283,2,-1.5769450846387E+00 -3284,2,-1.6203421431692E+00 -3285,2,-1.7274406817188E+00 -3286,2,-1.4536763724019E+00 -3287,2,-1.2414845730844E+00 -3288,2,-1.6025275734276E+00 -3289,2,-1.6103963757981E+00 -3290,2,-1.7624158752575E+00 -3291,2,-1.5417108854764E+00 -3292,2,-1.6344009315742E+00 -3293,2,-1.6758969798633E+00 -3294,2,-1.7573169840105E+00 -3295,2,-1.5932407397534E+00 -3296,2,-1.5495284141297E+00 -3297,2,-1.5020848324022E+00 -3298,2,-2.0132699280380E+00 -3299,2,-2.2641237751500E+00 -3300,2,-1.5960977090455E+00 -3301,2,-1.3618321047301E+00 -3302,2,-1.5101069007987E+00 -3303,2,-1.7338922992483E+00 -3304,2,-1.5490090629665E+00 -3305,2,-1.6280011531353E+00 -3306,2,-1.7446140523837E+00 -3307,2,-1.7242092176504E+00 -3308,2,-1.3318064744000E+00 -3309,2,-1.6742366531223E+00 -3310,2,-1.7283858296007E+00 -3311,2,-1.7679595339782E+00 -3312,2,-1.7363871973909E+00 -3313,2,-1.4437212253119E+00 -3314,2,-1.4430788553027E+00 -3315,2,-1.6033225638943E+00 -3316,2,-1.6141207117644E+00 -3317,2,-1.6163786295773E+00 -3318,2,-1.8385455227295E+00 -3319,2,-1.7111560398061E+00 -3320,2,-1.7674952142929E+00 -3321,2,-1.5293307146283E+00 -3322,2,-1.5697300034639E+00 -3323,2,-1.5505503649921E+00 -3324,2,-1.5506545716746E+00 -3325,2,-2.2690912955938E+00 -3326,2,-2.1806984191278E+00 -3327,2,-2.2462134450621E+00 -3328,2,-1.2632482100454E+00 -3329,2,-1.2324831577108E+00 -3330,2,-1.3252920030130E+00 -3331,2,-1.4348534811570E+00 -3332,2,-1.3718857091461E+00 -3333,2,-1.4518493784171E+00 -3334,2,-1.4612686558591E+00 -3335,2,-1.5029190730751E+00 -3336,2,-1.4614184663867E+00 -3337,2,-1.4511781897506E+00 -3338,2,-1.4942692592875E+00 -3339,2,-1.4531373571645E+00 -3340,2,-1.4605946649996E+00 -3341,2,-1.4707459170484E+00 -3342,2,-1.4659196611700E+00 -3343,2,-1.4777542109712E+00 -3344,2,-1.4917129562953E+00 -3345,2,-1.4933422271058E+00 -3346,2,-1.4888208657040E+00 -3347,2,-1.4974853596295E+00 -3348,2,-1.4842943456820E+00 -3349,2,-1.4838634798190E+00 -3350,2,-1.4732434791729E+00 -3351,2,-1.4806724815457E+00 -3352,2,-1.4903519437395E+00 -3353,2,-1.4813446049486E+00 -3354,2,-1.4923640538168E+00 -3355,2,-1.4861713311326E+00 -3356,2,-1.5021353221965E+00 -3357,2,-1.4897949028870E+00 -3358,2,-1.4896986490469E+00 -3359,2,-1.4878185928380E+00 -3360,2,-1.4886114304298E+00 -3361,2,-1.4937995536084E+00 -3362,2,-1.4925634194342E+00 -3363,2,-1.4905437214204E+00 -3364,2,-1.4751411191935E+00 -3365,2,-1.5084744836946E+00 -3366,2,-1.4663112802225E+00 -3367,2,-1.4471990209025E+00 -3368,2,-1.4731323548478E+00 -3369,2,-1.4251834713786E+00 -3370,2,-1.4518334313443E+00 -3371,2,-1.4431834477982E+00 -3372,2,-1.4718360842479E+00 -3373,2,-1.6236482160743E+00 -3374,2,-1.4668876803389E+00 -3375,2,-1.7457938016822E+00 -3376,2,-1.7727966109735E+00 -3377,2,-1.8332424184723E+00 -3378,2,-1.7252291009424E+00 -3379,2,-1.4011952186994E+00 -3380,2,-1.3880538263868E+00 -3381,2,-1.5957150904379E+00 -3382,2,-1.4863896383266E+00 -3383,2,-1.4425793649130E+00 -3384,2,-1.6687397256870E+00 -3385,2,-1.7487779944236E+00 -3386,2,-1.4556865499524E+00 -3387,2,-1.7063938880293E+00 -3388,2,-1.6031782517848E+00 -3389,2,-1.6119081555401E+00 -3390,2,-1.8936361337632E+00 -3391,2,-1.7292804825338E+00 -3392,2,-1.7301908060079E+00 -3393,2,-1.4622711336047E+00 -3394,2,-1.8160630859079E+00 -3395,2,-1.9205426937330E+00 -3396,2,-1.8660347103949E+00 -3397,2,-1.2763326001077E+00 -3398,2,-1.7335149162639E+00 -3399,2,-1.9016878929739E+00 -3400,2,-1.5183400769245E+00 -3401,2,-1.5492993316959E+00 -3402,2,-1.7154450930111E+00 -3403,2,-1.9416244872845E+00 -3404,2,-1.8292373680952E+00 -3405,2,-1.7864266347307E+00 -3406,2,-1.7803129771684E+00 -3407,2,-1.5436789510115E+00 -3408,2,-1.5784332215916E+00 -3409,2,-1.8796808747128E+00 -3410,2,-2.0734985420268E+00 -3411,2,-1.6468242285583E+00 -3412,2,-1.6184151801555E+00 -3413,2,-1.7013668136328E+00 -3414,2,-1.6068470002766E+00 -3415,2,-1.6382694121169E+00 -3416,2,-1.4874596707513E+00 -3417,2,-1.6789681124182E+00 -3418,2,-1.2935803255454E+00 -3419,2,-1.4534692529436E+00 -3420,2,-1.4357792512411E+00 -3421,2,-1.4532767668516E+00 -3422,2,-1.5907291316504E+00 -3423,2,-1.6320118690968E+00 -3424,2,-1.5968399675993E+00 -3425,2,-1.6128986343003E+00 -3426,2,-1.7687665728161E+00 -3427,2,-2.0217669166675E+00 -3428,2,-1.9057830103887E+00 -3429,2,-2.2500378935201E+00 -3430,2,-1.6197439021138E+00 -3431,2,-1.6055012728164E+00 -3432,2,-1.5163813821830E+00 -3433,2,-1.5069985393380E+00 -3434,2,-1.4422203909560E+00 -3435,2,-1.4174967712297E+00 -3436,2,-1.7634585039642E+00 -3437,2,-1.6728429022535E+00 -3438,2,-1.7030483004243E+00 -3439,2,-1.5869273476518E+00 -3440,2,-1.9888409208945E+00 -3441,2,-1.3642750038475E+00 -3442,2,-1.5109935162456E+00 -3443,2,-1.5934873286995E+00 -3444,2,-1.6098399158981E+00 -3445,2,-1.6219515153836E+00 -3446,2,-1.5910707011771E+00 -3447,2,-1.7673723887608E+00 -3448,2,-1.8456470994936E+00 -3449,2,-1.8077524818328E+00 -3450,2,-1.5328227640301E+00 -3451,2,-1.5473390144389E+00 -3452,2,-1.6453220494558E+00 -3453,2,-1.3706503692558E+00 -3454,2,-2.5000783852655E+00 -3455,2,-1.7214922348832E+00 -3456,2,-1.7293342371989E+00 -3457,2,-2.0460856936484E+00 -3458,2,-1.8128939677687E+00 -3459,2,-1.8852364589772E+00 -3460,2,-1.8343434014813E+00 -3461,2,-1.8100461919446E+00 -3462,2,-1.4933537788202E+00 -3463,2,-1.3487292059150E+00 -3464,2,-1.4778918334018E+00 -3465,2,-1.8859526802229E+00 -3466,2,-1.7404723816101E+00 -3467,2,-1.4114217510554E+00 -3468,2,-1.7273595520257E+00 -3469,2,-1.9724873620825E+00 -3470,2,-2.0880530706765E+00 -3471,2,-1.9266715372650E+00 -3472,2,-2.0075153458805E+00 -3473,2,-1.9468490182966E+00 -3474,2,-1.6617734483018E+00 -3475,2,-1.7189942367577E+00 -3476,2,-1.6304651835849E+00 -3477,2,-1.6159392987889E+00 -3478,2,-1.6198322084817E+00 -3479,2,-1.6540893697856E+00 -3480,2,-1.3691545578177E+00 -3481,2,-1.5779541305451E+00 -3482,2,-1.6757832288531E+00 -3483,2,-1.5241843541807E+00 -3484,2,-1.8523712780692E+00 -3485,2,-1.5446076185525E+00 -3486,2,-1.4732407979221E+00 -3487,2,-1.4403783164768E+00 -3488,2,-1.5891477000015E+00 -3489,2,-1.6851470371422E+00 -3490,2,-1.6910168245549E+00 -3491,2,-1.8199167362285E+00 -3492,2,-1.6557941761039E+00 -3493,2,-1.7066189229272E+00 -3494,2,-1.6056087554544E+00 -3495,2,-1.5875396642248E+00 -3496,2,-1.5075855150335E+00 -3497,2,-1.6674251339700E+00 -3498,2,-1.4943024494304E+00 -3499,2,-1.4848242094818E+00 -3500,2,-1.4904255588541E+00 -3501,2,-1.4983339408935E+00 -3502,2,-1.5482860236939E+00 -3503,2,-1.4797032694206E+00 -3504,2,-1.5422238772270E+00 -3505,2,-1.4806041017078E+00 -3506,2,-1.5976468934843E+00 -3507,2,-1.4608835826529E+00 -3508,2,-1.4508443749753E+00 -3509,2,-1.4648588859565E+00 -3510,2,-1.4593763666141E+00 -3511,2,-1.5069452191383E+00 -3512,2,-1.4378705991151E+00 -3513,2,-1.5180564741924E+00 -3514,2,-1.5211937711709E+00 -3515,2,-1.5422431739867E+00 -3516,2,-1.5130697644965E+00 -3517,2,-1.4619162088454E+00 -3518,2,-1.5441868543403E+00 -3519,2,-1.4667572892817E+00 -3520,2,-1.5188532069555E+00 -3521,2,-1.4333216369701E+00 -3522,2,-1.5295761480373E+00 -3523,2,-1.5212285122984E+00 -3524,2,-1.5586754519394E+00 -3525,2,-1.5012889856786E+00 -3526,2,-1.4348748331632E+00 -3527,2,-1.5467288586513E+00 -3528,2,-1.4240381854335E+00 -3529,2,-1.4491530569219E+00 -3530,2,-1.3961921146569E+00 -3531,2,-1.4462073294969E+00 -3532,2,-1.4708317710219E+00 -3533,2,-1.4491289393275E+00 -3534,2,-1.6155904628208E+00 -3535,2,-1.6886768253715E+00 -3536,2,-1.5322460250084E+00 -3537,2,-1.3746503670453E+00 -3538,2,-1.2093728457304E+00 -3539,2,-1.2130532025745E+00 -3540,2,-1.1996461331063E+00 -3541,2,-1.1934354499993E+00 -3542,2,-2.2738613447863E+00 -3543,2,-2.0490535679648E+00 -3544,2,-2.2687502816064E+00 -3545,2,-1.9179203691856E+00 -3546,2,-1.9818933463361E+00 -3547,2,-1.8372507367555E+00 -3548,2,-1.7696884151167E+00 -3549,2,-1.7061418627047E+00 -3550,2,-1.9236534235240E+00 -3551,2,-1.6078181791966E+00 -3552,2,-1.6015648662432E+00 -3553,2,-1.9069149149026E+00 -3554,2,-1.5739802481578E+00 -3555,2,-1.5183953289198E+00 -3556,2,-1.4550680911076E+00 -3557,2,-1.6042043541917E+00 -3558,2,-2.5167161558415E+00 -3559,2,-2.1228962876441E+00 -3560,2,-2.5912811418433E+00 -3561,2,-2.3352220847190E+00 -3562,2,-2.2270994930130E+00 -3563,2,-2.2307236271521E+00 -3564,2,-1.5927593791872E+00 -3565,2,-1.8147119432237E+00 -3566,2,-1.1671788849427E+00 -3567,2,-1.2201235956501E+00 -3568,2,-1.6949575457765E+00 -3569,2,-1.7426449800138E+00 -3570,2,-1.7624145634233E+00 -3571,2,-1.8592765795466E+00 -3572,2,-1.9736044452308E+00 -3573,2,-1.8667615950037E+00 -3574,2,-1.8376690437562E+00 -3575,2,-1.7257063243650E+00 -3576,2,-1.5932899521887E+00 -3577,2,-1.5725683553082E+00 -3578,2,-1.7560413444999E+00 -3579,2,-1.6078099315340E+00 -3580,2,-1.5829538974099E+00 -3581,2,-1.6391877610748E+00 -3582,2,-2.4095924338277E+00 -3583,2,-1.7946388167293E+00 -3584,2,-1.8778928865396E+00 -3585,2,-1.4154111163458E+00 -3586,2,-1.3018342378145E+00 -3587,2,-1.3065063709135E+00 -3588,2,-1.2962364183259E+00 -3589,2,-1.2097146869903E+00 -3590,2,-1.4178486140488E+00 -3591,2,-1.5450810203824E+00 -3592,2,-1.7838148018304E+00 -3593,2,-2.0326167122077E+00 -3594,2,-1.8602092702410E+00 -3595,2,-2.0061667360835E+00 -3596,2,-1.9657986245448E+00 -3597,2,-1.5055513345157E+00 -3598,2,-1.4226401653765E+00 -3599,2,-1.4371585288286E+00 -3600,2,-1.5538908324899E+00 -3601,2,-1.8214179119310E+00 -3602,2,-1.7860728415787E+00 -3603,2,-1.8385067327884E+00 -3604,2,-1.8826958491718E+00 -3605,2,-2.0158884800800E+00 -3606,2,-1.7319368716033E+00 -3607,2,-1.8848448254775E+00 -3608,2,-1.8582285672592E+00 -3609,2,-1.2972692699533E+00 -3610,2,-1.9295397460570E+00 -3611,2,-1.9855443847909E+00 -3612,2,-1.9291759759757E+00 -3613,2,-2.0945442015812E+00 -3614,2,-2.0666499510026E+00 -3615,2,-2.0219632089158E+00 -3616,2,-2.1834349752828E+00 -3617,2,-1.7049911481599E+00 -3618,2,-1.6275922834943E+00 -3619,2,-1.6529194931889E+00 -3620,2,-1.9387147122707E+00 -3621,2,-2.1634239159534E+00 -3622,2,-1.8716998636784E+00 -3623,2,-1.7779067023216E+00 -3624,2,-1.7166957176350E+00 -3625,2,-2.4108491736852E+00 -3626,2,-1.9074031491453E+00 -3627,2,-1.8945648589098E+00 -3628,2,-1.8682362812796E+00 -3629,2,-1.9419614440204E+00 -3630,2,-1.6057384061908E+00 -3631,2,-1.7727328441339E+00 -3632,2,-1.5305468575696E+00 -3633,2,-1.4935713737305E+00 -3634,2,-1.5295426070117E+00 -3635,2,-1.4923273242457E+00 -3636,2,-1.5087805237040E+00 -3637,2,-1.5159728753621E+00 -3638,2,-1.5767720649673E+00 -3639,2,-1.5740375359981E+00 -3640,2,-1.5248604922002E+00 -3641,2,-1.5028693039895E+00 -3642,2,-1.4822778499709E+00 -3643,2,-1.5283792345870E+00 -3644,2,-1.4653287708070E+00 -3645,2,-1.4566691504745E+00 -3646,2,-1.5174164017062E+00 -3647,2,-1.5134728728218E+00 -3648,2,-1.5492646583996E+00 -3649,2,-1.4653004060376E+00 -3650,2,-1.5480710417747E+00 -3651,2,-1.5311322719716E+00 -3652,2,-1.5034390823274E+00 -3653,2,-1.4714206102524E+00 -3654,2,-1.4751717878750E+00 -3655,2,-1.5061998498551E+00 -3656,2,-1.5484296851706E+00 -3657,2,-1.5639764598094E+00 -3658,2,-1.5268705615893E+00 -3659,2,-1.5603775022601E+00 -3660,2,-1.5374718609002E+00 -3661,2,-1.5405852230144E+00 -3662,2,-1.4533492694213E+00 -3663,2,-1.4181779443184E+00 -3664,2,-1.4459998975005E+00 -3665,2,-1.3368072892496E+00 -3666,2,-1.4762326502874E+00 -3667,2,-1.9059591255420E+00 -3668,2,-2.0412040045241E+00 -3669,2,-1.3001388721556E+00 -3670,2,-1.2305476121664E+00 -3671,2,-1.3326039493959E+00 -3672,2,-1.3661011305957E+00 -3673,2,-1.5085254096459E+00 -3674,2,-1.2899885199451E+00 -3675,2,-1.5132176724218E+00 -3676,2,-1.8533621684945E+00 -3677,2,-1.4186160206783E+00 -3678,2,-1.5116995541693E+00 -3679,2,-1.7541362631173E+00 -3680,2,-1.9245308182517E+00 -3681,2,-1.6979011992314E+00 -3682,2,-1.6281792317965E+00 -3683,2,-1.5573622080776E+00 -3684,2,-1.5729498305186E+00 -3685,2,-1.7039067749428E+00 -3686,2,-2.1343105488490E+00 -3687,2,-2.1814702448479E+00 -3688,2,-2.1458991345144E+00 -3689,2,-1.5194728962408E+00 -3690,2,-1.6753727355039E+00 -3691,2,-1.5384879615139E+00 -3692,2,-1.7669024348203E+00 -3693,2,-1.7808942420321E+00 -3694,2,-2.3263891853324E+00 -3695,2,-2.0167839187757E+00 -3696,2,-1.7907038336163E+00 -3697,2,-1.8523273196290E+00 -3698,2,-1.7118129289806E+00 -3699,2,-1.5285949533964E+00 -3700,2,-2.1667674259530E+00 -3701,2,-1.6671769596390E+00 -3702,2,-1.5895445785293E+00 -3703,2,-1.4246811874679E+00 -3704,2,-1.4804200343186E+00 -3705,2,-2.0729108334139E+00 -3706,2,-1.9596619311929E+00 -3707,2,-1.2377042754424E+00 -3708,2,-1.2219970755010E+00 -3709,2,-1.2588917508223E+00 -3710,2,-1.2984133435152E+00 -3711,2,-1.3569955890813E+00 -3712,2,-1.4793984866725E+00 -3713,2,-1.3152362806103E+00 -3714,2,-1.5621109060077E+00 -3715,2,-1.7294011341094E+00 -3716,2,-1.6101442888403E+00 -3717,2,-2.0931246605878E+00 -3718,2,-2.0194444532177E+00 -3719,2,-1.6893148540315E+00 -3720,2,-1.6293723730929E+00 -3721,2,-1.8219188860532E+00 -3722,2,-1.7954110544363E+00 -3723,2,-1.1836319785144E+00 -3724,2,-1.5885833637400E+00 -3725,2,-1.6265654945511E+00 -3726,2,-1.5829344039891E+00 -3727,2,-1.5244011127255E+00 -3728,2,-1.3583899359205E+00 -3729,2,-1.5727066573517E+00 -3730,2,-1.8048342752482E+00 -3731,2,-1.9336837271853E+00 -3732,2,-2.0247951111463E+00 -3733,2,-1.6952570760134E+00 -3734,2,-2.1459326026293E+00 -3735,2,-2.0704381853994E+00 -3736,2,-1.4784230912140E+00 -3737,2,-1.4836351893933E+00 -3738,2,-1.3886977062046E+00 -3739,2,-2.1906532072922E+00 -3740,2,-1.5070409415828E+00 -3741,2,-1.5309796346409E+00 -3742,2,-1.4818905143071E+00 -3743,2,-1.5234140520208E+00 -3744,2,-1.4932916481828E+00 -3745,2,-1.4959376255100E+00 -3746,2,-1.4995449195388E+00 -3747,2,-1.5347975692403E+00 -3748,2,-1.5163666241555E+00 -3749,2,-1.5444261903782E+00 -3750,2,-1.5421796320399E+00 -3751,2,-1.5428776456894E+00 -3752,2,-1.4987232567039E+00 -3753,2,-1.4474035010949E+00 -3754,2,-1.5003492268090E+00 -3755,2,-1.4497503918070E+00 -3756,2,-1.4648940474060E+00 -3757,2,-1.4639345412824E+00 -3758,2,-1.4845935847368E+00 -3759,2,-1.5301476264210E+00 -3760,2,-1.4777390613311E+00 -3761,2,-1.5470671605325E+00 -3762,2,-1.5289953992967E+00 -3763,2,-1.5292510530093E+00 -3764,2,-1.5271632860831E+00 -3765,2,-1.5334241745837E+00 -3766,2,-1.5688402287128E+00 -3767,2,-1.8855028804500E+00 -3768,2,-1.5579387960299E+00 -3769,2,-1.5443395463256E+00 -3770,2,-1.6057743417462E+00 -3771,2,-1.6027377278266E+00 -3772,2,-1.6124376197893E+00 -3773,2,-1.9624262817759E+00 -3774,2,-1.9591608096820E+00 -3775,2,-2.2423041846847E+00 -3776,2,-2.2117700024116E+00 -3777,2,-2.2586197021710E+00 -3778,2,-2.2266782345862E+00 -3779,2,-1.6867834448093E+00 -3780,2,-1.6380823939697E+00 -3781,2,-1.8325196557596E+00 -3782,2,-1.7577607695113E+00 -3783,2,-1.9421732553139E+00 -3784,2,-1.5232565889454E+00 -3785,2,-1.5244476667937E+00 -3786,2,-1.7507139724706E+00 -3787,2,-1.6235827667191E+00 -3788,2,-1.9526575961584E+00 -3789,2,-1.5807773776991E+00 -3790,2,-1.4613206632502E+00 -3791,2,-2.2416455316315E+00 -3792,2,-2.1561218131864E+00 -3793,2,-1.5677383373358E+00 -3794,2,-1.5570777234676E+00 -3795,2,-1.6262562138565E+00 -3796,2,-1.5708610646546E+00 -3797,2,-1.8124822837949E+00 -3798,2,-1.5468205459870E+00 -3799,2,-1.6313882143207E+00 -3800,2,-2.0239992791344E+00 -3801,2,-2.3912897579907E+00 -3802,2,-2.0242289636241E+00 -3803,2,-1.9718527227338E+00 -3804,2,-2.0032076936690E+00 -3805,2,-1.2983765172642E+00 -3806,2,-1.1954258796346E+00 -3807,2,-1.3904085173940E+00 -3808,2,-2.0030601278192E+00 -3809,2,-1.7356492321759E+00 -3810,2,-1.8502596071068E+00 -3811,2,-1.8001362330790E+00 -3812,2,-1.6951464489027E+00 -3813,2,-1.5771922821548E+00 -3814,2,-1.4255504627043E+00 -3815,2,-1.6096376843707E+00 -3816,2,-1.6073546899936E+00 -3817,2,-1.5455308106294E+00 -3818,2,-1.5848040069660E+00 -3819,2,-2.3112632842032E+00 -3820,2,-2.1095615077477E+00 -3821,2,-2.1897412172593E+00 -3822,2,-1.6974439773908E+00 -3823,2,-1.8531238135110E+00 -3824,2,-1.6425152193413E+00 -3825,2,-2.0381588056010E+00 -3826,2,-1.9384698311614E+00 -3827,2,-2.1122090302796E+00 -3828,2,-2.2521818616844E+00 -3829,2,-2.0786231945307E+00 -3830,2,-2.2888512385691E+00 -3831,2,-2.0926467067713E+00 -3832,2,-2.0715936113111E+00 -3833,2,-1.3678785466237E+00 -3834,2,-1.4849853434415E+00 -3835,2,-1.4750937615863E+00 -3836,2,-1.4872158291614E+00 -3837,2,-1.5268017052254E+00 -3838,2,-1.5377672316449E+00 -3839,2,-1.5260368153231E+00 -3840,2,-1.4381949238118E+00 -3841,2,-1.5172951871555E+00 -3842,2,-1.5594734249354E+00 -3843,2,-1.7716046296897E+00 -3844,2,-1.5191915643932E+00 -3845,2,-1.4550054256524E+00 -3846,2,-1.4910852003972E+00 -3847,2,-1.4699104957348E+00 -3848,2,-1.4643053573049E+00 -3849,2,-1.4469819315899E+00 -3850,2,-1.4629662217545E+00 -3851,2,-1.5027187548727E+00 -3852,2,-1.4455883064122E+00 -3853,2,-1.5086767048667E+00 -3854,2,-1.5400883580756E+00 -3855,2,-1.4167766003639E+00 -3856,2,-1.5977492950149E+00 -3857,2,-1.6237965299008E+00 -3858,2,-1.6176691540837E+00 -3859,2,-1.7249273506226E+00 -3860,2,-1.5185364080033E+00 -3861,2,-1.9220766904410E+00 -3862,2,-2.2843573813596E+00 -3863,2,-1.6559386943494E+00 -3864,2,-1.7921821716775E+00 -3865,2,-1.5262860794822E+00 -3866,2,-1.6843465740959E+00 -3867,2,-2.0757941907307E+00 -3868,2,-1.6686663320810E+00 -3869,2,-1.6497334627888E+00 -3870,2,-1.6611330324766E+00 -3871,2,-1.9875805999578E+00 -3872,2,-1.8865749822773E+00 -3873,2,-2.1363293033086E+00 -3874,2,-2.1383333803188E+00 -3875,2,-2.2594727544001E+00 -3876,2,-1.9174082812065E+00 -3877,2,-1.8543478104534E+00 -3878,2,-2.2952256246255E+00 -3879,2,-2.1460340840514E+00 -3880,2,-2.3468330312174E+00 -3881,2,-1.6306459843088E+00 -3882,2,-1.3276850115017E+00 -3883,2,-1.2798978367004E+00 -3884,2,-2.4517671575989E+00 -3885,2,-2.5196431058682E+00 -3886,2,-1.5911730669997E+00 -3887,2,-1.9913018513942E+00 -3888,2,-1.7172433965543E+00 -3889,2,-1.2173194138936E+00 -3890,2,-2.0402456022872E+00 -3891,2,-1.3642701178595E+00 -3892,2,-1.4509182635322E+00 -3893,2,-2.1961376541777E+00 -3894,2,-1.9670766772022E+00 -3895,2,-1.5079702832386E+00 -3896,2,-1.6188637254564E+00 -3897,2,-1.7112725960971E+00 -3898,2,-1.6370176434472E+00 -3899,2,-1.9316972811956E+00 -3900,2,-1.6642885160044E+00 -3901,2,-1.5060358215848E+00 -3902,2,-2.2199261893923E+00 -3903,2,-1.9033012418496E+00 -3904,2,-1.7511397074053E+00 -3905,2,-1.4053069725961E+00 -3906,2,-1.6000601660892E+00 -3907,2,-1.5931951400956E+00 -3908,2,-1.3937983247656E+00 -3909,2,-1.4138811946992E+00 -3910,2,-1.4957132683106E+00 -3911,2,-1.4999247815629E+00 -3912,2,-1.3679333539082E+00 -3913,2,-1.7166146402515E+00 -3914,2,-2.2318441614917E+00 -3915,2,-1.5927758961862E+00 -3916,2,-1.7475496165652E+00 -3917,2,-2.1452541233265E+00 -3918,2,-1.8219829945205E+00 -3919,2,-1.4145787663521E+00 -3920,2,-1.8077308235539E+00 -3921,2,-1.9148082293929E+00 -3922,2,-1.6169490643388E+00 -3923,2,-1.5706657926135E+00 -3924,2,-1.7980718975186E+00 -3925,2,-1.4947044087552E+00 -3926,2,-1.7727280436254E+00 -3927,2,-1.9305567469373E+00 -3928,2,-1.7226317140709E+00 -3929,2,-1.8436588043782E+00 -3930,2,-1.9452002882888E+00 -3931,2,-1.9158928071680E+00 -3932,2,-1.2993691147416E+00 -3933,2,-1.7699005786204E+00 -3934,2,-1.7859776571077E+00 +3,2,-0.0 +4,2,-0.0 +58,2,-0.0 +59,2,-0.0 +60,2,-0.0 +61,2,-0.0 +62,2,-0.0 +63,2,-0.0 +64,2,-0.0 +65,2,-0.0 +66,2,-0.0 +67,2,-0.0 +68,2,-0.0 +69,2,-0.0 +70,2,-0.0 +71,2,-0.0 +72,2,-0.0 +73,2,-0.0 +74,2,-0.0 +75,2,-0.0 +76,2,-0.0 +77,2,-0.0 +78,2,-0.0 +79,2,-0.0 +80,2,-0.0 +81,2,-0.0 +82,2,-0.0 +83,2,-0.0 +84,2,-0.0 +85,2,-0.0 +86,2,-0.0 +87,2,-0.0 +88,2,-0.0 +89,2,-0.0 +90,2,-0.0 +91,2,-0.0 +92,2,-0.0 +93,2,-0.0 +94,2,-0.0 +95,2,-0.0 +96,2,-0.0 +97,2,-0.0 +98,2,-0.0 +99,2,-0.0 +100,2,-0.0 +101,2,-0.0 +102,2,-0.0 +103,2,-0.0 +104,2,-0.0 +105,2,-0.0 +106,2,-0.0 +107,2,-0.0 +108,2,-0.0 +109,2,-0.0 +110,2,-0.0 +111,2,-0.0 +112,2,-0.0 +113,2,-0.0 +114,2,-0.0 +115,2,-0.0 +116,2,-0.0 +500,2,-0.0 +501,2,-0.0 +502,2,-0.0 +503,2,-0.0 +504,2,-0.0 +505,2,-0.0 +506,2,-0.0 +507,2,-0.0 +508,2,-0.0 +509,2,-0.0 +510,2,-0.0 +511,2,-0.0 +512,2,-0.0 +513,2,-0.0 +514,2,-0.0 +515,2,-0.0 +516,2,-0.0 +517,2,-0.0 +518,2,-0.0 +519,2,-0.0 +520,2,-0.0 +521,2,-0.0 +522,2,-0.0 +523,2,-0.0 +524,2,-0.0 +525,2,-0.0 +526,2,-0.0 +527,2,-0.0 +528,2,-0.0 +529,2,-0.0 +530,2,-0.0 +531,2,-0.0 +532,2,-0.0 +533,2,-0.0 +534,2,-0.0 +535,2,-0.0 +536,2,-0.0 +537,2,-0.0 +538,2,-0.0 +539,2,-0.0 +540,2,-0.0 +541,2,-0.0 +542,2,-0.0 +543,2,-0.0 +544,2,-0.0 +545,2,-0.0 +546,2,-0.0 +547,2,-0.0 +548,2,-0.0 +549,2,-0.0 +550,2,-0.0 +551,2,-0.0 +552,2,-0.0 +553,2,-0.0 +554,2,-0.0 +555,2,-0.0 +556,2,-0.0 +557,2,-0.0 +558,2,-0.0 +559,2,-0.0 +560,2,-0.0 +561,2,-0.0 +562,2,-0.0 +563,2,-0.0 +564,2,-0.0 +565,2,-0.0 +566,2,-0.0 +567,2,-0.0 +568,2,-0.0 +569,2,-0.0 +570,2,-0.0 +571,2,-0.0 +572,2,-0.0 +573,2,-0.0 +574,2,-0.0 +575,2,-0.0 +576,2,-0.0 +577,2,-0.0 +578,2,-0.0 +579,2,-0.0 +580,2,-0.0 +581,2,-0.0 +582,2,-0.0 +583,2,-0.0 +584,2,-0.0 +585,2,-0.0 +586,2,-0.0 +587,2,-0.0 +588,2,-0.0 +589,2,-0.0 +590,2,-0.0 +591,2,-0.0 +592,2,-0.0 +593,2,-0.0 +594,2,-0.0 +595,2,-0.0 +596,2,-0.0 +597,2,-0.0 +598,2,-0.0 +599,2,-0.0 +600,2,-0.0 +601,2,-0.0 +602,2,-0.0 +603,2,-0.0 +604,2,-0.0 +605,2,-0.0 +606,2,-0.0 +607,2,-0.0 +608,2,-0.0 +609,2,-0.0 +610,2,-0.0 +611,2,-0.0 +612,2,-0.0 +613,2,-0.0 +614,2,-0.0 +615,2,-0.0 +616,2,-0.0 +617,2,-0.0 +618,2,-0.0 +619,2,-0.0 +620,2,-0.0 +621,2,-0.0 +622,2,-0.0 +623,2,-0.0 +624,2,-0.0 +625,2,-0.0 +626,2,-0.0 +627,2,-0.0 +628,2,-0.0 +629,2,-0.0 +630,2,-0.0 +631,2,-0.0 +632,2,-0.0 +633,2,-0.0 +634,2,-0.0 +635,2,-0.0 +636,2,-0.0 +637,2,-0.0 +638,2,-0.0 +639,2,-0.0 +640,2,-0.0 +641,2,-0.0 +642,2,-0.0 +643,2,-0.0 +644,2,-0.0 +645,2,-0.0 +646,2,-0.0 +647,2,-0.0 +648,2,-0.0 +649,2,-0.0 +650,2,-0.0 +651,2,-0.0 +652,2,-0.0 +653,2,-0.0 +654,2,-0.0 +655,2,-0.0 +656,2,-0.0 +657,2,-0.0 +658,2,-0.0 +659,2,-0.0 +660,2,-0.0 +661,2,-0.0 +662,2,-0.0 +663,2,-0.0 +664,2,-0.0 +665,2,-0.0 +666,2,-0.0 +667,2,-0.0 +668,2,-0.0 +669,2,-0.0 +670,2,-0.0 +671,2,-0.0 +672,2,-0.0 +673,2,-0.0 +674,2,-0.0 +675,2,-0.0 +676,2,-0.0 +677,2,-0.0 +678,2,-0.0 +679,2,-0.0 +680,2,-0.0 +681,2,-0.0 +682,2,-0.0 +683,2,-0.0 +684,2,-0.0 +685,2,-0.0 +686,2,-0.0 +687,2,-0.0 +688,2,-0.0 +689,2,-0.0 +690,2,-0.0 +691,2,-0.0 +692,2,-0.0 +693,2,-0.0 +694,2,-0.0 +695,2,-0.0 +696,2,-0.0 +697,2,-0.0 +698,2,-0.0 +699,2,-0.0 +700,2,-0.0 +701,2,-0.0 +702,2,-0.0 +703,2,-0.0 +704,2,-0.0 +705,2,-0.0 +706,2,-0.0 +707,2,-0.0 +708,2,-0.0 +709,2,-0.0 +710,2,-0.0 +711,2,-0.0 +712,2,-0.0 +713,2,-0.0 +714,2,-0.0 +715,2,-0.0 +716,2,-0.0 +717,2,-0.0 +718,2,-0.0 +719,2,-0.0 +720,2,-0.0 +721,2,-0.0 +722,2,-0.0 +723,2,-0.0 +724,2,-0.0 +725,2,-0.0 +726,2,-0.0 +727,2,-0.0 +728,2,-0.0 +729,2,-0.0 +730,2,-0.0 +731,2,-0.0 +732,2,-0.0 +733,2,-0.0 +734,2,-0.0 +735,2,-0.0 +736,2,-0.0 +737,2,-0.0 +738,2,-0.0 +739,2,-0.0 +740,2,-0.0 +741,2,-0.0 +742,2,-0.0 +743,2,-0.0 +744,2,-0.0 +745,2,-0.0 +746,2,-0.0 +747,2,-0.0 +748,2,-0.0 +749,2,-0.0 +750,2,-0.0 +751,2,-0.0 +752,2,-0.0 +753,2,-0.0 +754,2,-0.0 +755,2,-0.0 +756,2,-0.0 +757,2,-0.0 +758,2,-0.0 +759,2,-0.0 +760,2,-0.0 +761,2,-0.0 +762,2,-0.0 +763,2,-0.0 +764,2,-0.0 +765,2,-0.0 +766,2,-0.0 +767,2,-0.0 +768,2,-0.0 +769,2,-0.0 +770,2,-0.0 +771,2,-0.0 +772,2,-0.0 +773,2,-0.0 +774,2,-0.0 +775,2,-0.0 +776,2,-0.0 +777,2,-0.0 +778,2,-0.0 +779,2,-0.0 +780,2,-0.0 +781,2,-0.0 +782,2,-0.0 +783,2,-0.0 +784,2,-0.0 +785,2,-0.0 +786,2,-0.0 +787,2,-0.0 +788,2,-0.0 +789,2,-0.0 +790,2,-0.0 +791,2,-0.0 +792,2,-0.0 +793,2,-0.0 +794,2,-0.0 +795,2,-0.0 +796,2,-0.0 +797,2,-0.0 +798,2,-0.0 +799,2,-0.0 +800,2,-0.0 +801,2,-0.0 +802,2,-0.0 +803,2,-0.0 +804,2,-0.0 +805,2,-0.0 +806,2,-0.0 +807,2,-0.0 +808,2,-0.0 +809,2,-0.0 +810,2,-0.0 +811,2,-0.0 +812,2,-0.0 +813,2,-0.0 +814,2,-0.0 +815,2,-0.0 +816,2,-0.0 +817,2,-0.0 +818,2,-0.0 +819,2,-0.0 +820,2,-0.0 +821,2,-0.0 +822,2,-0.0 +823,2,-0.0 +824,2,-0.0 +825,2,-0.0 +826,2,-0.0 +827,2,-0.0 +828,2,-0.0 +829,2,-0.0 +830,2,-0.0 +831,2,-0.0 +832,2,-0.0 +833,2,-0.0 +834,2,-0.0 +835,2,-0.0 +836,2,-0.0 +837,2,-0.0 +838,2,-0.0 +839,2,-0.0 +840,2,-0.0 +841,2,-0.0 +842,2,-0.0 +843,2,-0.0 +844,2,-0.0 +845,2,-0.0 +846,2,-0.0 +847,2,-0.0 +848,2,-0.0 +849,2,-0.0 +850,2,-0.0 +851,2,-0.0 +852,2,-0.0 +853,2,-0.0 +854,2,-0.0 +855,2,-0.0 +856,2,-0.0 +857,2,-0.0 +858,2,-0.0 +859,2,-0.0 +860,2,-0.0 +861,2,-0.0 +862,2,-0.0 +863,2,-0.0 +864,2,-0.0 +865,2,-0.0 +866,2,-0.0 +867,2,-0.0 +868,2,-0.0 +869,2,-0.0 +870,2,-0.0 +871,2,-0.0 +872,2,-0.0 +873,2,-0.0 +874,2,-0.0 +875,2,-0.0 +876,2,-0.0 +877,2,-0.0 +878,2,-0.0 +879,2,-0.0 +880,2,-0.0 +881,2,-0.0 +882,2,-0.0 +883,2,-0.0 +884,2,-0.0 +885,2,-0.0 +886,2,-0.0 +887,2,-0.0 +888,2,-0.0 +889,2,-0.0 +890,2,-0.0 +891,2,-0.0 +892,2,-0.0 +893,2,-0.0 +894,2,-0.0 +895,2,-0.0 +896,2,-0.0 +897,2,-0.0 +898,2,-0.0 +899,2,-0.0 +900,2,-0.0 +901,2,-0.0 +902,2,-0.0 +903,2,-0.0 +904,2,-0.0 +905,2,-0.0 +906,2,-0.0 +907,2,-0.0 +908,2,-0.0 +909,2,-0.0 +910,2,-0.0 +911,2,-0.0 +912,2,-0.0 +913,2,-0.0 +914,2,-0.0 +915,2,-0.0 +916,2,-0.0 +917,2,-0.0 +918,2,-0.0 +919,2,-0.0 +920,2,-0.0 +921,2,-0.0 +922,2,-0.0 +923,2,-0.0 +924,2,-0.0 +925,2,-0.0 +926,2,-0.0 +927,2,-0.0 +928,2,-0.0 +929,2,-0.0 +930,2,-0.0 +931,2,-0.0 +932,2,-0.0 +933,2,-0.0 +934,2,-0.0 +935,2,-0.0 +936,2,-0.0 +937,2,-0.0 +938,2,-0.0 +939,2,-0.0 +940,2,-0.0 +941,2,-0.0 +942,2,-0.0 +943,2,-0.0 +944,2,-0.0 +945,2,-0.0 +946,2,-0.0 +947,2,-0.0 +948,2,-0.0 +949,2,-0.0 +950,2,-0.0 +951,2,-0.0 +952,2,-0.0 +953,2,-0.0 +954,2,-0.0 +955,2,-0.0 +956,2,-0.0 +957,2,-0.0 +958,2,-0.0 +959,2,-0.0 +960,2,-0.0 +961,2,-0.0 +962,2,-0.0 +963,2,-0.0 +964,2,-0.0 +965,2,-0.0 +966,2,-0.0 +967,2,-0.0 +968,2,-0.0 +969,2,-0.0 +970,2,-0.0 +971,2,-0.0 +972,2,-0.0 +973,2,-0.0 +974,2,-0.0 +975,2,-0.0 +976,2,-0.0 +977,2,-0.0 +978,2,-0.0 +979,2,-0.0 +980,2,-0.0 +981,2,-0.0 +982,2,-0.0 +983,2,-0.0 +1042,2,-0.7517613339181721 +1043,2,-0.7257686392359395 +1044,2,-0.7014178184104366 +1045,2,-0.7420304372135555 +1046,2,-0.819718511920942 +1047,2,-0.8059588763762412 +1048,2,-0.8241849097366634 +1049,2,-0.7701800720803801 +1050,2,-0.793093180361123 +1051,2,-0.819200457385329 +1052,2,-0.816743841499161 +1053,2,-0.8054680385894774 +1054,2,-0.7948075848318611 +1055,2,-0.8324682279742158 +1056,2,-0.8403916126499108 +1057,2,-0.8006565826130224 +1058,2,-0.8964480171605341 +1059,2,-0.9236312004587474 +1060,2,-0.7275043972278085 +1061,2,-0.7052732894066319 +1062,2,-0.72490872378519 +1063,2,-0.7727415445736111 +1064,2,-0.7463918268165238 +1065,2,-0.7780084651976014 +1066,2,-0.7491358634623602 +1067,2,-0.7496650389489617 +1068,2,-0.7693256094559306 +1069,2,-0.7808309998519095 +1070,2,-0.786725981137874 +1071,2,-0.7776149580991732 +1072,2,-0.8104100219383318 +1073,2,-0.8127319511240801 +1074,2,-0.7861634732817672 +1075,2,-0.5952328706878076 +1076,2,-1.6175308640971389 +1077,2,-1.219437294252488 +1078,2,-1.455014329859489 +1079,2,-1.5343781387694992 +1080,2,-1.4270016803744794 +1081,2,-1.4561907979227788 +1082,2,-1.51296767164994 +1083,2,-1.4052343696965843 +1084,2,-1.3922242066585964 +1085,2,-1.3037539986236262 +1086,2,-1.462108580673943 +1087,2,-1.5045042074716086 +1088,2,-1.3843130331262257 +1089,2,-1.4741210461891348 +1090,2,-1.460260238080817 +1091,2,-1.3684038963953107 +1092,2,-1.4101942479476117 +1093,2,-1.5605582785368939 +1094,2,-1.4560534987208815 +1095,2,-1.4159156220585551 +1096,2,-1.5348054276706309 +1097,2,-1.4826100050144482 +1098,2,-1.3824393071430383 +1099,2,-1.5438037640087292 +1100,2,-1.4192412454606198 +1101,2,-1.4069179902553577 +1102,2,-1.7845027967479723 +1103,2,-1.548607262193649 +2330,2,-1.4944580040764106 +2331,2,-1.5619053666243914 +2332,2,-1.8472156683847383 +2335,2,-1.4041748622548422 +2336,2,-1.7874834918165368 +2339,2,-1.521685679255092 +2340,2,-1.35220477874405 +2341,2,-1.3596857925623094 +2342,2,-1.4736345483579965 +2343,2,-1.173785315689464 +2406,2,-2.0234951306096502 +2407,2,-1.8273683273787111 +2408,2,-1.5004200120476343 +2409,2,-1.4781889042264578 +2410,2,-1.4319341898702262 +2411,2,-1.5101054273305032 +2412,2,-1.4515696242487843 +2413,2,-1.4890229088790734 +2414,2,-1.48227735557029 +2415,2,-1.5368557296674945 +2416,2,-1.5437263854532781 +2417,2,-1.5953369428159183 +2418,2,-1.5173766676961906 +2419,2,-1.4945826295990137 +2420,2,-1.593732412465303 +2421,2,-1.5261992679800913 +2422,2,-1.5422550398023056 +2423,2,-1.507005151596497 +2424,2,-1.5133824380670644 +2425,2,-1.5052046873872127 +2426,2,-1.5092395307163942 +2427,2,-1.5057338628738144 +2428,2,-1.5377019655434814 +2429,2,-1.5164367482128158 +2430,2,-1.5573625360504502 +2431,2,-1.5225361274422076 +2432,2,-1.6440638198607354 +2433,2,-1.5340415178381865 +2434,2,-1.5495736094169361 +2435,2,-1.563579096732081 +2436,2,-1.5554685907029004 +2437,2,-1.5661137225710817 +2438,2,-1.5898142251497258 +2439,2,-1.557002699532381 +2440,2,-1.614225644949478 +2441,2,-1.5804214949083693 +2442,2,-1.6470207087886368 +2443,2,-1.6207594686401197 +2444,2,-1.698277283653077 +2445,2,-1.6230813978258682 +2446,2,-1.5687980529675656 +2447,2,-1.6483120114763525 +2448,2,-1.5422295751252528 +2449,2,-1.3370597245937295 +2450,2,-1.6931651488107289 +2451,2,-1.1461291219997698 +2452,2,-1.2202089324227092 +2453,2,-1.225419782191977 +2454,2,-1.209825815875944 +2455,2,-1.976205423130376 +2456,2,-1.580870600414336 +2457,2,-1.814846296198629 +2458,2,-1.4853650864385484 +2459,2,-1.5714045903411726 +2460,2,-1.4335946912587476 +2461,2,-1.4785776590523163 +2462,2,-1.384258320328439 +2463,2,-1.447723978549924 +2464,2,-1.3545443242776873 +2465,2,-1.3387136627189637 +2466,2,-1.506098172751776 +2467,2,-1.548164132385297 +2468,2,-1.5296272523146548 +2469,2,-1.4968122406322948 +2470,2,-1.3352260807457905 +2471,2,-1.3333457674901796 +2472,2,-1.5657920683621407 +2473,2,-1.572080434503073 +2474,2,-1.4811401972915839 +2475,2,-1.542967020998749 +2476,2,-1.4801613974324601 +2477,2,-1.548868227525706 +2478,2,-1.4798925625869008 +2479,2,-1.5269131835561411 +2480,2,-1.4363662832759683 +2481,2,-1.4791550188850082 +2482,2,-1.4526634167387982 +2483,2,-1.57404254007342 +2484,2,-1.5838521477956045 +2485,2,-1.2593732850210573 +2486,2,-1.472844180854777 +2487,2,-1.3761326565818446 +2488,2,-1.3841629378018823 +2489,2,-1.350139961899612 +2490,2,-1.4937177992133162 +2491,2,-1.4423865802218734 +2492,2,-1.6218329115463914 +2493,2,-1.6024648403404884 +2494,2,-1.568391855791446 +2495,2,-1.5773890878074066 +2496,2,-1.6295768833711353 +2497,2,-1.6270738019378628 +2498,2,-1.6131368802346073 +2499,2,-1.608862759476247 +2500,2,-1.6525568862242108 +2501,2,-1.6534676787518943 +2502,2,-1.684942044597705 +2503,2,-1.5153315268551542 +2504,2,-0.9942586411401736 +2505,2,-0.956702689901525 +2506,2,-1.133316366889046 +2507,2,-1.3563477182436057 +2508,2,-0.987053398996384 +2509,2,-1.4599911810143644 +2510,2,-1.5246032798106393 +2511,2,-1.4812324531306336 +2512,2,-1.469513843474075 +2513,2,-1.4582595813437846 +2514,2,-1.5578170711466452 +2515,2,-1.4854826257520015 +2516,2,-1.4791220537628396 +2517,2,-1.540698356469063 +2518,2,-1.4996332592236001 +2519,2,-1.481027905150461 +2520,2,-1.5074047230803354 +2521,2,-1.4292688347873166 +2522,2,-1.4141198142853053 +2523,2,-1.4556154559027994 +2524,2,-1.4079269081806276 +2525,2,-1.391229464564859 +2526,2,-1.4133628305795063 +2527,2,-1.3430290904144833 +2528,2,-1.3448372672619806 +2529,2,-1.4003369098673315 +2530,2,-1.409150010394705 +2531,2,-1.424533208311083 +2532,2,-1.4069181637232018 +2533,2,-1.4422293786764409 +2534,2,-1.4357489781927903 +2535,2,-1.4204611241925427 +2536,2,-1.3744810235289897 +2537,2,-1.3684249940625166 +2538,2,-1.4254615616564748 +2539,2,-1.4060723289077224 +2540,2,-1.4223998150756179 +2541,2,-1.4271902083436225 +2542,2,-1.4438068464893123 +2543,2,-1.448820872019685 +2544,2,-1.430757076922028 +2545,2,-1.4223950332079422 +2546,2,-1.4163285987951555 +2547,2,-1.4289452305480845 +2548,2,-1.4167786309676977 +2549,2,-1.4271670230901303 +2550,2,-1.4336297300303975 +2551,2,-1.4739463550633696 +2552,2,-1.4740923229335228 +2553,2,-1.4358812572344788 +2554,2,-1.4294323440631571 +2555,2,-1.4177953682633866 +2556,2,-1.4366685212982577 +2557,2,-1.3983158176018906 +2558,2,-1.4076020553094577 +2559,2,-1.4308954970916425 +2560,2,-1.4686035107354911 +2561,2,-1.4705342513597166 +2562,2,-1.432236848860285 +2563,2,-1.442073775734311 +2564,2,-1.4300989705904201 +2565,2,-1.4335812355287831 +2566,2,-1.388184550586127 +2567,2,-1.39542117918208 +2568,2,-1.4388481478479769 +2569,2,-1.485301553758748 +2570,2,-1.4677832528848371 +2571,2,-1.4632792983776641 +2572,2,-1.4231160454933878 +2573,2,-1.4196418845025933 +2574,2,-1.4233814667374758 +2575,2,-1.3886193807005707 +2576,2,-1.4294091038195573 +2577,2,-1.403481637911047 +2578,2,-1.9640428679545245 +2579,2,-2.1727610630450376 +2580,2,-1.2309930840530772 +2581,2,-1.5956842442019212 +2582,2,-1.639833959033816 +2583,2,-1.476611585912234 +2584,2,-1.4330780643800927 +2585,2,-1.5036982101401353 +2586,2,-1.469860359525148 +2587,2,-1.378983496603558 +2588,2,-1.3774410633951286 +2589,2,-1.5234646759529895 +2590,2,-1.4485861631952799 +2591,2,-1.4446515624145917 +2592,2,-1.4471749530701936 +2593,2,-1.3987762703639433 +2594,2,-1.4943594127926425 +2595,2,-1.4684957358870296 +2596,2,-1.376566400125549 +2597,2,-1.5636253469995793 +2598,2,-1.5059472674164938 +2599,2,-1.5726031745564828 +2600,2,-1.539028547477626 +2601,2,-1.4554291012671179 +2602,2,-1.4219051195653434 +2603,2,-1.460455770288248 +2604,2,-1.3999972514302408 +2605,2,-1.6400589449068135 +2606,2,-1.5858697079107575 +2607,2,-1.63139392546369 +2608,2,-1.4455312673144858 +2609,2,-1.3598121169763795 +2610,2,-1.3405947054707068 +2611,2,-1.4017739614187543 +2612,2,-1.3938576020847786 +2613,2,-1.6162244758851891 +2614,2,-1.5714058739207026 +2615,2,-1.59625534536733 +2616,2,-1.6009665249136569 +2617,2,-1.5913049640721888 +2618,2,-1.6178560440122656 +2619,2,-1.6201385623859306 +2620,2,-1.6271202674849674 +2621,2,-1.61580703560954 +2622,2,-1.602476426476991 +2623,2,-1.5550665568920425 +2624,2,-1.6604802708999058 +2625,2,-1.756695626557175 +2626,2,-1.550643403331138 +2627,2,-1.66931765351472 +2628,2,-2.0051802333603836 +2629,2,-1.5009287063513455 +2630,2,-1.3739368001357177 +2631,2,-1.4027360797088073 +2632,2,-1.4654664847742505 +2633,2,-1.5289657231127072 +2634,2,-1.2526161954695012 +2635,2,-1.5017604054322105 +2636,2,-1.4868049413392583 +2637,2,-1.42143523705801 +2638,2,-1.372322894948668 +2639,2,-1.4915742561685184 +2640,2,-1.5957102855713134 +2641,2,-1.643474028284776 +2642,2,-1.577787597667853 +2643,2,-1.6774979487505226 +2644,2,-1.5041412233756184 +2645,2,-1.3744442616127601 +2646,2,-1.5424842942834975 +2647,2,-1.455854715009621 +2648,2,-1.3388595444868265 +2649,2,-1.6717617196536914 +2650,2,-1.6354763268346364 +2651,2,-1.5520163782111165 +2652,2,-1.5074847102869582 +2653,2,-1.5326753562992883 +2654,2,-1.8385092184059848 +2655,2,-1.4374279015005542 +2656,2,-1.5728013292748118 +2657,2,-1.5937631131340662 +2658,2,-1.5566027906931705 +2659,2,-1.6254055541916712 +2660,2,-1.3066775212370694 +2661,2,-1.0279551182492406 +2662,2,-1.4704920554799992 +2663,2,-1.5710935676388764 +2664,2,-1.6466998702542153 +2665,2,-1.6362203646543325 +2666,2,-1.6058282549457499 +2667,2,-1.6277451785179338 +2668,2,-1.6111012874602806 +2669,2,-1.530316195181587 +2670,2,-1.547168064688652 +2671,2,-1.5209551015522413 +2672,2,-1.5231365114369912 +2673,2,-1.507133708849924 +2674,2,-1.4969913749808295 +2675,2,-1.493558282748061 +2676,2,-1.5123663431571028 +2677,2,-1.583246180240037 +2678,2,-1.4981228197859378 +2679,2,-1.6789051492182894 +2680,2,-1.6724112906921136 +2681,2,-1.5858303156317177 +2682,2,-1.626752976171702 +2683,2,-1.6221762155923685 +2684,2,-1.5759340390524275 +2685,2,-1.6328792524312639 +2686,2,-1.6424211344232167 +2687,2,-1.5788179647440626 +2688,2,-1.6223832723136788 +2689,2,-1.6412488046774978 +2690,2,-1.617659815750319 +2691,2,-1.7018816480051087 +2692,2,-1.6802780675391764 +2693,2,-1.6594033107072594 +2694,2,-1.6565740355109688 +2695,2,-1.854254500928181 +2696,2,-1.6005956557962817 +2697,2,-1.9533909831208596 +2698,2,-1.8298654604414542 +2699,2,-1.9358011589941373 +2700,2,-1.5516959780381931 +2701,2,-1.7305365496051726 +2702,2,-1.8380758200078302 +2703,2,-1.4770086815302719 +2704,2,-1.511442884213206 +2705,2,-1.3765711436500918 +2706,2,-1.3950411438715882 +2707,2,-1.3611260132936553 +2708,2,-1.296852972263078 +2709,2,-1.8647315277552525 +2710,2,-1.4054631603525132 +2711,2,-1.437661774469667 +2712,2,-1.5425565932145102 +2713,2,-1.4703328621694938 +2714,2,-1.4708774873738542 +2715,2,-1.5076047433387845 +2716,2,-1.494920927908805 +2717,2,-1.4925828809383497 +2718,2,-1.244891801302625 +2719,2,-1.4003978917116238 +2720,2,-1.8461588238854019 +2721,2,-1.5895677473809513 +2722,2,-1.5367231761428934 +2723,2,-1.682445875804853 +2724,2,-1.5222319183958997 +2725,2,-1.4986653974910582 +2726,2,-1.4315443789004487 +2727,2,-1.437910992477784 +2728,2,-1.4118438272907659 +2729,2,-1.3424692958981808 +2730,2,-1.4856842921839568 +2731,2,-1.42845755311697 +2732,2,-1.572948147771203 +2733,2,-1.510251504003866 +2734,2,-1.5991220604155774 +2735,2,-1.6009062941182712 +2736,2,-1.3820721180246733 +2737,2,-1.3724270654653525 +2738,2,-1.2781621706482882 +2739,2,-1.4358173041269675 +2740,2,-1.6188017840706013 +2741,2,-1.654142622968109 +2742,2,-1.592454121898327 +2743,2,-1.591998804670899 +2744,2,-1.6638159147496991 +2745,2,-1.6607081532900008 +2746,2,-1.6432652778118264 +2747,2,-1.6116062580150614 +2748,2,-1.4769730490230577 +2749,2,-1.4364671889500278 +2750,2,-1.5461733047247643 +2751,2,-1.566909706788423 +2752,2,-1.1380496804993696 +2753,2,-1.1773448608258041 +2754,2,-1.8373587254756782 +2755,2,-1.6730376155313822 +2756,2,-1.5003526579921822 +2757,2,-1.5058942247441225 +2758,2,-1.477182226578687 +2759,2,-1.4617799088900039 +2760,2,-1.5098841527903486 +2761,2,-1.4108794990877997 +2762,2,-1.5883919873872416 +2763,2,-1.5488182110584288 +2764,2,-1.543242243442371 +2765,2,-1.621003356757951 +2766,2,-1.865137672792928 +2767,2,-1.2686150156201068 +2768,2,-1.5386722804926138 +2769,2,-1.6588699786889607 +2770,2,-1.6708424979086978 +2771,2,-1.6199758509902562 +2772,2,-1.791558233120977 +2773,2,-1.6141113984429645 +2774,2,-1.5800146667003845 +2775,2,-1.6751786104946762 +2776,2,-1.5530816053008187 +2777,2,-1.5023764492424478 +2778,2,-1.594989721050909 +2779,2,-1.4691925361380511 +2780,2,-1.4621824601118958 +2781,2,-1.4817074337882088 +2782,2,-1.4350788552906142 +2783,2,-1.4167747062644356 +2784,2,-1.4673043624179656 +2785,2,-1.4204462291680293 +2786,2,-1.4258951152656671 +2787,2,-1.4308749784395982 +2788,2,-1.43066819227404 +2789,2,-1.4235169762191175 +2790,2,-1.4410566770661715 +2791,2,-1.4216767387720806 +2792,2,-1.4252565004814828 +2793,2,-1.434756060426306 +2794,2,-1.4367373384290656 +2795,2,-1.4509666251746858 +2796,2,-1.4399330287906587 +2797,2,-1.4587513013283067 +2798,2,-1.459457129962878 +2799,2,-1.4510923566180922 +2800,2,-1.4466965123733881 +2801,2,-1.425160454994097 +2802,2,-1.440078242416103 +2803,2,-1.4183345830897809 +2804,2,-1.4298330446202323 +2805,2,-1.4150915790550205 +2806,2,-1.440583978515332 +2807,2,-1.4405151350226402 +2808,2,-1.4283298300850245 +2809,2,-1.4323782701042886 +2810,2,-1.4237975252277935 +2811,2,-1.4286848048681544 +2812,2,-1.424438821421419 +2813,2,-1.4349056740536341 +2814,2,-1.4168698211625703 +2815,2,-1.4407696256467897 +2816,2,-1.4380605995491955 +2817,2,-1.4312955222718273 +2818,2,-1.430115713610271 +2819,2,-1.420102371224479 +2820,2,-1.4313842233428997 +2821,2,-1.4195160172687515 +2822,2,-1.4319166844906153 +2823,2,-1.4283922184068645 +2824,2,-1.4491584019536996 +2825,2,-1.4660444101089012 +2826,2,-1.4528478676332077 +2827,2,-1.4832389320426353 +2828,2,-1.4916892768942667 +2829,2,-1.4782657020165304 +2830,2,-1.4693097461279891 +2831,2,-1.4203356539841556 +2832,2,-1.4858686668195826 +2833,2,-1.4039099861485214 +2834,2,-1.2756435202923337 +2835,2,-1.1829366777258232 +2836,2,-1.5242841700100853 +2837,2,-1.4058251240842634 +2838,2,-1.480989588244519 +2839,2,-1.5369934352384875 +2840,2,-1.5290242073717952 +2841,2,-1.452065412883981 +2842,2,-1.4382099712493968 +2843,2,-1.3995362874983235 +2844,2,-1.5796754182502208 +2845,2,-1.5385516635075687 +2846,2,-1.5022159646080593 +2847,2,-1.585786958149875 +2848,2,-1.6652293919621772 +2849,2,-1.6663801806510647 +2850,2,-1.6294271656587713 +2851,2,-1.604687616899778 +2852,2,-1.2588962583147487 +2853,2,-1.1622885740892026 +2854,2,-1.0327439942513288 +2855,2,-1.349292068941953 +2856,2,-1.7547957174781186 +2857,2,-1.5320634280783725 +2858,2,-1.4123272282700077 +2859,2,-1.5036762254340805 +2860,2,-1.425200617932343 +2861,2,-1.3755361719187051 +2862,2,-1.5690679233924074 +2863,2,-1.4758089467349358 +2864,2,-1.4522868845176236 +2865,2,-1.4637891082648267 +2866,2,-1.3799801240025436 +2867,2,-1.2623515589582415 +2868,2,-1.1567681390296882 +2869,2,-1.8629139600936977 +2870,2,-1.5855099592792714 +2871,2,-1.6127610179622343 +2872,2,-1.4599926611012142 +2873,2,-1.4997853035376447 +2874,2,-1.553868728188901 +2875,2,-1.3819624016914112 +2876,2,-1.4306104902672305 +2877,2,-1.484069870427622 +2878,2,-1.2675245777129243 +2879,2,-1.6614772195794896 +2880,2,-1.511737769783379 +2881,2,-1.7744203854672638 +2882,2,-1.60075081417581 +2883,2,-1.755442746684846 +2884,2,-1.4806350516515865 +2885,2,-1.5656734136173698 +2886,2,-1.2202047957958275 +2887,2,-1.1711465171660669 +2888,2,-1.4921088957659239 +2889,2,-1.483601199214232 +2890,2,-1.4874649681780023 +2891,2,-1.694611227626465 +2892,2,-2.114791537760258 +2893,2,-1.3652434126984943 +2894,2,-1.779704186165129 +2895,2,-1.4605756413049191 +2896,2,-1.5709871877737083 +2897,2,-1.5403952902275675 +2898,2,-1.3669997415566157 +2899,2,-1.5070547834961734 +2900,2,-1.4913071152790556 +2901,2,-1.4858085661634124 +2902,2,-1.4784425197775701 +2903,2,-1.4596016692980904 +2904,2,-1.469065876611148 +2905,2,-1.4735212286147268 +2906,2,-1.470155963062207 +2907,2,-1.4716309450620488 +2908,2,-1.4594322070281616 +2909,2,-1.4863378159690201 +2910,2,-1.528969922247545 +2911,2,-1.4588292922104642 +2912,2,-1.545797581010391 +2913,2,-1.4832943049708784 +2914,2,-1.479891886917764 +2915,2,-1.5578266911311796 +2916,2,-1.5652873774021476 +2917,2,-1.517884977258687 +2918,2,-1.5471849462729907 +2919,2,-1.6115332297388172 +2920,2,-1.5035882918111667 +2921,2,-1.6344111923319387 +2922,2,-1.6046910988013832 +2923,2,-1.5674870243563377 +2924,2,-1.5442074890847828 +2925,2,-1.6817325268654264 +2926,2,-1.8057999663247117 +2927,2,-1.5078115045634732 +2928,2,-1.5644135262236738 +2929,2,-1.5180506902193935 +2930,2,-1.49783702654718 +2931,2,-1.5495426423230707 +2932,2,-1.550095152613687 +2933,2,-1.5207659940667118 +2934,2,-1.536715104783214 +2935,2,-1.5556756964593583 +2936,2,-1.5301464647306686 +2937,2,-1.524726809049946 +2938,2,-1.5840846676917577 +2939,2,-1.5837284618854996 +2940,2,-1.5178923679089429 +2941,2,-1.5265443774580676 +2942,2,-1.4886527494287358 +2943,2,-1.4970227808976926 +2944,2,-1.503856691064242 +2945,2,-1.4734010901575443 +2946,2,-1.73816695772504 +2947,2,-1.8258176252971952 +2948,2,-1.4794905382059758 +2949,2,-1.5613709875208697 +2950,2,-1.4794534650860034 +2951,2,-1.5218612846689648 +2952,2,-1.3188778411063655 +2953,2,-1.4246683166701402 +2954,2,-1.5539338829189306 +2955,2,-1.5442225744369356 +2956,2,-1.5511978757675782 +2957,2,-1.5382098776503494 +2958,2,-1.4498221761232568 +2959,2,-1.495602343209776 +2960,2,-1.5310541760535825 +2961,2,-1.5811140661343455 +2962,2,-2.0477604531647446 +2963,2,-2.039712021462717 +2964,2,-1.743383372531552 +2965,2,-1.4655781885363037 +2966,2,-1.439762498228578 +2967,2,-1.4191397209167058 +2968,2,-1.4058859001286776 +2969,2,-1.335837274034715 +2970,2,-1.4626113122115454 +2971,2,-1.2270328685736742 +2972,2,-1.624609955795656 +2973,2,-1.6554850605768108 +2974,2,-1.4183152749924375 +2975,2,-1.4519513645473512 +2976,2,-1.4116728927727624 +2977,2,-1.6095974526459698 +2978,2,-1.75833302145951 +2979,2,-1.6928200457516511 +2980,2,-1.694753694717487 +2981,2,-1.8102957489628049 +2982,2,-1.6486615370162998 +2983,2,-1.5609958732900648 +2984,2,-1.8145436324959956 +2985,2,-1.4984187420857351 +2986,2,-1.5119148948429462 +2987,2,-1.5927221438762806 +2988,2,-1.504521899498858 +2989,2,-1.463232189832643 +2990,2,-1.544338768394133 +2991,2,-1.4451069548804543 +2992,2,-1.4361890220639566 +2993,2,-1.433899402564125 +2994,2,-1.440921834592892 +2995,2,-1.4454909466897867 +2996,2,-1.4299920966365098 +2997,2,-1.446341546104844 +2998,2,-1.4521377265672244 +2999,2,-1.4398012245791523 +3000,2,-1.4537349332221743 +3001,2,-1.4509997311828173 +3002,2,-1.4590505729384686 +3003,2,-1.4479297722646307 +3004,2,-1.438105181033525 +3005,2,-1.4431235981064043 +3006,2,-1.4263852381969644 +3007,2,-1.4223826499091705 +3008,2,-1.425823881737381 +3009,2,-1.4189320439273794 +3010,2,-1.4165610839225222 +3011,2,-1.4399806242580495 +3012,2,-1.4183008734220746 +3013,2,-1.4148007174089146 +3014,2,-1.4359529699745757 +3015,2,-1.4152245356847364 +3016,2,-1.420930180386166 +3017,2,-1.4185932118092643 +3018,2,-1.4176959415570773 +3019,2,-1.4187274568524928 +3020,2,-1.4394426760121914 +3021,2,-1.4226863053295347 +3022,2,-1.4252583275214967 +3023,2,-1.4411006224157532 +3024,2,-1.428056054690163 +3025,2,-1.4174777558308693 +3026,2,-1.4325918254613461 +3027,2,-1.4244990932806263 +3028,2,-1.453467121435305 +3029,2,-1.412275207781734 +3030,2,-1.4655221034397845 +3031,2,-1.4615015580700381 +3032,2,-1.469762575016669 +3033,2,-1.4700333842981592 +3034,2,-1.498117583022418 +3035,2,-1.4526812594918044 +3036,2,-1.4972702029738385 +3037,2,-1.602017428438528 +3038,2,-1.5152346146312698 +3039,2,-1.5296280837490213 +3040,2,-1.5434750739418501 +3041,2,-1.5064066757241443 +3042,2,-1.5708345797324528 +3043,2,-1.281679597017523 +3044,2,-1.3596914869241992 +3045,2,-1.5737904159988378 +3046,2,-1.5760196171749734 +3047,2,-1.2430901808929493 +3048,2,-1.2327843207208635 +3049,2,-1.2198541007168868 +3050,2,-1.254366134354025 +3051,2,-1.7954837228593155 +3052,2,-1.5250310496375794 +3053,2,-1.5710962286114447 +3054,2,-1.4800658169629508 +3055,2,-1.4788378550556487 +3056,2,-1.473096350114756 +3057,2,-1.4360564734860055 +3058,2,-1.4724800753817222 +3059,2,-1.5903855560000133 +3060,2,-1.6013187074399924 +3061,2,-1.6024984433985676 +3062,2,-1.5093306603888688 +3063,2,-1.5867724930360971 +3064,2,-1.4815867037173187 +3065,2,-1.5919080549853342 +3066,2,-1.6224454923905796 +3067,2,-1.6224575297161692 +3068,2,-1.720200392155857 +3069,2,-1.8705713052178063 +3070,2,-1.5833485726446774 +3071,2,-1.621627287481852 +3072,2,-1.5413691536966625 +3073,2,-1.5161975997976027 +3074,2,-1.528914355125306 +3075,2,-1.5588714686408287 +3076,2,-1.4266060237920841 +3077,2,-1.7905646989600181 +3078,2,-1.7033369370773357 +3079,2,-1.723460932146774 +3080,2,-1.4819220128437594 +3081,2,-1.4122363155972837 +3082,2,-1.5435090597946215 +3083,2,-1.4146705509557218 +3084,2,-1.7136581659883083 +3085,2,-1.7143375888439534 +3086,2,-1.7022546009911808 +3087,2,-1.71790066753108 +3088,2,-1.6674461041982964 +3089,2,-1.687182608643845 +3090,2,-1.530217741842968 +3091,2,-1.5597598125745717 +3092,2,-1.646590575552708 +3093,2,-1.5738434438397617 +3094,2,-1.7046241749578972 +3095,2,-1.628152556656752 +3096,2,-1.7102449504047061 +3097,2,-1.5795564906834296 +3098,2,-1.3622928980412443 +3099,2,-1.7545027139395524 +3100,2,-1.6894070237728642 +3101,2,-1.6277515773837963 +3102,2,-1.5854895145319203 +3103,2,-1.486743713591443 +3104,2,-1.381934210234669 +3105,2,-1.592493294706641 +3106,2,-1.4809802461019177 +3107,2,-1.291203084467842 +3108,2,-1.3830289025241485 +3109,2,-1.3122511417635183 +3110,2,-1.2339241293153105 +3111,2,-1.4434843160326114 +3112,2,-1.488228902954136 +3113,2,-1.5304003675353872 +3114,2,-1.53058464360771 +3115,2,-1.7941246808452713 +3116,2,-1.7724848076394875 +3117,2,-1.6650006427346151 +3118,2,-1.5115156844074973 +3119,2,-1.5591022698060273 +3120,2,-1.5512552598990095 +3121,2,-1.5588511106669876 +3122,2,-1.5478350568190082 +3123,2,-1.5701319658659032 +3124,2,-1.5262799640935893 +3125,2,-1.3571864902988908 +3126,2,-1.4984309641570208 +3127,2,-1.4135059055174004 +3128,2,-1.3130335552754697 +3129,2,-1.4905177790445456 +3130,2,-1.6596307244043185 +3131,2,-1.6230958459945237 +3132,2,-1.6422485458754223 +3133,2,-1.6856959609970863 +3134,2,-1.8513938707879047 +3135,2,-2.0463893195590606 +3136,2,-1.405032567762497 +3137,2,-1.4063618487319423 +3138,2,-2.0487035541264156 +3139,2,-1.9055862179178826 +3140,2,-2.2166238540054763 +3141,2,-1.7714303930244026 +3142,2,-1.6534677613755477 +3143,2,-2.0784740382407114 +3144,2,-1.5915882331361892 +3145,2,-1.5148619281929399 +3146,2,-1.6090503555592575 +3147,2,-1.445712272029147 +3148,2,-1.4081465787137164 +3149,2,-1.3533518697054598 +3150,2,-1.413157205602599 +3151,2,-1.420405401603672 +3152,2,-1.4085950216921652 +3153,2,-1.4256454174494195 +3154,2,-1.4458588331939493 +3155,2,-1.4328391149533908 +3156,2,-1.4593120010908853 +3157,2,-1.4608114558894967 +3158,2,-1.453202341225474 +3159,2,-1.4476196830967893 +3160,2,-1.428863688348989 +3161,2,-1.4566609634379406 +3162,2,-1.421388563211071 +3163,2,-1.4306651651709 +3164,2,-1.4432299648605607 +3165,2,-1.4488244959793621 +3166,2,-1.460839719191499 +3167,2,-1.468094582954963 +3168,2,-1.4591830249128825 +3169,2,-1.4465716555733041 +3170,2,-1.4755832861451352 +3171,2,-1.4327120534211528 +3172,2,-1.4324954689003877 +3173,2,-1.4597809185322308 +3174,2,-1.447639288401885 +3175,2,-1.4626230647309797 +3176,2,-1.461576444088737 +3177,2,-1.4632494958391262 +3178,2,-1.4494374776348373 +3179,2,-1.4801837921722225 +3180,2,-1.4383566584884682 +3181,2,-1.4309339186858603 +3182,2,-1.4652845553508305 +3183,2,-1.421195599865542 +3184,2,-1.4371048497548213 +3185,2,-1.4546059833602512 +3186,2,-1.4656241888350776 +3187,2,-1.4691135783038516 +3188,2,-1.4616853942784784 +3189,2,-1.4560528081487336 +3190,2,-1.4542551848616467 +3191,2,-1.4431592342233557 +3192,2,-1.4887243412768534 +3193,2,-1.413107415053994 +3194,2,-1.4613642638398274 +3195,2,-1.5965500654369382 +3196,2,-1.619356973091023 +3197,2,-1.63169822393767 +3198,2,-1.441118683367217 +3199,2,-1.5208659651955754 +3200,2,-1.6490650292959887 +3201,2,-1.6280056650692407 +3202,2,-1.6194775837866922 +3203,2,-1.5629711906623096 +3204,2,-1.5673304595971513 +3205,2,-1.5728258960783645 +3206,2,-1.4719261587293033 +3207,2,-1.4455622128501506 +3208,2,-1.496248556256883 +3209,2,-1.573539997501244 +3210,2,-1.5730828808146529 +3211,2,-1.5575875128980756 +3212,2,-1.561704693012007 +3213,2,-1.4272161973630104 +3214,2,-1.3786150894899547 +3215,2,-1.4727546447393247 +3216,2,-1.4349420237962311 +3217,2,-1.592865302615394 +3218,2,-1.717244112134948 +3219,2,-1.755185399772349 +3220,2,-1.5201434356713548 +3221,2,-1.574728967233265 +3222,2,-1.467253121097214 +3223,2,-1.4161623276877122 +3224,2,-1.4383160890961706 +3225,2,-1.4282030282812161 +3226,2,-1.5181889042186838 +3227,2,-1.718496743245251 +3228,2,-1.7037278618460687 +3229,2,-1.6841864923820213 +3230,2,-1.6716551571255915 +3231,2,-1.5866191169423824 +3232,2,-1.2057317649201824 +3233,2,-1.1691746533157366 +3234,2,-1.2123700774812654 +3235,2,-1.262646062692508 +3236,2,-1.6857669875072323 +3237,2,-1.6676324548364885 +3238,2,-1.713075515870793 +3239,2,-1.6332260000859398 +3240,2,-1.5854047870701922 +3241,2,-1.5689767522305906 +3242,2,-1.5916760588298144 +3243,2,-1.5741771659168484 +3244,2,-1.7392401288916153 +3245,2,-1.7094294238302976 +3246,2,-1.7599976549492466 +3247,2,-1.5972334126573269 +3248,2,-1.6395678579414612 +3249,2,-1.8315786878540725 +3250,2,-1.5665244620142265 +3251,2,-1.2558763245037288 +3252,2,-1.3873713358213677 +3253,2,-1.6936780086273167 +3254,2,-1.6735761313889246 +3255,2,-1.7724350854350701 +3256,2,-1.811211387659416 +3257,2,-1.6880918102031475 +3258,2,-1.5483671307216993 +3259,2,-1.7017024516017762 +3260,2,-1.60220727975886 +3261,2,-1.5773207324084209 +3262,2,-1.606633898688523 +3263,2,-1.5752961757249326 +3264,2,-1.4560947432978266 +3265,2,-1.5699261616795013 +3266,2,-1.6424909941756431 +3267,2,-1.6008580372015422 +3268,2,-1.59325323417389 +3269,2,-1.435035595473511 +3270,2,-1.542029110997762 +3271,2,-1.5560043037983535 +3272,2,-1.5264130965664446 +3273,2,-1.7207658883767805 +3274,2,-1.73129687118449 +3275,2,-1.7743697962772564 +3276,2,-1.7870617503677717 +3277,2,-1.6692447627747553 +3278,2,-1.5172164673831503 +3279,2,-1.4588851252360404 +3280,2,-1.4703208207601792 +3281,2,-1.5709718920065598 +3282,2,-1.560585988868457 +3283,2,-1.5769450846386708 +3284,2,-1.62034214316918 +3285,2,-1.727440681718831 +3286,2,-1.4536763724018749 +3287,2,-1.2414845730844326 +3288,2,-1.6025275734275524 +3289,2,-1.6103963757981068 +3290,2,-1.7624158752575367 +3291,2,-1.541710885476423 +3292,2,-1.6344009315742498 +3293,2,-1.6758969798633405 +3294,2,-1.757316984010519 +3295,2,-1.5932407397533954 +3296,2,-1.549528414129738 +3297,2,-1.5020848324021585 +3298,2,-2.0132699280379773 +3299,2,-2.264123775150049 +3300,2,-1.5960977090454622 +3301,2,-1.361832104730068 +3302,2,-1.5101069007986985 +3303,2,-1.7338922992482968 +3304,2,-1.5490090629664555 +3305,2,-1.6280011531353489 +3306,2,-1.744614052383715 +3307,2,-1.7242092176504231 +3308,2,-1.3318064743999711 +3309,2,-1.674236653122291 +3310,2,-1.7283858296007464 +3311,2,-1.7679595339782461 +3312,2,-1.7363871973909069 +3313,2,-1.443721225311885 +3314,2,-1.4430788553026688 +3315,2,-1.6033225638942812 +3316,2,-1.614120711764354 +3317,2,-1.6163786295772586 +3318,2,-1.83854552272954 +3319,2,-1.7111560398061243 +3320,2,-1.7674952142928737 +3321,2,-1.5293307146283173 +3322,2,-1.5697300034638535 +3323,2,-1.5505503649920966 +3324,2,-1.5506545716745583 +3325,2,-2.269091295593817 +3326,2,-2.180698419127777 +3327,2,-2.246213445062051 +3328,2,-1.2632482100454037 +3329,2,-1.2324831577108386 +3330,2,-1.325292003012975 +3331,2,-1.4348534811569889 +3332,2,-1.3718857091460874 +3333,2,-1.4518493784171413 +3334,2,-1.4612686558591297 +3335,2,-1.502919073075079 +3336,2,-1.4614184663866832 +3337,2,-1.4511781897506253 +3338,2,-1.4942692592875035 +3339,2,-1.4531373571644808 +3340,2,-1.4605946649996224 +3341,2,-1.4707459170483914 +3342,2,-1.465919661170043 +3343,2,-1.4777542109712278 +3344,2,-1.491712956295257 +3345,2,-1.4933422271058012 +3346,2,-1.4888208657040112 +3347,2,-1.4974853596295477 +3348,2,-1.4842943456820465 +3349,2,-1.4838634798190404 +3350,2,-1.473243479172874 +3351,2,-1.4806724815457144 +3352,2,-1.4903519437395278 +3353,2,-1.4813446049485943 +3354,2,-1.4923640538167997 +3355,2,-1.4861713311326359 +3356,2,-1.502135322196531 +3357,2,-1.4897949028870265 +3358,2,-1.4896986490469415 +3359,2,-1.4878185928380383 +3360,2,-1.4886114304298381 +3361,2,-1.4937995536084203 +3362,2,-1.4925634194342154 +3363,2,-1.4905437214204487 +3364,2,-1.4751411191935084 +3365,2,-1.5084744836945894 +3366,2,-1.4663112802224565 +3367,2,-1.4471990209025234 +3368,2,-1.4731323548478061 +3369,2,-1.4251834713786269 +3370,2,-1.4518334313443177 +3371,2,-1.4431834477981642 +3372,2,-1.4718360842478762 +3373,2,-1.6236482160742762 +3374,2,-1.466887680338856 +3375,2,-1.7457938016821768 +3376,2,-1.772796610973547 +3377,2,-1.8332424184723477 +3378,2,-1.7252291009423844 +3379,2,-1.4011952186993633 +3380,2,-1.3880538263868165 +3381,2,-1.5957150904379396 +3382,2,-1.4863896383266049 +3383,2,-1.4425793649130192 +3384,2,-1.6687397256869898 +3385,2,-1.7487779944235975 +3386,2,-1.4556865499524407 +3387,2,-1.7063938880292648 +3388,2,-1.6031782517847517 +3389,2,-1.6119081555400714 +3390,2,-1.8936361337632266 +3391,2,-1.7292804825337595 +3392,2,-1.730190806007918 +3393,2,-1.4622711336047038 +3394,2,-1.8160630859078812 +3395,2,-1.9205426937329797 +3396,2,-1.8660347103948818 +3397,2,-1.2763326001076774 +3398,2,-1.7335149162638954 +3399,2,-1.9016878929738945 +3400,2,-1.5183400769245425 +3401,2,-1.5492993316958588 +3402,2,-1.7154450930111091 +3403,2,-1.9416244872844577 +3404,2,-1.829237368095178 +3405,2,-1.7864266347306987 +3406,2,-1.7803129771684494 +3407,2,-1.5436789510115176 +3408,2,-1.578433221591558 +3409,2,-1.8796808747128426 +3410,2,-2.073498542026807 +3411,2,-1.6468242285583086 +3412,2,-1.6184151801554876 +3413,2,-1.7013668136328333 +3414,2,-1.6068470002765805 +3415,2,-1.6382694121169221 +3416,2,-1.4874596707513168 +3417,2,-1.6789681124181826 +3418,2,-1.2935803255453617 +3419,2,-1.4534692529436115 +3420,2,-1.4357792512411198 +3421,2,-1.4532767668516238 +3422,2,-1.5907291316503622 +3423,2,-1.6320118690968297 +3424,2,-1.5968399675992904 +3425,2,-1.6128986343002638 +3426,2,-1.7687665728161408 +3427,2,-2.021766916667501 +3428,2,-1.905783010388654 +3429,2,-2.2500378935200507 +3430,2,-1.619743902113777 +3431,2,-1.6055012728164033 +3432,2,-1.516381382183034 +3433,2,-1.5069985393379721 +3434,2,-1.442220390955952 +3435,2,-1.4174967712296578 +3436,2,-1.7634585039641542 +3437,2,-1.6728429022535394 +3438,2,-1.703048300424322 +3439,2,-1.5869273476517882 +3440,2,-1.9888409208945048 +3441,2,-1.3642750038475449 +3442,2,-1.510993516245642 +3443,2,-1.593487328699524 +3444,2,-1.6098399158981447 +3445,2,-1.6219515153836224 +3446,2,-1.5910707011771101 +3447,2,-1.7673723887608062 +3448,2,-1.8456470994935568 +3449,2,-1.8077524818327955 +3450,2,-1.5328227640301408 +3451,2,-1.5473390144388577 +3452,2,-1.6453220494557512 +3453,2,-1.3706503692557521 +3454,2,-2.500078385265467 +3455,2,-1.7214922348831618 +3456,2,-1.7293342371989355 +3457,2,-2.0460856936484197 +3458,2,-1.812893967768691 +3459,2,-1.885236458977152 +3460,2,-1.8343434014813205 +3461,2,-1.8100461919445587 +3462,2,-1.4933537788202254 +3463,2,-1.3487292059149625 +3464,2,-1.4778918334018034 +3465,2,-1.8859526802229154 +3466,2,-1.740472381610107 +3467,2,-1.4114217510554095 +3468,2,-1.7273595520256577 +3469,2,-1.9724873620825052 +3470,2,-2.0880530706765206 +3471,2,-1.926671537265044 +3472,2,-2.0075153458804587 +3473,2,-1.9468490182966267 +3474,2,-1.661773448301841 +3475,2,-1.7189942367576836 +3476,2,-1.6304651835848933 +3477,2,-1.615939298788936 +3478,2,-1.6198322084817154 +3479,2,-1.6540893697856127 +3480,2,-1.3691545578176902 +3481,2,-1.577954130545083 +3482,2,-1.675783228853117 +3483,2,-1.5241843541806974 +3484,2,-1.8523712780691666 +3485,2,-1.5446076185525175 +3486,2,-1.473240797922128 +3487,2,-1.4403783164768027 +3488,2,-1.5891477000014569 +3489,2,-1.6851470371422308 +3490,2,-1.6910168245548696 +3491,2,-1.8199167362285062 +3492,2,-1.655794176103901 +3493,2,-1.706618922927209 +3494,2,-1.6056087554543619 +3495,2,-1.5875396642247983 +3496,2,-1.507585515033488 +3497,2,-1.667425133970046 +3498,2,-1.4943024494304338 +3499,2,-1.484824209481802 +3500,2,-1.4904255588540507 +3501,2,-1.4983339408935257 +3502,2,-1.5482860236939429 +3503,2,-1.479703269420635 +3504,2,-1.5422238772270491 +3505,2,-1.4806041017077527 +3506,2,-1.5976468934843326 +3507,2,-1.4608835826528688 +3508,2,-1.4508443749753335 +3509,2,-1.464858885956478 +3510,2,-1.4593763666140602 +3511,2,-1.5069452191383041 +3512,2,-1.4378705991151113 +3513,2,-1.5180564741924274 +3514,2,-1.521193771170867 +3515,2,-1.542243173986683 +3516,2,-1.5130697644965379 +3517,2,-1.461916208845438 +3518,2,-1.5441868543402775 +3519,2,-1.4667572892817007 +3520,2,-1.5188532069554934 +3521,2,-1.4333216369700714 +3522,2,-1.5295761480372854 +3523,2,-1.521228512298428 +3524,2,-1.5586754519394488 +3525,2,-1.501288985678585 +3526,2,-1.434874833163164 +3527,2,-1.5467288586512924 +3528,2,-1.4240381854334552 +3529,2,-1.4491530569219269 +3530,2,-1.3961921146569434 +3531,2,-1.446207329496928 +3532,2,-1.4708317710218883 +3533,2,-1.4491289393275237 +3534,2,-1.6155904628207867 +3535,2,-1.688676825371485 +3536,2,-1.5322460250084453 +3537,2,-1.3746503670453103 +3538,2,-1.2093728457304402 +3539,2,-1.2130532025745315 +3540,2,-1.1996461331062804 +3541,2,-1.1934354499992808 +3542,2,-2.273861344786303 +3543,2,-2.049053567964828 +3544,2,-2.2687502816063625 +3545,2,-1.917920369185633 +3546,2,-1.981893346336051 +3547,2,-1.8372507367554851 +3548,2,-1.7696884151167473 +3549,2,-1.7061418627047014 +3550,2,-1.923653423524018 +3551,2,-1.6078181791965942 +3552,2,-1.6015648662432194 +3553,2,-1.9069149149025661 +3554,2,-1.5739802481578127 +3555,2,-1.5183953289198018 +3556,2,-1.4550680911075713 +3557,2,-1.6042043541917004 +3558,2,-2.516716155841483 +3559,2,-2.12289628764407 +3560,2,-2.591281141843301 +3561,2,-2.335222084719013 +3562,2,-2.227099493013001 +3563,2,-2.2307236271520505 +3564,2,-1.5927593791872277 +3565,2,-1.8147119432236931 +3566,2,-1.1671788849426863 +3567,2,-1.2201235956501109 +3568,2,-1.6949575457765296 +3569,2,-1.7426449800137673 +3570,2,-1.7624145634232877 +3571,2,-1.8592765795465713 +3572,2,-1.9736044452307682 +3573,2,-1.8667615950036858 +3574,2,-1.8376690437561725 +3575,2,-1.725706324365012 +3576,2,-1.593289952188702 +3577,2,-1.5725683553082057 +3578,2,-1.7560413444998777 +3579,2,-1.6078099315340102 +3580,2,-1.582953897409924 +3581,2,-1.6391877610747554 +3582,2,-2.4095924338276613 +3583,2,-1.7946388167292522 +3584,2,-1.8778928865396234 +3585,2,-1.4154111163458094 +3586,2,-1.3018342378144878 +3587,2,-1.306506370913478 +3588,2,-1.2962364183258979 +3589,2,-1.2097146869902817 +3590,2,-1.4178486140488018 +3591,2,-1.5450810203824423 +3592,2,-1.7838148018304019 +3593,2,-2.0326167122076595 +3594,2,-1.8602092702410233 +3595,2,-2.006166736083476 +3596,2,-1.965798624544773 +3597,2,-1.505551334515659 +3598,2,-1.422640165376472 +3599,2,-1.4371585288285775 +3600,2,-1.5538908324899092 +3601,2,-1.821417911930978 +3602,2,-1.7860728415786693 +3603,2,-1.838506732788415 +3604,2,-1.8826958491718353 +3605,2,-2.0158884800800227 +3606,2,-1.7319368716033354 +3607,2,-1.8848448254775405 +3608,2,-1.8582285672592485 +3609,2,-1.2972692699533492 +3610,2,-1.9295397460569763 +3611,2,-1.9855443847909275 +3612,2,-1.9291759759757054 +3613,2,-2.094544201581167 +3614,2,-2.066649951002566 +3615,2,-2.0219632089158464 +3616,2,-2.183434975282826 +3617,2,-1.7049911481598985 +3618,2,-1.6275922834943217 +3619,2,-1.6529194931888684 +3620,2,-1.9387147122707034 +3621,2,-2.1634239159533997 +3622,2,-1.8716998636784454 +3623,2,-1.7779067023216188 +3624,2,-1.7166957176350401 +3625,2,-2.410849173685201 +3626,2,-1.9074031491452943 +3627,2,-1.8945648589097874 +3628,2,-1.868236281279552 +3629,2,-1.9419614440203599 +3630,2,-1.6057384061907702 +3631,2,-1.772732844133857 +3632,2,-1.5305468575696366 +3633,2,-1.493571373730526 +3634,2,-1.5295426070117393 +3635,2,-1.492327324245742 +3636,2,-1.5087805237040022 +3637,2,-1.5159728753621393 +3638,2,-1.5767720649672827 +3639,2,-1.5740375359980727 +3640,2,-1.5248604922002398 +3641,2,-1.502869303989514 +3642,2,-1.4822778499708584 +3643,2,-1.528379234587006 +3644,2,-1.4653287708070273 +3645,2,-1.456669150474491 +3646,2,-1.5174164017061524 +3647,2,-1.513472872821819 +3648,2,-1.5492646583995566 +3649,2,-1.4653004060376325 +3650,2,-1.5480710417747117 +3651,2,-1.5311322719715528 +3652,2,-1.5034390823274448 +3653,2,-1.4714206102524463 +3654,2,-1.4751717878750483 +3655,2,-1.5061998498551246 +3656,2,-1.548429685170633 +3657,2,-1.5639764598093653 +3658,2,-1.5268705615892637 +3659,2,-1.560377502260066 +3660,2,-1.5374718609002453 +3661,2,-1.5405852230143844 +3662,2,-1.453349269421317 +3663,2,-1.4181779443184162 +3664,2,-1.4459998975005248 +3665,2,-1.3368072892495517 +3666,2,-1.476232650287419 +3667,2,-1.9059591255419521 +3668,2,-2.0412040045240984 +3669,2,-1.3001388721555953 +3670,2,-1.2305476121664367 +3671,2,-1.3326039493959452 +3672,2,-1.366101130595723 +3673,2,-1.5085254096459146 +3674,2,-1.2899885199450731 +3675,2,-1.513217672421756 +3676,2,-1.8533621684944896 +3677,2,-1.418616020678343 +3678,2,-1.5116995541692524 +3679,2,-1.7541362631173176 +3680,2,-1.924530818251651 +3681,2,-1.6979011992314035 +3682,2,-1.628179231796517 +3683,2,-1.5573622080776364 +3684,2,-1.572949830518568 +3685,2,-1.703906774942834 +3686,2,-2.1343105488489806 +3687,2,-2.18147024484791 +3688,2,-2.145899134514388 +3689,2,-1.519472896240767 +3690,2,-1.6753727355038508 +3691,2,-1.538487961513942 +3692,2,-1.7669024348202877 +3693,2,-1.780894242032057 +3694,2,-2.3263891853324443 +3695,2,-2.016783918775748 +3696,2,-1.7907038336163417 +3697,2,-1.8523273196289782 +3698,2,-1.711812928980629 +3699,2,-1.5285949533964467 +3700,2,-2.166767425953038 +3701,2,-1.6671769596389623 +3702,2,-1.5895445785293043 +3703,2,-1.4246811874679395 +3704,2,-1.4804200343186098 +3705,2,-2.072910833413858 +3706,2,-1.9596619311929249 +3707,2,-1.237704275442378 +3708,2,-1.2219970755010412 +3709,2,-1.258891750822284 +3710,2,-1.2984133435152265 +3711,2,-1.356995589081286 +3712,2,-1.47939848667245 +3713,2,-1.3152362806103115 +3714,2,-1.562110906007698 +3715,2,-1.7294011341094377 +3716,2,-1.6101442888403044 +3717,2,-2.093124660587757 +3718,2,-2.0194444532176563 +3719,2,-1.6893148540314853 +3720,2,-1.6293723730928746 +3721,2,-1.821918886053155 +3722,2,-1.7954110544363353 +3723,2,-1.1836319785143712 +3724,2,-1.588583363740037 +3725,2,-1.6265654945511492 +3726,2,-1.5829344039890612 +3727,2,-1.5244011127255155 +3728,2,-1.358389935920542 +3729,2,-1.5727066573517303 +3730,2,-1.8048342752481674 +3731,2,-1.9336837271852516 +3732,2,-2.024795111146275 +3733,2,-1.6952570760133643 +3734,2,-2.1459326026293493 +3735,2,-2.070438185399374 +3736,2,-1.4784230912139629 +3737,2,-1.4836351893932522 +3738,2,-1.3886977062045571 +3739,2,-2.1906532072921823 +3740,2,-1.507040941582763 +3741,2,-1.5309796346409432 +3742,2,-1.4818905143070764 +3743,2,-1.523414052020783 +3744,2,-1.4932916481828495 +3745,2,-1.495937625510034 +3746,2,-1.499544919538826 +3747,2,-1.53479756924035 +3748,2,-1.5163666241555311 +3749,2,-1.5444261903781518 +3750,2,-1.5421796320398593 +3751,2,-1.5428776456894149 +3752,2,-1.498723256703875 +3753,2,-1.447403501094887 +3754,2,-1.5003492268089975 +3755,2,-1.4497503918069614 +3756,2,-1.464894047405966 +3757,2,-1.4639345412824054 +3758,2,-1.4845935847368046 +3759,2,-1.5301476264209843 +3760,2,-1.4777390613310515 +3761,2,-1.5470671605325212 +3762,2,-1.5289953992966918 +3763,2,-1.5292510530092986 +3764,2,-1.5271632860830804 +3765,2,-1.533424174583713 +3766,2,-1.5688402287128431 +3767,2,-1.8855028804500187 +3768,2,-1.5579387960299294 +3769,2,-1.544339546325596 +3770,2,-1.605774341746164 +3771,2,-1.6027377278265682 +3772,2,-1.6124376197893415 +3773,2,-1.9624262817758698 +3774,2,-1.9591608096820414 +3775,2,-2.242304184684698 +3776,2,-2.211770002411598 +3777,2,-2.258619702170995 +3778,2,-2.226678234586248 +3779,2,-1.6867834448092616 +3780,2,-1.6380823939697047 +3781,2,-1.832519655759577 +3782,2,-1.7577607695112996 +3783,2,-1.942173255313906 +3784,2,-1.5232565889454064 +3785,2,-1.5244476667937348 +3786,2,-1.7507139724705711 +3787,2,-1.623582766719148 +3788,2,-1.9526575961583699 +3789,2,-1.5807773776990695 +3790,2,-1.4613206632502465 +3791,2,-2.241645531631499 +3792,2,-2.1561218131863646 +3793,2,-1.567738337335757 +3794,2,-1.557077723467551 +3795,2,-1.6262562138565477 +3796,2,-1.5708610646546137 +3797,2,-1.8124822837949233 +3798,2,-1.5468205459869708 +3799,2,-1.6313882143206886 +3800,2,-2.0239992791343875 +3801,2,-2.391289757990697 +3802,2,-2.024228963624065 +3803,2,-1.9718527227338358 +3804,2,-2.003207693669043 +3805,2,-1.2983765172642123 +3806,2,-1.1954258796345771 +3807,2,-1.3904085173939575 +3808,2,-2.0030601278192064 +3809,2,-1.7356492321759018 +3810,2,-1.8502596071068318 +3811,2,-1.8001362330790194 +3812,2,-1.695146448902685 +3813,2,-1.5771922821548114 +3814,2,-1.4255504627042783 +3815,2,-1.6096376843707232 +3816,2,-1.6073546899936 +3817,2,-1.5455308106293633 +3818,2,-1.5848040069660405 +3819,2,-2.3112632842032084 +3820,2,-2.1095615077477317 +3821,2,-2.1897412172592956 +3822,2,-1.6974439773908285 +3823,2,-1.8531238135109545 +3824,2,-1.6425152193413237 +3825,2,-2.0381588056010016 +3826,2,-1.9384698311613868 +3827,2,-2.1122090302796472 +3828,2,-2.252181861684407 +3829,2,-2.078623194530721 +3830,2,-2.2888512385691246 +3831,2,-2.0926467067712937 +3832,2,-2.0715936113111417 +3833,2,-1.3678785466236574 +3834,2,-1.4849853434415314 +3835,2,-1.475093761586309 +3836,2,-1.4872158291614221 +3837,2,-1.5268017052253904 +3838,2,-1.537767231644853 +3839,2,-1.5260368153231332 +3840,2,-1.4381949238117926 +3841,2,-1.5172951871554932 +3842,2,-1.5594734249353692 +3843,2,-1.7716046296897268 +3844,2,-1.5191915643932445 +3845,2,-1.4550054256523561 +3846,2,-1.4910852003972195 +3847,2,-1.4699104957347524 +3848,2,-1.464305357304864 +3849,2,-1.4469819315898826 +3850,2,-1.4629662217545056 +3851,2,-1.5027187548726686 +3852,2,-1.4455883064122337 +3853,2,-1.5086767048667362 +3854,2,-1.5400883580755658 +3855,2,-1.4167766003638507 +3856,2,-1.5977492950149401 +3857,2,-1.6237965299007582 +3858,2,-1.6176691540837218 +3859,2,-1.7249273506226426 +3860,2,-1.5185364080033361 +3861,2,-1.9220766904409559 +3862,2,-2.2843573813595506 +3863,2,-1.6559386943493815 +3864,2,-1.7921821716775275 +3865,2,-1.5262860794821576 +3866,2,-1.6843465740958579 +3867,2,-2.075794190730651 +3868,2,-1.6686663320809545 +3869,2,-1.6497334627888474 +3870,2,-1.6611330324766238 +3871,2,-1.9875805999577882 +3872,2,-1.8865749822772657 +3873,2,-2.136329303308569 +3874,2,-2.138333380318816 +3875,2,-2.2594727544000794 +3876,2,-1.9174082812064948 +3877,2,-1.8543478104533948 +3878,2,-2.2952256246255236 +3879,2,-2.1460340840514105 +3880,2,-2.346833031217398 +3881,2,-1.630645984308803 +3882,2,-1.3276850115017338 +3883,2,-1.2798978367004272 +3884,2,-2.451767157598856 +3885,2,-2.5196431058682305 +3886,2,-1.59117306699974 +3887,2,-1.991301851394151 +3888,2,-1.7172433965542675 +3889,2,-1.2173194138935648 +3890,2,-2.0402456022871513 +3891,2,-1.364270117859505 +3892,2,-1.4509182635321691 +3893,2,-2.1961376541776603 +3894,2,-1.967076677202224 +3895,2,-1.507970283238552 +3896,2,-1.6188637254564084 +3897,2,-1.7112725960971364 +3898,2,-1.6370176434471981 +3899,2,-1.9316972811955517 +3900,2,-1.6642885160044196 +3901,2,-1.5060358215847716 +3902,2,-2.219926189392333 +3903,2,-1.903301241849583 +3904,2,-1.7511397074053183 +3905,2,-1.4053069725960607 +3906,2,-1.6000601660891673 +3907,2,-1.593195140095649 +3908,2,-1.393798324765621 +3909,2,-1.4138811946991725 +3910,2,-1.495713268310636 +3911,2,-1.499924781562875 +3912,2,-1.367933353908182 +3913,2,-1.7166146402515465 +3914,2,-2.231844161491704 +3915,2,-1.5927758961861576 +3916,2,-1.7475496165652433 +3917,2,-2.145254123326549 +3918,2,-1.8219829945205006 +3919,2,-1.4145787663520974 +3920,2,-1.807730823553902 +3921,2,-1.9148082293929278 +3922,2,-1.6169490643388233 +3923,2,-1.570665792613499 +3924,2,-1.7980718975186059 +3925,2,-1.4947044087551684 +3926,2,-1.7727280436254007 +3927,2,-1.9305567469372746 +3928,2,-1.7226317140708534 +3929,2,-1.8436588043782287 +3930,2,-1.9452002882888213 +3931,2,-1.9158928071680323 +3932,2,-1.299369114741636 +3933,2,-1.7699005786204167 +3934,2,-1.7859776571076602 @@ -13164,8 +13164,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.20.25209 (Git) -** written on --> Fri Jul 9 13:15:23 2021 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:30:48 2023 ** file name --> constraint_transform_torque.FCStd ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fiveboxes.inp b/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fiveboxes.inp index c324cb241d..1af0d60156 100644 --- a/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fiveboxes.inp +++ b/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fiveboxes.inp @@ -27652,1525 +27652,1525 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: Box1:Face6 -17,3,-0.0000000000000E+00 -19,3,-0.0000000000000E+00 -22,3,-0.0000000000000E+00 -23,3,-0.0000000000000E+00 -406,3,-0.0000000000000E+00 -407,3,-0.0000000000000E+00 -408,3,-0.0000000000000E+00 -409,3,-0.0000000000000E+00 -410,3,-5.5694444444484E+00 -411,3,-4.4481737404064E+00 -412,3,-6.6928097972000E+00 -413,3,-4.2684508864278E+00 -414,3,-5.5694444444550E+00 -461,3,-0.0000000000000E+00 -462,3,-0.0000000000000E+00 -463,3,-0.0000000000000E+00 -464,3,-0.0000000000000E+00 -465,3,-0.0000000000000E+00 -466,3,-0.0000000000000E+00 -467,3,-0.0000000000000E+00 -468,3,-0.0000000000000E+00 -469,3,-0.0000000000000E+00 -470,3,-5.5694444444484E+00 -471,3,-5.4693443073667E+00 -472,3,-5.4693443073667E+00 -473,3,-4.9778997496400E+00 -474,3,-5.7281884739033E+00 -475,3,-3.6278547238067E+00 -476,3,-5.0541117655700E+00 -477,3,-5.0541117655700E+00 -478,3,-4.1628353611933E+00 -479,3,-5.2691521179633E+00 -480,3,-0.0000000000000E+00 -481,3,-0.0000000000000E+00 -482,3,-0.0000000000000E+00 -483,3,-0.0000000000000E+00 -484,3,-0.0000000000000E+00 -485,3,-0.0000000000000E+00 -486,3,-0.0000000000000E+00 -487,3,-0.0000000000000E+00 -488,3,-0.0000000000000E+00 -489,3,-5.5694444444667E+00 -490,3,-5.4910828228529E+00 -491,3,-5.4910828228529E+00 -492,3,-5.9722764585851E+00 -493,3,-5.6192555992140E+00 -494,3,-3.6221834996000E+00 -495,3,-5.0541117654718E+00 -496,3,-5.0541117655833E+00 -497,3,-4.1628353612000E+00 -498,3,-5.2691521179368E+00 -499,3,-0.0000000000000E+00 -500,3,-0.0000000000000E+00 -501,3,-0.0000000000000E+00 -502,3,-0.0000000000000E+00 -503,3,-5.2691521179895E+00 -504,3,-4.1206990067671E+00 -505,3,-5.0147700393333E+00 -506,3,-4.1206990068333E+00 -507,3,-5.2691521179868E+00 -4409,3,-0.0000000000000E+00 -4410,3,-0.0000000000000E+00 -4411,3,-0.0000000000000E+00 -4412,3,-0.0000000000000E+00 -4413,3,-0.0000000000000E+00 -4414,3,-0.0000000000000E+00 -4415,3,-0.0000000000000E+00 -4416,3,-0.0000000000000E+00 -4417,3,-0.0000000000000E+00 -4418,3,-0.0000000000000E+00 -4419,3,-0.0000000000000E+00 -4420,3,-0.0000000000000E+00 -4421,3,-0.0000000000000E+00 -4422,3,-0.0000000000000E+00 -4423,3,-0.0000000000000E+00 -4424,3,-0.0000000000000E+00 -4425,3,-0.0000000000000E+00 -4426,3,-0.0000000000000E+00 -4427,3,-0.0000000000000E+00 -4428,3,-0.0000000000000E+00 -4429,3,-0.0000000000000E+00 -4430,3,-0.0000000000000E+00 -4431,3,-0.0000000000000E+00 -4432,3,-0.0000000000000E+00 -4433,3,-0.0000000000000E+00 -4434,3,-0.0000000000000E+00 -4435,3,-0.0000000000000E+00 -4436,3,-0.0000000000000E+00 -4437,3,-0.0000000000000E+00 -4438,3,-0.0000000000000E+00 -4439,3,-0.0000000000000E+00 -4440,3,-0.0000000000000E+00 -4441,3,-0.0000000000000E+00 -4442,3,-0.0000000000000E+00 -4443,3,-0.0000000000000E+00 -4444,3,-0.0000000000000E+00 -4445,3,-0.0000000000000E+00 -4446,3,-0.0000000000000E+00 -4447,3,-0.0000000000000E+00 -4448,3,-0.0000000000000E+00 -4449,3,-0.0000000000000E+00 -4450,3,-0.0000000000000E+00 -4451,3,-0.0000000000000E+00 -4452,3,-0.0000000000000E+00 -4453,3,-0.0000000000000E+00 -4454,3,-0.0000000000000E+00 -4455,3,-0.0000000000000E+00 -4456,3,-0.0000000000000E+00 -4457,3,-0.0000000000000E+00 -4458,3,-0.0000000000000E+00 -4459,3,-0.0000000000000E+00 -4460,3,-0.0000000000000E+00 -4461,3,-0.0000000000000E+00 -4462,3,-0.0000000000000E+00 -4463,3,-0.0000000000000E+00 -4464,3,-0.0000000000000E+00 -4465,3,-0.0000000000000E+00 -4466,3,-9.6260541912980E+00 -4467,3,-1.1138888888897E+01 -4468,3,-1.2115785600128E+01 -4469,3,-9.3593386996435E+00 -4470,3,-1.1138888888922E+01 -4471,3,-1.1969444466633E+01 -4472,3,-8.8945909612072E+00 -4473,3,-1.0538304235953E+01 -4474,3,-8.9827401680437E+00 -4475,3,-8.8945909611671E+00 -4476,3,-1.0538304235924E+01 -4477,3,-8.9827401680543E+00 -4478,3,-9.6103032562982E+00 -4479,3,-8.5047834872561E+00 -4480,3,-7.8321754422862E+00 -4481,3,-1.1579140150839E+01 -4482,3,-1.1854939313092E+01 -4483,3,-1.0097455552709E+01 -4484,3,-8.0583451416163E+00 -4485,3,-9.1547812400669E+00 -4486,3,-9.3316883830757E+00 -4487,3,-7.1657454406036E+00 -4488,3,-1.0938688614733E+01 -4489,3,-1.2015685463046E+01 -4490,3,-1.2178850779451E+01 -4491,3,-1.2627684295291E+01 -4492,3,-9.8669867650596E+00 -4493,3,-1.0840708960441E+01 -4494,3,-1.1171151173962E+01 -4495,3,-1.3021149198725E+01 -4496,3,-1.1434035767592E+01 -4497,3,-9.8927912892219E+00 -4498,3,-1.0617275489323E+01 -4499,3,-1.0521158141898E+01 -4500,3,-7.2917612956142E+00 -4501,3,-7.7924575391253E+00 -4502,3,-7.9932571279274E+00 -4503,3,-1.0108223531140E+01 -4504,3,-1.0517624963771E+01 -4505,3,-9.1600324170114E+00 -4506,3,-9.1274197700085E+00 -4507,3,-6.5538642791313E+00 -4508,3,-1.1828844546082E+01 -4509,3,-7.7882742044372E+00 -4510,3,-8.8367605879626E+00 -4511,3,-8.4470702608656E+00 -4512,3,-1.1448658007281E+01 -4513,3,-1.1377212135814E+01 -4514,3,-6.6879624452243E+00 -4515,3,-1.0982165645706E+01 -4516,3,-1.1891082845019E+01 -4517,3,-1.1468476200690E+01 -4518,3,-1.1277962406720E+01 -4519,3,-1.1784689080310E+01 -4520,3,-1.1450222555082E+01 -4521,3,-1.0886160071136E+01 -4522,3,-1.1264825680364E+01 -4523,3,-9.8078961967052E+00 -4524,3,-9.7158175809917E+00 -4525,3,-1.1431668220939E+01 -4526,3,-1.1167584545444E+01 -4527,3,-7.2842394931901E+00 -4528,3,-7.7187454813777E+00 -4529,3,-7.9176838267771E+00 -4530,3,-1.0108223531055E+01 -4531,3,-1.0517624963660E+01 -4532,3,-9.1600324169989E+00 -4533,3,-9.1255691917786E+00 -4534,3,-6.5553849483866E+00 -4535,3,-1.1828844546066E+01 -4536,3,-7.7882742044303E+00 -4537,3,-8.8367605879661E+00 -4538,3,-8.4470702608624E+00 -4539,3,-1.1448658007248E+01 -4540,3,-1.1377212135785E+01 -4541,3,-6.6879624452108E+00 -4542,3,-8.4836214736471E+00 -4543,3,-7.8342870568214E+00 -4544,3,-7.2413093417781E+00 -4545,3,-9.3776925062133E+00 -4546,3,-9.3776925062133E+00 -4547,3,-1.0501714633289E+01 -4548,3,-7.8342870569008E+00 -4549,3,-8.4836214737133E+00 -4550,3,-1.0502726535739E+01 -4551,3,-7.2413093417913E+00 -4552,3,-1.0940413089640E+01 -4553,3,-9.5989719392071E+00 -4554,3,-1.1827052164926E+01 -4555,3,-7.7534360681685E+00 -4556,3,-8.2433450021645E+00 -4557,3,-1.0570695717803E+01 -4558,3,-1.1601400018399E+01 -4559,3,-9.8274275731251E+00 -4560,3,-8.9539304481464E+00 -4561,3,-1.0407634401979E+01 -4562,3,-7.5371606133377E+00 -4563,3,-1.0495107986643E+01 -4564,3,-9.4593941545493E+00 -4565,3,-9.5321202693826E+00 -4566,3,-8.9692974016859E+00 -4567,3,-8.2989985741129E+00 -4568,3,-9.8591377735546E+00 -4569,3,-8.5397066994851E+00 -4570,3,-9.0094663980701E+00 -4571,3,-6.8356686360768E+00 -4572,3,-9.1414624245523E+00 -4573,3,-6.7581508709385E+00 -4574,3,-9.1993393945222E+00 -4575,3,-7.4525975309401E+00 -4576,3,-8.2989985741129E+00 -4577,3,-9.5969436494007E+00 -4578,3,-9.4924783125130E+00 -4579,3,-1.0571685684995E+01 -4580,3,-1.1520074602221E+01 -4581,3,-9.4556532093076E+00 -4582,3,-8.9665330652135E+00 -4583,3,-9.6418850014854E+00 -4584,3,-1.0028483716654E+01 -4585,3,-7.3587797557946E+00 -4586,3,-7.5008965844217E+00 -4587,3,-8.6675588592665E+00 -4588,3,-1.0524867292935E+01 -4589,3,-8.2043689919647E+00 -4590,3,-8.5675897757440E+00 -4591,3,-6.7186120199325E+00 -4592,3,-7.7462774865714E+00 -4593,3,-6.4443600975070E+00 -4594,3,-9.4167000336616E+00 -4595,3,-1.0075818015207E+01 -4596,3,-1.0546544679231E+01 -4597,3,-9.1793944107629E+00 -4598,3,-9.8102295261871E+00 -4599,3,-9.4450689217723E+00 -4600,3,-9.1822988088584E+00 -4601,3,-9.0205457560124E+00 -4602,3,-9.0767327492490E+00 -4603,3,-9.7567833679708E+00 -4604,3,-9.0505961916967E+00 -4605,3,-1.0381696899091E+01 -4606,3,-7.7706260244052E+00 -4607,3,-6.5902448937043E+00 -4608,3,-6.5902448937043E+00 -4609,3,-7.7757499084723E+00 -4610,3,-6.8356686360768E+00 -4611,3,-8.5454899168359E+00 -4612,3,-9.8639443821361E+00 -4613,3,-9.0203734994881E+00 -4614,3,-1.0387832685608E+01 -4615,3,-7.1944447185522E+00 -4616,3,-7.8091435002497E+00 -4617,3,-6.7144507997959E+00 -4618,3,-5.8954015136054E+00 -4619,3,-6.2084956221106E+00 -4620,3,-7.9121943024806E+00 -4621,3,-8.7004534420295E+00 -4622,3,-7.7385018717906E+00 -4623,3,-7.0721782043827E+00 -4624,3,-8.7578537525286E+00 -4625,3,-8.5254690948727E+00 -4626,3,-8.9451018252850E+00 -4627,3,-1.0333262157478E+01 -4628,3,-8.7571712223939E+00 -4629,3,-8.5167228330504E+00 -4630,3,-9.1398032856483E+00 -4631,3,-1.1738499319108E+01 -4632,3,-1.0886510736553E+01 -4633,3,-1.0782584759008E+01 -4634,3,-1.0313513943965E+01 -4635,3,-1.0226615603988E+01 -4636,3,-9.8436978364750E+00 -4637,3,-1.0320609755753E+01 -4638,3,-9.7967642141542E+00 -4639,3,-8.4554670888444E+00 -4640,3,-8.7108917322542E+00 -4641,3,-1.0057267286134E+01 -4642,3,-9.4080753192089E+00 -4643,3,-8.0187865738697E+00 -4644,3,-6.8245193722409E+00 -4645,3,-1.1763086887745E+01 -4646,3,-1.1764098790195E+01 -4647,3,-1.0934792227570E+01 -4648,3,-1.0154933555332E+01 -4649,3,-9.9209786785898E+00 -4650,3,-7.8212092148518E+00 -4651,3,-8.9914544410512E+00 -4652,3,-8.4443273639393E+00 -4653,3,-9.7477890847027E+00 -4654,3,-9.7785933934476E+00 -4655,3,-1.0245947536144E+01 -4656,3,-9.4071492545462E+00 -4657,3,-8.2489046854705E+00 -4658,3,-7.1938176994786E+00 -4659,3,-6.7627733233678E+00 -4660,3,-8.2749730189292E+00 -4661,3,-6.8398625729929E+00 -4662,3,-9.8893572051697E+00 -4663,3,-9.4766171490837E+00 +17,3,-0.0 +19,3,-0.0 +22,3,-0.0 +23,3,-0.0 +406,3,-0.0 +407,3,-0.0 +408,3,-0.0 +409,3,-0.0 +410,3,-5.569444444448354 +411,3,-4.448173740406444 +412,3,-6.692809797200002 +413,3,-4.2684508864278445 +414,3,-5.56944444445502 +461,3,-0.0 +462,3,-0.0 +463,3,-0.0 +464,3,-0.0 +465,3,-0.0 +466,3,-0.0 +467,3,-0.0 +468,3,-0.0 +469,3,-0.0 +470,3,-5.569444444448354 +471,3,-5.469344307366667 +472,3,-5.469344307366668 +473,3,-4.977899749640001 +474,3,-5.728188473903334 +475,3,-3.6278547238066676 +476,3,-5.054111765570002 +477,3,-5.054111765570002 +478,3,-4.162835361193334 +479,3,-5.269152117963333 +480,3,-0.0 +481,3,-0.0 +482,3,-0.0 +483,3,-0.0 +484,3,-0.0 +485,3,-0.0 +486,3,-0.0 +487,3,-0.0 +488,3,-0.0 +489,3,-5.569444444466707 +490,3,-5.491082822852937 +491,3,-5.491082822852935 +492,3,-5.972276458585068 +493,3,-5.619255599214048 +494,3,-3.6221834996000037 +495,3,-5.05411176547177 +496,3,-5.054111765583335 +497,3,-4.162835361200004 +498,3,-5.269152117936833 +499,3,-0.0 +500,3,-0.0 +501,3,-0.0 +502,3,-0.0 +503,3,-5.269152117989462 +504,3,-4.1206990067671 +505,3,-5.014770039333338 +506,3,-4.120699006833325 +507,3,-5.269152117986828 +4409,3,-0.0 +4410,3,-0.0 +4411,3,-0.0 +4412,3,-0.0 +4413,3,-0.0 +4414,3,-0.0 +4415,3,-0.0 +4416,3,-0.0 +4417,3,-0.0 +4418,3,-0.0 +4419,3,-0.0 +4420,3,-0.0 +4421,3,-0.0 +4422,3,-0.0 +4423,3,-0.0 +4424,3,-0.0 +4425,3,-0.0 +4426,3,-0.0 +4427,3,-0.0 +4428,3,-0.0 +4429,3,-0.0 +4430,3,-0.0 +4431,3,-0.0 +4432,3,-0.0 +4433,3,-0.0 +4434,3,-0.0 +4435,3,-0.0 +4436,3,-0.0 +4437,3,-0.0 +4438,3,-0.0 +4439,3,-0.0 +4440,3,-0.0 +4441,3,-0.0 +4442,3,-0.0 +4443,3,-0.0 +4444,3,-0.0 +4445,3,-0.0 +4446,3,-0.0 +4447,3,-0.0 +4448,3,-0.0 +4449,3,-0.0 +4450,3,-0.0 +4451,3,-0.0 +4452,3,-0.0 +4453,3,-0.0 +4454,3,-0.0 +4455,3,-0.0 +4456,3,-0.0 +4457,3,-0.0 +4458,3,-0.0 +4459,3,-0.0 +4460,3,-0.0 +4461,3,-0.0 +4462,3,-0.0 +4463,3,-0.0 +4464,3,-0.0 +4465,3,-0.0 +4466,3,-9.626054191298042 +4467,3,-11.138888888896709 +4468,3,-12.115785600127513 +4469,3,-9.35933869964351 +4470,3,-11.138888888921727 +4471,3,-11.969444466632819 +4472,3,-8.894590961207191 +4473,3,-10.538304235952795 +4474,3,-8.98274016804374 +4475,3,-8.894590961167097 +4476,3,-10.538304235923661 +4477,3,-8.982740168054276 +4478,3,-9.610303256298177 +4479,3,-8.504783487256132 +4480,3,-7.832175442286246 +4481,3,-11.57914015083904 +4482,3,-11.854939313091734 +4483,3,-10.097455552709393 +4484,3,-8.058345141616334 +4485,3,-9.154781240066884 +4486,3,-9.331688383075718 +4487,3,-7.165745440603582 +4488,3,-10.938688614733334 +4489,3,-12.015685463045827 +4490,3,-12.1788507794515 +4491,3,-12.627684295291067 +4492,3,-9.866986765059638 +4493,3,-10.840708960440647 +4494,3,-11.171151173962157 +4495,3,-13.021149198725047 +4496,3,-11.434035767592079 +4497,3,-9.892791289221936 +4498,3,-10.61727548932297 +4499,3,-10.521158141897933 +4500,3,-7.2917612956142195 +4501,3,-7.7924575391252695 +4502,3,-7.993257127927368 +4503,3,-10.108223531140004 +4504,3,-10.517624963770977 +4505,3,-9.160032417011402 +4506,3,-9.127419770008528 +4507,3,-6.553864279131277 +4508,3,-11.828844546081916 +4509,3,-7.78827420443719 +4510,3,-8.836760587962642 +4511,3,-8.447070260865612 +4512,3,-11.448658007281221 +4513,3,-11.37721213581439 +4514,3,-6.687962445224343 +4515,3,-10.982165645705873 +4516,3,-11.89108284501905 +4517,3,-11.468476200690343 +4518,3,-11.277962406719782 +4519,3,-11.784689080309779 +4520,3,-11.450222555081863 +4521,3,-10.886160071135961 +4522,3,-11.264825680363646 +4523,3,-9.807896196705183 +4524,3,-9.715817580991747 +4525,3,-11.431668220938757 +4526,3,-11.167584545443694 +4527,3,-7.284239493190094 +4528,3,-7.718745481377704 +4529,3,-7.9176838267770595 +4530,3,-10.108223531055105 +4531,3,-10.517624963660241 +4532,3,-9.160032416998897 +4533,3,-9.125569191778563 +4534,3,-6.555384948386638 +4535,3,-11.828844546065566 +4536,3,-7.7882742044302695 +4537,3,-8.836760587966126 +4538,3,-8.447070260862425 +4539,3,-11.448658007248351 +4540,3,-11.377212135784706 +4541,3,-6.6879624452107524 +4542,3,-8.483621473647075 +4543,3,-7.83428705682138 +4544,3,-7.241309341778089 +4545,3,-9.377692506213315 +4546,3,-9.377692506213315 +4547,3,-10.501714633289236 +4548,3,-7.834287056900772 +4549,3,-8.483621473713303 +4550,3,-10.502726535739368 +4551,3,-7.241309341791254 +4552,3,-10.940413089639806 +4553,3,-9.598971939207113 +4554,3,-11.827052164925506 +4555,3,-7.753436068168512 +4556,3,-8.243345002164547 +4557,3,-10.570695717803133 +4558,3,-11.601400018398722 +4559,3,-9.82742757312514 +4560,3,-8.95393044814638 +4561,3,-10.40763440197895 +4562,3,-7.537160613337728 +4563,3,-10.495107986642989 +4564,3,-9.459394154549331 +4565,3,-9.532120269382553 +4566,3,-8.969297401685933 +4567,3,-8.298998574112902 +4568,3,-9.859137773554629 +4569,3,-8.539706699485059 +4570,3,-9.00946639807014 +4571,3,-6.835668636076791 +4572,3,-9.141462424552275 +4573,3,-6.758150870938513 +4574,3,-9.199339394522214 +4575,3,-7.452597530940128 +4576,3,-8.2989985741129 +4577,3,-9.596943649400707 +4578,3,-9.492478312513033 +4579,3,-10.57168568499452 +4580,3,-11.520074602221325 +4581,3,-9.455653209307583 +4582,3,-8.966533065213497 +4583,3,-9.641885001485416 +4584,3,-10.02848371665434 +4585,3,-7.358779755794567 +4586,3,-7.500896584421706 +4587,3,-8.667558859266524 +4588,3,-10.524867292934646 +4589,3,-8.204368991964689 +4590,3,-8.567589775744029 +4591,3,-6.7186120199324915 +4592,3,-7.746277486571393 +4593,3,-6.444360097507013 +4594,3,-9.416700033661614 +4595,3,-10.075818015207345 +4596,3,-10.546544679231468 +4597,3,-9.179394410762866 +4598,3,-9.810229526187113 +4599,3,-9.44506892177233 +4600,3,-9.18229880885837 +4601,3,-9.020545756012414 +4602,3,-9.076732749249029 +4603,3,-9.756783367970842 +4604,3,-9.050596191696748 +4605,3,-10.381696899090647 +4606,3,-7.770626024405195 +4607,3,-6.590244893704297 +4608,3,-6.590244893704295 +4609,3,-7.775749908472318 +4610,3,-6.835668636076791 +4611,3,-8.545489916835855 +4612,3,-9.863944382136111 +4613,3,-9.02037349948806 +4614,3,-10.387832685607902 +4615,3,-7.194444718552161 +4616,3,-7.809143500249738 +4617,3,-6.714450799795907 +4618,3,-5.895401513605357 +4619,3,-6.2084956221105925 +4620,3,-7.912194302480592 +4621,3,-8.700453442029492 +4622,3,-7.738501871790588 +4623,3,-7.0721782043827375 +4624,3,-8.757853752528627 +4625,3,-8.52546909487272 +4626,3,-8.945101825285017 +4627,3,-10.333262157478126 +4628,3,-8.757171222393927 +4629,3,-8.516722833050398 +4630,3,-9.139803285648261 +4631,3,-11.738499319108213 +4632,3,-10.886510736552912 +4633,3,-10.782584759007623 +4634,3,-10.313513943964988 +4635,3,-10.226615603987693 +4636,3,-9.843697836475025 +4637,3,-10.32060975575299 +4638,3,-9.796764214154187 +4639,3,-8.455467088844388 +4640,3,-8.710891732254217 +4641,3,-10.057267286134152 +4642,3,-9.4080753192089 +4643,3,-8.01878657386967 +4644,3,-6.824519372240888 +4645,3,-11.763086887745162 +4646,3,-11.764098790195291 +4647,3,-10.934792227569616 +4648,3,-10.154933555331652 +4649,3,-9.920978678589835 +4650,3,-7.8212092148517725 +4651,3,-8.991454441051218 +4652,3,-8.444327363939323 +4653,3,-9.747789084702726 +4654,3,-9.77859339344761 +4655,3,-10.24594753614439 +4656,3,-9.407149254546212 +4657,3,-8.24890468547053 +4658,3,-7.193817699478614 +4659,3,-6.762773323367787 +4660,3,-8.274973018929224 +4661,3,-6.839862572992859 +4662,3,-9.889357205169741 +4663,3,-9.476617149083664 ** node loads on shape: Box2:Face6 -2,3,-0.0000000000000E+00 -4,3,-0.0000000000000E+00 -22,3,-0.0000000000000E+00 -23,3,-0.0000000000000E+00 -43,3,-0.0000000000000E+00 -44,3,-0.0000000000000E+00 -45,3,-0.0000000000000E+00 -46,3,-0.0000000000000E+00 -47,3,-5.5694444446420E+00 -48,3,-4.3711646419272E+00 -49,3,-6.7030454307403E+00 -50,3,-4.2553708020635E+00 -51,3,-5.5694444445000E+00 -499,3,-0.0000000000000E+00 -500,3,-0.0000000000000E+00 -501,3,-0.0000000000000E+00 -502,3,-0.0000000000000E+00 -503,3,-5.5694444445083E+00 -504,3,-4.3711646419062E+00 -505,3,-6.7030454307403E+00 -506,3,-4.2553708021667E+00 -507,3,-5.5694444445413E+00 -564,3,-0.0000000000000E+00 -565,3,-0.0000000000000E+00 -566,3,-0.0000000000000E+00 -567,3,-0.0000000000000E+00 -568,3,-0.0000000000000E+00 -569,3,-0.0000000000000E+00 -570,3,-0.0000000000000E+00 -571,3,-0.0000000000000E+00 -572,3,-0.0000000000000E+00 -573,3,-5.5694444444400E+00 -574,3,-5.2616191597367E+00 -575,3,-5.2616191597367E+00 -576,3,-5.3372125866633E+00 -577,3,-5.0212153508333E+00 -578,3,-5.5825279327267E+00 -579,3,-5.5466145080633E+00 -580,3,-5.2616191597367E+00 -581,3,-5.2616191597367E+00 -582,3,-5.5694444444400E+00 -602,3,-0.0000000000000E+00 -603,3,-0.0000000000000E+00 -604,3,-0.0000000000000E+00 -605,3,-0.0000000000000E+00 -606,3,-0.0000000000000E+00 -607,3,-0.0000000000000E+00 -608,3,-0.0000000000000E+00 -609,3,-0.0000000000000E+00 -610,3,-0.0000000000000E+00 -611,3,-5.5694444445920E+00 -612,3,-5.2616191597333E+00 -613,3,-5.2616191597333E+00 -614,3,-5.2761744168500E+00 -615,3,-5.0388841824667E+00 -616,3,-5.1653945976000E+00 -617,3,-5.5946998095333E+00 -618,3,-5.2616191597333E+00 -619,3,-5.2616191597333E+00 -620,3,-5.5694444444500E+00 -5745,3,-0.0000000000000E+00 -5746,3,-0.0000000000000E+00 -5747,3,-0.0000000000000E+00 -5748,3,-0.0000000000000E+00 -5749,3,-0.0000000000000E+00 -5750,3,-0.0000000000000E+00 -5751,3,-0.0000000000000E+00 -5752,3,-0.0000000000000E+00 -5753,3,-0.0000000000000E+00 -5754,3,-0.0000000000000E+00 -5755,3,-0.0000000000000E+00 -5756,3,-0.0000000000000E+00 -5757,3,-0.0000000000000E+00 -5758,3,-0.0000000000000E+00 -5759,3,-0.0000000000000E+00 -5760,3,-0.0000000000000E+00 -5761,3,-0.0000000000000E+00 -5762,3,-0.0000000000000E+00 -5763,3,-0.0000000000000E+00 -5764,3,-0.0000000000000E+00 -5765,3,-0.0000000000000E+00 -5766,3,-0.0000000000000E+00 -5767,3,-0.0000000000000E+00 -5768,3,-0.0000000000000E+00 -5769,3,-0.0000000000000E+00 -5770,3,-0.0000000000000E+00 -5771,3,-0.0000000000000E+00 -5772,3,-0.0000000000000E+00 -5773,3,-0.0000000000000E+00 -5774,3,-0.0000000000000E+00 -5775,3,-0.0000000000000E+00 -5776,3,-0.0000000000000E+00 -5777,3,-0.0000000000000E+00 -5778,3,-0.0000000000000E+00 -5779,3,-0.0000000000000E+00 -5780,3,-0.0000000000000E+00 -5781,3,-0.0000000000000E+00 -5782,3,-0.0000000000000E+00 -5783,3,-0.0000000000000E+00 -5784,3,-0.0000000000000E+00 -5785,3,-0.0000000000000E+00 -5786,3,-0.0000000000000E+00 -5787,3,-0.0000000000000E+00 -5788,3,-0.0000000000000E+00 -5789,3,-0.0000000000000E+00 -5790,3,-0.0000000000000E+00 -5791,3,-0.0000000000000E+00 -5792,3,-0.0000000000000E+00 -5793,3,-0.0000000000000E+00 -5794,3,-0.0000000000000E+00 -5795,3,-0.0000000000000E+00 -5796,3,-0.0000000000000E+00 -5797,3,-0.0000000000000E+00 -5798,3,-9.4248487613365E+00 -5799,3,-1.1138888889082E+01 -5800,3,-1.1441784274639E+01 -5801,3,-9.3632634256538E+00 -5802,3,-1.1138888888950E+01 -5803,3,-1.1441784274511E+01 -5804,3,-9.4248487612442E+00 -5805,3,-1.1138888888948E+01 -5806,3,-1.1441784274642E+01 -5807,3,-9.3632634256538E+00 -5808,3,-1.1138888889133E+01 -5809,3,-1.1441784274653E+01 -5810,3,-9.6709818574698E+00 -5811,3,-8.2265689586217E+00 -5812,3,-7.4975856400118E+00 -5813,3,-1.1630124697880E+01 -5814,3,-1.2002862646283E+01 -5815,3,-1.0697223349292E+01 -5816,3,-8.0491897832173E+00 -5817,3,-9.1824500692034E+00 -5818,3,-9.3857225883489E+00 -5819,3,-7.1195427173962E+00 -5820,3,-9.6709818574429E+00 -5821,3,-8.2265689586420E+00 -5822,3,-7.4975856400531E+00 -5823,3,-1.1630124697880E+01 -5824,3,-1.2002862646277E+01 -5825,3,-1.0697223349286E+01 -5826,3,-8.0491897832791E+00 -5827,3,-9.1824500693066E+00 -5828,3,-9.3857225883489E+00 -5829,3,-7.1195427173549E+00 -5830,3,-1.0523238319473E+01 -5831,3,-1.1133958989939E+01 -5832,3,-1.0326374040218E+01 -5833,3,-1.1617087069365E+01 -5834,3,-9.6724163758008E+00 -5835,3,-1.1019360932334E+01 -5836,3,-1.0656711799011E+01 -5837,3,-1.2037616255299E+01 -5838,3,-1.0525502347540E+01 -5839,3,-1.0101178326079E+01 -5840,3,-9.3564191399708E+00 -5841,3,-8.5997075975062E+00 -5842,3,-1.0278931948197E+01 -5843,3,-1.1127065671282E+01 -5844,3,-1.0303969903068E+01 -5845,3,-1.0624500713801E+01 -5846,3,-9.7448366373297E+00 -5847,3,-1.0902071075946E+01 -5848,3,-1.0243018523533E+01 -5849,3,-8.7736541829441E+00 -5850,3,-1.0523238319473E+01 -5851,3,-1.1617087069184E+01 -5852,3,-9.9956100940743E+00 -5853,3,-1.1710924477331E+01 -5854,3,-1.0525502347359E+01 -5855,3,-1.1133958989936E+01 -5856,3,-1.0326374040215E+01 -5857,3,-1.0523238319467E+01 -5858,3,-1.1133958989795E+01 -5859,3,-1.0630601948761E+01 -5860,3,-1.1287957834116E+01 -5861,3,-9.1996707070035E+00 -5862,3,-1.0114431455241E+01 -5863,3,-9.0018131367381E+00 -5864,3,-1.0864595712774E+01 -5865,3,-1.1019442668925E+01 -5866,3,-1.2283410316469E+01 -5867,3,-8.9623804726202E+00 -5868,3,-7.8663838831288E+00 -5869,3,-9.4288161763043E+00 -5870,3,-1.2432233235264E+01 -5871,3,-1.3331436662363E+01 -5872,3,-1.4511364771667E+01 -5873,3,-1.3520734669954E+01 -5874,3,-1.0338374751132E+01 -5875,3,-9.8581213882376E+00 -5876,3,-8.2165578553459E+00 -5877,3,-1.0523238319467E+01 -5878,3,-1.1254989799744E+01 -5879,3,-8.8466050496750E+00 -5880,3,-1.0737045581609E+01 -5881,3,-1.1256148265314E+01 -5882,3,-1.1133958989795E+01 -5883,3,-1.0630601948761E+01 -5884,3,-1.2250659961416E+01 -5885,3,-1.2331142920211E+01 -5886,3,-1.0709154834223E+01 -5887,3,-8.6240686479277E+00 -5888,3,-9.3371326051876E+00 -5889,3,-1.0686103018445E+01 -5890,3,-9.4699653275408E+00 -5891,3,-8.1193534859225E+00 -5892,3,-8.8867944130432E+00 -5893,3,-8.9912738453702E+00 -5894,3,-1.0046641930271E+01 -5895,3,-9.8665159147922E+00 -5896,3,-1.0451777427196E+01 -5897,3,-9.1084113799292E+00 -5898,3,-8.6095660031793E+00 -5899,3,-1.0421986079519E+01 -5900,3,-8.5087015408132E+00 -5901,3,-9.0799163079655E+00 -5902,3,-8.8645709933717E+00 -5903,3,-1.0033379154233E+01 -5904,3,-8.8147677441776E+00 -5905,3,-9.0670885934436E+00 -5906,3,-9.9697673785382E+00 -5907,3,-9.6745959879200E+00 -5908,3,-8.9594673397740E+00 -5909,3,-9.5143473752310E+00 -5910,3,-8.8321653781927E+00 -5911,3,-8.2225569490721E+00 -5912,3,-8.2679033227648E+00 -5913,3,-8.3053669276663E+00 -5914,3,-8.8682702863835E+00 -5915,3,-1.0219096128927E+01 -5916,3,-1.2169519532092E+01 -5917,3,-1.0454873779603E+01 -5918,3,-9.6486249194720E+00 -5919,3,-9.1283127696106E+00 -5920,3,-9.6296905275364E+00 -5921,3,-8.6152750204787E+00 -5922,3,-7.9914126273066E+00 -5923,3,-8.2120811326781E+00 -5924,3,-1.2105170388750E+01 -5925,3,-9.9023059448219E+00 -5926,3,-1.0047400913101E+01 -5927,3,-7.7843670574514E+00 -5928,3,-9.3620004081878E+00 -5929,3,-8.0839858549423E+00 -5930,3,-1.0462122045373E+01 -5931,3,-1.1936639155343E+01 -5932,3,-1.0017734301340E+01 -5933,3,-9.4222660308406E+00 -5934,3,-8.6237146315294E+00 -5935,3,-9.1973721684110E+00 -5936,3,-7.9695596544880E+00 -5937,3,-9.6401675160647E+00 -5938,3,-8.3727374973304E+00 -5939,3,-8.5487620134577E+00 -5940,3,-9.1332636917682E+00 -5941,3,-1.0034132966166E+01 -5942,3,-1.0049657473276E+01 -5943,3,-9.3670904514873E+00 -5944,3,-8.6270729602156E+00 -5945,3,-9.7674603052022E+00 -5946,3,-1.3001981513975E+01 -5947,3,-1.1189428657649E+01 -5948,3,-9.0395874570670E+00 -5949,3,-8.0962155333338E+00 -5950,3,-9.9580700320029E+00 -5951,3,-9.8635115295743E+00 -5952,3,-8.9977451636571E+00 -5953,3,-9.0223843175607E+00 -5954,3,-7.9641136719354E+00 -5955,3,-7.9411961489363E+00 -5956,3,-9.4699653275408E+00 -5957,3,-7.5151298939691E+00 -5958,3,-1.0418211896669E+01 -5959,3,-9.1902787859860E+00 -5960,3,-9.2494851771085E+00 -5961,3,-7.9449703981563E+00 -5962,3,-8.3565847164166E+00 -5963,3,-7.8777245137366E+00 -5964,3,-7.5088120315763E+00 -5965,3,-1.0960345259215E+01 -5966,3,-1.2250659961416E+01 -5967,3,-1.0709154834223E+01 -5968,3,-1.2331142920211E+01 -5969,3,-8.6240686479277E+00 -5970,3,-1.0351693091295E+01 -5971,3,-1.2453530289036E+01 -5972,3,-1.1189428657649E+01 -5973,3,-9.0395874570670E+00 -5974,3,-1.3088242720931E+01 -5975,3,-1.0688591852702E+01 -5976,3,-1.0336927052064E+01 -5977,3,-7.7843670574514E+00 -5978,3,-8.0839858549423E+00 -5979,3,-9.5685702405460E+00 -5980,3,-9.8034121163886E+00 -5981,3,-8.0962155333338E+00 -5982,3,-8.3928025701663E+00 -5983,3,-9.2223504663620E+00 +2,3,-0.0 +4,3,-0.0 +22,3,-0.0 +23,3,-0.0 +43,3,-0.0 +44,3,-0.0 +45,3,-0.0 +46,3,-0.0 +47,3,-5.5694444446420155 +48,3,-4.3711646419271615 +49,3,-6.703045430740325 +50,3,-4.255370802063468 +51,3,-5.569444444500001 +499,3,-0.0 +500,3,-0.0 +501,3,-0.0 +502,3,-0.0 +503,3,-5.56944444450835 +504,3,-4.371164641906154 +505,3,-6.703045430740309 +506,3,-4.255370802166663 +507,3,-5.569444444541347 +564,3,-0.0 +565,3,-0.0 +566,3,-0.0 +567,3,-0.0 +568,3,-0.0 +569,3,-0.0 +570,3,-0.0 +571,3,-0.0 +572,3,-0.0 +573,3,-5.569444444440001 +574,3,-5.261619159736668 +575,3,-5.261619159736668 +576,3,-5.337212586663333 +577,3,-5.021215350833335 +578,3,-5.582527932726667 +579,3,-5.5466145080633344 +580,3,-5.261619159736668 +581,3,-5.261619159736668 +582,3,-5.569444444440001 +602,3,-0.0 +603,3,-0.0 +604,3,-0.0 +605,3,-0.0 +606,3,-0.0 +607,3,-0.0 +608,3,-0.0 +609,3,-0.0 +610,3,-0.0 +611,3,-5.569444444591976 +612,3,-5.261619159733329 +613,3,-5.261619159733333 +614,3,-5.27617441685 +615,3,-5.038884182466666 +616,3,-5.165394597599998 +617,3,-5.594699809533334 +618,3,-5.261619159733333 +619,3,-5.261619159733333 +620,3,-5.56944444445 +5745,3,-0.0 +5746,3,-0.0 +5747,3,-0.0 +5748,3,-0.0 +5749,3,-0.0 +5750,3,-0.0 +5751,3,-0.0 +5752,3,-0.0 +5753,3,-0.0 +5754,3,-0.0 +5755,3,-0.0 +5756,3,-0.0 +5757,3,-0.0 +5758,3,-0.0 +5759,3,-0.0 +5760,3,-0.0 +5761,3,-0.0 +5762,3,-0.0 +5763,3,-0.0 +5764,3,-0.0 +5765,3,-0.0 +5766,3,-0.0 +5767,3,-0.0 +5768,3,-0.0 +5769,3,-0.0 +5770,3,-0.0 +5771,3,-0.0 +5772,3,-0.0 +5773,3,-0.0 +5774,3,-0.0 +5775,3,-0.0 +5776,3,-0.0 +5777,3,-0.0 +5778,3,-0.0 +5779,3,-0.0 +5780,3,-0.0 +5781,3,-0.0 +5782,3,-0.0 +5783,3,-0.0 +5784,3,-0.0 +5785,3,-0.0 +5786,3,-0.0 +5787,3,-0.0 +5788,3,-0.0 +5789,3,-0.0 +5790,3,-0.0 +5791,3,-0.0 +5792,3,-0.0 +5793,3,-0.0 +5794,3,-0.0 +5795,3,-0.0 +5796,3,-0.0 +5797,3,-0.0 +5798,3,-9.424848761336506 +5799,3,-11.138888889082017 +5800,3,-11.44178427463891 +5801,3,-9.363263425653836 +5802,3,-11.138888888950003 +5803,3,-11.441784274511289 +5804,3,-9.424848761244183 +5805,3,-11.138888888948351 +5806,3,-11.441784274641911 +5807,3,-9.363263425653832 +5808,3,-11.138888889133323 +5809,3,-11.441784274653264 +5810,3,-9.670981857469766 +5811,3,-8.226568958621652 +5812,3,-7.497585640011778 +5813,3,-11.630124697880209 +5814,3,-12.00286264628293 +5815,3,-10.6972233492923 +5816,3,-8.049189783217303 +5817,3,-9.182450069203353 +5818,3,-9.385722588348887 +5819,3,-7.119542717396222 +5820,3,-9.670981857442932 +5821,3,-8.226568958641987 +5822,3,-7.4975856400531224 +5823,3,-11.630124697880206 +5824,3,-12.002862646277086 +5825,3,-10.697223349286457 +5826,3,-8.049189783279148 +5827,3,-9.18245006930656 +5828,3,-9.385722588348887 +5829,3,-7.1195427173548795 +5830,3,-10.523238319473336 +5831,3,-11.133958989938575 +5832,3,-10.326374040218447 +5833,3,-11.61708706936507 +5834,3,-9.672416375800776 +5835,3,-11.019360932333692 +5836,3,-10.656711799011108 +5837,3,-12.037616255298762 +5838,3,-10.52550234753954 +5839,3,-10.101178326079301 +5840,3,-9.356419139970777 +5841,3,-8.599707597506212 +5842,3,-10.278931948196618 +5843,3,-11.127065671282146 +5844,3,-10.303969903067893 +5845,3,-10.624500713801444 +5846,3,-9.744836637329701 +5847,3,-10.90207107594629 +5848,3,-10.243018523533285 +5849,3,-8.773654182944089 +5850,3,-10.523238319473336 +5851,3,-11.617087069184395 +5852,3,-9.995610094074287 +5853,3,-11.710924477330684 +5854,3,-10.525502347358868 +5855,3,-11.133958989935577 +5856,3,-10.326374040215443 +5857,3,-10.523238319466664 +5858,3,-11.133958989794616 +5859,3,-10.630601948761173 +5860,3,-11.287957834116177 +5861,3,-9.199670707003504 +5862,3,-10.114431455241272 +5863,3,-9.001813136738116 +5864,3,-10.864595712774118 +5865,3,-11.019442668925315 +5866,3,-12.283410316469377 +5867,3,-8.96238047262017 +5868,3,-7.866383883128826 +5869,3,-9.428816176304272 +5870,3,-12.4322332352644 +5871,3,-13.331436662362501 +5872,3,-14.511364771667113 +5873,3,-13.520734669954173 +5874,3,-10.33837475113222 +5875,3,-9.85812138823761 +5876,3,-8.216557855345874 +5877,3,-10.523238319466666 +5878,3,-11.254989799743564 +5879,3,-8.846605049675018 +5880,3,-10.737045581609117 +5881,3,-11.25614826531449 +5882,3,-11.133958989794621 +5883,3,-10.63060194876117 +5884,3,-12.250659961415796 +5885,3,-12.331142920211093 +5886,3,-10.709154834222904 +5887,3,-8.624068647927674 +5888,3,-9.337132605187604 +5889,3,-10.686103018444774 +5890,3,-9.4699653275408 +5891,3,-8.119353485922485 +5892,3,-8.886794413043246 +5893,3,-8.991273845370213 +5894,3,-10.046641930271372 +5895,3,-9.866515914792178 +5896,3,-10.451777427195525 +5897,3,-9.108411379929176 +5898,3,-8.609566003179296 +5899,3,-10.42198607951885 +5900,3,-8.508701540813247 +5901,3,-9.079916307965451 +5902,3,-8.864570993371684 +5903,3,-10.033379154233495 +5904,3,-8.814767744177606 +5905,3,-9.067088593443552 +5906,3,-9.969767378538174 +5907,3,-9.674595987920043 +5908,3,-8.959467339774031 +5909,3,-9.514347375231008 +5910,3,-8.832165378192732 +5911,3,-8.222556949072144 +5912,3,-8.267903322764791 +5913,3,-8.305366927666347 +5914,3,-8.868270286383538 +5915,3,-10.219096128926783 +5916,3,-12.169519532091709 +5917,3,-10.454873779603355 +5918,3,-9.648624919472015 +5919,3,-9.128312769610574 +5920,3,-9.629690527536438 +5921,3,-8.615275020478698 +5922,3,-7.991412627306555 +5923,3,-8.212081132678076 +5924,3,-12.105170388749961 +5925,3,-9.902305944821931 +5926,3,-10.04740091310085 +5927,3,-7.784367057451391 +5928,3,-9.362000408187802 +5929,3,-8.08398585494227 +5930,3,-10.46212204537292 +5931,3,-11.936639155343054 +5932,3,-10.0177343013397 +5933,3,-9.422266030840586 +5934,3,-8.623714631529378 +5935,3,-9.197372168410993 +5936,3,-7.969559654487951 +5937,3,-9.640167516064695 +5938,3,-8.37273749733036 +5939,3,-8.548762013457717 +5940,3,-9.133263691768203 +5941,3,-10.03413296616625 +5942,3,-10.049657473275852 +5943,3,-9.367090451487279 +5944,3,-8.627072960215628 +5945,3,-9.76746030520224 +5946,3,-13.001981513974506 +5947,3,-11.189428657649005 +5948,3,-9.039587457066968 +5949,3,-8.096215533333828 +5950,3,-9.958070032002947 +5951,3,-9.863511529574266 +5952,3,-8.997745163657122 +5953,3,-9.022384317560658 +5954,3,-7.9641136719354195 +5955,3,-7.94119614893634 +5956,3,-9.4699653275408 +5957,3,-7.5151298939691005 +5958,3,-10.418211896669353 +5959,3,-9.190278785986031 +5960,3,-9.249485177108474 +5961,3,-7.944970398156274 +5962,3,-8.356584716416556 +5963,3,-7.877724513736592 +5964,3,-7.508812031576306 +5965,3,-10.960345259214714 +5966,3,-12.250659961415787 +5967,3,-10.709154834222907 +5968,3,-12.331142920211075 +5969,3,-8.624068647927674 +5970,3,-10.351693091295353 +5971,3,-12.45353028903634 +5972,3,-11.189428657649003 +5973,3,-9.03958745706698 +5974,3,-13.088242720930664 +5975,3,-10.688591852701638 +5976,3,-10.336927052064475 +5977,3,-7.784367057451386 +5978,3,-8.08398585494228 +5979,3,-9.568570240546043 +5980,3,-9.803412116388625 +5981,3,-8.09621553333382 +5982,3,-8.392802570166342 +5983,3,-9.222350466361968 ** node loads on shape: Box3:Face6 -2,3,-0.0000000000000E+00 -4,3,-0.0000000000000E+00 -6,3,-0.0000000000000E+00 -8,3,-0.0000000000000E+00 -43,3,-0.0000000000000E+00 -44,3,-0.0000000000000E+00 -45,3,-0.0000000000000E+00 -46,3,-0.0000000000000E+00 -47,3,-5.5694444446420E+00 -48,3,-4.3711646419272E+00 -49,3,-6.7030454307403E+00 -50,3,-4.2553708020635E+00 -51,3,-5.5694444445000E+00 -89,3,-0.0000000000000E+00 -90,3,-0.0000000000000E+00 -91,3,-0.0000000000000E+00 -92,3,-0.0000000000000E+00 -93,3,-0.0000000000000E+00 -94,3,-0.0000000000000E+00 -95,3,-0.0000000000000E+00 -96,3,-0.0000000000000E+00 -97,3,-0.0000000000000E+00 -98,3,-5.5694444444400E+00 -99,3,-5.2616191597367E+00 -100,3,-5.2616191597367E+00 -101,3,-5.3372125866633E+00 -102,3,-5.0212153508333E+00 -103,3,-5.0213500043067E+00 -104,3,-5.5775516436633E+00 -105,3,-5.2616191597363E+00 -106,3,-5.2616191597367E+00 -107,3,-5.5694444444400E+00 -136,3,-0.0000000000000E+00 -137,3,-0.0000000000000E+00 -138,3,-0.0000000000000E+00 -139,3,-0.0000000000000E+00 -140,3,-0.0000000000000E+00 -141,3,-0.0000000000000E+00 -142,3,-0.0000000000000E+00 -143,3,-0.0000000000000E+00 -144,3,-0.0000000000000E+00 -145,3,-5.5694444444500E+00 -146,3,-5.2616191597333E+00 -147,3,-5.2616191597333E+00 -148,3,-5.2761744168500E+00 -149,3,-4.8355146627333E+00 -150,3,-5.5825279327333E+00 -151,3,-5.5466145080667E+00 -152,3,-5.2616191597333E+00 -153,3,-5.2616191597333E+00 -154,3,-5.5694444443247E+00 -155,3,-0.0000000000000E+00 -156,3,-0.0000000000000E+00 -157,3,-0.0000000000000E+00 -158,3,-0.0000000000000E+00 -159,3,-5.5694444445084E+00 -160,3,-4.2553708021667E+00 -161,3,-6.7030454307403E+00 -162,3,-4.3711646419061E+00 -163,3,-5.5694444445414E+00 -1252,3,-0.0000000000000E+00 -1253,3,-0.0000000000000E+00 -1254,3,-0.0000000000000E+00 -1255,3,-0.0000000000000E+00 -1256,3,-0.0000000000000E+00 -1257,3,-0.0000000000000E+00 -1258,3,-0.0000000000000E+00 -1259,3,-0.0000000000000E+00 -1260,3,-0.0000000000000E+00 -1261,3,-0.0000000000000E+00 -1262,3,-0.0000000000000E+00 -1263,3,-0.0000000000000E+00 -1264,3,-0.0000000000000E+00 -1265,3,-0.0000000000000E+00 -1266,3,-0.0000000000000E+00 -1267,3,-0.0000000000000E+00 -1268,3,-0.0000000000000E+00 -1269,3,-0.0000000000000E+00 -1270,3,-0.0000000000000E+00 -1271,3,-0.0000000000000E+00 -1272,3,-0.0000000000000E+00 -1273,3,-0.0000000000000E+00 -1274,3,-0.0000000000000E+00 -1275,3,-0.0000000000000E+00 -1276,3,-0.0000000000000E+00 -1277,3,-0.0000000000000E+00 -1278,3,-0.0000000000000E+00 -1279,3,-0.0000000000000E+00 -1280,3,-0.0000000000000E+00 -1281,3,-0.0000000000000E+00 -1282,3,-0.0000000000000E+00 -1283,3,-0.0000000000000E+00 -1284,3,-0.0000000000000E+00 -1285,3,-0.0000000000000E+00 -1286,3,-0.0000000000000E+00 -1287,3,-0.0000000000000E+00 -1288,3,-0.0000000000000E+00 -1289,3,-0.0000000000000E+00 -1290,3,-0.0000000000000E+00 -1291,3,-0.0000000000000E+00 -1292,3,-0.0000000000000E+00 -1293,3,-0.0000000000000E+00 -1294,3,-0.0000000000000E+00 -1295,3,-0.0000000000000E+00 -1296,3,-0.0000000000000E+00 -1297,3,-0.0000000000000E+00 -1298,3,-0.0000000000000E+00 -1299,3,-0.0000000000000E+00 -1300,3,-0.0000000000000E+00 -1301,3,-0.0000000000000E+00 -1302,3,-0.0000000000000E+00 -1303,3,-0.0000000000000E+00 -1304,3,-0.0000000000000E+00 -1305,3,-1.1441784274538E+01 -1306,3,-1.1138888888866E+01 -1307,3,-9.4248487611834E+00 -1308,3,-9.4248487613365E+00 -1309,3,-1.1138888889082E+01 -1310,3,-1.1441784274639E+01 -1311,3,-9.3632634256538E+00 -1312,3,-1.1138888888950E+01 -1313,3,-1.1441784274653E+01 -1314,3,-1.1441784274642E+01 -1315,3,-1.1138888888948E+01 -1316,3,-9.3632634256622E+00 -1317,3,-9.6709818574639E+00 -1318,3,-8.2265689586217E+00 -1319,3,-7.4975856400118E+00 -1320,3,-1.1630124697944E+01 -1321,3,-1.2002862646277E+01 -1322,3,-1.0697223349286E+01 -1323,3,-8.0491897832173E+00 -1324,3,-9.1824500692668E+00 -1325,3,-9.3857225884123E+00 -1326,3,-7.1195427173962E+00 -1327,3,-1.0523238319473E+01 -1328,3,-1.1133958989936E+01 -1329,3,-1.0326374040205E+01 -1330,3,-1.1617087069184E+01 -1331,3,-9.6724163758008E+00 -1332,3,-1.1019360932383E+01 -1333,3,-1.0656711799060E+01 -1334,3,-1.2037616255167E+01 -1335,3,-1.0525502347359E+01 -1336,3,-1.1041584821599E+01 -1337,3,-9.3564191399708E+00 -1338,3,-8.5997075975062E+00 -1339,3,-9.1815431143052E+00 -1340,3,-1.1428101157576E+01 -1341,3,-1.2033295992303E+01 -1342,3,-1.2427120624035E+01 -1343,3,-1.1011635775837E+01 -1344,3,-1.0312991148207E+01 -1345,3,-9.7377447536619E+00 -1346,3,-8.1528542641001E+00 -1347,3,-1.0523238319473E+01 -1348,3,-1.1254989799739E+01 -1349,3,-8.8405983828512E+00 -1350,3,-1.0728810144546E+01 -1351,3,-1.1255992204846E+01 -1352,3,-1.1133958989939E+01 -1353,3,-1.0630601948902E+01 -1354,3,-1.0523238319467E+01 -1355,3,-1.1133958989937E+01 -1356,3,-1.0630601948903E+01 -1357,3,-1.1287957834116E+01 -1358,3,-9.0024826255990E+00 -1359,3,-1.0114431455241E+01 -1360,3,-9.0018131367381E+00 -1361,3,-1.0864595712774E+01 -1362,3,-1.1019442668925E+01 -1363,3,-1.1042756415271E+01 -1364,3,-8.5618228714823E+00 -1365,3,-7.6363961426042E+00 -1366,3,-1.0278931948337E+01 -1367,3,-1.2359915402159E+01 -1368,3,-1.1948265994972E+01 -1369,3,-1.2984629221963E+01 -1370,3,-1.1787305627700E+01 -1371,3,-1.0902071075764E+01 -1372,3,-1.0243018523671E+01 -1373,3,-8.7736541830782E+00 -1374,3,-1.0523238319467E+01 -1375,3,-1.1617087069369E+01 -1376,3,-9.9956100938886E+00 -1377,3,-1.1710924477333E+01 -1378,3,-1.0525502347547E+01 -1379,3,-1.1133958989947E+01 -1380,3,-1.0326374040230E+01 -1381,3,-9.1824500693996E+00 -1382,3,-8.0491897833205E+00 -1383,3,-7.1195427173962E+00 -1384,3,-1.2002862646277E+01 -1385,3,-1.1630124697973E+01 -1386,3,-9.3857225884419E+00 -1387,3,-8.2265689585481E+00 -1388,3,-9.6709818574429E+00 -1389,3,-1.0697223349286E+01 -1390,3,-7.4975856399593E+00 -1391,3,-8.2225569490721E+00 -1392,3,-8.2679033227648E+00 -1393,3,-8.6193454117033E+00 -1394,3,-8.9991753194605E+00 -1395,3,-7.9411961489363E+00 -1396,3,-8.8682702863835E+00 -1397,3,-8.3053669276663E+00 -1398,3,-1.0351693091295E+01 -1399,3,-9.4699653275408E+00 -1400,3,-7.5152674071127E+00 -1401,3,-1.2250659961416E+01 -1402,3,-8.2120811326781E+00 -1403,3,-8.3928025701664E+00 -1404,3,-8.3565847164166E+00 -1405,3,-9.2223504663620E+00 -1406,3,-9.8034121163886E+00 -1407,3,-1.1833663165153E+01 -1408,3,-1.0077016440987E+01 -1409,3,-1.0870500976438E+01 -1410,3,-8.8998790920468E+00 -1411,3,-8.8427451277593E+00 -1412,3,-1.1505879684456E+01 -1413,3,-1.0109202161938E+01 -1414,3,-8.9140963595638E+00 -1415,3,-9.3819040610906E+00 -1416,3,-8.7501363387918E+00 -1417,3,-1.2453712920880E+01 -1418,3,-1.1189428657649E+01 -1419,3,-1.2331142920211E+01 -1420,3,-9.0395874570670E+00 -1421,3,-8.6240686479277E+00 -1422,3,-8.0962155333338E+00 -1423,3,-1.0709154834223E+01 -1424,3,-9.4699653275408E+00 -1425,3,-1.2250659961416E+01 -1426,3,-1.0686103018445E+01 -1427,3,-1.2331142920211E+01 -1428,3,-1.0709154834223E+01 -1429,3,-9.3371326051876E+00 -1430,3,-8.6240686479176E+00 -1431,3,-9.4242422148537E+00 -1432,3,-8.7955997945423E+00 -1433,3,-8.6373804526629E+00 -1434,3,-8.9714458491473E+00 -1435,3,-1.0328483871332E+01 -1436,3,-9.3632421856286E+00 -1437,3,-9.0466467004472E+00 -1438,3,-9.0244863938645E+00 -1439,3,-9.1170567527497E+00 -1440,3,-1.3001981513974E+01 -1441,3,-1.1189428657649E+01 -1442,3,-1.0960345259215E+01 -1443,3,-1.3088242720931E+01 -1444,3,-7.9449703981563E+00 -1445,3,-7.5088120315763E+00 -1446,3,-7.8777245137366E+00 -1447,3,-1.0688591852702E+01 -1448,3,-1.0336927052064E+01 -1449,3,-7.7843670574514E+00 -1450,3,-9.0395874570670E+00 -1451,3,-8.3727374973303E+00 -1452,3,-9.2494851771085E+00 -1453,3,-8.5487620134577E+00 -1454,3,-8.8373869157820E+00 -1455,3,-8.6270729602156E+00 -1456,3,-1.0133532146124E+01 -1457,3,-9.2960270368302E+00 -1458,3,-9.6648423477029E+00 -1459,3,-1.0797801489587E+01 -1460,3,-1.2264946805638E+01 -1461,3,-1.0457598863207E+01 -1462,3,-8.0839858549423E+00 -1463,3,-9.5685702405460E+00 -1464,3,-1.0418532041657E+01 -1465,3,-1.2105248144552E+01 -1466,3,-1.0047158294714E+01 -1467,3,-9.9022010687801E+00 -1468,3,-7.7843670574514E+00 -1469,3,-9.4901518090179E+00 -1470,3,-9.6379663768623E+00 -1471,3,-9.6296905275364E+00 -1472,3,-9.1902787859860E+00 -1473,3,-9.5306621971611E+00 -1474,3,-8.6152750204787E+00 -1475,3,-8.1347020490778E+00 -1476,3,-8.8878800591971E+00 -1477,3,-8.9908026417930E+00 -1478,3,-1.0045342745732E+01 -1479,3,-9.8662221119856E+00 -1480,3,-9.8707344480609E+00 -1481,3,-9.1439719513588E+00 -1482,3,-8.0222043248716E+00 -1483,3,-9.6192059931358E+00 -1484,3,-1.1767266197716E+01 -1485,3,-8.5443380187906E+00 -1486,3,-7.9586129681864E+00 -1487,3,-7.9649231055795E+00 -1488,3,-8.0839858549423E+00 -1489,3,-9.3618626658428E+00 -1490,3,-8.0962155333238E+00 +2,3,-0.0 +4,3,-0.0 +6,3,-0.0 +8,3,-0.0 +43,3,-0.0 +44,3,-0.0 +45,3,-0.0 +46,3,-0.0 +47,3,-5.5694444446420155 +48,3,-4.3711646419271615 +49,3,-6.703045430740325 +50,3,-4.255370802063468 +51,3,-5.569444444500001 +89,3,-0.0 +90,3,-0.0 +91,3,-0.0 +92,3,-0.0 +93,3,-0.0 +94,3,-0.0 +95,3,-0.0 +96,3,-0.0 +97,3,-0.0 +98,3,-5.569444444440001 +99,3,-5.261619159736668 +100,3,-5.261619159736668 +101,3,-5.337212586663333 +102,3,-5.0212153508333435 +103,3,-5.021350004306668 +104,3,-5.577551643663334 +105,3,-5.261619159736331 +106,3,-5.261619159736668 +107,3,-5.569444444440001 +136,3,-0.0 +137,3,-0.0 +138,3,-0.0 +139,3,-0.0 +140,3,-0.0 +141,3,-0.0 +142,3,-0.0 +143,3,-0.0 +144,3,-0.0 +145,3,-5.56944444445 +146,3,-5.261619159733333 +147,3,-5.261619159733333 +148,3,-5.27617441685 +149,3,-4.835514662733323 +150,3,-5.582527932733332 +151,3,-5.5466145080666704 +152,3,-5.261619159733333 +153,3,-5.261619159733333 +154,3,-5.569444444324693 +155,3,-0.0 +156,3,-0.0 +157,3,-0.0 +158,3,-0.0 +159,3,-5.569444444508355 +160,3,-4.2553708021666745 +161,3,-6.703045430740325 +162,3,-4.371164641906139 +163,3,-5.569444444541353 +1252,3,-0.0 +1253,3,-0.0 +1254,3,-0.0 +1255,3,-0.0 +1256,3,-0.0 +1257,3,-0.0 +1258,3,-0.0 +1259,3,-0.0 +1260,3,-0.0 +1261,3,-0.0 +1262,3,-0.0 +1263,3,-0.0 +1264,3,-0.0 +1265,3,-0.0 +1266,3,-0.0 +1267,3,-0.0 +1268,3,-0.0 +1269,3,-0.0 +1270,3,-0.0 +1271,3,-0.0 +1272,3,-0.0 +1273,3,-0.0 +1274,3,-0.0 +1275,3,-0.0 +1276,3,-0.0 +1277,3,-0.0 +1278,3,-0.0 +1279,3,-0.0 +1280,3,-0.0 +1281,3,-0.0 +1282,3,-0.0 +1283,3,-0.0 +1284,3,-0.0 +1285,3,-0.0 +1286,3,-0.0 +1287,3,-0.0 +1288,3,-0.0 +1289,3,-0.0 +1290,3,-0.0 +1291,3,-0.0 +1292,3,-0.0 +1293,3,-0.0 +1294,3,-0.0 +1295,3,-0.0 +1296,3,-0.0 +1297,3,-0.0 +1298,3,-0.0 +1299,3,-0.0 +1300,3,-0.0 +1301,3,-0.0 +1302,3,-0.0 +1303,3,-0.0 +1304,3,-0.0 +1305,3,-11.441784274537985 +1306,3,-11.138888888866047 +1307,3,-9.424848761183359 +1308,3,-9.424848761336506 +1309,3,-11.138888889082017 +1310,3,-11.44178427463891 +1311,3,-9.363263425653836 +1312,3,-11.138888888950003 +1313,3,-11.441784274653262 +1314,3,-11.441784274641906 +1315,3,-11.138888888948356 +1316,3,-9.363263425662188 +1317,3,-9.670981857463937 +1318,3,-8.226568958621652 +1319,3,-7.497585640011778 +1320,3,-11.630124697943662 +1321,3,-12.002862646277102 +1322,3,-10.697223349286471 +1323,3,-8.049189783217303 +1324,3,-9.182450069266807 +1325,3,-9.385722588412339 +1326,3,-7.1195427173962225 +1327,3,-10.523238319473336 +1328,3,-11.133958989935577 +1329,3,-10.326374040205412 +1330,3,-11.617087069184395 +1331,3,-9.672416375800758 +1332,3,-11.019360932383021 +1333,3,-10.656711799060446 +1334,3,-12.037616255167418 +1335,3,-10.525502347358868 +1336,3,-11.041584821599237 +1337,3,-9.356419139970766 +1338,3,-8.599707597506214 +1339,3,-9.181543114305235 +1340,3,-11.428101157575885 +1341,3,-12.033295992303483 +1342,3,-12.42712062403511 +1343,3,-11.011635775836812 +1344,3,-10.312991148206853 +1345,3,-9.737744753661902 +1346,3,-8.152854264100089 +1347,3,-10.523238319473 +1348,3,-11.254989799739217 +1349,3,-8.840598382851184 +1350,3,-10.728810144546406 +1351,3,-11.255992204845564 +1352,3,-11.133958989938572 +1353,3,-10.630601948901788 +1354,3,-10.523238319466666 +1355,3,-11.133958989936595 +1356,3,-10.630601948903145 +1357,3,-11.287957834116177 +1358,3,-9.002482625598992 +1359,3,-10.114431455241279 +1360,3,-9.001813136738134 +1361,3,-10.864595712774124 +1362,3,-11.019442668925306 +1363,3,-11.042756415270619 +1364,3,-8.561822871482315 +1365,3,-7.636396142604173 +1366,3,-10.27893194833742 +1367,3,-12.359915402159283 +1368,3,-11.948265994971809 +1369,3,-12.984629221963246 +1370,3,-11.78730562770001 +1371,3,-10.902071075763898 +1372,3,-10.24301852367076 +1373,3,-8.773654183078227 +1374,3,-10.523238319466666 +1375,3,-11.617087069369065 +1376,3,-9.995610093888558 +1377,3,-11.710924477332957 +1378,3,-10.52550234754687 +1379,3,-11.133958989946624 +1380,3,-10.326374040229823 +1381,3,-9.182450069399577 +1382,3,-8.049189783320507 +1383,3,-7.119542717396222 +1384,3,-12.0028626462771 +1385,3,-11.630124697973224 +1386,3,-9.385722588441903 +1387,3,-8.226568958548146 +1388,3,-9.670981857442914 +1389,3,-10.69722334928647 +1390,3,-7.497585639959295 +1391,3,-8.222556949072144 +1392,3,-8.267903322764791 +1393,3,-8.619345411703344 +1394,3,-8.99917531946051 +1395,3,-7.94119614893634 +1396,3,-8.868270286383538 +1397,3,-8.305366927666347 +1398,3,-10.351693091295353 +1399,3,-9.469965327540804 +1400,3,-7.515267407112746 +1401,3,-12.25065996141579 +1402,3,-8.212081132678076 +1403,3,-8.392802570166362 +1404,3,-8.356584716416574 +1405,3,-9.222350466361966 +1406,3,-9.803412116388623 +1407,3,-11.833663165152876 +1408,3,-10.077016440986764 +1409,3,-10.870500976437764 +1410,3,-8.899879092046776 +1411,3,-8.842745127759263 +1412,3,-11.505879684456142 +1413,3,-10.109202161937711 +1414,3,-8.91409635956375 +1415,3,-9.381904061090601 +1416,3,-8.750136338791751 +1417,3,-12.453712920879918 +1418,3,-11.189428657649001 +1419,3,-12.331142920211075 +1420,3,-9.03958745706698 +1421,3,-8.624068647927672 +1422,3,-8.09621553333382 +1423,3,-10.709154834222907 +1424,3,-9.469965327540804 +1425,3,-12.250659961415787 +1426,3,-10.686103018444777 +1427,3,-12.331142920211075 +1428,3,-10.709154834222907 +1429,3,-9.33713260518759 +1430,3,-8.624068647917644 +1431,3,-9.424242214853727 +1432,3,-8.795599794542253 +1433,3,-8.63738045266289 +1434,3,-8.971445849147335 +1435,3,-10.328483871331565 +1436,3,-9.36324218562862 +1437,3,-9.046646700447193 +1438,3,-9.024486393864514 +1439,3,-9.11705675274971 +1440,3,-13.00198151397448 +1441,3,-11.189428657649003 +1442,3,-10.960345259214714 +1443,3,-13.088242720930646 +1444,3,-7.944970398156275 +1445,3,-7.508812031576325 +1446,3,-7.877724513736612 +1447,3,-10.688591852701636 +1448,3,-10.33692705206448 +1449,3,-7.784367057451391 +1450,3,-9.03958745706698 +1451,3,-8.372737497330345 +1452,3,-9.249485177108465 +1453,3,-8.548762013457685 +1454,3,-8.837386915781988 +1455,3,-8.627072960215624 +1456,3,-10.133532146124173 +1457,3,-9.296027036830166 +1458,3,-9.66484234770287 +1459,3,-10.797801489587425 +1460,3,-12.264946805637562 +1461,3,-10.457598863207325 +1462,3,-8.08398585494227 +1463,3,-9.568570240546043 +1464,3,-10.418532041656576 +1465,3,-12.105248144551675 +1466,3,-10.047158294714011 +1467,3,-9.902201068780068 +1468,3,-7.784367057451391 +1469,3,-9.490151809017895 +1470,3,-9.637966376862291 +1471,3,-9.629690527536438 +1472,3,-9.190278785986038 +1473,3,-9.530662197161135 +1474,3,-8.615275020478688 +1475,3,-8.134702049077775 +1476,3,-8.887880059197135 +1477,3,-8.990802641793039 +1478,3,-10.045342745732153 +1479,3,-9.866222111985623 +1480,3,-9.870734448060915 +1481,3,-9.143971951358786 +1482,3,-8.022204324871634 +1483,3,-9.619205993135788 +1484,3,-11.767266197716355 +1485,3,-8.54433801879057 +1486,3,-7.958612968186402 +1487,3,-7.964923105579531 +1488,3,-8.083985854942272 +1489,3,-9.361862665842828 +1490,3,-8.096215533323791 ** node loads on shape: Box4:Face6 -6,3,-0.0000000000000E+00 -8,3,-0.0000000000000E+00 -10,3,-0.0000000000000E+00 -12,3,-0.0000000000000E+00 -155,3,-0.0000000000000E+00 -156,3,-0.0000000000000E+00 -157,3,-0.0000000000000E+00 -158,3,-0.0000000000000E+00 -159,3,-3.6148488891667E+00 -160,3,-4.9560604148333E+00 -161,3,-6.5089699073333E+00 -162,3,-5.5368505793333E+00 -163,3,-6.1383049241688E+00 -191,3,-0.0000000000000E+00 -192,3,-0.0000000000000E+00 -193,3,-0.0000000000000E+00 -194,3,-0.0000000000000E+00 -195,3,-3.6443097420828E+00 -196,3,-4.9560604147048E+00 -197,3,-6.5089699073333E+00 -198,3,-5.5368505793333E+00 -199,3,-6.1383049241667E+00 -340,3,-0.0000000000000E+00 -341,3,-0.0000000000000E+00 -342,3,-0.0000000000000E+00 -343,3,-0.0000000000000E+00 -344,3,-0.0000000000000E+00 -345,3,-0.0000000000000E+00 -346,3,-0.0000000000000E+00 -347,3,-0.0000000000000E+00 -348,3,-0.0000000000000E+00 -349,3,-3.6148488891333E+00 -350,3,-4.7692437461733E+00 -351,3,-6.4230360934267E+00 -352,3,-7.8486508619500E+00 -353,3,-6.0387564782933E+00 -354,3,-6.1658026112000E+00 -355,3,-7.8384159501290E+00 -356,3,-6.4230360934267E+00 -357,3,-4.7692437461783E+00 -358,3,-3.6443097422325E+00 -378,3,-0.0000000000000E+00 -379,3,-0.0000000000000E+00 -380,3,-0.0000000000000E+00 -381,3,-0.0000000000000E+00 -382,3,-0.0000000000000E+00 -383,3,-0.0000000000000E+00 -384,3,-0.0000000000000E+00 -385,3,-0.0000000000000E+00 -386,3,-0.0000000000000E+00 -387,3,-6.1383049244188E+00 -388,3,-4.5596686434595E+00 -389,3,-6.1652466261125E+00 -390,3,-4.7598077278000E+00 -391,3,-3.9667687295419E+00 -392,3,-4.4420616466126E+00 -393,3,-5.0689037310724E+00 -394,3,-5.8997047886667E+00 -395,3,-4.5065602759167E+00 -396,3,-6.1383049242500E+00 -3555,3,-0.0000000000000E+00 -3556,3,-0.0000000000000E+00 -3557,3,-0.0000000000000E+00 -3558,3,-0.0000000000000E+00 -3559,3,-0.0000000000000E+00 -3560,3,-0.0000000000000E+00 -3561,3,-0.0000000000000E+00 -3562,3,-0.0000000000000E+00 -3563,3,-0.0000000000000E+00 -3564,3,-0.0000000000000E+00 -3565,3,-0.0000000000000E+00 -3566,3,-0.0000000000000E+00 -3567,3,-0.0000000000000E+00 -3568,3,-0.0000000000000E+00 -3569,3,-0.0000000000000E+00 -3570,3,-0.0000000000000E+00 -3571,3,-0.0000000000000E+00 -3572,3,-0.0000000000000E+00 -3573,3,-0.0000000000000E+00 -3574,3,-0.0000000000000E+00 -3575,3,-0.0000000000000E+00 -3576,3,-0.0000000000000E+00 -3577,3,-0.0000000000000E+00 -3578,3,-0.0000000000000E+00 -3579,3,-0.0000000000000E+00 -3580,3,-0.0000000000000E+00 -3581,3,-0.0000000000000E+00 -3582,3,-0.0000000000000E+00 -3583,3,-0.0000000000000E+00 -3584,3,-0.0000000000000E+00 -3585,3,-0.0000000000000E+00 -3586,3,-0.0000000000000E+00 -3587,3,-0.0000000000000E+00 -3588,3,-0.0000000000000E+00 -3589,3,-0.0000000000000E+00 -3590,3,-0.0000000000000E+00 -3591,3,-0.0000000000000E+00 -3592,3,-0.0000000000000E+00 -3593,3,-0.0000000000000E+00 -3594,3,-0.0000000000000E+00 -3595,3,-0.0000000000000E+00 -3596,3,-0.0000000000000E+00 -3597,3,-0.0000000000000E+00 -3598,3,-0.0000000000000E+00 -3599,3,-0.0000000000000E+00 -3600,3,-0.0000000000000E+00 -3601,3,-0.0000000000000E+00 -3602,3,-0.0000000000000E+00 -3603,3,-0.0000000000000E+00 -3604,3,-0.0000000000000E+00 -3605,3,-0.0000000000000E+00 -3606,3,-0.0000000000000E+00 -3607,3,-1.0956901604191E+01 -3608,3,-1.2276609848588E+01 -3609,3,-9.9811331082953E+00 -3610,3,-7.2296977783000E+00 -3611,3,-7.0734126983082E+00 -3612,3,-7.0734126985918E+00 -3613,3,-7.0734126982602E+00 -3614,3,-7.2886194843154E+00 -3615,3,-7.0734126985337E+00 -3616,3,-1.2276609848417E+01 -3617,3,-1.0956901604055E+01 -3618,3,-9.7923515043023E+00 -3619,3,-1.0107822934515E+01 -3620,3,-8.9897553786405E+00 -3621,3,-8.6103263288230E+00 -3622,3,-1.0091121477059E+01 -3623,3,-6.9171276186000E+00 -3624,3,-1.0542664871140E+01 -3625,3,-1.1068816115445E+01 -3626,3,-9.1024246643219E+00 -3627,3,-1.0096696787445E+01 -3628,3,-1.0355447259355E+01 -3629,3,-8.2152565512279E+00 -3630,3,-8.6653232152982E+00 -3631,3,-8.9897553785120E+00 -3632,3,-1.0107822934268E+01 -3633,3,-1.0091121476940E+01 -3634,3,-8.5808654757405E+00 -3635,3,-6.8582059124786E+00 -3636,3,-1.1068816115445E+01 -3637,3,-1.0542664871141E+01 -3638,3,-9.1024246643218E+00 -3639,3,-1.0355447259222E+01 -3640,3,-1.0096696787445E+01 -3641,3,-8.2313833350998E+00 -3642,3,-8.6653232151646E+00 -3643,3,-8.6332151030224E+00 -3644,3,-9.7084311084726E+00 -3645,3,-9.9100793234031E+00 -3646,3,-8.3977511717577E+00 -3647,3,-1.3837977284181E+01 -3648,3,-1.0287007450276E+01 -3649,3,-8.9897040873830E+00 -3650,3,-1.4893845172542E+01 -3651,3,-1.5263592052704E+01 -3652,3,-1.2923030607236E+01 -3653,3,-1.1960532032096E+01 -3654,3,-1.3083950788885E+01 -3655,3,-1.2074870672317E+01 -3656,3,-1.3374730536598E+01 -3657,3,-1.2087578165002E+01 -3658,3,-1.0996486104595E+01 -3659,3,-1.5250280720016E+01 -3660,3,-1.5047343875527E+01 -3661,3,-1.2351324689845E+01 -3662,3,-1.0287007450274E+01 -3663,3,-1.3834900863314E+01 -3664,3,-1.2823768969956E+01 -3665,3,-9.7084311084726E+00 -3666,3,-8.6332151030256E+00 -3667,3,-8.9897040873813E+00 -3668,3,-8.3682903185955E+00 -3669,3,-9.9100793233981E+00 -3670,3,-8.4024968273360E+00 -3671,3,-8.7824772920583E+00 -3672,3,-7.6905578675460E+00 -3673,3,-1.0388055274711E+01 -3674,3,-1.1187384526755E+01 -3675,3,-8.8035575597251E+00 -3676,3,-9.7819456284421E+00 -3677,3,-9.6692031854232E+00 -3678,3,-1.0456769153908E+01 -3679,3,-7.9149465924841E+00 -3680,3,-7.0735636990819E+00 -3681,3,-8.9256975389141E+00 -3682,3,-8.8575733205654E+00 -3683,3,-8.7139668312440E+00 -3684,3,-7.5488566161526E+00 -3685,3,-9.8783491454930E+00 -3686,3,-7.6766593356629E+00 -3687,3,-1.0923822855180E+01 -3688,3,-1.1205852675188E+01 -3689,3,-1.0588611952487E+01 -3690,3,-1.1291206622988E+01 -3691,3,-1.0448493523031E+01 -3692,3,-1.2036653732782E+01 -3693,3,-9.4893349190773E+00 -3694,3,-1.0401617119670E+01 -3695,3,-8.0961904063273E+00 -3696,3,-8.1606068559690E+00 -3697,3,-7.4508368431129E+00 -3698,3,-7.4054860562995E+00 -3699,3,-1.0455861610750E+01 -3700,3,-1.0838218296698E+01 -3701,3,-1.1267147900850E+01 -3702,3,-1.0096624691638E+01 -3703,3,-1.1768318840952E+01 -3704,3,-1.0597500397622E+01 -3705,3,-8.3056554150837E+00 -3706,3,-8.9208564722476E+00 -3707,3,-9.3291047957739E+00 -3708,3,-1.0008088657892E+01 -3709,3,-7.9157854383758E+00 -3710,3,-9.9102509184810E+00 -3711,3,-7.6944562189456E+00 -3712,3,-7.4659033333409E+00 -3713,3,-7.2643508361599E+00 -3714,3,-7.2745871411813E+00 -3715,3,-7.4590133751824E+00 -3716,3,-7.5981660115235E+00 -3717,3,-7.2838239668947E+00 -3718,3,-7.5064328102364E+00 -3719,3,-7.9553189469781E+00 -3720,3,-1.1632925522371E+01 -3721,3,-1.1506929396627E+01 -3722,3,-1.2170766921884E+01 -3723,3,-1.2590276263502E+01 -3724,3,-1.1429187843593E+01 -3725,3,-1.2671845418305E+01 -3726,3,-9.8477507203531E+00 -3727,3,-1.1844811692422E+01 -3728,3,-9.4219573119900E+00 -3729,3,-8.4893406531914E+00 -3730,3,-1.0581668526317E+01 -3731,3,-1.0548729268689E+01 -3732,3,-8.9000291797927E+00 -3733,3,-1.1325100127520E+01 -3734,3,-1.1687267361992E+01 -3735,3,-9.2896650294519E+00 -3736,3,-1.2054535520398E+01 -3737,3,-9.7221888197297E+00 -3738,3,-1.3215474308058E+01 -3739,3,-1.2536326992148E+01 -3740,3,-1.0227690324280E+01 -3741,3,-8.3924534681971E+00 -3742,3,-1.1567235083986E+01 -3743,3,-1.0541631191788E+01 -3744,3,-1.1067283592870E+01 -3745,3,-9.8688592815905E+00 -3746,3,-1.0028648563435E+01 -3747,3,-1.0915726641232E+01 -3748,3,-1.0321754378247E+01 -3749,3,-1.0779954644004E+01 -3750,3,-9.7809035083896E+00 -3751,3,-9.3532243682446E+00 -3752,3,-8.5546452046280E+00 -3753,3,-9.1849326064180E+00 -3754,3,-9.3356533344248E+00 -3755,3,-1.0910760447743E+01 -3756,3,-1.2799692579619E+01 -3757,3,-9.1314774510083E+00 -3758,3,-1.0493783174468E+01 -3759,3,-1.0096624691638E+01 -3760,3,-1.1627692232728E+01 -3761,3,-1.0692117359697E+01 -3762,3,-1.4436445234797E+01 -3763,3,-1.1417170673872E+01 -3764,3,-1.4027827184772E+01 -3765,3,-1.2469625091896E+01 -3766,3,-1.1956135926208E+01 -3767,3,-1.2824133166461E+01 -3768,3,-8.4284785947956E+00 -3769,3,-1.1862180153020E+01 -3770,3,-1.0767020408856E+01 -3771,3,-1.0719811561690E+01 -3772,3,-9.3128256468276E+00 -3773,3,-8.7460552069799E+00 -3774,3,-9.5164477590919E+00 -3775,3,-9.1991659892855E+00 -3776,3,-1.1825576233996E+01 -3777,3,-1.0703127813078E+01 -3778,3,-9.9776536395868E+00 -3779,3,-9.4865923356141E+00 -3780,3,-9.7132172947353E+00 -3781,3,-8.6285802595479E+00 -3782,3,-9.4415581465466E+00 -3783,3,-7.9835118859762E+00 -3784,3,-9.4509333345570E+00 -3785,3,-8.0635472448283E+00 -3786,3,-9.9102509184809E+00 -3787,3,-1.0008088657892E+01 -3788,3,-9.3525115205042E+00 -3789,3,-7.6126461889495E+00 +6,3,-0.0 +8,3,-0.0 +10,3,-0.0 +12,3,-0.0 +155,3,-0.0 +156,3,-0.0 +157,3,-0.0 +158,3,-0.0 +159,3,-3.614848889166662 +160,3,-4.956060414833335 +161,3,-6.508969907333344 +162,3,-5.536850579333322 +163,3,-6.138304924168802 +191,3,-0.0 +192,3,-0.0 +193,3,-0.0 +194,3,-0.0 +195,3,-3.6443097420828496 +196,3,-4.956060414704831 +197,3,-6.508969907333344 +198,3,-5.536850579333344 +199,3,-6.138304924166676 +340,3,-0.0 +341,3,-0.0 +342,3,-0.0 +343,3,-0.0 +344,3,-0.0 +345,3,-0.0 +346,3,-0.0 +347,3,-0.0 +348,3,-0.0 +349,3,-3.6148488891333335 +350,3,-4.769243746173334 +351,3,-6.423036093426669 +352,3,-7.848650861950001 +353,3,-6.038756478293334 +354,3,-6.165802611200001 +355,3,-7.838415950128967 +356,3,-6.423036093426669 +357,3,-4.76924374617828 +358,3,-3.6443097422325357 +378,3,-0.0 +379,3,-0.0 +380,3,-0.0 +381,3,-0.0 +382,3,-0.0 +383,3,-0.0 +384,3,-0.0 +385,3,-0.0 +386,3,-0.0 +387,3,-6.138304924418824 +388,3,-4.559668643459467 +389,3,-6.165246626112532 +390,3,-4.75980772780002 +391,3,-3.9667687295419176 +392,3,-4.4420616466126495 +393,3,-5.068903731072411 +394,3,-5.899704788666669 +395,3,-4.506560275916669 +396,3,-6.138304924250005 +3555,3,-0.0 +3556,3,-0.0 +3557,3,-0.0 +3558,3,-0.0 +3559,3,-0.0 +3560,3,-0.0 +3561,3,-0.0 +3562,3,-0.0 +3563,3,-0.0 +3564,3,-0.0 +3565,3,-0.0 +3566,3,-0.0 +3567,3,-0.0 +3568,3,-0.0 +3569,3,-0.0 +3570,3,-0.0 +3571,3,-0.0 +3572,3,-0.0 +3573,3,-0.0 +3574,3,-0.0 +3575,3,-0.0 +3576,3,-0.0 +3577,3,-0.0 +3578,3,-0.0 +3579,3,-0.0 +3580,3,-0.0 +3581,3,-0.0 +3582,3,-0.0 +3583,3,-0.0 +3584,3,-0.0 +3585,3,-0.0 +3586,3,-0.0 +3587,3,-0.0 +3588,3,-0.0 +3589,3,-0.0 +3590,3,-0.0 +3591,3,-0.0 +3592,3,-0.0 +3593,3,-0.0 +3594,3,-0.0 +3595,3,-0.0 +3596,3,-0.0 +3597,3,-0.0 +3598,3,-0.0 +3599,3,-0.0 +3600,3,-0.0 +3601,3,-0.0 +3602,3,-0.0 +3603,3,-0.0 +3604,3,-0.0 +3605,3,-0.0 +3606,3,-0.0 +3607,3,-10.956901604190847 +3608,3,-12.276609848587626 +3609,3,-9.981133108295333 +3610,3,-7.229697778299996 +3611,3,-7.073412698308217 +3612,3,-7.073412698591778 +3613,3,-7.073412698260245 +3614,3,-7.288619484315385 +3615,3,-7.073412698533724 +3616,3,-12.276609848416681 +3617,3,-10.956901604055034 +3618,3,-9.792351504302298 +3619,3,-10.107822934514731 +3620,3,-8.989755378640488 +3621,3,-8.610326328822952 +3622,3,-10.091121477058538 +3623,3,-6.917127618599999 +3624,3,-10.542664871140499 +3625,3,-11.068816115444553 +3626,3,-9.102424664321864 +3627,3,-10.09669678744453 +3628,3,-10.355447259355367 +3629,3,-8.21525655122786 +3630,3,-8.665323215298248 +3631,3,-8.989755378511994 +3632,3,-10.107822934267897 +3633,3,-10.091121476940218 +3634,3,-8.580865475740461 +3635,3,-6.858205912478583 +3636,3,-11.068816115444553 +3637,3,-10.542664871140508 +3638,3,-9.102424664321846 +3639,3,-10.355447259221702 +3640,3,-10.096696787444552 +3641,3,-8.231383335099785 +3642,3,-8.665323215164605 +3643,3,-8.63321510302237 +3644,3,-9.708431108472583 +3645,3,-9.910079323403064 +3646,3,-8.397751171757692 +3647,3,-13.837977284180917 +3648,3,-10.287007450275702 +3649,3,-8.989704087383009 +3650,3,-14.893845172541733 +3651,3,-15.263592052704253 +3652,3,-12.923030607236427 +3653,3,-11.960532032095587 +3654,3,-13.083950788885065 +3655,3,-12.074870672317044 +3656,3,-13.374730536598351 +3657,3,-12.087578165002252 +3658,3,-10.99648610459504 +3659,3,-15.250280720015963 +3660,3,-15.04734387552732 +3661,3,-12.351324689845436 +3662,3,-10.287007450273988 +3663,3,-13.834900863313667 +3664,3,-12.823768969956244 +3665,3,-9.708431108472576 +3666,3,-8.633215103025602 +3667,3,-8.989704087381284 +3668,3,-8.368290318595482 +3669,3,-9.910079323398081 +3670,3,-8.402496827335977 +3671,3,-8.782477292058346 +3672,3,-7.690557867545957 +3673,3,-10.388055274711412 +3674,3,-11.187384526754654 +3675,3,-8.803557559725062 +3676,3,-9.781945628442141 +3677,3,-9.669203185423225 +3678,3,-10.456769153908242 +3679,3,-7.914946592484122 +3680,3,-7.073563699081852 +3681,3,-8.925697538914129 +3682,3,-8.85757332056541 +3683,3,-8.713966831244027 +3684,3,-7.548856616152584 +3685,3,-9.878349145492962 +3686,3,-7.676659335662925 +3687,3,-10.923822855179921 +3688,3,-11.205852675187836 +3689,3,-10.58861195248704 +3690,3,-11.291206622987822 +3691,3,-10.44849352303075 +3692,3,-12.036653732782094 +3693,3,-9.489334919077331 +3694,3,-10.401617119669861 +3695,3,-8.096190406327333 +3696,3,-8.160606855968963 +3697,3,-7.45083684311291 +3698,3,-7.405486056299498 +3699,3,-10.455861610750173 +3700,3,-10.838218296698374 +3701,3,-11.267147900850018 +3702,3,-10.096624691637789 +3703,3,-11.768318840952489 +3704,3,-10.597500397622284 +3705,3,-8.305655415083697 +3706,3,-8.92085647224762 +3707,3,-9.329104795773866 +3708,3,-10.008088657891852 +3709,3,-7.91578543837581 +3710,3,-9.910250918480958 +3711,3,-7.694456218945648 +3712,3,-7.465903333340855 +3713,3,-7.264350836159887 +3714,3,-7.274587141181307 +3715,3,-7.45901337518236 +3716,3,-7.598166011523454 +3717,3,-7.2838239668946905 +3718,3,-7.506432810236367 +3719,3,-7.955318946978073 +3720,3,-11.632925522371256 +3721,3,-11.506929396626939 +3722,3,-12.170766921883967 +3723,3,-12.590276263502219 +3724,3,-11.429187843593231 +3725,3,-12.671845418304681 +3726,3,-9.847750720353114 +3727,3,-11.844811692422319 +3728,3,-9.421957311989999 +3729,3,-8.4893406531914 +3730,3,-10.581668526317012 +3731,3,-10.548729268689003 +3732,3,-8.900029179792673 +3733,3,-11.325100127519844 +3734,3,-11.687267361991925 +3735,3,-9.289665029451914 +3736,3,-12.054535520397502 +3737,3,-9.72218881972972 +3738,3,-13.215474308058173 +3739,3,-12.536326992147913 +3740,3,-10.227690324280381 +3741,3,-8.392453468197091 +3742,3,-11.567235083986143 +3743,3,-10.541631191788243 +3744,3,-11.067283592869645 +3745,3,-9.868859281590524 +3746,3,-10.028648563434928 +3747,3,-10.915726641231684 +3748,3,-10.321754378247007 +3749,3,-10.779954644003746 +3750,3,-9.780903508389557 +3751,3,-9.353224368244554 +3752,3,-8.554645204628043 +3753,3,-9.184932606418005 +3754,3,-9.335653334424814 +3755,3,-10.910760447742675 +3756,3,-12.799692579619279 +3757,3,-9.13147745100827 +3758,3,-10.493783174468463 +3759,3,-10.09662469163775 +3760,3,-11.627692232727917 +3761,3,-10.692117359696967 +3762,3,-14.436445234796567 +3763,3,-11.41717067387214 +3764,3,-14.027827184772399 +3765,3,-12.469625091896232 +3766,3,-11.956135926207747 +3767,3,-12.824133166460959 +3768,3,-8.428478594795632 +3769,3,-11.862180153020143 +3770,3,-10.767020408856379 +3771,3,-10.719811561689996 +3772,3,-9.312825646827573 +3773,3,-8.746055206979891 +3774,3,-9.516447759091923 +3775,3,-9.199165989285532 +3776,3,-11.825576233996207 +3777,3,-10.703127813078483 +3778,3,-9.9776536395868 +3779,3,-9.486592335614064 +3780,3,-9.71321729473526 +3781,3,-8.628580259547881 +3782,3,-9.44155814654659 +3783,3,-7.983511885976238 +3784,3,-9.450933334557048 +3785,3,-8.063547244828284 +3786,3,-9.910250918480937 +3787,3,-10.008088657891834 +3788,3,-9.352511520504178 +3789,3,-7.612646188949451 ** node loads on shape: Box5:Face6 -10,3,-0.0000000000000E+00 -12,3,-0.0000000000000E+00 -14,3,-0.0000000000000E+00 -16,3,-0.0000000000000E+00 -191,3,-0.0000000000000E+00 -192,3,-0.0000000000000E+00 -193,3,-0.0000000000000E+00 -194,3,-0.0000000000000E+00 -195,3,-3.9949845133413E+00 -196,3,-4.9560604147048E+00 -197,3,-6.5089699073333E+00 -198,3,-5.5368505793333E+00 -199,3,-6.1383049241667E+00 -237,3,-0.0000000000000E+00 -238,3,-0.0000000000000E+00 -239,3,-0.0000000000000E+00 -240,3,-0.0000000000000E+00 -241,3,-0.0000000000000E+00 -242,3,-0.0000000000000E+00 -243,3,-0.0000000000000E+00 -244,3,-0.0000000000000E+00 -245,3,-0.0000000000000E+00 -246,3,-3.6459246333894E+00 -247,3,-3.3567226563367E+00 -248,3,-5.8441224335633E+00 -249,3,-5.5074862266633E+00 -250,3,-4.5954479977633E+00 -251,3,-4.6057954351933E+00 -252,3,-5.0373687160700E+00 -253,3,-5.6609812504333E+00 -254,3,-4.0959939678564E+00 -255,3,-5.5694444444400E+00 -284,3,-0.0000000000000E+00 -285,3,-0.0000000000000E+00 -286,3,-0.0000000000000E+00 -287,3,-0.0000000000000E+00 -288,3,-0.0000000000000E+00 -289,3,-0.0000000000000E+00 -290,3,-0.0000000000000E+00 -291,3,-0.0000000000000E+00 -292,3,-0.0000000000000E+00 -293,3,-6.1383049242500E+00 -294,3,-4.5582572379167E+00 -295,3,-6.1581895986500E+00 -296,3,-4.6376668055333E+00 -297,3,-4.6962634140667E+00 -298,3,-5.9355663400667E+00 -299,3,-4.5608163792000E+00 -300,3,-5.1351503362049E+00 -301,3,-5.1351503363333E+00 -302,3,-5.5694444444500E+00 -303,3,-0.0000000000000E+00 -304,3,-0.0000000000000E+00 -305,3,-0.0000000000000E+00 -306,3,-0.0000000000000E+00 -307,3,-5.5694444446420E+00 -308,3,-4.4830729166555E+00 -309,3,-6.8073220533334E+00 -310,3,-4.3920199661667E+00 -311,3,-5.5694444445000E+00 -2470,3,-0.0000000000000E+00 -2471,3,-0.0000000000000E+00 -2472,3,-0.0000000000000E+00 -2473,3,-0.0000000000000E+00 -2474,3,-0.0000000000000E+00 -2475,3,-0.0000000000000E+00 -2476,3,-0.0000000000000E+00 -2477,3,-0.0000000000000E+00 -2478,3,-0.0000000000000E+00 -2479,3,-0.0000000000000E+00 -2480,3,-0.0000000000000E+00 -2481,3,-0.0000000000000E+00 -2482,3,-0.0000000000000E+00 -2483,3,-0.0000000000000E+00 -2484,3,-0.0000000000000E+00 -2485,3,-0.0000000000000E+00 -2486,3,-0.0000000000000E+00 -2487,3,-0.0000000000000E+00 -2488,3,-0.0000000000000E+00 -2489,3,-0.0000000000000E+00 -2490,3,-0.0000000000000E+00 -2491,3,-0.0000000000000E+00 -2492,3,-0.0000000000000E+00 -2493,3,-0.0000000000000E+00 -2494,3,-0.0000000000000E+00 -2495,3,-0.0000000000000E+00 -2496,3,-0.0000000000000E+00 -2497,3,-0.0000000000000E+00 -2498,3,-0.0000000000000E+00 -2499,3,-0.0000000000000E+00 -2500,3,-0.0000000000000E+00 -2501,3,-0.0000000000000E+00 -2502,3,-0.0000000000000E+00 -2503,3,-0.0000000000000E+00 -2504,3,-0.0000000000000E+00 -2505,3,-0.0000000000000E+00 -2506,3,-0.0000000000000E+00 -2507,3,-0.0000000000000E+00 -2508,3,-0.0000000000000E+00 -2509,3,-0.0000000000000E+00 -2510,3,-0.0000000000000E+00 -2511,3,-0.0000000000000E+00 -2512,3,-0.0000000000000E+00 -2513,3,-0.0000000000000E+00 -2514,3,-0.0000000000000E+00 -2515,3,-0.0000000000000E+00 -2516,3,-0.0000000000000E+00 -2517,3,-0.0000000000000E+00 -2518,3,-0.0000000000000E+00 -2519,3,-0.0000000000000E+00 -2520,3,-0.0000000000000E+00 -2521,3,-0.0000000000000E+00 -2522,3,-0.0000000000000E+00 -2523,3,-0.0000000000000E+00 -2524,3,-7.6409091467306E+00 -2525,3,-7.5866594849179E+00 -2526,3,-6.8141013522854E+00 -2527,3,-1.0956901604189E+01 -2528,3,-1.2276609848417E+01 -2529,3,-1.0073149462660E+01 -2530,3,-1.1138888889082E+01 -2531,3,-9.2323781777737E+00 -2532,3,-9.6514883538144E+00 -2533,3,-1.1150964530889E+01 -2534,3,-1.1138888888950E+01 -2535,3,-9.4464494155654E+00 -2536,3,-1.0158241489876E+01 -2537,3,-8.9897553785120E+00 -2538,3,-8.7938560467478E+00 -2539,3,-1.0614921226330E+01 -2540,3,-6.9184111118064E+00 -2541,3,-1.0542664871141E+01 -2542,3,-1.1068816115445E+01 -2543,3,-9.4092147654283E+00 -2544,3,-1.0096696787445E+01 -2545,3,-1.0355447259355E+01 -2546,3,-8.4456950229624E+00 -2547,3,-8.6653232152982E+00 -2548,3,-6.6193199278250E+00 -2549,3,-6.5248993752327E+00 -2550,3,-6.4949128591258E+00 -2551,3,-1.2916607578189E+01 -2552,3,-9.1067197050516E+00 -2553,3,-6.5919635254569E+00 -2554,3,-9.8797532791957E+00 -2555,3,-1.1964194875296E+01 -2556,3,-1.3529193793258E+01 -2557,3,-1.3133919222216E+01 -2558,3,-1.1034700963699E+01 -2559,3,-8.9259666613340E+00 -2560,3,-8.9677150502957E+00 -2561,3,-7.8465683620524E+00 -2562,3,-9.4123412786021E+00 -2563,3,-8.9363140987640E+00 -2564,3,-9.0538137436178E+00 -2565,3,-1.0879818089060E+01 -2566,3,-9.8439145594788E+00 -2567,3,-9.7589295829144E+00 -2568,3,-9.9459707374152E+00 -2569,3,-1.1503430623424E+01 -2570,3,-1.1229230513338E+01 -2571,3,-7.7589277011901E+00 -2572,3,-8.3809834548383E+00 -2573,3,-8.9119910423607E+00 -2574,3,-7.1373605869385E+00 -2575,3,-8.4931017763262E+00 -2576,3,-9.0271720649778E+00 -2577,3,-7.8488819086406E+00 -2578,3,-1.0627104425711E+01 -2579,3,-1.0581447971961E+01 -2580,3,-9.4312081002081E+00 -2581,3,-9.0609251788441E+00 -2582,3,-9.4323596478788E+00 -2583,3,-9.0554566374930E+00 -2584,3,-9.5767763240893E+00 -2585,3,-9.2495303432049E+00 -2586,3,-9.6752057523682E+00 -2587,3,-9.3585479072471E+00 -2588,3,-8.6770511444197E+00 -2589,3,-1.0488833269205E+01 -2590,3,-1.0979770267839E+01 -2591,3,-9.4797479771440E+00 -2592,3,-9.6050203069728E+00 -2593,3,-1.0333475997783E+01 -2594,3,-1.0053302370549E+01 -2595,3,-1.1531912158739E+01 -2596,3,-1.0270300672538E+01 -2597,3,-1.1358501704954E+01 -2598,3,-1.2169421441117E+01 -2599,3,-1.0573199190531E+01 -2600,3,-1.0716670422772E+01 -2601,3,-9.9171068751101E+00 -2602,3,-9.1810970311986E+00 -2603,3,-8.5651168258278E+00 -2604,3,-7.7757292678641E+00 -2605,3,-1.2213443708432E+01 -2606,3,-1.1505346167876E+01 -2607,3,-9.5069711776941E+00 -2608,3,-8.2690249372321E+00 -2609,3,-9.7981416212655E+00 -2610,3,-1.0869195895256E+01 -2611,3,-7.5197234520118E+00 -2612,3,-8.9048192522817E+00 -2613,3,-1.0322193232739E+01 -2614,3,-9.2642174448880E+00 -2615,3,-1.0920361004319E+01 -2616,3,-8.9208273387471E+00 -2617,3,-1.0570836768239E+01 -2618,3,-9.9695546801786E+00 -2619,3,-1.1776799392766E+01 -2620,3,-1.1914095932462E+01 -2621,3,-9.7680172807737E+00 -2622,3,-9.3336198799319E+00 -2623,3,-1.0164536899428E+01 -2624,3,-1.0103193443200E+01 -2625,3,-1.0567047111427E+01 -2626,3,-1.0594940529147E+01 -2627,3,-1.0974944213359E+01 -2628,3,-9.3542764336665E+00 -2629,3,-1.1829473067453E+01 -2630,3,-1.0901067118872E+01 -2631,3,-1.1046959171243E+01 -2632,3,-1.1785582668974E+01 -2633,3,-1.0783066623856E+01 -2634,3,-1.1728617674003E+01 -2635,3,-1.2941277113532E+01 -2636,3,-8.5120241566687E+00 -2637,3,-1.2906011426893E+01 -2638,3,-1.1797722097830E+01 -2639,3,-9.1057927211038E+00 -2640,3,-7.9783052696178E+00 -2641,3,-9.8220217922453E+00 -2642,3,-1.0035183517269E+01 -2643,3,-8.5071793385020E+00 -2644,3,-9.6472633742699E+00 -2645,3,-1.1765805073443E+01 -2646,3,-1.1851723337290E+01 -2647,3,-1.0442956861400E+01 -2648,3,-1.3300245558724E+01 -2649,3,-7.2958275236064E+00 -2650,3,-7.5573343713133E+00 -2651,3,-1.0925609314973E+01 -2652,3,-9.5719588779429E+00 -2653,3,-1.1043013758762E+01 -2654,3,-8.1331924561112E+00 -2655,3,-9.3642151880702E+00 -2656,3,-8.5770932811795E+00 -2657,3,-1.1260270327841E+01 -2658,3,-1.0126179302257E+01 -2659,3,-8.0302475361770E+00 -2660,3,-1.0228476060297E+01 -2661,3,-1.1229974137198E+01 -2662,3,-8.7740474373311E+00 -2663,3,-8.5808319258788E+00 -2664,3,-9.3502503497012E+00 -2665,3,-1.1331099470293E+01 -2666,3,-8.1671777878463E+00 -2667,3,-1.0709696695357E+01 -2668,3,-1.2472113201426E+01 -2669,3,-1.1424827312250E+01 -2670,3,-8.5026324218427E+00 -2671,3,-1.0151079235423E+01 -2672,3,-8.1014284089836E+00 -2673,3,-7.1681122122966E+00 -2674,3,-9.4045160452302E+00 -2675,3,-1.1974113711952E+01 -2676,3,-1.2024583501206E+01 -2677,3,-1.0674202988514E+01 -2678,3,-7.7607639055073E+00 -2679,3,-7.5890272616263E+00 -2680,3,-7.6281495412013E+00 -2681,3,-8.0152336969054E+00 -2682,3,-1.0096035550618E+01 -2683,3,-8.8377301566538E+00 -2684,3,-8.7067171801179E+00 -2685,3,-1.0139125244349E+01 -2686,3,-7.2703862641545E+00 -2687,3,-7.1266281410395E+00 -2688,3,-8.3756219115667E+00 -2689,3,-8.3740772697008E+00 -2690,3,-8.6446745818527E+00 -2691,3,-9.3761784131506E+00 -2692,3,-8.4251345543015E+00 -2693,3,-1.0961848156066E+01 -2694,3,-1.1418892088676E+01 -2695,3,-9.3475584221446E+00 -2696,3,-8.5680927261240E+00 -2697,3,-1.2495763496986E+01 -2698,3,-8.8763306433780E+00 -2699,3,-1.1847069570555E+01 -2700,3,-9.7636956733651E+00 -2701,3,-1.0788259952780E+01 -2702,3,-6.6561023941984E+00 -2703,3,-8.5145565662564E+00 -2704,3,-1.0091973008372E+01 -2705,3,-1.0806706931139E+01 -2706,3,-1.0781987047004E+01 -2707,3,-9.0514447149419E+00 -2708,3,-9.1536613822055E+00 -2709,3,-8.8562973594895E+00 -2710,3,-9.5049046836753E+00 -2711,3,-9.5106659530815E+00 -2712,3,-9.7397546125400E+00 +10,3,-0.0 +12,3,-0.0 +14,3,-0.0 +16,3,-0.0 +191,3,-0.0 +192,3,-0.0 +193,3,-0.0 +194,3,-0.0 +195,3,-3.9949845133412945 +196,3,-4.956060414704831 +197,3,-6.508969907333344 +198,3,-5.536850579333344 +199,3,-6.138304924166676 +237,3,-0.0 +238,3,-0.0 +239,3,-0.0 +240,3,-0.0 +241,3,-0.0 +242,3,-0.0 +243,3,-0.0 +244,3,-0.0 +245,3,-0.0 +246,3,-3.6459246333893525 +247,3,-3.356722656336667 +248,3,-5.844122433563334 +249,3,-5.507486226663335 +250,3,-4.595447997763334 +251,3,-4.605795435193334 +252,3,-5.0373687160700005 +253,3,-5.660981250433334 +254,3,-4.095993967856423 +255,3,-5.569444444440001 +284,3,-0.0 +285,3,-0.0 +286,3,-0.0 +287,3,-0.0 +288,3,-0.0 +289,3,-0.0 +290,3,-0.0 +291,3,-0.0 +292,3,-0.0 +293,3,-6.138304924250005 +294,3,-4.558257237916666 +295,3,-6.15818959865 +296,3,-4.637666805533332 +297,3,-4.696263414066667 +298,3,-5.935566340066669 +299,3,-4.560816379200004 +300,3,-5.135150336204939 +301,3,-5.135150336333335 +302,3,-5.56944444445 +303,3,-0.0 +304,3,-0.0 +305,3,-0.0 +306,3,-0.0 +307,3,-5.569444444642013 +308,3,-4.4830729166554875 +309,3,-6.807322053333363 +310,3,-4.392019966166672 +311,3,-5.569444444499989 +2470,3,-0.0 +2471,3,-0.0 +2472,3,-0.0 +2473,3,-0.0 +2474,3,-0.0 +2475,3,-0.0 +2476,3,-0.0 +2477,3,-0.0 +2478,3,-0.0 +2479,3,-0.0 +2480,3,-0.0 +2481,3,-0.0 +2482,3,-0.0 +2483,3,-0.0 +2484,3,-0.0 +2485,3,-0.0 +2486,3,-0.0 +2487,3,-0.0 +2488,3,-0.0 +2489,3,-0.0 +2490,3,-0.0 +2491,3,-0.0 +2492,3,-0.0 +2493,3,-0.0 +2494,3,-0.0 +2495,3,-0.0 +2496,3,-0.0 +2497,3,-0.0 +2498,3,-0.0 +2499,3,-0.0 +2500,3,-0.0 +2501,3,-0.0 +2502,3,-0.0 +2503,3,-0.0 +2504,3,-0.0 +2505,3,-0.0 +2506,3,-0.0 +2507,3,-0.0 +2508,3,-0.0 +2509,3,-0.0 +2510,3,-0.0 +2511,3,-0.0 +2512,3,-0.0 +2513,3,-0.0 +2514,3,-0.0 +2515,3,-0.0 +2516,3,-0.0 +2517,3,-0.0 +2518,3,-0.0 +2519,3,-0.0 +2520,3,-0.0 +2521,3,-0.0 +2522,3,-0.0 +2523,3,-0.0 +2524,3,-7.640909146730647 +2525,3,-7.5866594849179165 +2526,3,-6.814101352285365 +2527,3,-10.956901604188651 +2528,3,-12.276609848416681 +2529,3,-10.073149462659547 +2530,3,-11.138888889082015 +2531,3,-9.232378177773722 +2532,3,-9.65148835381436 +2533,3,-11.150964530888741 +2534,3,-11.138888888949989 +2535,3,-9.446449415565393 +2536,3,-10.15824148987601 +2537,3,-8.989755378511994 +2538,3,-8.793856046747798 +2539,3,-10.614921226329923 +2540,3,-6.91841111180643 +2541,3,-10.542664871140508 +2542,3,-11.068816115444553 +2543,3,-9.409214765428297 +2544,3,-10.096696787444552 +2545,3,-10.35544725935532 +2546,3,-8.44569502296241 +2547,3,-8.665323215298223 +2548,3,-6.619319927824972 +2549,3,-6.524899375232679 +2550,3,-6.49491285912582 +2551,3,-12.916607578189275 +2552,3,-9.10671970505164 +2553,3,-6.591963525456937 +2554,3,-9.879753279195725 +2555,3,-11.964194875295886 +2556,3,-13.529193793258491 +2557,3,-13.13391922221554 +2558,3,-11.034700963698793 +2559,3,-8.925966661333984 +2560,3,-8.967715050295725 +2561,3,-7.846568362052352 +2562,3,-9.412341278602087 +2563,3,-8.936314098763983 +2564,3,-9.053813743617798 +2565,3,-10.8798180890603 +2566,3,-9.843914559478751 +2567,3,-9.75892958291437 +2568,3,-9.94597073741519 +2569,3,-11.503430623423634 +2570,3,-11.229230513337727 +2571,3,-7.758927701190143 +2572,3,-8.380983454838278 +2573,3,-8.911991042360683 +2574,3,-7.137360586938536 +2575,3,-8.493101776326208 +2576,3,-9.027172064977783 +2577,3,-7.848881908640585 +2578,3,-10.627104425711117 +2579,3,-10.581447971960804 +2580,3,-9.43120810020812 +2581,3,-9.060925178844137 +2582,3,-9.432359647878835 +2583,3,-9.055456637492975 +2584,3,-9.576776324089346 +2585,3,-9.24953034320492 +2586,3,-9.675205752368182 +2587,3,-9.35854790724709 +2588,3,-8.677051144419696 +2589,3,-10.488833269204923 +2590,3,-10.979770267839449 +2591,3,-9.479747977144028 +2592,3,-9.605020306972781 +2593,3,-10.333475997782859 +2594,3,-10.05330237054942 +2595,3,-11.531912158738969 +2596,3,-10.270300672538275 +2597,3,-11.358501704953666 +2598,3,-12.169421441116885 +2599,3,-10.573199190531295 +2600,3,-10.716670422772074 +2601,3,-9.917106875110145 +2602,3,-9.1810970311986 +2603,3,-8.565116825827834 +2604,3,-7.775729267864086 +2605,3,-12.213443708432202 +2606,3,-11.505346167876478 +2607,3,-9.50697117769411 +2608,3,-8.269024937232077 +2609,3,-9.798141621265511 +2610,3,-10.869195895256246 +2611,3,-7.519723452011768 +2612,3,-8.90481925228171 +2613,3,-10.32219323273923 +2614,3,-9.26421744488802 +2615,3,-10.920361004319366 +2616,3,-8.920827338747074 +2617,3,-10.570836768239102 +2618,3,-9.969554680178556 +2619,3,-11.7767993927657 +2620,3,-11.914095932461985 +2621,3,-9.76801728077368 +2622,3,-9.33361987993187 +2623,3,-10.164536899428215 +2624,3,-10.103193443200418 +2625,3,-10.567047111427323 +2626,3,-10.594940529147452 +2627,3,-10.974944213358667 +2628,3,-9.354276433666485 +2629,3,-11.82947306745315 +2630,3,-10.901067118872076 +2631,3,-11.046959171242829 +2632,3,-11.785582668974158 +2633,3,-10.783066623855959 +2634,3,-11.728617674002598 +2635,3,-12.941277113531685 +2636,3,-8.51202415666867 +2637,3,-12.906011426892567 +2638,3,-11.797722097830398 +2639,3,-9.105792721103771 +2640,3,-7.978305269617769 +2641,3,-9.822021792245335 +2642,3,-10.035183517268768 +2643,3,-8.507179338502032 +2644,3,-9.647263374269865 +2645,3,-11.765805073442788 +2646,3,-11.85172333729031 +2647,3,-10.442956861399628 +2648,3,-13.300245558723615 +2649,3,-7.295827523606397 +2650,3,-7.557334371313326 +2651,3,-10.925609314972695 +2652,3,-9.571958877942913 +2653,3,-11.04301375876248 +2654,3,-8.133192456111216 +2655,3,-9.364215188070242 +2656,3,-8.577093281179499 +2657,3,-11.26027032784115 +2658,3,-10.126179302257363 +2659,3,-8.030247536176951 +2660,3,-10.22847606029747 +2661,3,-11.229974137197532 +2662,3,-8.774047437331058 +2663,3,-8.58083192587876 +2664,3,-9.350250349701158 +2665,3,-11.331099470292918 +2666,3,-8.167177787846306 +2667,3,-10.709696695356959 +2668,3,-12.472113201425536 +2669,3,-11.424827312249677 +2670,3,-8.502632421842735 +2671,3,-10.151079235422541 +2672,3,-8.101428408983644 +2673,3,-7.168112212296554 +2674,3,-9.404516045230187 +2675,3,-11.974113711952159 +2676,3,-12.024583501206374 +2677,3,-10.674202988513743 +2678,3,-7.760763905507292 +2679,3,-7.589027261626324 +2680,3,-7.628149541201277 +2681,3,-8.015233696905414 +2682,3,-10.096035550617623 +2683,3,-8.837730156653812 +2684,3,-8.706717180117924 +2685,3,-10.13912524434878 +2686,3,-7.270386264154539 +2687,3,-7.126628141039494 +2688,3,-8.37562191156668 +2689,3,-8.37407726970082 +2690,3,-8.644674581852701 +2691,3,-9.376178413150624 +2692,3,-8.425134554301504 +2693,3,-10.961848156065557 +2694,3,-11.418892088676385 +2695,3,-9.34755842214456 +2696,3,-8.568092726124016 +2697,3,-12.495763496986035 +2698,3,-8.876330643378047 +2699,3,-11.84706957055518 +2700,3,-9.763695673365065 +2701,3,-10.78825995277988 +2702,3,-6.656102394198439 +2703,3,-8.514556566256365 +2704,3,-10.091973008371912 +2705,3,-10.806706931138866 +2706,3,-10.781987047004138 +2707,3,-9.051444714941942 +2708,3,-9.153661382205529 +2709,3,-8.856297359489488 +2710,3,-9.504904683675345 +2711,3,-9.510665953081494 +2712,3,-9.739754612539963 @@ -29191,8 +29191,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.19.21802 +11 (Git) -** written on --> Fri Jul 3 22:09:27 2020 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:32:06 2023 ** file name --> ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fivefaces.inp b/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fivefaces.inp index 2f4da096c8..ef2771016c 100644 --- a/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fivefaces.inp +++ b/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fivefaces.inp @@ -2569,119 +2569,119 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: Face1:Edge4 -9,2,-3.3333333333333E+01 -11,2,-3.3333333333333E+01 -118,2,-6.6666666666667E+01 -119,2,-6.6666666666667E+01 -120,2,-6.6666666666667E+01 -121,2,-6.6666666666667E+01 -122,2,-6.6666666666667E+01 -123,2,-6.6666666666667E+01 -124,2,-6.6666666666667E+01 -125,2,-6.6666666666667E+01 -126,2,-6.6666666666667E+01 -472,2,-1.3333333333333E+02 -473,2,-1.3333333333333E+02 -474,2,-1.3333333333333E+02 -475,2,-1.3333333333333E+02 -476,2,-1.3333333333333E+02 -477,2,-1.3333333333333E+02 -478,2,-1.3333333333333E+02 -479,2,-1.3333333333333E+02 -480,2,-1.3333333333333E+02 -481,2,-1.3333333333333E+02 +9,2,-33.33333333333333 +11,2,-33.33333333333333 +118,2,-66.66666666666666 +119,2,-66.66666666666666 +120,2,-66.66666666666666 +121,2,-66.66666666666666 +122,2,-66.66666666666666 +123,2,-66.66666666666666 +124,2,-66.66666666666666 +125,2,-66.66666666666666 +126,2,-66.66666666666666 +472,2,-133.33333333333331 +473,2,-133.33333333333331 +474,2,-133.33333333333331 +475,2,-133.33333333333331 +476,2,-133.33333333333331 +477,2,-133.33333333333331 +478,2,-133.33333333333331 +479,2,-133.33333333333331 +480,2,-133.33333333333331 +481,2,-133.33333333333331 ** node loads on shape: Face2:Edge4 -7,2,-3.3333333333333E+01 -9,2,-3.3333333333333E+01 -96,2,-6.6666666666667E+01 -97,2,-6.6666666666667E+01 -98,2,-6.6666666666667E+01 -99,2,-6.6666666666667E+01 -100,2,-6.6666666666667E+01 -101,2,-6.6666666666667E+01 -102,2,-6.6666666666667E+01 -103,2,-6.6666666666667E+01 -104,2,-6.6666666666667E+01 -447,2,-1.3333333333333E+02 -448,2,-1.3333333333333E+02 -449,2,-1.3333333333333E+02 -450,2,-1.3333333333333E+02 -451,2,-1.3333333333333E+02 -452,2,-1.3333333333333E+02 -453,2,-1.3333333333333E+02 -454,2,-1.3333333333333E+02 -455,2,-1.3333333333333E+02 -456,2,-1.3333333333333E+02 +7,2,-33.33333333333333 +9,2,-33.33333333333333 +96,2,-66.66666666666666 +97,2,-66.66666666666666 +98,2,-66.66666666666666 +99,2,-66.66666666666666 +100,2,-66.66666666666666 +101,2,-66.66666666666666 +102,2,-66.66666666666666 +103,2,-66.66666666666666 +104,2,-66.66666666666666 +447,2,-133.33333333333331 +448,2,-133.33333333333331 +449,2,-133.33333333333331 +450,2,-133.33333333333331 +451,2,-133.33333333333331 +452,2,-133.33333333333331 +453,2,-133.33333333333331 +454,2,-133.33333333333331 +455,2,-133.33333333333331 +456,2,-133.33333333333331 ** node loads on shape: Face3:Edge4 -5,2,-3.3333333333333E+01 -7,2,-3.3333333333333E+01 -74,2,-6.6666666666667E+01 -75,2,-6.6666666666667E+01 -76,2,-6.6666666666667E+01 -77,2,-6.6666666666667E+01 -78,2,-6.6666666666667E+01 -79,2,-6.6666666666667E+01 -80,2,-6.6666666666667E+01 -81,2,-6.6666666666667E+01 -82,2,-6.6666666666667E+01 -422,2,-1.3333333333333E+02 -423,2,-1.3333333333333E+02 -424,2,-1.3333333333333E+02 -425,2,-1.3333333333333E+02 -426,2,-1.3333333333333E+02 -427,2,-1.3333333333333E+02 -428,2,-1.3333333333333E+02 -429,2,-1.3333333333333E+02 -430,2,-1.3333333333333E+02 -431,2,-1.3333333333333E+02 +5,2,-33.33333333333333 +7,2,-33.33333333333333 +74,2,-66.66666666666666 +75,2,-66.66666666666666 +76,2,-66.66666666666666 +77,2,-66.66666666666666 +78,2,-66.66666666666666 +79,2,-66.66666666666666 +80,2,-66.66666666666666 +81,2,-66.66666666666666 +82,2,-66.66666666666666 +422,2,-133.33333333333331 +423,2,-133.33333333333331 +424,2,-133.33333333333331 +425,2,-133.33333333333331 +426,2,-133.33333333333331 +427,2,-133.33333333333331 +428,2,-133.33333333333331 +429,2,-133.33333333333331 +430,2,-133.33333333333331 +431,2,-133.33333333333331 ** node loads on shape: Face4:Edge4 -3,2,-3.3333333333333E+01 -5,2,-3.3333333333333E+01 -52,2,-6.6666666666667E+01 -53,2,-6.6666666666667E+01 -54,2,-6.6666666666667E+01 -55,2,-6.6666666666667E+01 -56,2,-6.6666666666667E+01 -57,2,-6.6666666666667E+01 -58,2,-6.6666666666667E+01 -59,2,-6.6666666666667E+01 -60,2,-6.6666666666667E+01 -397,2,-1.3333333333333E+02 -398,2,-1.3333333333333E+02 -399,2,-1.3333333333333E+02 -400,2,-1.3333333333333E+02 -401,2,-1.3333333333333E+02 -402,2,-1.3333333333333E+02 -403,2,-1.3333333333333E+02 -404,2,-1.3333333333333E+02 -405,2,-1.3333333333333E+02 -406,2,-1.3333333333333E+02 +3,2,-33.33333333333333 +5,2,-33.33333333333333 +52,2,-66.66666666666666 +53,2,-66.66666666666666 +54,2,-66.66666666666666 +55,2,-66.66666666666666 +56,2,-66.66666666666666 +57,2,-66.66666666666666 +58,2,-66.66666666666666 +59,2,-66.66666666666666 +60,2,-66.66666666666666 +397,2,-133.33333333333331 +398,2,-133.33333333333331 +399,2,-133.33333333333331 +400,2,-133.33333333333331 +401,2,-133.33333333333331 +402,2,-133.33333333333331 +403,2,-133.33333333333331 +404,2,-133.33333333333331 +405,2,-133.33333333333331 +406,2,-133.33333333333331 ** node loads on shape: Face5:Edge4 -1,2,-3.3333333333333E+01 -3,2,-3.3333333333333E+01 -26,2,-6.6666666666667E+01 -27,2,-6.6666666666667E+01 -28,2,-6.6666666666667E+01 -29,2,-6.6666666666667E+01 -30,2,-6.6666666666667E+01 -31,2,-6.6666666666667E+01 -32,2,-6.6666666666667E+01 -33,2,-6.6666666666667E+01 -34,2,-6.6666666666667E+01 -367,2,-1.3333333333333E+02 -368,2,-1.3333333333333E+02 -369,2,-1.3333333333333E+02 -370,2,-1.3333333333333E+02 -371,2,-1.3333333333333E+02 -372,2,-1.3333333333333E+02 -373,2,-1.3333333333333E+02 -374,2,-1.3333333333333E+02 -375,2,-1.3333333333333E+02 -376,2,-1.3333333333333E+02 +1,2,-33.33333333333333 +3,2,-33.33333333333333 +26,2,-66.66666666666666 +27,2,-66.66666666666666 +28,2,-66.66666666666666 +29,2,-66.66666666666666 +30,2,-66.66666666666666 +31,2,-66.66666666666666 +32,2,-66.66666666666666 +33,2,-66.66666666666666 +34,2,-66.66666666666666 +367,2,-133.33333333333331 +368,2,-133.33333333333331 +369,2,-133.33333333333331 +370,2,-133.33333333333331 +371,2,-133.33333333333331 +372,2,-133.33333333333331 +373,2,-133.33333333333331 +374,2,-133.33333333333331 +375,2,-133.33333333333331 +376,2,-133.33333333333331 @@ -2702,8 +2702,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.19.21802 +11 (Git) -** written on --> Sat Jul 4 00:18:53 2020 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:33:12 2023 ** file name --> ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_edgeforces.inp b/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_edgeforces.inp index c16882fd25..231b0c9d5c 100644 --- a/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_edgeforces.inp +++ b/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_edgeforces.inp @@ -2581,70 +2581,70 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce1 ** node loads on shape: SquareTube:Edge9 -1,1,2.7777777777778E+03 -236,1,2.7777777777778E+03 -343,1,5.5555555555556E+03 -344,1,5.5555555555556E+03 -345,1,5.5555555555556E+03 -346,1,5.5555555555556E+03 -347,1,5.5555555555556E+03 -1376,1,1.1111111111111E+04 -1378,1,1.1111111111111E+04 -1380,1,1.1111111111111E+04 -1383,1,1.1111111111111E+04 -1386,1,1.1111111111111E+04 -1390,1,1.1111111111111E+04 +1,1,2777.7777777777783 +236,1,2777.7777777777783 +343,1,5555.555555555557 +344,1,5555.555555555557 +345,1,5555.555555555557 +346,1,5555.555555555557 +347,1,5555.555555555557 +1376,1,11111.111111111113 +1378,1,11111.111111111113 +1380,1,11111.111111111113 +1383,1,11111.111111111113 +1386,1,11111.111111111113 +1390,1,11111.111111111113 ** ConstraintForce2 ** node loads on shape: SquareTube:Edge3 -2,1,-2.7777777777778E+03 -129,1,-2.7777777777778E+03 -131,1,-5.5555555555556E+03 -132,1,-5.5555555555556E+03 -133,1,-5.5555555555556E+03 -134,1,-5.5555555555556E+03 -135,1,-5.5555555555556E+03 -758,1,-1.1111111111111E+04 -762,1,-1.1111111111111E+04 -764,1,-1.1111111111111E+04 -766,1,-1.1111111111111E+04 -769,1,-1.1111111111111E+04 -772,1,-1.1111111111111E+04 +2,1,-2777.7777777777783 +129,1,-2777.7777777777783 +131,1,-5555.555555555557 +132,1,-5555.555555555557 +133,1,-5555.555555555557 +134,1,-5555.555555555557 +135,1,-5555.555555555557 +758,1,-11111.111111111113 +762,1,-11111.111111111113 +764,1,-11111.111111111113 +766,1,-11111.111111111113 +769,1,-11111.111111111113 +772,1,-11111.111111111113 ** ConstraintForce3 ** node loads on shape: SquareTube:Edge11 -1,2,2.7777777777778E+03 -2,2,2.7777777777778E+03 -5,2,5.5555555555556E+03 -6,2,5.5555555555556E+03 -7,2,5.5555555555556E+03 -8,2,5.5555555555556E+03 -9,2,5.5555555555556E+03 -429,2,1.1111111111111E+04 -431,2,1.1111111111111E+04 -437,2,1.1111111111111E+04 -440,2,1.1111111111111E+04 -443,2,1.1111111111111E+04 -446,2,1.1111111111111E+04 +1,2,2777.7777777777783 +2,2,2777.7777777777783 +5,2,5555.555555555557 +6,2,5555.555555555557 +7,2,5555.555555555557 +8,2,5555.555555555557 +9,2,5555.555555555557 +429,2,11111.111111111113 +431,2,11111.111111111113 +437,2,11111.111111111113 +440,2,11111.111111111113 +443,2,11111.111111111113 +446,2,11111.111111111113 ** ConstraintForce4 ** node loads on shape: SquareTube:Edge6 -129,2,-2.7777777777778E+03 -236,2,-2.7777777777778E+03 -238,2,-5.5555555555556E+03 -239,2,-5.5555555555556E+03 -240,2,-5.5555555555556E+03 -241,2,-5.5555555555556E+03 -242,2,-5.5555555555556E+03 -1067,2,-1.1111111111111E+04 -1071,2,-1.1111111111111E+04 -1073,2,-1.1111111111111E+04 -1075,2,-1.1111111111111E+04 -1078,2,-1.1111111111111E+04 -1081,2,-1.1111111111111E+04 +129,2,-2777.7777777777783 +236,2,-2777.7777777777783 +238,2,-5555.555555555557 +239,2,-5555.555555555557 +240,2,-5555.555555555557 +241,2,-5555.555555555557 +242,2,-5555.555555555557 +1067,2,-11111.111111111113 +1071,2,-11111.111111111113 +1073,2,-11111.111111111113 +1075,2,-11111.111111111113 +1078,2,-11111.111111111113 +1081,2,-11111.111111111113 @@ -2665,8 +2665,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.19.21972 +18 (Git) -** written on --> Fri Jul 17 22:12:38 2020 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:35:14 2023 ** file name --> ** analysis name --> Analysis ** diff --git a/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_nodeforces.inp b/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_nodeforces.inp index e439f04309..88b31c354c 100644 --- a/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_nodeforces.inp +++ b/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_nodeforces.inp @@ -2581,182 +2581,182 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce1 ** node load on shape: Forces:Vertex1 -1,1,-2.7777800000000E+03 +1,1,-2777.78 ** node load on shape: Forces:Vertex14 -236,1,-2.7777800000000E+03 +236,1,-2777.78 ** ConstraintForce2 ** node load on shape: Forces:Vertex2 -2,1,2.7777800000000E+03 +2,1,2777.78 ** node load on shape: Forces:Vertex8 -129,1,2.7777800000000E+03 +129,1,2777.78 ** ConstraintForce3 ** node load on shape: Forces:Vertex20 -343,1,-5.5555560000000E+03 +343,1,-5555.556 ** node load on shape: Forces:Vertex21 -344,1,-5.5555560000000E+03 +344,1,-5555.556 ** node load on shape: Forces:Vertex22 -345,1,-5.5555560000000E+03 +345,1,-5555.556 ** node load on shape: Forces:Vertex23 -346,1,-5.5555560000000E+03 +346,1,-5555.556 ** node load on shape: Forces:Vertex24 -347,1,-5.5555560000000E+03 +347,1,-5555.556 ** ConstraintForce4 ** node load on shape: Forces:Vertex9 -131,1,5.5555560000000E+03 +131,1,5555.556 ** node load on shape: Forces:Vertex10 -132,1,5.5555560000000E+03 +132,1,5555.556 ** node load on shape: Forces:Vertex11 -133,1,5.5555560000000E+03 +133,1,5555.556 ** node load on shape: Forces:Vertex12 -134,1,5.5555560000000E+03 +134,1,5555.556 ** node load on shape: Forces:Vertex13 -135,1,5.5555560000000E+03 +135,1,5555.556 ** ConstraintForce5 ** node load on shape: Forces:Vertex43 -1376,1,-1.1111111666667E+04 +1376,1,-11111.111666666666 ** node load on shape: Forces:Vertex44 -1378,1,-1.1111111666667E+04 +1378,1,-11111.111666666666 ** node load on shape: Forces:Vertex45 -1380,1,-1.1111111666667E+04 +1380,1,-11111.111666666666 ** node load on shape: Forces:Vertex46 -1383,1,-1.1111111666667E+04 +1383,1,-11111.111666666666 ** node load on shape: Forces:Vertex47 -1386,1,-1.1111111666667E+04 +1386,1,-11111.111666666666 ** node load on shape: Forces:Vertex48 -1390,1,-1.1111111666667E+04 +1390,1,-11111.111666666666 ** ConstraintForce6 ** node load on shape: Forces:Vertex31 -758,1,1.1111111666667E+04 +758,1,11111.111666666666 ** node load on shape: Forces:Vertex32 -762,1,1.1111111666667E+04 +762,1,11111.111666666666 ** node load on shape: Forces:Vertex33 -764,1,1.1111111666667E+04 +764,1,11111.111666666666 ** node load on shape: Forces:Vertex34 -766,1,1.1111111666667E+04 +766,1,11111.111666666666 ** node load on shape: Forces:Vertex35 -769,1,1.1111111666667E+04 +769,1,11111.111666666666 ** node load on shape: Forces:Vertex36 -772,1,1.1111111666667E+04 +772,1,11111.111666666666 ** ConstraintForce7 ** node load on shape: Forces:Vertex1 -1,2,-2.7777800000000E+03 +1,2,-2777.78 ** node load on shape: Forces:Vertex2 -2,2,-2.7777800000000E+03 +2,2,-2777.78 ** ConstraintForce8 ** node load on shape: Forces:Vertex8 -129,2,2.7777800000000E+03 +129,2,2777.78 ** node load on shape: Forces:Vertex14 -236,2,2.7777800000000E+03 +236,2,2777.78 ** ConstraintForce9 ** node load on shape: Forces:Vertex3 -5,2,-5.5555560000000E+03 +5,2,-5555.556 ** node load on shape: Forces:Vertex4 -6,2,-5.5555560000000E+03 +6,2,-5555.556 ** node load on shape: Forces:Vertex5 -7,2,-5.5555560000000E+03 +7,2,-5555.556 ** node load on shape: Forces:Vertex6 -8,2,-5.5555560000000E+03 +8,2,-5555.556 ** node load on shape: Forces:Vertex7 -9,2,-5.5555560000000E+03 +9,2,-5555.556 ** ConstraintForce10 ** node load on shape: Forces:Vertex15 -238,2,5.5555560000000E+03 +238,2,5555.556 ** node load on shape: Forces:Vertex16 -239,2,5.5555560000000E+03 +239,2,5555.556 ** node load on shape: Forces:Vertex17 -240,2,5.5555560000000E+03 +240,2,5555.556 ** node load on shape: Forces:Vertex18 -241,2,5.5555560000000E+03 +241,2,5555.556 ** node load on shape: Forces:Vertex19 -242,2,5.5555560000000E+03 +242,2,5555.556 ** ConstraintForce11 ** node load on shape: Forces:Vertex25 -429,2,-1.1111111666667E+04 +429,2,-11111.111666666666 ** node load on shape: Forces:Vertex26 -431,2,-1.1111111666667E+04 +431,2,-11111.111666666666 ** node load on shape: Forces:Vertex27 -437,2,-1.1111111666667E+04 +437,2,-11111.111666666666 ** node load on shape: Forces:Vertex28 -440,2,-1.1111111666667E+04 +440,2,-11111.111666666666 ** node load on shape: Forces:Vertex29 -443,2,-1.1111111666667E+04 +443,2,-11111.111666666666 ** node load on shape: Forces:Vertex30 -446,2,-1.1111111666667E+04 +446,2,-11111.111666666666 ** ConstraintForce12 ** node load on shape: Forces:Vertex37 -1067,2,1.1111111666667E+04 +1067,2,11111.111666666666 ** node load on shape: Forces:Vertex38 -1071,2,1.1111111666667E+04 +1071,2,11111.111666666666 ** node load on shape: Forces:Vertex39 -1073,2,1.1111111666667E+04 +1073,2,11111.111666666666 ** node load on shape: Forces:Vertex40 -1075,2,1.1111111666667E+04 +1075,2,11111.111666666666 ** node load on shape: Forces:Vertex41 -1078,2,1.1111111666667E+04 +1078,2,11111.111666666666 ** node load on shape: Forces:Vertex42 -1081,2,1.1111111666667E+04 +1081,2,11111.111666666666 @@ -2777,8 +2777,8 @@ RF *********************************************************** ** CalculiX Input file -** written by --> FreeCAD 0.19.21972 +18 (Git) -** written on --> Fri Jul 17 22:14:04 2020 +** written by --> FreeCAD 0.21.0 +** written on --> Tue Mar 28 05:36:19 2023 ** file name --> ** analysis name --> Analysis **