diff --git a/MetaVoxel_Tutorial.ipynb b/MetaVoxel_Tutorial.ipynb index 04d84968d841d86e869a68d7565d3c2a7044566a..e88aca7639690b92c2867d5aea8c5b69ff9293bb 100644 --- a/MetaVoxel_Tutorial.ipynb +++ b/MetaVoxel_Tutorial.ipynb @@ -28,7 +28,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -42,9 +42,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "axialStrain (generic function with 1 method)" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "include(\"./julia/include/vector.jl\") #utils for vectors and quaternions\n", "include(\"./julia/include/material.jl\") #utils for node and edge material\n", @@ -58,9 +69,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "\"tutorial\"" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "name= \"tutorial\" # set name for simulation" ] @@ -76,7 +98,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### 1.a. Import lines from Rhino (.3dm)" + "### 1.a. Option 1: Import lines from Rhino (.3dm)" ] }, { @@ -118,7 +140,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### 1.b Draw Lattice" + "### 1.b Option 2: Draw Cuboct/Hierachical Lattice" ] }, { @@ -159,25 +181,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### 1.c. Fill mesh with voxels (wip)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], - "source": [ - "# rhino=false\n", - "# rhinoFileName= \"./trial.stl\"\n", - "# voxelSize=5.0" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### 1.c. Draw from voxel list" + "### 1.c. Option 3: Draw from voxel list" ] }, { @@ -197,7 +201,42 @@ } ], "source": [ - "setup[\"useVoxelList\"]=false\n" + "voxelSize=0.001\n", + "latticeSizeX=1\n", + "latticeSizeY=1\n", + "latticeSizeZ=1\n", + "\n", + "gridSize=10\n", + "\n", + "setup[\"rhino\"]=false;\n", + "setup[\"useVoxelList\"]=true;\n", + "\n", + "#//allowed x, yand z are from -gridSize to +gridSize (floor is at 0)\n", + "setup[\"voxelList\"]=[\n", + " [[0,3,0],material1],# will explain materials next section\n", + " [[0,3,1],material1],# \n", + " [[0,3,2],material1],# \n", + " [[0,3,3],material1],# \n", + " [[0,3,4],material1],# \n", + "]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 1.d. Option 4: Fill mesh with voxels (wip)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# rhino=false\n", + "# rhinoFileName= \"./trial.stl\"\n", + "# voxelSize=5.0" ] }, { @@ -476,9 +515,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 188, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "axialStrain (generic function with 1 method)" + ] + }, + "execution_count": 188, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# alternativly you can get a saved setup from an external julia file\n", "# include(\"./julia/examples/thermalTest.jl\") #template for multimaterial hierarchical voxels with different thermal coefficient of thermal expansion \n", @@ -489,8 +539,9 @@ "# include(\"./julia/examples/rhinoTestChiral.jl\") #template for importing chiral array\n", "# include(\"./julia/examples/rover.jl\") #template for importing chiral array\n", "# include(\"./julia/examples/wing.jl\") #template for importing chiral array\n", - "include(\"./julia/examples/walkingRobot.jl\") #template for importing chiral array\n", + "# include(\"./julia/examples/walkingRobot.jl\") #template for importing chiral array\n", "# include(\"./julia/examples/voxelDesigner.jl\") #template for importing chiral array\n", + "include(\"./julia/examples/puppy.jl\") #template for importing chiral array\n", "\n", "\n", "\n", @@ -503,9 +554,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 189, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Loaded rhino3dm.\n", + "Success!\n" + ] + }, + { + "data": { + "text/plain": [ + "Process(`\u001b[4mnode\u001b[24m \u001b[4mapp1.js\u001b[24m \u001b[4mtutorial\u001b[24m`, ProcessExited(0))" + ] + }, + "execution_count": 189, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "#export prev. settings to json\n", "fileName=\"./json/$(name)Init.json\"\n", @@ -529,65 +599,24 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "folderPath=\"./json/tutorial/\" # make sure this folder exists\n", - "# folderPath=\"./json/multiscale/\" # make sure this folder exists\n", - "\n", - "setupSim=getSetup(name);\n", - "runMetavoxelGPULive!(setupSim,folderPath)" - ] - }, - { - "cell_type": "code", - "execution_count": 70, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "axialStrain (generic function with 1 method)" - ] - }, - "execution_count": 70, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "include(\"./julia/include/vector.jl\") #utils for vectors and quaternions\n", - "include(\"./julia/include/material.jl\") #utils for node and edge material\n", - "include(\"./julia/include/export.jl\") #export simulation data to json\n", - "include(\"./julia/include/run.jl\") #turn setup to cuda arrays and run simulation\n", - "include(\"./julia/include/updateEdges.jl\") #edges properties update\n", - "include(\"./julia/include/externalForces.jl\") #external forces applied to the system\n", - "include(\"./julia/include/forces.jl\") #force integration\n", - "include(\"./julia/include/updateNodes.jl\") #nodes properties update" - ] - }, - { - "cell_type": "code", - "execution_count": 71, + "execution_count": 190, "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "\"multiscale\"" - ] - }, - "execution_count": 71, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "dt: 1.0065842913007908e-6, s: 0.001, mass: 4.0e-7, momentInertiaInverse: 3.75e12\n", + "first timestep took 5.2358389 seconds\n", + "ran 196 nodes and 412 edges for 150000 time steps took 73.629313 seconds\n" + ] } ], "source": [ - "# name=\"couponHex\"\n", - "# name=\"coupon\"\n", - "# name=\"tutorial\"\n", - "name=\"multiscale\"" + "folderPath=\"./json/tutorial/\" # make sure this folder exists\n", + "name=\"tutorial\"\n", + "setupSim=getSetup(name);\n", + "runMetavoxelGPULive!(setupSim,folderPath)" ] }, { diff --git a/demos/indexTutorialGraph.html b/demos/indexTutorialGraph.html index 0670226e8e4cacc98f97729ae05143b6f16ba7a9..c5b1fd637d4af4f44a062e2deacb6eecbe8be417 100644 --- a/demos/indexTutorialGraph.html +++ b/demos/indexTutorialGraph.html @@ -32,7 +32,7 @@ var interaction= { exaggeration:1, - speed:100 + speed:200 } var gui = new dat.GUI(); @@ -281,10 +281,14 @@ var helper = new THREE.GridHelper( 100, 100 ); helper.position.y = -setup.voxelSize/2.0*scale; - // helper.position.y = -setup.voxelSize/2.0*scale +2*setup.voxelSize*scale; + helper.position.y = -setup.voxelSize/2.0*scale +2*setup.voxelSize*scale; if (setup.hierarchical){ helper.position.y=setup.voxelSize*scale*(1.2 -0.1) } + + helper.position.y=10000*setup.voxelSize*scale + console.log(helper.position.y) + helper.material.opacity = 0.4; helper.material.transparent = true; helper.scale.x=2.0*scale diff --git a/json/multiscale.json b/json/multiscale.json index e32fd4a4a38adac72a6a256646360d62d1eb93fc..53c95386b7322465ea7df2c5ca1bb9b716d67506 100644 --- a/json/multiscale.json +++ b/json/multiscale.json @@ -1,621 +1,12462 @@ -{ - "setup": { - "materials": [], - "poisson": false, - "scale": 10000, - "ndofs": 408, - "supports": [ - - ], - "thermal": false, - "loads": [], - "edges": [ - { - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "source": 0, - "id": "e0", - "stress": 0.0, - "target": 1, - "multiscale":true, - "sourceNodalCoordinate": 5, - "targetNodalCoordinate": 0 - }, - { - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "source": 0, - "id": "e1", - "stress": 0.0, - "target": 2, - "multiscale":true, - "sourceNodalCoordinate": 7, - "targetNodalCoordinate": 0 - } - ], - "maxNumFiles": 50, - "voxelSize": 0.001, - "fixedDisplacements": [], - "numTimeSteps": 100, - "linear": true, - "animation": { - "exaggeration": 1, - "speed": 3, - "showDisplacement": false - }, - "nodes": [ - { - "parent": "", - "scale": 2, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n0", - "position": { - "x": 0.0005, - "z": 0.0005, - "y": 0.0005 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n1", - "position": { - "x": 0.002, - "z": 0.0, - "y": 0.0 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n2", - "position": { - "x": 0.002, - "z": 0.0, - "y": 0.001 - }, - "force": { - "x": 0.05, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "n0", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n1", - "position": { - "x": 0.0, - "z": 0.0, - "y": 0.0 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "n0", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n5", - "position": { - "x": 0.001, - "z": 0.0, - "y": 0.0 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "n0", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n7", - "position": { - "x": 0.001, - "z": 0.0, - "y": 0.001 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "n0", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n3", - "position": { - "x": 0.0, - "z": 0.0, - "y": 0.001 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "n0", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n2", - "position": { - "x": 0.0, - "z": 0.001, - "y": 0.0 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "n0", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n4", - "position": { - "x": 0.0, - "z": 0.001, - "y": 0.001 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "n0", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n8", - "position": { - "x": 0.001, - "z": 0.001, - "y": 0.001 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - }, - { - "parent": "n0", - "scale": 1, - "multiscale":true, - "nomSize": 1, - "angle": { - "x": 0, - "z": 0, - "y": 0 - }, - "degrees_of_freedom": "", - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 50, - "area": 0.000001, - "stiffness": 500000 - }, - "id": "n6", - "position": { - "x": 0.001, - "z": 0.001, - "y": 0.0 - }, - "force": { - "x": 0, - "z": 0, - "y": 0 - }, - "angTimeSteps": [], - "fixedDisplacement": { - "x": 0, - "z": 0, - "y": 0 - }, - "posTimeSteps": [], - "restrained_degrees_of_freedom": [ - false, - false, - false, - true, - true, - true - ], - "displacement": { - "x": 0, - "z": 0, - "y": 0 - } - } - - ], - "hierarchical": true, - "multiscale":true, - "viz": { - "colorMap": 0, - "exaggeration": 1, - "colorMaps": "", - "maxStress": 515151.5151515156, - "minStress": -139575.69872340412 - }, - "globalDamping": 0.15 - - } +{ + "setup": { + "nodes": [ + { + "id": "n0", + "parent": "11", + "degrees_of_freedom": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n1", + "parent": "11", + "degrees_of_freedom": [ + 6, + 7, + 8, + 9, + 10, + 11 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n2", + "parent": "11", + "degrees_of_freedom": [ + 12, + 13, + 14, + 15, + 16, + 17 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n3", + "parent": "11", + "degrees_of_freedom": [ + 18, + 19, + 20, + 21, + 22, + 23 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n4", + "parent": "11", + "degrees_of_freedom": [ + 24, + 25, + 26, + 27, + 28, + 29 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n5", + "parent": "11", + "degrees_of_freedom": [ + 30, + 31, + 32, + 33, + 34, + 35 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n6", + "parent": "11", + "degrees_of_freedom": [ + 36, + 37, + 38, + 39, + 40, + 41 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n7", + "parent": "11", + "degrees_of_freedom": [ + 42, + 43, + 44, + 45, + 46, + 47 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n8", + "parent": "11", + "degrees_of_freedom": [ + 48, + 49, + 50, + 51, + 52, + 53 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n9", + "parent": "11", + "degrees_of_freedom": [ + 54, + 55, + 56, + 57, + 58, + 59 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n10", + "parent": "11", + "degrees_of_freedom": [ + 60, + 61, + 62, + 63, + 64, + 65 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n11", + "parent": "11", + "degrees_of_freedom": [ + 66, + 67, + 68, + 69, + 70, + 71 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n12", + "parent": "11", + "degrees_of_freedom": [ + 72, + 73, + 74, + 75, + 76, + 77 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n13", + "parent": "11", + "degrees_of_freedom": [ + 78, + 79, + 80, + 81, + 82, + 83 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n14", + "parent": "11", + "degrees_of_freedom": [ + 84, + 85, + 86, + 87, + 88, + 89 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n15", + "parent": "11", + "degrees_of_freedom": [ + 90, + 91, + 92, + 93, + 94, + 95 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n16", + "parent": "11", + "degrees_of_freedom": [ + 96, + 97, + 98, + 99, + 100, + 101 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n17", + "parent": "11", + "degrees_of_freedom": [ + 102, + 103, + 104, + 105, + 106, + 107 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n18", + "parent": "11", + "degrees_of_freedom": [ + 108, + 109, + 110, + 111, + 112, + 113 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n19", + "parent": "11", + "degrees_of_freedom": [ + 114, + 115, + 116, + 117, + 118, + 119 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n20", + "parent": "11", + "degrees_of_freedom": [ + 120, + 121, + 122, + 123, + 124, + 125 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n21", + "parent": "11", + "degrees_of_freedom": [ + 126, + 127, + 128, + 129, + 130, + 131 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n22", + "parent": "11", + "degrees_of_freedom": [ + 132, + 133, + 134, + 135, + 136, + 137 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n23", + "parent": "11", + "degrees_of_freedom": [ + 138, + 139, + 140, + 141, + 142, + 143 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n24", + "parent": "11", + "degrees_of_freedom": [ + 144, + 145, + 146, + 147, + 148, + 149 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n25", + "parent": "11", + "degrees_of_freedom": [ + 150, + 151, + 152, + 153, + 154, + 155 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n26", + "parent": "11", + "degrees_of_freedom": [ + 156, + 157, + 158, + 159, + 160, + 161 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n27", + "parent": "11", + "degrees_of_freedom": [ + 162, + 163, + 164, + 165, + 166, + 167 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n28", + "parent": "11", + "degrees_of_freedom": [ + 168, + 169, + 170, + 171, + 172, + 173 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n29", + "parent": "11", + "degrees_of_freedom": [ + 174, + 175, + 176, + 177, + 178, + 179 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n30", + "parent": "11", + "degrees_of_freedom": [ + 180, + 181, + 182, + 183, + 184, + 185 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n31", + "parent": "11", + "degrees_of_freedom": [ + 186, + 187, + 188, + 189, + 190, + 191 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n32", + "parent": "11", + "degrees_of_freedom": [ + 192, + 193, + 194, + 195, + 196, + 197 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n33", + "parent": "11", + "degrees_of_freedom": [ + 198, + 199, + 200, + 201, + 202, + 203 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n34", + "parent": "11", + "degrees_of_freedom": [ + 204, + 205, + 206, + 207, + 208, + 209 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n35", + "parent": "11", + "degrees_of_freedom": [ + 210, + 211, + 212, + 213, + 214, + 215 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n36", + "parent": "11", + "degrees_of_freedom": [ + 216, + 217, + 218, + 219, + 220, + 221 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n37", + "parent": "11", + "degrees_of_freedom": [ + 222, + 223, + 224, + 225, + 226, + 227 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n38", + "parent": "11", + "degrees_of_freedom": [ + 228, + 229, + 230, + 231, + 232, + 233 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n39", + "parent": "11", + "degrees_of_freedom": [ + 234, + 235, + 236, + 237, + 238, + 239 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n40", + "parent": "11", + "degrees_of_freedom": [ + 240, + 241, + 242, + 243, + 244, + 245 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n41", + "parent": "11", + "degrees_of_freedom": [ + 246, + 247, + 248, + 249, + 250, + 251 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n42", + "parent": "11", + "degrees_of_freedom": [ + 252, + 253, + 254, + 255, + 256, + 257 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n43", + "parent": "11", + "degrees_of_freedom": [ + 258, + 259, + 260, + 261, + 262, + 263 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n44", + "parent": "11", + "degrees_of_freedom": [ + 264, + 265, + 266, + 267, + 268, + 269 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n45", + "parent": "11", + "degrees_of_freedom": [ + 270, + 271, + 272, + 273, + 274, + 275 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n46", + "parent": "11", + "degrees_of_freedom": [ + 276, + 277, + 278, + 279, + 280, + 281 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n47", + "parent": "11", + "degrees_of_freedom": [ + 282, + 283, + 284, + 285, + 286, + 287 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n48", + "parent": "11", + "degrees_of_freedom": [ + 288, + 289, + 290, + 291, + 292, + 293 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n49", + "parent": "11", + "degrees_of_freedom": [ + 294, + 295, + 296, + 297, + 298, + 299 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n50", + "parent": "11", + "degrees_of_freedom": [ + 300, + 301, + 302, + 303, + 304, + 305 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n51", + "parent": "11", + "degrees_of_freedom": [ + 306, + 307, + 308, + 309, + 310, + 311 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n52", + "parent": "11", + "degrees_of_freedom": [ + 312, + 313, + 314, + 315, + 316, + 317 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n53", + "parent": "11", + "degrees_of_freedom": [ + 318, + 319, + 320, + 321, + 322, + 323 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n54", + "parent": "11", + "degrees_of_freedom": [ + 324, + 325, + 326, + 327, + 328, + 329 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n55", + "parent": "11", + "degrees_of_freedom": [ + 330, + 331, + 332, + 333, + 334, + 335 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n56", + "parent": "11", + "degrees_of_freedom": [ + 336, + 337, + 338, + 339, + 340, + 341 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n57", + "parent": "11", + "degrees_of_freedom": [ + 342, + 343, + 344, + 345, + 346, + 347 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n58", + "parent": "11", + "degrees_of_freedom": [ + 348, + 349, + 350, + 351, + 352, + 353 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n59", + "parent": "11", + "degrees_of_freedom": [ + 354, + 355, + 356, + 357, + 358, + 359 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n60", + "parent": "11", + "degrees_of_freedom": [ + 360, + 361, + 362, + 363, + 364, + 365 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n61", + "parent": "11", + "degrees_of_freedom": [ + 366, + 367, + 368, + 369, + 370, + 371 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n62", + "parent": "11", + "degrees_of_freedom": [ + 372, + 373, + 374, + 375, + 376, + 377 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n63", + "parent": "11", + "degrees_of_freedom": [ + 378, + 379, + 380, + 381, + 382, + 383 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n64", + "parent": "11", + "degrees_of_freedom": [ + 384, + 385, + 386, + 387, + 388, + 389 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n65", + "parent": "11", + "degrees_of_freedom": [ + 390, + 391, + 392, + 393, + 394, + 395 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n66", + "parent": "11", + "degrees_of_freedom": [ + 396, + 397, + 398, + 399, + 400, + 401 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n67", + "parent": "11", + "degrees_of_freedom": [ + 402, + 403, + 404, + 405, + 406, + 407 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n68", + "parent": "11", + "degrees_of_freedom": [ + 408, + 409, + 410, + 411, + 412, + 413 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n69", + "parent": "11", + "degrees_of_freedom": [ + 414, + 415, + 416, + 417, + 418, + 419 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n70", + "parent": "11", + "degrees_of_freedom": [ + 420, + 421, + 422, + 423, + 424, + 425 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n71", + "parent": "11", + "degrees_of_freedom": [ + 426, + 427, + 428, + 429, + 430, + 431 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n72", + "parent": "11", + "degrees_of_freedom": [ + 432, + 433, + 434, + 435, + 436, + 437 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n73", + "parent": "11", + "degrees_of_freedom": [ + 438, + 439, + 440, + 441, + 442, + 443 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n74", + "parent": "11", + "degrees_of_freedom": [ + 444, + 445, + 446, + 447, + 448, + 449 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n75", + "parent": "11", + "degrees_of_freedom": [ + 450, + 451, + 452, + 453, + 454, + 455 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n76", + "parent": "11", + "degrees_of_freedom": [ + 456, + 457, + 458, + 459, + 460, + 461 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n77", + "parent": "11", + "degrees_of_freedom": [ + 462, + 463, + 464, + 465, + 466, + 467 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n78", + "parent": "11", + "degrees_of_freedom": [ + 468, + 469, + 470, + 471, + 472, + 473 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n79", + "parent": "11", + "degrees_of_freedom": [ + 474, + 475, + 476, + 477, + 478, + 479 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n80", + "parent": "11", + "degrees_of_freedom": [ + 480, + 481, + 482, + 483, + 484, + 485 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n81", + "parent": "11", + "degrees_of_freedom": [ + 486, + 487, + 488, + 489, + 490, + 491 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n82", + "parent": "11", + "degrees_of_freedom": [ + 492, + 493, + 494, + 495, + 496, + 497 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n83", + "parent": "11", + "degrees_of_freedom": [ + 498, + 499, + 500, + 501, + 502, + 503 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n84", + "parent": "11", + "degrees_of_freedom": [ + 504, + 505, + 506, + 507, + 508, + 509 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n85", + "parent": "11", + "degrees_of_freedom": [ + 510, + 511, + 512, + 513, + 514, + 515 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n86", + "parent": "11", + "degrees_of_freedom": [ + 516, + 517, + 518, + 519, + 520, + 521 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n87", + "parent": "11", + "degrees_of_freedom": [ + 522, + 523, + 524, + 525, + 526, + 527 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n88", + "parent": "11", + "degrees_of_freedom": [ + 528, + 529, + 530, + 531, + 532, + 533 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n89", + "parent": "11", + "degrees_of_freedom": [ + 534, + 535, + 536, + 537, + 538, + 539 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n90", + "parent": "11", + "degrees_of_freedom": [ + 540, + 541, + 542, + 543, + 544, + 545 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n91", + "parent": "11", + "degrees_of_freedom": [ + 546, + 547, + 548, + 549, + 550, + 551 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n92", + "parent": "11", + "degrees_of_freedom": [ + 552, + 553, + 554, + 555, + 556, + 557 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n93", + "parent": "11", + "degrees_of_freedom": [ + 558, + 559, + 560, + 561, + 562, + 563 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n94", + "parent": "11", + "degrees_of_freedom": [ + 564, + 565, + 566, + 567, + 568, + 569 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n95", + "parent": "11", + "degrees_of_freedom": [ + 570, + 571, + 572, + 573, + 574, + 575 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n96", + "parent": "11", + "degrees_of_freedom": [ + 576, + 577, + 578, + 579, + 580, + 581 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n97", + "parent": "11", + "degrees_of_freedom": [ + 582, + 583, + 584, + 585, + 586, + 587 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n98", + "parent": "11", + "degrees_of_freedom": [ + 588, + 589, + 590, + 591, + 592, + 593 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n99", + "parent": "11", + "degrees_of_freedom": [ + 594, + 595, + 596, + 597, + 598, + 599 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n100", + "parent": "11", + "degrees_of_freedom": [ + 600, + 601, + 602, + 603, + 604, + 605 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n101", + "parent": "11", + "degrees_of_freedom": [ + 606, + 607, + 608, + 609, + 610, + 611 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n102", + "parent": "11", + "degrees_of_freedom": [ + 612, + 613, + 614, + 615, + 616, + 617 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n103", + "parent": "11", + "degrees_of_freedom": [ + 618, + 619, + 620, + 621, + 622, + 623 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n104", + "parent": "11", + "degrees_of_freedom": [ + 624, + 625, + 626, + 627, + 628, + 629 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n105", + "parent": "11", + "degrees_of_freedom": [ + 630, + 631, + 632, + 633, + 634, + 635 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n106", + "parent": "11", + "degrees_of_freedom": [ + 636, + 637, + 638, + 639, + 640, + 641 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n107", + "parent": "11", + "degrees_of_freedom": [ + 642, + 643, + 644, + 645, + 646, + 647 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n108", + "parent": "11", + "degrees_of_freedom": [ + 648, + 649, + 650, + 651, + 652, + 653 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0055, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n109", + "parent": "11", + "degrees_of_freedom": [ + 654, + 655, + 656, + 657, + 658, + 659 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0055, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n110", + "parent": "11", + "degrees_of_freedom": [ + 660, + 661, + 662, + 663, + 664, + 665 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n111", + "parent": "11", + "degrees_of_freedom": [ + 666, + 667, + 668, + 669, + 670, + 671 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n112", + "parent": "11", + "degrees_of_freedom": [ + 672, + 673, + 674, + 675, + 676, + 677 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n113", + "parent": "11", + "degrees_of_freedom": [ + 678, + 679, + 680, + 681, + 682, + 683 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n114", + "parent": "11", + "degrees_of_freedom": [ + 684, + 685, + 686, + 687, + 688, + 689 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0055, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n115", + "parent": "11", + "degrees_of_freedom": [ + 690, + 691, + 692, + 693, + 694, + 695 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0055, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n116", + "parent": "11", + "degrees_of_freedom": [ + 696, + 697, + 698, + 699, + 700, + 701 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n117", + "parent": "11", + "degrees_of_freedom": [ + 702, + 703, + 704, + 705, + 706, + 707 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n118", + "parent": "11", + "degrees_of_freedom": [ + 708, + 709, + 710, + 711, + 712, + 713 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n119", + "parent": "11", + "degrees_of_freedom": [ + 714, + 715, + 716, + 717, + 718, + 719 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n120", + "parent": "11", + "degrees_of_freedom": [ + 720, + 721, + 722, + 723, + 724, + 725 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n121", + "parent": "11", + "degrees_of_freedom": [ + 726, + 727, + 728, + 729, + 730, + 731 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n122", + "parent": "11", + "degrees_of_freedom": [ + 732, + 733, + 734, + 735, + 736, + 737 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n123", + "parent": "11", + "degrees_of_freedom": [ + 738, + 739, + 740, + 741, + 742, + 743 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n124", + "parent": "11", + "degrees_of_freedom": [ + 744, + 745, + 746, + 747, + 748, + 749 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n125", + "parent": "11", + "degrees_of_freedom": [ + 750, + 751, + 752, + 753, + 754, + 755 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n126", + "parent": "11", + "degrees_of_freedom": [ + 756, + 757, + 758, + 759, + 760, + 761 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n127", + "parent": "11", + "degrees_of_freedom": [ + 762, + 763, + 764, + 765, + 766, + 767 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n128", + "parent": "11", + "degrees_of_freedom": [ + 768, + 769, + 770, + 771, + 772, + 773 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n129", + "parent": "11", + "degrees_of_freedom": [ + 774, + 775, + 776, + 777, + 778, + 779 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n130", + "parent": "11", + "degrees_of_freedom": [ + 780, + 781, + 782, + 783, + 784, + 785 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n131", + "parent": "11", + "degrees_of_freedom": [ + 786, + 787, + 788, + 789, + 790, + 791 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n132", + "parent": "11", + "degrees_of_freedom": [ + 792, + 793, + 794, + 795, + 796, + 797 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n133", + "parent": "11", + "degrees_of_freedom": [ + 798, + 799, + 800, + 801, + 802, + 803 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n134", + "parent": "11", + "degrees_of_freedom": [ + 804, + 805, + 806, + 807, + 808, + 809 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n135", + "parent": "11", + "degrees_of_freedom": [ + 810, + 811, + 812, + 813, + 814, + 815 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n136", + "parent": "11", + "degrees_of_freedom": [ + 816, + 817, + 818, + 819, + 820, + 821 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n137", + "parent": "11", + "degrees_of_freedom": [ + 822, + 823, + 824, + 825, + 826, + 827 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n138", + "parent": "11", + "degrees_of_freedom": [ + 828, + 829, + 830, + 831, + 832, + 833 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n139", + "parent": "11", + "degrees_of_freedom": [ + 834, + 835, + 836, + 837, + 838, + 839 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n140", + "parent": "11", + "degrees_of_freedom": [ + 840, + 841, + 842, + 843, + 844, + 845 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n141", + "parent": "11", + "degrees_of_freedom": [ + 846, + 847, + 848, + 849, + 850, + 851 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n142", + "parent": "11", + "degrees_of_freedom": [ + 852, + 853, + 854, + 855, + 856, + 857 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n143", + "parent": "11", + "degrees_of_freedom": [ + 858, + 859, + 860, + 861, + 862, + 863 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n144", + "parent": "11", + "degrees_of_freedom": [ + 864, + 865, + 866, + 867, + 868, + 869 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n145", + "parent": "11", + "degrees_of_freedom": [ + 870, + 871, + 872, + 873, + 874, + 875 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n146", + "parent": "11", + "degrees_of_freedom": [ + 876, + 877, + 878, + 879, + 880, + 881 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n147", + "parent": "11", + "degrees_of_freedom": [ + 882, + 883, + 884, + 885, + 886, + 887 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n148", + "parent": "11", + "degrees_of_freedom": [ + 888, + 889, + 890, + 891, + 892, + 893 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n149", + "parent": "11", + "degrees_of_freedom": [ + 894, + 895, + 896, + 897, + 898, + 899 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n150", + "parent": "11", + "degrees_of_freedom": [ + 900, + 901, + 902, + 903, + 904, + 905 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n151", + "parent": "11", + "degrees_of_freedom": [ + 906, + 907, + 908, + 909, + 910, + 911 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n152", + "parent": "11", + "degrees_of_freedom": [ + 912, + 913, + 914, + 915, + 916, + 917 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n153", + "parent": "11", + "degrees_of_freedom": [ + 918, + 919, + 920, + 921, + 922, + 923 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n154", + "parent": "11", + "degrees_of_freedom": [ + 924, + 925, + 926, + 927, + 928, + 929 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n155", + "parent": "11", + "degrees_of_freedom": [ + 930, + 931, + 932, + 933, + 934, + 935 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + } + ], + "edges": [ + { + "id": "e0", + "source": 1, + "target": 0, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e1", + "source": 2, + "target": 0, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e2", + "source": 3, + "target": 1, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e3", + "source": 3, + "target": 2, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e4", + "source": 4, + "target": 2, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e5", + "source": 5, + "target": 3, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e6", + "source": 5, + "target": 4, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e7", + "source": 6, + "target": 4, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e8", + "source": 7, + "target": 5, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e9", + "source": 7, + "target": 6, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e10", + "source": 8, + "target": 6, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e11", + "source": 9, + "target": 7, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e12", + "source": 9, + "target": 8, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e13", + "source": 10, + "target": 0, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e14", + "source": 11, + "target": 10, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e15", + "source": 11, + "target": 1, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e16", + "source": 12, + "target": 10, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e17", + "source": 12, + "target": 2, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e18", + "source": 13, + "target": 11, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e19", + "source": 13, + "target": 12, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e20", + "source": 13, + "target": 3, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e21", + "source": 14, + "target": 12, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e22", + "source": 14, + "target": 4, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e23", + "source": 15, + "target": 13, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e24", + "source": 15, + "target": 14, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e25", + "source": 15, + "target": 5, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e26", + "source": 16, + "target": 14, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e27", + "source": 16, + "target": 6, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e28", + "source": 17, + "target": 15, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e29", + "source": 17, + "target": 16, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e30", + "source": 17, + "target": 7, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e31", + "source": 18, + "target": 16, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e32", + "source": 18, + "target": 8, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e33", + "source": 19, + "target": 17, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e34", + "source": 19, + "target": 18, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e35", + "source": 19, + "target": 9, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e36", + "source": 20, + "target": 1, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e37", + "source": 21, + "target": 20, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e38", + "source": 22, + "target": 20, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e39", + "source": 22, + "target": 3, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e40", + "source": 23, + "target": 21, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e41", + "source": 23, + "target": 22, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e42", + "source": 24, + "target": 22, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e43", + "source": 24, + "target": 5, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e44", + "source": 25, + "target": 23, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e45", + "source": 25, + "target": 24, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e46", + "source": 26, + "target": 24, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e47", + "source": 26, + "target": 7, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e48", + "source": 27, + "target": 25, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e49", + "source": 27, + "target": 26, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e50", + "source": 28, + "target": 26, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e51", + "source": 28, + "target": 9, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e52", + "source": 29, + "target": 27, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e53", + "source": 29, + "target": 28, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e54", + "source": 30, + "target": 11, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e55", + "source": 30, + "target": 20, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e56", + "source": 31, + "target": 30, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e57", + "source": 31, + "target": 21, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e58", + "source": 32, + "target": 30, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e59", + "source": 32, + "target": 13, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e60", + "source": 32, + "target": 22, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e61", + "source": 33, + "target": 31, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e62", + "source": 33, + "target": 32, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e63", + "source": 33, + "target": 23, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e64", + "source": 34, + "target": 32, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e65", + "source": 34, + "target": 15, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e66", + "source": 34, + "target": 24, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e67", + "source": 35, + "target": 33, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e68", + "source": 35, + "target": 34, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e69", + "source": 35, + "target": 25, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e70", + "source": 36, + "target": 34, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e71", + "source": 36, + "target": 17, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e72", + "source": 36, + "target": 26, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e73", + "source": 37, + "target": 35, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e74", + "source": 37, + "target": 36, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e75", + "source": 37, + "target": 27, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e76", + "source": 38, + "target": 36, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e77", + "source": 38, + "target": 19, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e78", + "source": 38, + "target": 28, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e79", + "source": 39, + "target": 37, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e80", + "source": 39, + "target": 38, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e81", + "source": 39, + "target": 29, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e82", + "source": 40, + "target": 21, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e83", + "source": 41, + "target": 40, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e84", + "source": 42, + "target": 40, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e85", + "source": 42, + "target": 23, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e86", + "source": 43, + "target": 41, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e87", + "source": 43, + "target": 42, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e88", + "source": 44, + "target": 42, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e89", + "source": 44, + "target": 25, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e90", + "source": 45, + "target": 43, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e91", + "source": 45, + "target": 44, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e92", + "source": 46, + "target": 44, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e93", + "source": 46, + "target": 27, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e94", + "source": 47, + "target": 45, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e95", + "source": 47, + "target": 46, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e96", + "source": 48, + "target": 46, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e97", + "source": 48, + "target": 29, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e98", + "source": 49, + "target": 47, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e99", + "source": 49, + "target": 48, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e100", + "source": 50, + "target": 31, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e101", + "source": 50, + "target": 40, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e102", + "source": 51, + "target": 50, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e103", + "source": 51, + "target": 41, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e104", + "source": 52, + "target": 50, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e105", + "source": 52, + "target": 33, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e106", + "source": 52, + "target": 42, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e107", + "source": 53, + "target": 51, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e108", + "source": 53, + "target": 52, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e109", + "source": 53, + "target": 43, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e110", + "source": 54, + "target": 52, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e111", + "source": 54, + "target": 35, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e112", + "source": 54, + "target": 44, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e113", + "source": 55, + "target": 53, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e114", + "source": 55, + "target": 54, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e115", + "source": 55, + "target": 45, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e116", + "source": 56, + "target": 54, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e117", + "source": 56, + "target": 37, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e118", + "source": 56, + "target": 46, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e119", + "source": 57, + "target": 55, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e120", + "source": 57, + "target": 56, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e121", + "source": 57, + "target": 47, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e122", + "source": 58, + "target": 56, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e123", + "source": 58, + "target": 39, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e124", + "source": 58, + "target": 48, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e125", + "source": 59, + "target": 57, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e126", + "source": 59, + "target": 58, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e127", + "source": 59, + "target": 49, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e128", + "source": 60, + "target": 10, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e129", + "source": 61, + "target": 60, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e130", + "source": 61, + "target": 12, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e131", + "source": 62, + "target": 60, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e132", + "source": 63, + "target": 62, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e133", + "source": 63, + "target": 61, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e134", + "source": 64, + "target": 62, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e135", + "source": 65, + "target": 64, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e136", + "source": 65, + "target": 63, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e137", + "source": 66, + "target": 60, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e138", + "source": 66, + "target": 11, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e139", + "source": 67, + "target": 66, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e140", + "source": 67, + "target": 61, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e141", + "source": 67, + "target": 13, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e142", + "source": 68, + "target": 62, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e143", + "source": 68, + "target": 66, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e144", + "source": 69, + "target": 68, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e145", + "source": 69, + "target": 63, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e146", + "source": 69, + "target": 67, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e147", + "source": 70, + "target": 64, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e148", + "source": 70, + "target": 68, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e149", + "source": 71, + "target": 70, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e150", + "source": 71, + "target": 65, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e151", + "source": 71, + "target": 69, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e152", + "source": 72, + "target": 16, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e153", + "source": 73, + "target": 72, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e154", + "source": 73, + "target": 18, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e155", + "source": 74, + "target": 72, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e156", + "source": 75, + "target": 74, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e157", + "source": 75, + "target": 73, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e158", + "source": 76, + "target": 74, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e159", + "source": 77, + "target": 76, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e160", + "source": 77, + "target": 75, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e161", + "source": 78, + "target": 73, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e162", + "source": 78, + "target": 19, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e163", + "source": 79, + "target": 78, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e164", + "source": 79, + "target": 72, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e165", + "source": 79, + "target": 17, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e166", + "source": 80, + "target": 74, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e167", + "source": 80, + "target": 79, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e168", + "source": 81, + "target": 80, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e169", + "source": 81, + "target": 75, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e170", + "source": 81, + "target": 78, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e171", + "source": 82, + "target": 76, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e172", + "source": 82, + "target": 80, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e173", + "source": 83, + "target": 82, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e174", + "source": 83, + "target": 77, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e175", + "source": 83, + "target": 81, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e176", + "source": 84, + "target": 64, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e177", + "source": 85, + "target": 84, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e178", + "source": 85, + "target": 65, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e179", + "source": 86, + "target": 84, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e180", + "source": 87, + "target": 86, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e181", + "source": 87, + "target": 85, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e182", + "source": 88, + "target": 86, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e183", + "source": 89, + "target": 88, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e184", + "source": 89, + "target": 87, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e185", + "source": 90, + "target": 84, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e186", + "source": 90, + "target": 70, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e187", + "source": 91, + "target": 90, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e188", + "source": 91, + "target": 85, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e189", + "source": 91, + "target": 71, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e190", + "source": 92, + "target": 86, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e191", + "source": 92, + "target": 90, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e192", + "source": 93, + "target": 92, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e193", + "source": 93, + "target": 87, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e194", + "source": 93, + "target": 91, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e195", + "source": 94, + "target": 88, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e196", + "source": 94, + "target": 92, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e197", + "source": 95, + "target": 94, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e198", + "source": 95, + "target": 89, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e199", + "source": 95, + "target": 93, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e200", + "source": 96, + "target": 76, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e201", + "source": 97, + "target": 96, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e202", + "source": 97, + "target": 77, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e203", + "source": 98, + "target": 96, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e204", + "source": 99, + "target": 98, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e205", + "source": 99, + "target": 97, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e206", + "source": 100, + "target": 98, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e207", + "source": 101, + "target": 100, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e208", + "source": 101, + "target": 99, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e209", + "source": 102, + "target": 96, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e210", + "source": 102, + "target": 82, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e211", + "source": 103, + "target": 102, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e212", + "source": 103, + "target": 97, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e213", + "source": 103, + "target": 83, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e214", + "source": 104, + "target": 100, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e215", + "source": 105, + "target": 104, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e216", + "source": 105, + "target": 101, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e217", + "source": 106, + "target": 98, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e218", + "source": 106, + "target": 102, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e219", + "source": 106, + "target": 104, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e220", + "source": 107, + "target": 106, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e221", + "source": 107, + "target": 99, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e222", + "source": 107, + "target": 103, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e223", + "source": 107, + "target": 105, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e224", + "source": 108, + "target": 50, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e225", + "source": 109, + "target": 108, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e226", + "source": 109, + "target": 52, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e227", + "source": 110, + "target": 108, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e228", + "source": 111, + "target": 110, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e229", + "source": 111, + "target": 109, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e230", + "source": 112, + "target": 110, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e231", + "source": 113, + "target": 112, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e232", + "source": 113, + "target": 111, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e233", + "source": 114, + "target": 108, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e234", + "source": 114, + "target": 51, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e235", + "source": 115, + "target": 114, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e236", + "source": 115, + "target": 109, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e237", + "source": 115, + "target": 53, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e238", + "source": 116, + "target": 110, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e239", + "source": 116, + "target": 114, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e240", + "source": 117, + "target": 116, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e241", + "source": 117, + "target": 111, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e242", + "source": 117, + "target": 115, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e243", + "source": 118, + "target": 112, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e244", + "source": 118, + "target": 116, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e245", + "source": 119, + "target": 118, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e246", + "source": 119, + "target": 113, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e247", + "source": 119, + "target": 117, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e248", + "source": 120, + "target": 56, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e249", + "source": 121, + "target": 120, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e250", + "source": 121, + "target": 58, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e251", + "source": 122, + "target": 120, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e252", + "source": 123, + "target": 122, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e253", + "source": 123, + "target": 121, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e254", + "source": 124, + "target": 122, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e255", + "source": 125, + "target": 124, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e256", + "source": 125, + "target": 123, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e257", + "source": 126, + "target": 121, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e258", + "source": 126, + "target": 59, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e259", + "source": 127, + "target": 126, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e260", + "source": 127, + "target": 120, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e261", + "source": 127, + "target": 57, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e262", + "source": 128, + "target": 122, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e263", + "source": 128, + "target": 127, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e264", + "source": 129, + "target": 128, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e265", + "source": 129, + "target": 123, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e266", + "source": 129, + "target": 126, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e267", + "source": 130, + "target": 124, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e268", + "source": 130, + "target": 128, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e269", + "source": 131, + "target": 130, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e270", + "source": 131, + "target": 125, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e271", + "source": 131, + "target": 129, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e272", + "source": 132, + "target": 112, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e273", + "source": 133, + "target": 132, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e274", + "source": 133, + "target": 113, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e275", + "source": 134, + "target": 132, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e276", + "source": 135, + "target": 134, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e277", + "source": 135, + "target": 133, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e278", + "source": 136, + "target": 134, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e279", + "source": 137, + "target": 136, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e280", + "source": 137, + "target": 135, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e281", + "source": 138, + "target": 132, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e282", + "source": 138, + "target": 118, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e283", + "source": 139, + "target": 138, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e284", + "source": 139, + "target": 133, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e285", + "source": 139, + "target": 119, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e286", + "source": 140, + "target": 134, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e287", + "source": 140, + "target": 138, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e288", + "source": 141, + "target": 140, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e289", + "source": 141, + "target": 135, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e290", + "source": 141, + "target": 139, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e291", + "source": 142, + "target": 136, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e292", + "source": 142, + "target": 140, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e293", + "source": 143, + "target": 142, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e294", + "source": 143, + "target": 137, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e295", + "source": 143, + "target": 141, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e296", + "source": 144, + "target": 124, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e297", + "source": 145, + "target": 144, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e298", + "source": 145, + "target": 125, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e299", + "source": 146, + "target": 144, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e300", + "source": 147, + "target": 146, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e301", + "source": 147, + "target": 145, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e302", + "source": 148, + "target": 146, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e303", + "source": 149, + "target": 148, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e304", + "source": 149, + "target": 147, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e305", + "source": 150, + "target": 144, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e306", + "source": 150, + "target": 130, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e307", + "source": 151, + "target": 150, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e308", + "source": 151, + "target": 145, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e309", + "source": 151, + "target": 131, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e310", + "source": 152, + "target": 148, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e311", + "source": 153, + "target": 152, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e312", + "source": 153, + "target": 149, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e313", + "source": 154, + "target": 146, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e314", + "source": 154, + "target": 150, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e315", + "source": 154, + "target": 152, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e316", + "source": 155, + "target": 154, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e317", + "source": 155, + "target": 147, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e318", + "source": 155, + "target": 151, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e319", + "source": 155, + "target": 153, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + } + ], + "ndofs": 936, + "animation": { + "showDisplacement": true, + "exaggeration": 1, + "speed": 3 + }, + "viz": { + "minStress": 10000000, + "maxStress": -10000000, + "colorMaps": [], + "colorMap": 0, + "exaggeration": 1 + }, + "hierarchical": true, + "voxelSize": 0.001, + "materials": [], + "supports": [], + "loads": [], + "fixedDisplacements": [], + "numTimeSteps": 30000, + "maxNumFiles": 50, + "poisson": false, + "scale": 10000, + "linear": true, + "globalDamping": 0.15, + "thermal": true + } } \ No newline at end of file diff --git a/json/multiscaleInit.json b/json/multiscaleInit.json index 7e120dfb86f73c40c8959f4984b515f580c322c6..ff60ac9861619f936b2f38ae0fee6c38d90f4c74 100644 --- a/json/multiscaleInit.json +++ b/json/multiscaleInit.json @@ -1 +1 @@ -{"setup":{"materials":[[{"max":{"x":0.01,"z":0.01,"y":0.01},"min":{"x":-0.01,"z":-0.01,"y":-0.01}},{"cTE":0.0,"poissonRatio":0.0,"density":1000.0,"area":1.0e-6,"stiffness":1.0e6}],[{"max":{"x":0.007,"z":0.002,"y":0.002},"min":{"x":0,"z":0,"y":0.001}},{"cTE":0.1,"poissonRatio":0.0,"density":1000.0,"area":1.0e-6,"stiffness":1.0e6}]],"poisson":false,"rhino":false,"latticeSizeY":2,"scale":10000.0,"supports":[[{"max":{"x":0.001,"z":0.002,"y":0.002},"min":{"x":0,"z":0,"y":0}},[true,true,true,true,true,true]]],"thermal":true,"loads":[[{"max":{"x":0.007,"z":0.002,"y":0.002},"min":{"x":0.006,"z":0,"y":0}},{"x":0.0,"z":0.0,"y":0.0}]],"maxNumFiles":200,"voxelSize":0.001,"numTimeSteps":5000,"fixedDisplacements":[],"linear":true,"latticeSizeX":7,"gridSize":10,"latticeSizeZ":2,"useVoxelList":false,"hierarchical":true,"globalDamping":0.15}} \ No newline at end of file +{"setup":{"materials":[],"poisson":false,"rhino":false,"latticeSizeY":8,"scale":10000.0,"supports":[],"thermal":true,"loads":[],"maxNumFiles":50,"voxelSize":0.001,"numTimeSteps":30000,"fixedDisplacements":[],"linear":true,"latticeSizeX":6,"gridSize":10,"latticeSizeZ":5,"useVoxelList":true,"voxelList":[[[0,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[2,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[3,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,0],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,1],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,0],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,1],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,0],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,1],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,4],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,3],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,3],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,4],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,3],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,4],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,1,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,1,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,0,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,0,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,1,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,1,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,0,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,0,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,5,0],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,5,1],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,4,0],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,4,1],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,3,0],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,3,1],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,5,0],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,5,1],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,4,0],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,4,1],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,3,0],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,3,1],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,5,3],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,5,4],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,4,3],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,4,4],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,3,3],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,3,4],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,5,4],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,5,3],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,4,3],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,4,4],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,3,3],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,3,4],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,2,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,2,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,1,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,1,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,0,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,0,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,2,0],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,2,1],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,1,0],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,1,1],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,0,0],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,0,1],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,2,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,2,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,1,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,1,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,0,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[4,0,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,2,3],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,2,4],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,0,3],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,0,4],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,1,3],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[5,1,4],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}]],"hierarchical":true,"globalDamping":0.15}} \ No newline at end of file diff --git a/json/name.json b/json/name.json index f15490b5e06396d62356b50310f8ed27551e33ca..6592e72078d04dce0c7495c8aa1dbee102ecca46 100644 --- a/json/name.json +++ b/json/name.json @@ -13,17 +13,17 @@ 5 ], "restrained_degrees_of_freedom": [ - true, - true, - true, + false, + false, + false, true, true, true ], "position": { - "x": 0.0005, - "y": 0.0005, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -48,7 +48,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -66,17 +66,17 @@ 11 ], "restrained_degrees_of_freedom": [ - true, - true, - true, + false, + false, + false, true, true, true ], "position": { - "x": 0.0005, - "y": 0.0005, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -101,7 +101,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -119,17 +119,17 @@ 17 ], "restrained_degrees_of_freedom": [ - true, - true, - true, + false, + false, + false, true, true, true ], "position": { - "x": 0.0005, - "y": 0.0015, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -152,9 +152,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -172,17 +172,17 @@ 23 ], "restrained_degrees_of_freedom": [ - true, - true, - true, + false, + false, + false, true, true, true ], "position": { - "x": 0.0005, - "y": 0.0015, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -205,9 +205,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -233,9 +233,9 @@ true ], "position": { - "x": 0.0015, - "y": 0.0005, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 }, "force": { "x": 0, @@ -260,7 +260,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -286,9 +286,9 @@ true ], "position": { - "x": 0.0015, - "y": 0.0005, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 }, "force": { "x": 0, @@ -313,7 +313,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -339,9 +339,9 @@ true ], "position": { - "x": 0.0015, - "y": 0.0015, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 }, "force": { "x": 0, @@ -364,9 +364,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -392,9 +392,9 @@ true ], "position": { - "x": 0.0015, - "y": 0.0015, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 }, "force": { "x": 0, @@ -417,9 +417,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -445,9 +445,9 @@ true ], "position": { - "x": 0.0025, - "y": 0.0005, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 }, "force": { "x": 0, @@ -472,7 +472,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -498,9 +498,9 @@ true ], "position": { - "x": 0.0025, - "y": 0.0005, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 }, "force": { "x": 0, @@ -525,7 +525,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -551,9 +551,9 @@ true ], "position": { - "x": 0.0025, - "y": 0.0015, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -576,9 +576,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -604,9 +604,9 @@ true ], "position": { - "x": 0.0025, - "y": 0.0015, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -629,9 +629,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -657,9 +657,9 @@ true ], "position": { - "x": 0.0035, - "y": 0.0005, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -684,7 +684,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -710,9 +710,9 @@ true ], "position": { - "x": 0.0035, - "y": 0.0005, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -737,7 +737,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -763,9 +763,9 @@ true ], "position": { - "x": 0.0035, - "y": 0.0015, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 }, "force": { "x": 0, @@ -788,9 +788,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -816,9 +816,9 @@ true ], "position": { - "x": 0.0035, - "y": 0.0015, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 }, "force": { "x": 0, @@ -841,9 +841,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -869,9 +869,9 @@ true ], "position": { - "x": 0.0045000000000000005, - "y": 0.0005, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 }, "force": { "x": 0, @@ -896,7 +896,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -922,9 +922,9 @@ true ], "position": { - "x": 0.0045000000000000005, - "y": 0.0005, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 }, "force": { "x": 0, @@ -949,7 +949,7 @@ "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -975,9 +975,9 @@ true ], "position": { - "x": 0.0045000000000000005, - "y": 0.0015, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 }, "force": { "x": 0, @@ -1000,9 +1000,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -1028,9 +1028,9 @@ true ], "position": { - "x": 0.0045000000000000005, - "y": 0.0015, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 }, "force": { "x": 0, @@ -1053,9 +1053,9 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -1081,9 +1081,9 @@ true ], "position": { - "x": 0.0055, - "y": 0.0005, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -1106,9 +1106,9 @@ "z": 0 }, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -1134,9 +1134,9 @@ true ], "position": { - "x": 0.0055, - "y": 0.0005, - "z": 0.0015 + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -1159,9 +1159,9 @@ "z": 0 }, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -1187,9 +1187,9 @@ true ], "position": { - "x": 0.0055, - "y": 0.0015, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -1213,8 +1213,8 @@ }, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -1240,9 +1240,9 @@ true ], "position": { - "x": 0.0055, - "y": 0.0015, - "z": 0.0015 + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -1266,8 +1266,8 @@ }, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -1293,9 +1293,9 @@ true ], "position": { - "x": 0.006500000000000001, - "y": 0.0005, - "z": 0.0005 + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -1318,9 +1318,9 @@ "z": 0 }, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -1346,9 +1346,9 @@ true ], "position": { - "x": 0.006500000000000001, - "y": 0.0005, - "z": 0.0015 + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -1371,9 +1371,9 @@ "z": 0 }, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -1399,9 +1399,9 @@ true ], "position": { - "x": 0.006500000000000001, - "y": 0.0015, - "z": 0.0005 + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -1424,9 +1424,9 @@ "z": 0 }, "material": { - "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, @@ -1452,9 +1452,9 @@ true ], "position": { - "x": 0.006500000000000001, - "y": 0.0015, - "z": 0.0015 + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -1477,694 +1477,3854 @@ "z": 0 }, "material": { - "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "nomSize": 1 - } - ], - "edges": [ - { - "id": "e0", - "source": 1, - "target": 0, - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, - "area": 0.000001, - "stiffness": 1000000 - }, - "stress": 0 }, { - "id": "e1", - "source": 2, - "target": 0, - "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, - "area": 0.000001, - "stiffness": 1000000 + "id": "n28", + "parent": "11", + "degrees_of_freedom": [ + 168, + 169, + 170, + 171, + 172, + 173 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 }, - "stress": 0 - }, - { - "id": "e2", - "source": 3, - "target": 2, - "material": { - "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, - "area": 0.000001, - "stiffness": 1000000 + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 }, - "stress": 0 - }, - { - "id": "e3", - "source": 3, - "target": 1, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, - "stress": 0 + "nomSize": 1 }, { - "id": "e4", - "source": 4, - "target": 0, + "id": "n29", + "parent": "11", + "degrees_of_freedom": [ + 174, + 175, + 176, + 177, + 178, + 179 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, - "stress": 0 + "nomSize": 1 }, { - "id": "e5", - "source": 5, - "target": 4, + "id": "n30", + "parent": "11", + "degrees_of_freedom": [ + 180, + 181, + 182, + 183, + 184, + 185 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, - "stress": 0 + "nomSize": 1 }, { - "id": "e6", - "source": 5, - "target": 1, + "id": "n31", + "parent": "11", + "degrees_of_freedom": [ + 186, + 187, + 188, + 189, + 190, + 191 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, - "stress": 0 + "nomSize": 1 + }, + { + "id": "n32", + "parent": "11", + "degrees_of_freedom": [ + 192, + 193, + 194, + 195, + 196, + 197 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n33", + "parent": "11", + "degrees_of_freedom": [ + 198, + 199, + 200, + 201, + 202, + 203 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n34", + "parent": "11", + "degrees_of_freedom": [ + 204, + 205, + 206, + 207, + 208, + 209 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n35", + "parent": "11", + "degrees_of_freedom": [ + 210, + 211, + 212, + 213, + 214, + 215 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n36", + "parent": "11", + "degrees_of_freedom": [ + 216, + 217, + 218, + 219, + 220, + 221 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n37", + "parent": "11", + "degrees_of_freedom": [ + 222, + 223, + 224, + 225, + 226, + 227 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n38", + "parent": "11", + "degrees_of_freedom": [ + 228, + 229, + 230, + 231, + 232, + 233 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n39", + "parent": "11", + "degrees_of_freedom": [ + 234, + 235, + 236, + 237, + 238, + 239 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n40", + "parent": "11", + "degrees_of_freedom": [ + 240, + 241, + 242, + 243, + 244, + 245 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n41", + "parent": "11", + "degrees_of_freedom": [ + 246, + 247, + 248, + 249, + 250, + 251 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n42", + "parent": "11", + "degrees_of_freedom": [ + 252, + 253, + 254, + 255, + 256, + 257 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n43", + "parent": "11", + "degrees_of_freedom": [ + 258, + 259, + 260, + 261, + 262, + 263 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n44", + "parent": "11", + "degrees_of_freedom": [ + 264, + 265, + 266, + 267, + 268, + 269 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n45", + "parent": "11", + "degrees_of_freedom": [ + 270, + 271, + 272, + 273, + 274, + 275 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n46", + "parent": "11", + "degrees_of_freedom": [ + 276, + 277, + 278, + 279, + 280, + 281 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n47", + "parent": "11", + "degrees_of_freedom": [ + 282, + 283, + 284, + 285, + 286, + 287 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n48", + "parent": "11", + "degrees_of_freedom": [ + 288, + 289, + 290, + 291, + 292, + 293 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n49", + "parent": "11", + "degrees_of_freedom": [ + 294, + 295, + 296, + 297, + 298, + 299 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n50", + "parent": "11", + "degrees_of_freedom": [ + 300, + 301, + 302, + 303, + 304, + 305 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n51", + "parent": "11", + "degrees_of_freedom": [ + 306, + 307, + 308, + 309, + 310, + 311 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n52", + "parent": "11", + "degrees_of_freedom": [ + 312, + 313, + 314, + 315, + 316, + 317 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n53", + "parent": "11", + "degrees_of_freedom": [ + 318, + 319, + 320, + 321, + 322, + 323 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n54", + "parent": "11", + "degrees_of_freedom": [ + 324, + 325, + 326, + 327, + 328, + 329 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n55", + "parent": "11", + "degrees_of_freedom": [ + 330, + 331, + 332, + 333, + 334, + 335 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n56", + "parent": "11", + "degrees_of_freedom": [ + 336, + 337, + 338, + 339, + 340, + 341 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n57", + "parent": "11", + "degrees_of_freedom": [ + 342, + 343, + 344, + 345, + 346, + 347 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n58", + "parent": "11", + "degrees_of_freedom": [ + 348, + 349, + 350, + 351, + 352, + 353 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n59", + "parent": "11", + "degrees_of_freedom": [ + 354, + 355, + 356, + 357, + 358, + 359 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n60", + "parent": "11", + "degrees_of_freedom": [ + 360, + 361, + 362, + 363, + 364, + 365 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n61", + "parent": "11", + "degrees_of_freedom": [ + 366, + 367, + 368, + 369, + 370, + 371 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n62", + "parent": "11", + "degrees_of_freedom": [ + 372, + 373, + 374, + 375, + 376, + 377 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n63", + "parent": "11", + "degrees_of_freedom": [ + 378, + 379, + 380, + 381, + 382, + 383 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n64", + "parent": "11", + "degrees_of_freedom": [ + 384, + 385, + 386, + 387, + 388, + 389 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n65", + "parent": "11", + "degrees_of_freedom": [ + 390, + 391, + 392, + 393, + 394, + 395 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n66", + "parent": "11", + "degrees_of_freedom": [ + 396, + 397, + 398, + 399, + 400, + 401 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n67", + "parent": "11", + "degrees_of_freedom": [ + 402, + 403, + 404, + 405, + 406, + 407 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + } + ], + "edges": [ + { + "id": "e0", + "source": 1, + "target": 0, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e1", + "source": 2, + "target": 0, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e2", + "source": 3, + "target": 1, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e3", + "source": 3, + "target": 2, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e4", + "source": 4, + "target": 2, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e5", + "source": 5, + "target": 3, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e6", + "source": 5, + "target": 4, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 }, { "id": "e7", "source": 6, + "target": 4, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e8", + "source": 7, + "target": 5, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e9", + "source": 7, + "target": 6, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e10", + "source": 8, + "target": 6, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e11", + "source": 9, + "target": 7, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e12", + "source": 9, + "target": 8, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e13", + "source": 10, + "target": 0, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e14", + "source": 11, + "target": 10, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e15", + "source": 11, + "target": 1, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e16", + "source": 12, + "target": 10, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e17", + "source": 12, "target": 2, "material": { - "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e18", + "source": 13, + "target": 11, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e19", + "source": 13, + "target": 12, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e20", + "source": 13, + "target": 3, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e21", + "source": 14, + "target": 12, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e22", + "source": 14, + "target": 4, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e23", + "source": 15, + "target": 13, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e24", + "source": 15, + "target": 14, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e25", + "source": 15, + "target": 5, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e26", + "source": 16, + "target": 14, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e27", + "source": 16, + "target": 6, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e28", + "source": 17, + "target": 15, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e29", + "source": 17, + "target": 16, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e30", + "source": 17, + "target": 7, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e31", + "source": 18, + "target": 16, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e32", + "source": 18, + "target": 8, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e33", + "source": 19, + "target": 17, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e34", + "source": 19, + "target": 18, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e35", + "source": 19, + "target": 9, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e36", + "source": 20, + "target": 10, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e37", + "source": 21, + "target": 20, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e38", + "source": 21, + "target": 12, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e39", + "source": 22, + "target": 20, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e40", + "source": 23, + "target": 22, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e41", + "source": 23, + "target": 21, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e42", + "source": 24, + "target": 22, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e43", + "source": 25, + "target": 24, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e44", + "source": 25, + "target": 23, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e45", + "source": 26, + "target": 20, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e46", + "source": 26, + "target": 11, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e47", + "source": 27, + "target": 26, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e48", + "source": 27, + "target": 21, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e49", + "source": 27, + "target": 13, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e50", + "source": 28, + "target": 22, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e51", + "source": 28, + "target": 26, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e52", + "source": 29, + "target": 28, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e53", + "source": 29, + "target": 23, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e54", + "source": 29, + "target": 27, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e55", + "source": 30, + "target": 24, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e56", + "source": 30, + "target": 28, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e57", + "source": 31, + "target": 30, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e58", + "source": 31, + "target": 25, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e59", + "source": 31, + "target": 29, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e60", + "source": 32, + "target": 16, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e61", + "source": 33, + "target": 32, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e62", + "source": 33, + "target": 18, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e63", + "source": 34, + "target": 32, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e64", + "source": 35, + "target": 34, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e65", + "source": 35, + "target": 33, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e66", + "source": 36, + "target": 34, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e67", + "source": 37, + "target": 36, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e68", + "source": 37, + "target": 35, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e69", + "source": 38, + "target": 33, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e70", + "source": 38, + "target": 19, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e71", + "source": 39, + "target": 38, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e72", + "source": 39, + "target": 32, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e73", + "source": 39, + "target": 17, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e74", + "source": 40, + "target": 34, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e75", + "source": 40, + "target": 39, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e76", + "source": 41, + "target": 40, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e77", + "source": 41, + "target": 35, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e78", + "source": 41, + "target": 38, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e79", + "source": 42, + "target": 36, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e80", + "source": 42, + "target": 40, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e81", + "source": 43, + "target": 42, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e82", + "source": 43, + "target": 37, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e83", + "source": 43, + "target": 41, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e8", - "source": 6, - "target": 4, + "id": "e84", + "source": 44, + "target": 24, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e9", - "source": 7, - "target": 6, + "id": "e85", + "source": 45, + "target": 44, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e10", - "source": 7, - "target": 3, + "id": "e86", + "source": 45, + "target": 25, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e11", - "source": 7, - "target": 5, + "id": "e87", + "source": 46, + "target": 44, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e12", - "source": 8, - "target": 4, + "id": "e88", + "source": 47, + "target": 46, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e13", - "source": 9, - "target": 8, + "id": "e89", + "source": 47, + "target": 45, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e14", - "source": 9, - "target": 5, + "id": "e90", + "source": 48, + "target": 46, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e15", - "source": 10, - "target": 6, + "id": "e91", + "source": 49, + "target": 48, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e16", - "source": 10, - "target": 8, + "id": "e92", + "source": 49, + "target": 47, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e17", - "source": 11, - "target": 10, + "id": "e93", + "source": 50, + "target": 44, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e18", - "source": 11, - "target": 7, + "id": "e94", + "source": 50, + "target": 30, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e19", - "source": 11, - "target": 9, + "id": "e95", + "source": 51, + "target": 50, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e20", - "source": 12, - "target": 8, + "id": "e96", + "source": 51, + "target": 45, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e21", - "source": 13, - "target": 12, + "id": "e97", + "source": 51, + "target": 31, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e22", - "source": 13, - "target": 9, + "id": "e98", + "source": 52, + "target": 46, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e23", - "source": 14, - "target": 10, + "id": "e99", + "source": 52, + "target": 50, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e24", - "source": 14, - "target": 12, + "id": "e100", + "source": 53, + "target": 52, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e25", - "source": 15, - "target": 14, + "id": "e101", + "source": 53, + "target": 47, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e26", - "source": 15, - "target": 11, + "id": "e102", + "source": 53, + "target": 51, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e27", - "source": 15, - "target": 13, + "id": "e103", + "source": 54, + "target": 48, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e28", - "source": 16, - "target": 12, + "id": "e104", + "source": 54, + "target": 52, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e29", - "source": 17, - "target": 16, + "id": "e105", + "source": 55, + "target": 54, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e30", - "source": 17, - "target": 13, + "id": "e106", + "source": 55, + "target": 49, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e31", - "source": 18, - "target": 14, + "id": "e107", + "source": 55, + "target": 53, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": 0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e32", - "source": 18, - "target": 16, + "id": "e108", + "source": 56, + "target": 36, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e33", - "source": 19, - "target": 18, + "id": "e109", + "source": 57, + "target": 56, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e34", - "source": 19, - "target": 15, + "id": "e110", + "source": 57, + "target": 37, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e35", - "source": 19, - "target": 17, + "id": "e111", + "source": 58, + "target": 56, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e36", - "source": 20, - "target": 16, + "id": "e112", + "source": 59, + "target": 58, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e37", - "source": 21, - "target": 20, + "id": "e113", + "source": 59, + "target": 57, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e38", - "source": 21, - "target": 17, + "id": "e114", + "source": 60, + "target": 58, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e39", - "source": 22, - "target": 18, + "id": "e115", + "source": 61, + "target": 60, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e40", - "source": 22, - "target": 20, + "id": "e116", + "source": 61, + "target": 59, "material": { "cTE": 0, "poissonRatio": 0, - "density": 1000, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e41", - "source": 23, - "target": 22, + "id": "e117", + "source": 62, + "target": 56, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e42", - "source": 23, - "target": 19, + "id": "e118", + "source": 62, + "target": 42, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e43", - "source": 23, - "target": 21, + "id": "e119", + "source": 63, + "target": 62, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e44", - "source": 24, - "target": 20, + "id": "e120", + "source": 63, + "target": 57, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e45", - "source": 25, - "target": 24, + "id": "e121", + "source": 63, + "target": 43, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e46", - "source": 25, - "target": 21, + "id": "e122", + "source": 64, + "target": 60, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e47", - "source": 26, - "target": 22, + "id": "e123", + "source": 65, + "target": 64, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e48", - "source": 26, - "target": 24, + "id": "e124", + "source": 65, + "target": 61, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e49", - "source": 27, - "target": 26, + "id": "e125", + "source": 66, + "target": 58, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e50", - "source": 27, - "target": 23, + "id": "e126", + "source": 66, + "target": 62, "material": { "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 }, { - "id": "e51", - "source": 27, - "target": 25, + "id": "e127", + "source": 66, + "target": 64, "material": { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e128", + "source": 67, + "target": 66, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e129", + "source": 67, + "target": 59, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e130", + "source": 67, + "target": 63, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e131", + "source": 67, + "target": 65, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, "area": 0.000001, "stiffness": 1000000 }, "stress": 0 } ], - "ndofs": 168, + "ndofs": 408, "animation": { "showDisplacement": true, "exaggeration": 1, @@ -2179,98 +5339,12 @@ }, "hierarchical": true, "voxelSize": 0.001, - "materials": [ - [ - { - "max": { - "x": 0.01, - "z": 0.01, - "y": 0.01 - }, - "min": { - "x": -0.01, - "z": -0.01, - "y": -0.01 - } - }, - { - "cTE": 0, - "poissonRatio": 0, - "density": 1000, - "area": 0.000001, - "stiffness": 1000000 - } - ], - [ - { - "max": { - "x": 0.007, - "z": 0.002, - "y": 0.002 - }, - "min": { - "x": 0, - "z": 0, - "y": 0.001 - } - }, - { - "cTE": 0.1, - "poissonRatio": 0, - "density": 1000, - "area": 0.000001, - "stiffness": 1000000 - } - ] - ], - "supports": [ - [ - { - "max": { - "x": 0.001, - "z": 0.002, - "y": 0.002 - }, - "min": { - "x": 0, - "z": 0, - "y": 0 - } - }, - [ - true, - true, - true, - true, - true, - true - ] - ] - ], - "loads": [ - [ - { - "max": { - "x": 0.007, - "z": 0.002, - "y": 0.002 - }, - "min": { - "x": 0.006, - "z": 0, - "y": 0 - } - }, - { - "x": 0, - "z": 0, - "y": 0 - } - ] - ], + "materials": [], + "supports": [], + "loads": [], "fixedDisplacements": [], - "numTimeSteps": 5000, - "maxNumFiles": 200, + "numTimeSteps": 30000, + "maxNumFiles": 100, "poisson": false, "scale": 10000, "linear": true, diff --git a/json/nameInit.json b/json/nameInit.json index 7e120dfb86f73c40c8959f4984b515f580c322c6..64d13fdbdf92e4b53f2ea1bf9dd2e9b566ec0f9f 100644 --- a/json/nameInit.json +++ b/json/nameInit.json @@ -1 +1 @@ -{"setup":{"materials":[[{"max":{"x":0.01,"z":0.01,"y":0.01},"min":{"x":-0.01,"z":-0.01,"y":-0.01}},{"cTE":0.0,"poissonRatio":0.0,"density":1000.0,"area":1.0e-6,"stiffness":1.0e6}],[{"max":{"x":0.007,"z":0.002,"y":0.002},"min":{"x":0,"z":0,"y":0.001}},{"cTE":0.1,"poissonRatio":0.0,"density":1000.0,"area":1.0e-6,"stiffness":1.0e6}]],"poisson":false,"rhino":false,"latticeSizeY":2,"scale":10000.0,"supports":[[{"max":{"x":0.001,"z":0.002,"y":0.002},"min":{"x":0,"z":0,"y":0}},[true,true,true,true,true,true]]],"thermal":true,"loads":[[{"max":{"x":0.007,"z":0.002,"y":0.002},"min":{"x":0.006,"z":0,"y":0}},{"x":0.0,"z":0.0,"y":0.0}]],"maxNumFiles":200,"voxelSize":0.001,"numTimeSteps":5000,"fixedDisplacements":[],"linear":true,"latticeSizeX":7,"gridSize":10,"latticeSizeZ":2,"useVoxelList":false,"hierarchical":true,"globalDamping":0.15}} \ No newline at end of file +{"setup":{"materials":[],"poisson":false,"rhino":false,"latticeSizeY":8,"scale":10000.0,"supports":[],"thermal":true,"loads":[],"maxNumFiles":100,"voxelSize":0.001,"numTimeSteps":30000,"fixedDisplacements":[],"linear":true,"latticeSizeX":2,"gridSize":10,"latticeSizeZ":5,"useVoxelList":true,"voxelList":[[[0,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,0],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,1],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,0],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,1],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,0],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,1],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,4],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,3],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,3],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,4],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,3],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,4],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,1,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,1,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,0,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,0,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,1,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,1,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,0,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,0,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}]],"hierarchical":true,"globalDamping":0.15}} \ No newline at end of file diff --git a/json/tutorial.json b/json/tutorial.json index 51d1548c74bef20e49c99948a40068927fb72dfc..233150c70ed4343962294618e740f8bfb9c6636c 100644 --- a/json/tutorial.json +++ b/json/tutorial.json @@ -14,7 +14,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -50,7 +50,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -67,7 +67,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -103,7 +103,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -120,7 +120,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -156,7 +156,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -173,7 +173,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -209,7 +209,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -226,7 +226,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -262,7 +262,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -279,7 +279,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -315,7 +315,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -332,7 +332,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -368,7 +368,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -385,7 +385,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -421,7 +421,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -438,7 +438,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -474,7 +474,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -491,7 +491,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -527,7 +527,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -544,7 +544,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -580,7 +580,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -597,7 +597,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -633,7 +633,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -650,7 +650,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -686,7 +686,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -703,7 +703,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -739,7 +739,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -756,7 +756,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -792,7 +792,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -809,7 +809,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -845,7 +845,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -862,7 +862,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -898,7 +898,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -915,7 +915,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -951,7 +951,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -968,7 +968,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -1004,7 +1004,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1021,7 +1021,7 @@ ], "restrained_degrees_of_freedom": [ false, - true, + false, false, true, true, @@ -1057,7 +1057,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1081,8 +1081,8 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0055, + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, "z": 0.0005000000000000004 }, "force": { @@ -1106,11 +1106,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1134,8 +1134,8 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0055, + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, "z": 0.0005000000000000004 }, "force": { @@ -1163,7 +1163,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1187,8 +1187,8 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0055, + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, "z": 0.0014999999999999996 }, "force": { @@ -1212,11 +1212,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1240,8 +1240,8 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0055, + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, "z": 0.0014999999999999996 }, "force": { @@ -1269,7 +1269,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1293,9 +1293,9 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0045000000000000005, - "z": 0.0005000000000000004 + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 }, "force": { "x": 0, @@ -1318,11 +1318,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1346,9 +1346,9 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0045000000000000005, - "z": 0.0005000000000000004 + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 }, "force": { "x": 0, @@ -1375,7 +1375,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1399,9 +1399,9 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0045000000000000005, - "z": 0.0014999999999999996 + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 }, "force": { "x": 0, @@ -1424,11 +1424,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1452,9 +1452,9 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0045000000000000005, - "z": 0.0014999999999999996 + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 }, "force": { "x": 0, @@ -1481,7 +1481,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1505,9 +1505,9 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0035000000000000014, - "z": 0.0005000000000000004 + "x": 0.0025000000000000005, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 }, "force": { "x": 0, @@ -1530,11 +1530,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1558,9 +1558,9 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0035000000000000014, - "z": 0.0005000000000000004 + "x": 0.0035000000000000014, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 }, "force": { "x": 0, @@ -1587,7 +1587,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1611,9 +1611,9 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0035000000000000014, - "z": 0.0014999999999999996 + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -1636,11 +1636,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1664,9 +1664,9 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0035000000000000014, - "z": 0.0014999999999999996 + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 }, "force": { "x": 0, @@ -1693,7 +1693,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1717,9 +1717,9 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0025000000000000005, - "z": 0.0005000000000000004 + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -1746,7 +1746,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1770,9 +1770,9 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0025000000000000005, - "z": 0.0005000000000000004 + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 }, "force": { "x": 0, @@ -1795,11 +1795,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1823,9 +1823,9 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0025000000000000005, - "z": 0.0014999999999999996 + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 }, "force": { "x": 0, @@ -1852,7 +1852,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1876,9 +1876,9 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0025000000000000005, - "z": 0.0014999999999999996 + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 }, "force": { "x": 0, @@ -1901,11 +1901,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1929,9 +1929,9 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0014999999999999996, - "z": 0.0005000000000000004 + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 }, "force": { "x": 0, @@ -1958,7 +1958,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -1982,9 +1982,9 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0014999999999999996, - "z": 0.0005000000000000004 + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 }, "force": { "x": 0, @@ -2007,11 +2007,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -2035,9 +2035,9 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0014999999999999996, - "z": 0.0014999999999999996 + "x": 0.0025000000000000005, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 }, "force": { "x": 0, @@ -2064,7 +2064,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -2088,9 +2088,9 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0014999999999999996, - "z": 0.0014999999999999996 + "x": 0.0035000000000000014, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 }, "force": { "x": 0, @@ -2113,11 +2113,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -2141,8 +2141,8 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0005000000000000004, + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, "z": 0.0005000000000000004 }, "force": { @@ -2170,7 +2170,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -2194,8 +2194,8 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0005000000000000004, + "x": 0.0055, + "y": 0.0075000000000000015, "z": 0.0005000000000000004 }, "force": { @@ -2219,11 +2219,11 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -2247,8 +2247,8 @@ true ], "position": { - "x": 0.0005000000000000004, - "y": 0.0005000000000000004, + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, "z": 0.0014999999999999996 }, "force": { @@ -2276,7 +2276,7 @@ "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 }, @@ -2300,8 +2300,8 @@ true ], "position": { - "x": 0.0014999999999999996, - "y": 0.0005000000000000004, + "x": 0.0055, + "y": 0.0075000000000000015, "z": 0.0014999999999999996 }, "force": { @@ -2325,36 +2325,12213 @@ "z": 0 }, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "nomSize": 1 - } - ], - "edges": [ + }, { - "id": "e0", - "source": 1, - "target": 0, + "id": "n44", + "parent": "11", + "degrees_of_freedom": [ + 264, + 265, + 266, + 267, + 268, + 269 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, - "stress": 0 + "nomSize": 1 + }, + { + "id": "n45", + "parent": "11", + "degrees_of_freedom": [ + 270, + 271, + 272, + 273, + 274, + 275 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n46", + "parent": "11", + "degrees_of_freedom": [ + 276, + 277, + 278, + 279, + 280, + 281 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n47", + "parent": "11", + "degrees_of_freedom": [ + 282, + 283, + 284, + 285, + 286, + 287 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n48", + "parent": "11", + "degrees_of_freedom": [ + 288, + 289, + 290, + 291, + 292, + 293 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n49", + "parent": "11", + "degrees_of_freedom": [ + 294, + 295, + 296, + 297, + 298, + 299 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n50", + "parent": "11", + "degrees_of_freedom": [ + 300, + 301, + 302, + 303, + 304, + 305 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n51", + "parent": "11", + "degrees_of_freedom": [ + 306, + 307, + 308, + 309, + 310, + 311 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n52", + "parent": "11", + "degrees_of_freedom": [ + 312, + 313, + 314, + 315, + 316, + 317 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n53", + "parent": "11", + "degrees_of_freedom": [ + 318, + 319, + 320, + 321, + 322, + 323 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n54", + "parent": "11", + "degrees_of_freedom": [ + 324, + 325, + 326, + 327, + 328, + 329 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n55", + "parent": "11", + "degrees_of_freedom": [ + 330, + 331, + 332, + 333, + 334, + 335 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n56", + "parent": "11", + "degrees_of_freedom": [ + 336, + 337, + 338, + 339, + 340, + 341 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n57", + "parent": "11", + "degrees_of_freedom": [ + 342, + 343, + 344, + 345, + 346, + 347 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n58", + "parent": "11", + "degrees_of_freedom": [ + 348, + 349, + 350, + 351, + 352, + 353 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0045000000000000005, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n59", + "parent": "11", + "degrees_of_freedom": [ + 354, + 355, + 356, + 357, + 358, + 359 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0055, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n60", + "parent": "11", + "degrees_of_freedom": [ + 360, + 361, + 362, + 363, + 364, + 365 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n61", + "parent": "11", + "degrees_of_freedom": [ + 366, + 367, + 368, + 369, + 370, + 371 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n62", + "parent": "11", + "degrees_of_freedom": [ + 372, + 373, + 374, + 375, + 376, + 377 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n63", + "parent": "11", + "degrees_of_freedom": [ + 378, + 379, + 380, + 381, + 382, + 383 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n64", + "parent": "11", + "degrees_of_freedom": [ + 384, + 385, + 386, + 387, + 388, + 389 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n65", + "parent": "11", + "degrees_of_freedom": [ + 390, + 391, + 392, + 393, + 394, + 395 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n66", + "parent": "11", + "degrees_of_freedom": [ + 396, + 397, + 398, + 399, + 400, + 401 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n67", + "parent": "11", + "degrees_of_freedom": [ + 402, + 403, + 404, + 405, + 406, + 407 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n68", + "parent": "11", + "degrees_of_freedom": [ + 408, + 409, + 410, + 411, + 412, + 413 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n69", + "parent": "11", + "degrees_of_freedom": [ + 414, + 415, + 416, + 417, + 418, + 419 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n70", + "parent": "11", + "degrees_of_freedom": [ + 420, + 421, + 422, + 423, + 424, + 425 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n71", + "parent": "11", + "degrees_of_freedom": [ + 426, + 427, + 428, + 429, + 430, + 431 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n72", + "parent": "11", + "degrees_of_freedom": [ + 432, + 433, + 434, + 435, + 436, + 437 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n73", + "parent": "11", + "degrees_of_freedom": [ + 438, + 439, + 440, + 441, + 442, + 443 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n74", + "parent": "11", + "degrees_of_freedom": [ + 444, + 445, + 446, + 447, + 448, + 449 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n75", + "parent": "11", + "degrees_of_freedom": [ + 450, + 451, + 452, + 453, + 454, + 455 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n76", + "parent": "11", + "degrees_of_freedom": [ + 456, + 457, + 458, + 459, + 460, + 461 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n77", + "parent": "11", + "degrees_of_freedom": [ + 462, + 463, + 464, + 465, + 466, + 467 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n78", + "parent": "11", + "degrees_of_freedom": [ + 468, + 469, + 470, + 471, + 472, + 473 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.006500000000000001, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n79", + "parent": "11", + "degrees_of_freedom": [ + 474, + 475, + 476, + 477, + 478, + 479 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0075000000000000015, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n80", + "parent": "11", + "degrees_of_freedom": [ + 480, + 481, + 482, + 483, + 484, + 485 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n81", + "parent": "11", + "degrees_of_freedom": [ + 486, + 487, + 488, + 489, + 490, + 491 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0075000000000000015, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n82", + "parent": "11", + "degrees_of_freedom": [ + 492, + 493, + 494, + 495, + 496, + 497 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n83", + "parent": "11", + "degrees_of_freedom": [ + 498, + 499, + 500, + 501, + 502, + 503 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0075000000000000015, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n84", + "parent": "11", + "degrees_of_freedom": [ + 504, + 505, + 506, + 507, + 508, + 509 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n85", + "parent": "11", + "degrees_of_freedom": [ + 510, + 511, + 512, + 513, + 514, + 515 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0075000000000000015, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n86", + "parent": "11", + "degrees_of_freedom": [ + 516, + 517, + 518, + 519, + 520, + 521 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n87", + "parent": "11", + "degrees_of_freedom": [ + 522, + 523, + 524, + 525, + 526, + 527 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0075000000000000015, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n88", + "parent": "11", + "degrees_of_freedom": [ + 528, + 529, + 530, + 531, + 532, + 533 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n89", + "parent": "11", + "degrees_of_freedom": [ + 534, + 535, + 536, + 537, + 538, + 539 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0075000000000000015, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n90", + "parent": "11", + "degrees_of_freedom": [ + 540, + 541, + 542, + 543, + 544, + 545 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n91", + "parent": "11", + "degrees_of_freedom": [ + 546, + 547, + 548, + 549, + 550, + 551 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.006500000000000001, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n92", + "parent": "11", + "degrees_of_freedom": [ + 552, + 553, + 554, + 555, + 556, + 557 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n93", + "parent": "11", + "degrees_of_freedom": [ + 558, + 559, + 560, + 561, + 562, + 563 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.006500000000000001, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n94", + "parent": "11", + "degrees_of_freedom": [ + 564, + 565, + 566, + 567, + 568, + 569 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n95", + "parent": "11", + "degrees_of_freedom": [ + 570, + 571, + 572, + 573, + 574, + 575 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.006500000000000001, + "z": 0.0025000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n96", + "parent": "11", + "degrees_of_freedom": [ + 576, + 577, + 578, + 579, + 580, + 581 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n97", + "parent": "11", + "degrees_of_freedom": [ + 582, + 583, + 584, + 585, + 586, + 587 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.006500000000000001, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n98", + "parent": "11", + "degrees_of_freedom": [ + 588, + 589, + 590, + 591, + 592, + 593 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n99", + "parent": "11", + "degrees_of_freedom": [ + 594, + 595, + 596, + 597, + 598, + 599 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.006500000000000001, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n100", + "parent": "11", + "degrees_of_freedom": [ + 600, + 601, + 602, + 603, + 604, + 605 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n101", + "parent": "11", + "degrees_of_freedom": [ + 606, + 607, + 608, + 609, + 610, + 611 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n102", + "parent": "11", + "degrees_of_freedom": [ + 612, + 613, + 614, + 615, + 616, + 617 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n103", + "parent": "11", + "degrees_of_freedom": [ + 618, + 619, + 620, + 621, + 622, + 623 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n104", + "parent": "11", + "degrees_of_freedom": [ + 624, + 625, + 626, + 627, + 628, + 629 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n105", + "parent": "11", + "degrees_of_freedom": [ + 630, + 631, + 632, + 633, + 634, + 635 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n106", + "parent": "11", + "degrees_of_freedom": [ + 636, + 637, + 638, + 639, + 640, + 641 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n107", + "parent": "11", + "degrees_of_freedom": [ + 642, + 643, + 644, + 645, + 646, + 647 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n108", + "parent": "11", + "degrees_of_freedom": [ + 648, + 649, + 650, + 651, + 652, + 653 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n109", + "parent": "11", + "degrees_of_freedom": [ + 654, + 655, + 656, + 657, + 658, + 659 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n110", + "parent": "11", + "degrees_of_freedom": [ + 660, + 661, + 662, + 663, + 664, + 665 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n111", + "parent": "11", + "degrees_of_freedom": [ + 666, + 667, + 668, + 669, + 670, + 671 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n112", + "parent": "11", + "degrees_of_freedom": [ + 672, + 673, + 674, + 675, + 676, + 677 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n113", + "parent": "11", + "degrees_of_freedom": [ + 678, + 679, + 680, + 681, + 682, + 683 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n114", + "parent": "11", + "degrees_of_freedom": [ + 684, + 685, + 686, + 687, + 688, + 689 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n115", + "parent": "11", + "degrees_of_freedom": [ + 690, + 691, + 692, + 693, + 694, + 695 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n116", + "parent": "11", + "degrees_of_freedom": [ + 696, + 697, + 698, + 699, + 700, + 701 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n117", + "parent": "11", + "degrees_of_freedom": [ + 702, + 703, + 704, + 705, + 706, + 707 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n118", + "parent": "11", + "degrees_of_freedom": [ + 708, + 709, + 710, + 711, + 712, + 713 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n119", + "parent": "11", + "degrees_of_freedom": [ + 714, + 715, + 716, + 717, + 718, + 719 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n120", + "parent": "11", + "degrees_of_freedom": [ + 720, + 721, + 722, + 723, + 724, + 725 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n121", + "parent": "11", + "degrees_of_freedom": [ + 726, + 727, + 728, + 729, + 730, + 731 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n122", + "parent": "11", + "degrees_of_freedom": [ + 732, + 733, + 734, + 735, + 736, + 737 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n123", + "parent": "11", + "degrees_of_freedom": [ + 738, + 739, + 740, + 741, + 742, + 743 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n124", + "parent": "11", + "degrees_of_freedom": [ + 744, + 745, + 746, + 747, + 748, + 749 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n125", + "parent": "11", + "degrees_of_freedom": [ + 750, + 751, + 752, + 753, + 754, + 755 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n126", + "parent": "11", + "degrees_of_freedom": [ + 756, + 757, + 758, + 759, + 760, + 761 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n127", + "parent": "11", + "degrees_of_freedom": [ + 762, + 763, + 764, + 765, + 766, + 767 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n128", + "parent": "11", + "degrees_of_freedom": [ + 768, + 769, + 770, + 771, + 772, + 773 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n129", + "parent": "11", + "degrees_of_freedom": [ + 774, + 775, + 776, + 777, + 778, + 779 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n130", + "parent": "11", + "degrees_of_freedom": [ + 780, + 781, + 782, + 783, + 784, + 785 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n131", + "parent": "11", + "degrees_of_freedom": [ + 786, + 787, + 788, + 789, + 790, + 791 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n132", + "parent": "11", + "degrees_of_freedom": [ + 792, + 793, + 794, + 795, + 796, + 797 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n133", + "parent": "11", + "degrees_of_freedom": [ + 798, + 799, + 800, + 801, + 802, + 803 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n134", + "parent": "11", + "degrees_of_freedom": [ + 804, + 805, + 806, + 807, + 808, + 809 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n135", + "parent": "11", + "degrees_of_freedom": [ + 810, + 811, + 812, + 813, + 814, + 815 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n136", + "parent": "11", + "degrees_of_freedom": [ + 816, + 817, + 818, + 819, + 820, + 821 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n137", + "parent": "11", + "degrees_of_freedom": [ + 822, + 823, + 824, + 825, + 826, + 827 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n138", + "parent": "11", + "degrees_of_freedom": [ + 828, + 829, + 830, + 831, + 832, + 833 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n139", + "parent": "11", + "degrees_of_freedom": [ + 834, + 835, + 836, + 837, + 838, + 839 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n140", + "parent": "11", + "degrees_of_freedom": [ + 840, + 841, + 842, + 843, + 844, + 845 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n141", + "parent": "11", + "degrees_of_freedom": [ + 846, + 847, + 848, + 849, + 850, + 851 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0005000000000000004, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n142", + "parent": "11", + "degrees_of_freedom": [ + 852, + 853, + 854, + 855, + 856, + 857 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n143", + "parent": "11", + "degrees_of_freedom": [ + 858, + 859, + 860, + 861, + 862, + 863 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n144", + "parent": "11", + "degrees_of_freedom": [ + 864, + 865, + 866, + 867, + 868, + 869 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n145", + "parent": "11", + "degrees_of_freedom": [ + 870, + 871, + 872, + 873, + 874, + 875 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n146", + "parent": "11", + "degrees_of_freedom": [ + 876, + 877, + 878, + 879, + 880, + 881 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n147", + "parent": "11", + "degrees_of_freedom": [ + 882, + 883, + 884, + 885, + 886, + 887 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0014999999999999996, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n148", + "parent": "11", + "degrees_of_freedom": [ + 888, + 889, + 890, + 891, + 892, + 893 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0055, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n149", + "parent": "11", + "degrees_of_freedom": [ + 894, + 895, + 896, + 897, + 898, + 899 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0055, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n150", + "parent": "11", + "degrees_of_freedom": [ + 900, + 901, + 902, + 903, + 904, + 905 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n151", + "parent": "11", + "degrees_of_freedom": [ + 906, + 907, + 908, + 909, + 910, + 911 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n152", + "parent": "11", + "degrees_of_freedom": [ + 912, + 913, + 914, + 915, + 916, + 917 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n153", + "parent": "11", + "degrees_of_freedom": [ + 918, + 919, + 920, + 921, + 922, + 923 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n154", + "parent": "11", + "degrees_of_freedom": [ + 924, + 925, + 926, + 927, + 928, + 929 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0055, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n155", + "parent": "11", + "degrees_of_freedom": [ + 930, + 931, + 932, + 933, + 934, + 935 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0055, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n156", + "parent": "11", + "degrees_of_freedom": [ + 936, + 937, + 938, + 939, + 940, + 941 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0045000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n157", + "parent": "11", + "degrees_of_freedom": [ + 942, + 943, + 944, + 945, + 946, + 947 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0045000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n158", + "parent": "11", + "degrees_of_freedom": [ + 948, + 949, + 950, + 951, + 952, + 953 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0035000000000000014, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n159", + "parent": "11", + "degrees_of_freedom": [ + 954, + 955, + 956, + 957, + 958, + 959 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0035000000000000014, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n160", + "parent": "11", + "degrees_of_freedom": [ + 960, + 961, + 962, + 963, + 964, + 965 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n161", + "parent": "11", + "degrees_of_freedom": [ + 966, + 967, + 968, + 969, + 970, + 971 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n162", + "parent": "11", + "degrees_of_freedom": [ + 972, + 973, + 974, + 975, + 976, + 977 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n163", + "parent": "11", + "degrees_of_freedom": [ + 978, + 979, + 980, + 981, + 982, + 983 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n164", + "parent": "11", + "degrees_of_freedom": [ + 984, + 985, + 986, + 987, + 988, + 989 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n165", + "parent": "11", + "degrees_of_freedom": [ + 990, + 991, + 992, + 993, + 994, + 995 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n166", + "parent": "11", + "degrees_of_freedom": [ + 996, + 997, + 998, + 999, + 1000, + 1001 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0055, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n167", + "parent": "11", + "degrees_of_freedom": [ + 1002, + 1003, + 1004, + 1005, + 1006, + 1007 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0055, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n168", + "parent": "11", + "degrees_of_freedom": [ + 1008, + 1009, + 1010, + 1011, + 1012, + 1013 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0045000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n169", + "parent": "11", + "degrees_of_freedom": [ + 1014, + 1015, + 1016, + 1017, + 1018, + 1019 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0045000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n170", + "parent": "11", + "degrees_of_freedom": [ + 1020, + 1021, + 1022, + 1023, + 1024, + 1025 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0035000000000000014, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n171", + "parent": "11", + "degrees_of_freedom": [ + 1026, + 1027, + 1028, + 1029, + 1030, + 1031 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0035000000000000014, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n172", + "parent": "11", + "degrees_of_freedom": [ + 1032, + 1033, + 1034, + 1035, + 1036, + 1037 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n173", + "parent": "11", + "degrees_of_freedom": [ + 1038, + 1039, + 1040, + 1041, + 1042, + 1043 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n174", + "parent": "11", + "degrees_of_freedom": [ + 1044, + 1045, + 1046, + 1047, + 1048, + 1049 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n175", + "parent": "11", + "degrees_of_freedom": [ + 1050, + 1051, + 1052, + 1053, + 1054, + 1055 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n176", + "parent": "11", + "degrees_of_freedom": [ + 1056, + 1057, + 1058, + 1059, + 1060, + 1061 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n177", + "parent": "11", + "degrees_of_freedom": [ + 1062, + 1063, + 1064, + 1065, + 1066, + 1067 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n178", + "parent": "11", + "degrees_of_freedom": [ + 1068, + 1069, + 1070, + 1071, + 1072, + 1073 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0025000000000000005, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n179", + "parent": "11", + "degrees_of_freedom": [ + 1074, + 1075, + 1076, + 1077, + 1078, + 1079 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0025000000000000005, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n180", + "parent": "11", + "degrees_of_freedom": [ + 1080, + 1081, + 1082, + 1083, + 1084, + 1085 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0014999999999999996, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n181", + "parent": "11", + "degrees_of_freedom": [ + 1086, + 1087, + 1088, + 1089, + 1090, + 1091 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0014999999999999996, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n182", + "parent": "11", + "degrees_of_freedom": [ + 1092, + 1093, + 1094, + 1095, + 1096, + 1097 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0005000000000000004, + "z": 0.0005000000000000004 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n183", + "parent": "11", + "degrees_of_freedom": [ + 1098, + 1099, + 1100, + 1101, + 1102, + 1103 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0005000000000000004, + "z": 0.0014999999999999996 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n184", + "parent": "11", + "degrees_of_freedom": [ + 1104, + 1105, + 1106, + 1107, + 1108, + 1109 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n185", + "parent": "11", + "degrees_of_freedom": [ + 1110, + 1111, + 1112, + 1113, + 1114, + 1115 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n186", + "parent": "11", + "degrees_of_freedom": [ + 1116, + 1117, + 1118, + 1119, + 1120, + 1121 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n187", + "parent": "11", + "degrees_of_freedom": [ + 1122, + 1123, + 1124, + 1125, + 1126, + 1127 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n188", + "parent": "11", + "degrees_of_freedom": [ + 1128, + 1129, + 1130, + 1131, + 1132, + 1133 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n189", + "parent": "11", + "degrees_of_freedom": [ + 1134, + 1135, + 1136, + 1137, + 1138, + 1139 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.008500000000000002, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "nomSize": 1 + }, + { + "id": "n190", + "parent": "11", + "degrees_of_freedom": [ + 1140, + 1141, + 1142, + 1143, + 1144, + 1145 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0025000000000000005, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n191", + "parent": "11", + "degrees_of_freedom": [ + 1146, + 1147, + 1148, + 1149, + 1150, + 1151 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0025000000000000005, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n192", + "parent": "11", + "degrees_of_freedom": [ + 1152, + 1153, + 1154, + 1155, + 1156, + 1157 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0005000000000000004, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n193", + "parent": "11", + "degrees_of_freedom": [ + 1158, + 1159, + 1160, + 1161, + 1162, + 1163 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0005000000000000004, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n194", + "parent": "11", + "degrees_of_freedom": [ + 1164, + 1165, + 1166, + 1167, + 1168, + 1169 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0014999999999999996, + "z": 0.0035000000000000014 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + }, + { + "id": "n195", + "parent": "11", + "degrees_of_freedom": [ + 1170, + 1171, + 1172, + 1173, + 1174, + 1175 + ], + "restrained_degrees_of_freedom": [ + false, + false, + false, + true, + true, + true + ], + "position": { + "x": 0.0095, + "y": 0.0014999999999999996, + "z": 0.0045000000000000005 + }, + "force": { + "x": 0, + "y": 0, + "z": 0 + }, + "displacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "fixedDisplacement": { + "x": 0, + "y": 0, + "z": 0 + }, + "angle": { + "x": 0, + "y": 0, + "z": 0 + }, + "material": { + "cTE": 0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "nomSize": 1 + } + ], + "edges": [ + { + "id": "e0", + "source": 1, + "target": 0, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e1", + "source": 2, + "target": 0, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e2", + "source": 3, + "target": 1, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e3", + "source": 3, + "target": 2, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e4", + "source": 4, + "target": 2, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e5", + "source": 5, + "target": 3, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e6", + "source": 5, + "target": 4, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e7", + "source": 6, + "target": 4, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e8", + "source": 7, + "target": 5, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e9", + "source": 7, + "target": 6, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e10", + "source": 8, + "target": 6, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e11", + "source": 9, + "target": 7, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e12", + "source": 9, + "target": 8, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e13", + "source": 10, + "target": 0, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e14", + "source": 11, + "target": 10, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e15", + "source": 11, + "target": 1, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e16", + "source": 12, + "target": 10, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e17", + "source": 12, + "target": 2, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e18", + "source": 13, + "target": 11, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e19", + "source": 13, + "target": 12, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e20", + "source": 13, + "target": 3, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e21", + "source": 14, + "target": 12, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e22", + "source": 14, + "target": 4, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e23", + "source": 15, + "target": 13, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e24", + "source": 15, + "target": 14, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e25", + "source": 15, + "target": 5, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e26", + "source": 16, + "target": 14, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e27", + "source": 16, + "target": 6, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e28", + "source": 17, + "target": 15, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e29", + "source": 17, + "target": 16, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e30", + "source": 17, + "target": 7, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e31", + "source": 18, + "target": 16, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e32", + "source": 18, + "target": 8, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e33", + "source": 19, + "target": 17, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e34", + "source": 19, + "target": 18, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e35", + "source": 19, + "target": 9, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e36", + "source": 20, + "target": 1, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e37", + "source": 21, + "target": 20, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e38", + "source": 22, + "target": 20, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e39", + "source": 22, + "target": 3, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e40", + "source": 23, + "target": 21, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e41", + "source": 23, + "target": 22, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e42", + "source": 24, + "target": 22, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e43", + "source": 24, + "target": 5, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e44", + "source": 25, + "target": 23, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e45", + "source": 25, + "target": 24, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e46", + "source": 26, + "target": 24, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e47", + "source": 26, + "target": 7, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e48", + "source": 27, + "target": 25, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e49", + "source": 27, + "target": 26, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e50", + "source": 28, + "target": 26, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e51", + "source": 28, + "target": 9, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e52", + "source": 29, + "target": 27, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e53", + "source": 29, + "target": 28, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e54", + "source": 30, + "target": 11, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e55", + "source": 30, + "target": 20, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e56", + "source": 31, + "target": 30, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e57", + "source": 31, + "target": 21, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e58", + "source": 32, + "target": 30, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e59", + "source": 32, + "target": 13, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e60", + "source": 32, + "target": 22, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e61", + "source": 33, + "target": 31, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e62", + "source": 33, + "target": 32, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e63", + "source": 33, + "target": 23, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e64", + "source": 34, + "target": 32, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e65", + "source": 34, + "target": 15, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e66", + "source": 34, + "target": 24, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e67", + "source": 35, + "target": 33, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e68", + "source": 35, + "target": 34, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e69", + "source": 35, + "target": 25, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e70", + "source": 36, + "target": 34, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e71", + "source": 36, + "target": 17, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e72", + "source": 36, + "target": 26, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e73", + "source": 37, + "target": 35, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e74", + "source": 37, + "target": 36, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e75", + "source": 37, + "target": 27, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e76", + "source": 38, + "target": 36, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e77", + "source": 38, + "target": 19, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e78", + "source": 38, + "target": 28, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e79", + "source": 39, + "target": 37, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e80", + "source": 39, + "target": 38, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e81", + "source": 39, + "target": 29, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e82", + "source": 40, + "target": 21, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e83", + "source": 41, + "target": 40, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e84", + "source": 42, + "target": 40, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e85", + "source": 42, + "target": 23, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e86", + "source": 43, + "target": 41, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e87", + "source": 43, + "target": 42, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e88", + "source": 44, + "target": 42, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e89", + "source": 44, + "target": 25, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e90", + "source": 45, + "target": 43, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e91", + "source": 45, + "target": 44, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e92", + "source": 46, + "target": 44, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e93", + "source": 46, + "target": 27, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e94", + "source": 47, + "target": 45, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e95", + "source": 47, + "target": 46, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e96", + "source": 48, + "target": 46, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e97", + "source": 48, + "target": 29, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e98", + "source": 49, + "target": 47, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e99", + "source": 49, + "target": 48, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e100", + "source": 50, + "target": 31, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e101", + "source": 50, + "target": 40, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e102", + "source": 51, + "target": 50, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e103", + "source": 51, + "target": 41, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e104", + "source": 52, + "target": 50, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e105", + "source": 52, + "target": 33, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e106", + "source": 52, + "target": 42, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e107", + "source": 53, + "target": 51, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e108", + "source": 53, + "target": 52, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e109", + "source": 53, + "target": 43, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e110", + "source": 54, + "target": 52, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e111", + "source": 54, + "target": 35, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e112", + "source": 54, + "target": 44, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e113", + "source": 55, + "target": 53, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e114", + "source": 55, + "target": 54, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e115", + "source": 55, + "target": 45, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e116", + "source": 56, + "target": 54, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e117", + "source": 56, + "target": 37, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e118", + "source": 56, + "target": 46, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e119", + "source": 57, + "target": 55, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e120", + "source": 57, + "target": 56, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e121", + "source": 57, + "target": 47, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e122", + "source": 58, + "target": 56, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e123", + "source": 58, + "target": 39, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e124", + "source": 58, + "target": 48, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e125", + "source": 59, + "target": 57, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e126", + "source": 59, + "target": 58, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e127", + "source": 59, + "target": 49, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e128", + "source": 60, + "target": 41, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e129", + "source": 61, + "target": 60, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e130", + "source": 62, + "target": 60, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e131", + "source": 62, + "target": 43, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e132", + "source": 63, + "target": 61, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e133", + "source": 63, + "target": 62, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e134", + "source": 64, + "target": 62, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e135", + "source": 64, + "target": 45, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e136", + "source": 65, + "target": 63, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e137", + "source": 65, + "target": 64, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e138", + "source": 66, + "target": 64, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e139", + "source": 66, + "target": 47, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e140", + "source": 67, + "target": 65, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e141", + "source": 67, + "target": 66, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e142", + "source": 68, + "target": 66, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e143", + "source": 68, + "target": 49, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e144", + "source": 69, + "target": 67, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e145", + "source": 69, + "target": 68, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e146", + "source": 70, + "target": 51, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e147", + "source": 70, + "target": 60, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e148", + "source": 71, + "target": 70, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e149", + "source": 71, + "target": 61, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e150", + "source": 72, + "target": 70, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e151", + "source": 72, + "target": 53, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e152", + "source": 72, + "target": 62, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e153", + "source": 73, + "target": 71, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e154", + "source": 73, + "target": 72, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e155", + "source": 73, + "target": 63, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e156", + "source": 74, + "target": 72, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e157", + "source": 74, + "target": 55, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e158", + "source": 74, + "target": 64, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e159", + "source": 75, + "target": 73, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e160", + "source": 75, + "target": 74, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e161", + "source": 75, + "target": 65, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e162", + "source": 76, + "target": 74, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e163", + "source": 76, + "target": 57, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e164", + "source": 76, + "target": 66, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e165", + "source": 77, + "target": 75, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e166", + "source": 77, + "target": 76, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e167", + "source": 77, + "target": 67, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e168", + "source": 78, + "target": 76, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e169", + "source": 78, + "target": 59, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e170", + "source": 78, + "target": 68, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e171", + "source": 79, + "target": 77, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e172", + "source": 79, + "target": 78, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e173", + "source": 79, + "target": 69, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e174", + "source": 80, + "target": 61, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e175", + "source": 81, + "target": 80, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e176", + "source": 82, + "target": 80, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e177", + "source": 82, + "target": 63, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e178", + "source": 83, + "target": 81, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e179", + "source": 83, + "target": 82, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e180", + "source": 84, + "target": 82, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e181", + "source": 84, + "target": 65, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e182", + "source": 85, + "target": 83, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e183", + "source": 85, + "target": 84, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e184", + "source": 86, + "target": 84, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e185", + "source": 86, + "target": 67, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e186", + "source": 87, + "target": 85, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e187", + "source": 87, + "target": 86, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e188", + "source": 88, + "target": 86, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e189", + "source": 88, + "target": 69, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e190", + "source": 89, + "target": 87, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e191", + "source": 89, + "target": 88, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e192", + "source": 90, + "target": 71, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e193", + "source": 90, + "target": 80, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e194", + "source": 91, + "target": 90, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e195", + "source": 91, + "target": 81, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e196", + "source": 92, + "target": 90, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e197", + "source": 92, + "target": 73, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e198", + "source": 92, + "target": 82, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e199", + "source": 93, + "target": 91, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e200", + "source": 93, + "target": 92, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e201", + "source": 93, + "target": 83, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e202", + "source": 94, + "target": 92, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e203", + "source": 94, + "target": 75, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e204", + "source": 94, + "target": 84, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e205", + "source": 95, + "target": 93, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e206", + "source": 95, + "target": 94, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e207", + "source": 95, + "target": 85, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e208", + "source": 96, + "target": 94, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e209", + "source": 96, + "target": 77, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e210", + "source": 96, + "target": 86, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e211", + "source": 97, + "target": 95, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e212", + "source": 97, + "target": 96, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e213", + "source": 97, + "target": 87, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e214", + "source": 98, + "target": 96, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e215", + "source": 98, + "target": 79, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e216", + "source": 98, + "target": 88, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e217", + "source": 99, + "target": 97, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e218", + "source": 99, + "target": 98, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e219", + "source": 99, + "target": 89, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e220", + "source": 100, + "target": 10, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e221", + "source": 101, + "target": 100, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e222", + "source": 101, + "target": 12, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e223", + "source": 102, + "target": 100, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e224", + "source": 103, + "target": 102, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e225", + "source": 103, + "target": 101, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e226", + "source": 104, + "target": 102, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e227", + "source": 105, + "target": 104, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e228", + "source": 105, + "target": 103, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e229", + "source": 106, + "target": 100, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e230", + "source": 106, + "target": 11, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e231", + "source": 107, + "target": 106, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e232", + "source": 107, + "target": 101, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e233", + "source": 107, + "target": 13, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e234", + "source": 108, + "target": 102, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e235", + "source": 108, + "target": 106, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e236", + "source": 109, + "target": 108, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e237", + "source": 109, + "target": 103, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e238", + "source": 109, + "target": 107, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e239", + "source": 110, + "target": 104, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e240", + "source": 110, + "target": 108, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e241", + "source": 111, + "target": 110, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e242", + "source": 111, + "target": 105, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e243", + "source": 111, + "target": 109, + "material": { + "cTE": -0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e244", + "source": 112, + "target": 16, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e245", + "source": 113, + "target": 112, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e246", + "source": 113, + "target": 18, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e247", + "source": 114, + "target": 112, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e248", + "source": 115, + "target": 114, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e249", + "source": 115, + "target": 113, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e250", + "source": 116, + "target": 114, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e251", + "source": 117, + "target": 116, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e252", + "source": 117, + "target": 115, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e253", + "source": 118, + "target": 113, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e254", + "source": 118, + "target": 19, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e255", + "source": 119, + "target": 118, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e256", + "source": 119, + "target": 112, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e257", + "source": 119, + "target": 17, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e258", + "source": 120, + "target": 114, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e259", + "source": 120, + "target": 119, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e260", + "source": 121, + "target": 120, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e261", + "source": 121, + "target": 115, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e262", + "source": 121, + "target": 118, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e263", + "source": 122, + "target": 116, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e264", + "source": 122, + "target": 120, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e265", + "source": 123, + "target": 122, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e266", + "source": 123, + "target": 117, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e267", + "source": 123, + "target": 121, + "material": { + "cTE": -0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e268", + "source": 124, + "target": 104, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e269", + "source": 125, + "target": 124, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e270", + "source": 125, + "target": 105, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e271", + "source": 126, + "target": 124, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e272", + "source": 127, + "target": 126, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e273", + "source": 127, + "target": 125, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e274", + "source": 128, + "target": 126, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e275", + "source": 129, + "target": 128, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e276", + "source": 129, + "target": 127, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e277", + "source": 130, + "target": 124, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e278", + "source": 130, + "target": 110, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e279", + "source": 131, + "target": 130, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e280", + "source": 131, + "target": 125, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e281", + "source": 131, + "target": 111, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e282", + "source": 132, + "target": 126, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e283", + "source": 132, + "target": 130, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e284", + "source": 133, + "target": 132, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e285", + "source": 133, + "target": 127, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e286", + "source": 133, + "target": 131, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e287", + "source": 134, + "target": 128, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e288", + "source": 134, + "target": 132, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e289", + "source": 135, + "target": 134, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e290", + "source": 135, + "target": 129, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e291", + "source": 135, + "target": 133, + "material": { + "cTE": 0.1, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e292", + "source": 136, + "target": 116, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e293", + "source": 137, + "target": 136, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e294", + "source": 137, + "target": 117, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e295", + "source": 138, + "target": 136, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e296", + "source": 139, + "target": 138, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e297", + "source": 139, + "target": 137, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e298", + "source": 140, + "target": 138, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e299", + "source": 141, + "target": 140, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e300", + "source": 141, + "target": 139, + "material": { + "cTE": 0, + "poissonRatio": 0, + "density": 50, + "area": 0.000001, + "stiffness": 10000000 + }, + "stress": 0 + }, + { + "id": "e301", + "source": 142, + "target": 136, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e302", + "source": 142, + "target": 122, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e303", + "source": 143, + "target": 142, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e304", + "source": 143, + "target": 137, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e305", + "source": 143, + "target": 123, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e306", + "source": 144, + "target": 140, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e307", + "source": 145, + "target": 144, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e308", + "source": 145, + "target": 141, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e309", + "source": 146, + "target": 138, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e310", + "source": 146, + "target": 142, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e311", + "source": 146, + "target": 144, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e312", + "source": 147, + "target": 146, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e313", + "source": 147, + "target": 139, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e314", + "source": 147, + "target": 143, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e315", + "source": 147, + "target": 145, + "material": { + "cTE": 0.1, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e316", + "source": 148, + "target": 90, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e317", + "source": 149, + "target": 148, + "material": { + "cTE": 0.5, + "poissonRatio": 0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 }, { - "id": "e1", - "source": 2, - "target": 0, + "id": "e318", + "source": 149, + "target": 92, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2362,12 +14539,12 @@ "stress": 0 }, { - "id": "e2", - "source": 3, - "target": 1, + "id": "e319", + "source": 150, + "target": 148, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2375,12 +14552,12 @@ "stress": 0 }, { - "id": "e3", - "source": 3, - "target": 2, + "id": "e320", + "source": 151, + "target": 150, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2388,12 +14565,12 @@ "stress": 0 }, { - "id": "e4", - "source": 4, - "target": 2, + "id": "e321", + "source": 151, + "target": 149, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2401,12 +14578,12 @@ "stress": 0 }, { - "id": "e5", - "source": 5, - "target": 3, + "id": "e322", + "source": 152, + "target": 150, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2414,12 +14591,12 @@ "stress": 0 }, { - "id": "e6", - "source": 5, - "target": 4, + "id": "e323", + "source": 153, + "target": 152, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2427,12 +14604,12 @@ "stress": 0 }, { - "id": "e7", - "source": 6, - "target": 4, + "id": "e324", + "source": 153, + "target": 151, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2440,12 +14617,12 @@ "stress": 0 }, { - "id": "e8", - "source": 7, - "target": 5, + "id": "e325", + "source": 154, + "target": 148, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2453,12 +14630,12 @@ "stress": 0 }, { - "id": "e9", - "source": 7, - "target": 6, + "id": "e326", + "source": 154, + "target": 91, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2466,12 +14643,12 @@ "stress": 0 }, { - "id": "e10", - "source": 8, - "target": 6, + "id": "e327", + "source": 155, + "target": 154, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2479,12 +14656,12 @@ "stress": 0 }, { - "id": "e11", - "source": 9, - "target": 7, + "id": "e328", + "source": 155, + "target": 149, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2492,12 +14669,12 @@ "stress": 0 }, { - "id": "e12", - "source": 9, - "target": 8, + "id": "e329", + "source": 155, + "target": 93, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2505,12 +14682,12 @@ "stress": 0 }, { - "id": "e13", - "source": 10, - "target": 0, + "id": "e330", + "source": 156, + "target": 150, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2518,12 +14695,12 @@ "stress": 0 }, { - "id": "e14", - "source": 11, - "target": 10, + "id": "e331", + "source": 156, + "target": 154, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2531,12 +14708,12 @@ "stress": 0 }, { - "id": "e15", - "source": 11, - "target": 1, + "id": "e332", + "source": 157, + "target": 156, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2544,12 +14721,12 @@ "stress": 0 }, { - "id": "e16", - "source": 12, - "target": 10, + "id": "e333", + "source": 157, + "target": 151, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2557,12 +14734,12 @@ "stress": 0 }, { - "id": "e17", - "source": 12, - "target": 2, + "id": "e334", + "source": 157, + "target": 155, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2570,12 +14747,12 @@ "stress": 0 }, { - "id": "e18", - "source": 13, - "target": 11, + "id": "e335", + "source": 158, + "target": 152, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2583,12 +14760,12 @@ "stress": 0 }, { - "id": "e19", - "source": 13, - "target": 12, + "id": "e336", + "source": 158, + "target": 156, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2596,12 +14773,12 @@ "stress": 0 }, { - "id": "e20", - "source": 13, - "target": 3, + "id": "e337", + "source": 159, + "target": 158, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2609,12 +14786,12 @@ "stress": 0 }, { - "id": "e21", - "source": 14, - "target": 12, + "id": "e338", + "source": 159, + "target": 153, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2622,12 +14799,12 @@ "stress": 0 }, { - "id": "e22", - "source": 14, - "target": 4, + "id": "e339", + "source": 159, + "target": 157, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2635,12 +14812,12 @@ "stress": 0 }, { - "id": "e23", - "source": 15, - "target": 13, + "id": "e340", + "source": 160, + "target": 96, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2648,12 +14825,12 @@ "stress": 0 }, { - "id": "e24", - "source": 15, - "target": 14, + "id": "e341", + "source": 161, + "target": 160, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2661,12 +14838,12 @@ "stress": 0 }, { - "id": "e25", - "source": 15, - "target": 5, + "id": "e342", + "source": 161, + "target": 98, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2674,12 +14851,12 @@ "stress": 0 }, { - "id": "e26", - "source": 16, - "target": 14, + "id": "e343", + "source": 162, + "target": 160, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2687,12 +14864,12 @@ "stress": 0 }, { - "id": "e27", - "source": 16, - "target": 6, + "id": "e344", + "source": 163, + "target": 162, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2700,12 +14877,12 @@ "stress": 0 }, { - "id": "e28", - "source": 17, - "target": 15, + "id": "e345", + "source": 163, + "target": 161, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2713,12 +14890,12 @@ "stress": 0 }, { - "id": "e29", - "source": 17, - "target": 16, + "id": "e346", + "source": 164, + "target": 162, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2726,12 +14903,12 @@ "stress": 0 }, { - "id": "e30", - "source": 17, - "target": 7, + "id": "e347", + "source": 165, + "target": 164, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2739,12 +14916,12 @@ "stress": 0 }, { - "id": "e31", - "source": 18, - "target": 16, + "id": "e348", + "source": 165, + "target": 163, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2752,12 +14929,12 @@ "stress": 0 }, { - "id": "e32", - "source": 18, - "target": 8, + "id": "e349", + "source": 166, + "target": 161, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2765,12 +14942,12 @@ "stress": 0 }, { - "id": "e33", - "source": 19, - "target": 17, + "id": "e350", + "source": 166, + "target": 99, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2778,12 +14955,155 @@ "stress": 0 }, { - "id": "e34", - "source": 19, - "target": 18, + "id": "e351", + "source": 167, + "target": 166, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e352", + "source": 167, + "target": 160, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e353", + "source": 167, + "target": 97, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e354", + "source": 168, + "target": 162, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e355", + "source": 168, + "target": 167, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e356", + "source": 169, + "target": 168, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e357", + "source": 169, + "target": 163, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e358", + "source": 169, + "target": 166, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e359", + "source": 170, + "target": 164, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e360", + "source": 170, + "target": 168, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e361", + "source": 171, + "target": 170, + "material": { + "cTE": -0.5, + "poissonRatio": -0.1, + "density": 50, + "area": 0.000001, + "stiffness": 1000000 + }, + "stress": 0 + }, + { + "id": "e362", + "source": 171, + "target": 165, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2791,12 +15111,12 @@ "stress": 0 }, { - "id": "e35", - "source": 19, - "target": 9, + "id": "e363", + "source": 171, + "target": 169, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": -0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2804,129 +15124,129 @@ "stress": 0 }, { - "id": "e36", - "source": 20, - "target": 10, + "id": "e364", + "source": 172, + "target": 152, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e37", - "source": 21, - "target": 20, + "id": "e365", + "source": 173, + "target": 172, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e38", - "source": 21, - "target": 11, + "id": "e366", + "source": 173, + "target": 153, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e39", - "source": 22, - "target": 20, + "id": "e367", + "source": 174, + "target": 172, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e40", - "source": 22, - "target": 12, + "id": "e368", + "source": 175, + "target": 174, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e41", - "source": 23, - "target": 21, + "id": "e369", + "source": 175, + "target": 173, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e42", - "source": 23, - "target": 22, + "id": "e370", + "source": 176, + "target": 174, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e43", - "source": 23, - "target": 13, + "id": "e371", + "source": 177, + "target": 176, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e44", - "source": 24, - "target": 20, + "id": "e372", + "source": 177, + "target": 175, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e45", - "source": 25, - "target": 24, + "id": "e373", + "source": 178, + "target": 172, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2934,12 +15254,12 @@ "stress": 0 }, { - "id": "e46", - "source": 25, - "target": 21, + "id": "e374", + "source": 178, + "target": 158, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2947,12 +15267,12 @@ "stress": 0 }, { - "id": "e47", - "source": 26, - "target": 24, + "id": "e375", + "source": 179, + "target": 178, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2960,12 +15280,12 @@ "stress": 0 }, { - "id": "e48", - "source": 26, - "target": 22, + "id": "e376", + "source": 179, + "target": 173, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2973,12 +15293,12 @@ "stress": 0 }, { - "id": "e49", - "source": 27, - "target": 25, + "id": "e377", + "source": 179, + "target": 159, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2986,12 +15306,12 @@ "stress": 0 }, { - "id": "e50", - "source": 27, - "target": 26, + "id": "e378", + "source": 180, + "target": 174, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -2999,12 +15319,12 @@ "stress": 0 }, { - "id": "e51", - "source": 27, - "target": 23, + "id": "e379", + "source": 180, + "target": 178, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3012,12 +15332,12 @@ "stress": 0 }, { - "id": "e52", - "source": 28, - "target": 24, + "id": "e380", + "source": 181, + "target": 180, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3025,12 +15345,12 @@ "stress": 0 }, { - "id": "e53", - "source": 29, - "target": 28, + "id": "e381", + "source": 181, + "target": 175, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3038,12 +15358,12 @@ "stress": 0 }, { - "id": "e54", - "source": 29, - "target": 25, + "id": "e382", + "source": 181, + "target": 179, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3051,12 +15371,12 @@ "stress": 0 }, { - "id": "e55", - "source": 30, - "target": 28, + "id": "e383", + "source": 182, + "target": 176, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3064,12 +15384,12 @@ "stress": 0 }, { - "id": "e56", - "source": 30, - "target": 26, + "id": "e384", + "source": 182, + "target": 180, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3077,12 +15397,12 @@ "stress": 0 }, { - "id": "e57", - "source": 31, - "target": 29, + "id": "e385", + "source": 183, + "target": 182, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3090,12 +15410,12 @@ "stress": 0 }, { - "id": "e58", - "source": 31, - "target": 30, + "id": "e386", + "source": 183, + "target": 177, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3103,12 +15423,12 @@ "stress": 0 }, { - "id": "e59", - "source": 31, - "target": 27, + "id": "e387", + "source": 183, + "target": 181, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": 0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3116,129 +15436,129 @@ "stress": 0 }, { - "id": "e60", - "source": 32, - "target": 28, + "id": "e388", + "source": 184, + "target": 164, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e61", - "source": 33, - "target": 32, + "id": "e389", + "source": 185, + "target": 184, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e62", - "source": 33, - "target": 29, + "id": "e390", + "source": 185, + "target": 165, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e63", - "source": 34, - "target": 32, + "id": "e391", + "source": 186, + "target": 184, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e64", - "source": 34, - "target": 30, + "id": "e392", + "source": 187, + "target": 186, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e65", - "source": 35, - "target": 33, + "id": "e393", + "source": 187, + "target": 185, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e66", - "source": 35, - "target": 34, + "id": "e394", + "source": 188, + "target": 186, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e67", - "source": 35, - "target": 31, + "id": "e395", + "source": 189, + "target": 188, "material": { - "cTE": 0.1, + "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e68", - "source": 36, - "target": 32, + "id": "e396", + "source": 189, + "target": 187, "material": { "cTE": 0, "poissonRatio": 0, "density": 50, "area": 0.000001, - "stiffness": 1000000 + "stiffness": 10000000 }, "stress": 0 }, { - "id": "e69", - "source": 37, - "target": 36, + "id": "e397", + "source": 190, + "target": 184, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3246,12 +15566,12 @@ "stress": 0 }, { - "id": "e70", - "source": 37, - "target": 33, + "id": "e398", + "source": 190, + "target": 170, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3259,12 +15579,12 @@ "stress": 0 }, { - "id": "e71", - "source": 38, - "target": 36, + "id": "e399", + "source": 191, + "target": 190, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3272,12 +15592,12 @@ "stress": 0 }, { - "id": "e72", - "source": 38, - "target": 34, + "id": "e400", + "source": 191, + "target": 185, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3285,12 +15605,12 @@ "stress": 0 }, { - "id": "e73", - "source": 39, - "target": 37, + "id": "e401", + "source": 191, + "target": 171, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3298,12 +15618,12 @@ "stress": 0 }, { - "id": "e74", - "source": 39, - "target": 38, + "id": "e402", + "source": 192, + "target": 188, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3311,12 +15631,12 @@ "stress": 0 }, { - "id": "e75", - "source": 39, - "target": 35, + "id": "e403", + "source": 193, + "target": 192, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3324,12 +15644,12 @@ "stress": 0 }, { - "id": "e76", - "source": 40, - "target": 36, + "id": "e404", + "source": 193, + "target": 189, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3337,12 +15657,12 @@ "stress": 0 }, { - "id": "e77", - "source": 41, - "target": 40, + "id": "e405", + "source": 194, + "target": 186, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3350,12 +15670,12 @@ "stress": 0 }, { - "id": "e78", - "source": 41, - "target": 37, + "id": "e406", + "source": 194, + "target": 190, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3363,12 +15683,12 @@ "stress": 0 }, { - "id": "e79", - "source": 42, - "target": 40, + "id": "e407", + "source": 194, + "target": 192, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3376,12 +15696,12 @@ "stress": 0 }, { - "id": "e80", - "source": 42, - "target": 38, + "id": "e408", + "source": 195, + "target": 194, "material": { - "cTE": 0, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3389,12 +15709,12 @@ "stress": 0 }, { - "id": "e81", - "source": 43, - "target": 41, + "id": "e409", + "source": 195, + "target": 187, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3402,12 +15722,12 @@ "stress": 0 }, { - "id": "e82", - "source": 43, - "target": 42, + "id": "e410", + "source": 195, + "target": 191, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3415,12 +15735,12 @@ "stress": 0 }, { - "id": "e83", - "source": 43, - "target": 39, + "id": "e411", + "source": 195, + "target": 193, "material": { - "cTE": 0.1, - "poissonRatio": 0, + "cTE": 0.5, + "poissonRatio": -0.1, "density": 50, "area": 0.000001, "stiffness": 1000000 @@ -3428,7 +15748,7 @@ "stress": 0 } ], - "ndofs": 264, + "ndofs": 1176, "animation": { "showDisplacement": true, "exaggeration": 1, @@ -3444,34 +15764,11 @@ "hierarchical": true, "voxelSize": 0.001, "materials": [], - "supports": [ - [ - { - "max": { - "x": 0.002, - "z": 0.005, - "y": 0.008 - }, - "min": { - "x": 0, - "z": 0, - "y": 0.006 - } - }, - [ - false, - true, - false, - true, - true, - true - ] - ] - ], + "supports": [], "loads": [], "fixedDisplacements": [], - "numTimeSteps": 10000, - "maxNumFiles": 200, + "numTimeSteps": 150000, + "maxNumFiles": 50, "poisson": false, "scale": 10000, "linear": true, diff --git a/json/tutorialInit.json b/json/tutorialInit.json index d2ecc70227bf8c5e30625a1d2d0eefee417cf5f3..24a94683f6ff511dc10e7f5ec2597e5892a826c4 100644 --- a/json/tutorialInit.json +++ b/json/tutorialInit.json @@ -1 +1 @@ -{"setup":{"poisson":false,"rhino":false,"latticeSizeY":8,"scale":10000.0,"thermal":true,"maxNumFiles":200,"voxelSize":0.001,"numTimeSteps":10000,"linear":true,"latticeSizeX":2,"gridSize":10,"latticeSizeZ":5,"useVoxelList":true,"hierarchical":true,"globalDamping":0.15}} \ No newline at end of file +{"setup":{"materials":[],"poisson":false,"rhino":false,"latticeSizeY":8,"scale":10000.0,"supports":[],"thermal":true,"loads":[],"maxNumFiles":50,"voxelSize":0.001,"numTimeSteps":150000.0,"fixedDisplacements":[],"linear":true,"latticeSizeX":10,"gridSize":10,"latticeSizeZ":5,"useVoxelList":true,"voxelList":[[[0,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[2,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[3,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[4,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[5,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[6,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[7,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,7,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,7,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,7,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,7,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,7,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,6,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,6,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,6,2],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,6,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,6,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,5,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,0],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,1],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,0],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,1],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,0],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,1],{"cTE":-0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,5,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,4,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,3,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,4],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,5,3],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,3],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,4,4],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,3],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,3,4],{"cTE":-0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,2,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,1,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,1,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,0,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,0,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,2,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,0],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,1],{"cTE":0.1,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[0,2,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,2,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,1,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,1,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,0,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[0,0,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[1,2,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,2,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,0,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,3],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[1,1,4],{"cTE":0.1,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,5,0],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,5,1],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,4,0],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,4,1],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,3,0],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,3,1],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,5,0],{"cTE":-0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,5,1],{"cTE":-0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,4,0],{"cTE":-0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,4,1],{"cTE":-0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,3,0],{"cTE":-0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,3,1],{"cTE":-0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,5,3],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,5,4],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,4,3],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,4,4],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,3,3],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,3,4],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,5,4],{"cTE":-0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,5,3],{"cTE":-0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,4,3],{"cTE":-0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,4,4],{"cTE":-0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,3,3],{"cTE":-0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,3,4],{"cTE":-0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,2,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,2,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,1,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,1,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,0,0],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,0,1],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,2,0],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,2,1],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,1,0],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,1,1],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,0,0],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,0,1],{"cTE":0.5,"poissonRatio":0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[8,2,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,2,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,1,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,1,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,0,3],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[8,0,4],{"cTE":0.0,"poissonRatio":0.0,"density":50.0,"area":1.0e-6,"stiffness":1.0e7}],[[9,2,3],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,2,4],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,0,3],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,0,4],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,1,3],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}],[[9,1,4],{"cTE":0.5,"poissonRatio":-0.1,"density":50.0,"area":1.0e-6,"stiffness":1.0e6}]],"hierarchical":true,"globalDamping":0.15}} \ No newline at end of file diff --git a/julia/examples/puppy.jl b/julia/examples/puppy.jl new file mode 100644 index 0000000000000000000000000000000000000000..b64a3f8e433a07c24e4d8b90f5e3b84864f9e6c7 --- /dev/null +++ b/julia/examples/puppy.jl @@ -0,0 +1,649 @@ +# Amira Abdel-Rahman +# (c) Massachusetts Institute of Technology 2020 + +######################### 1. Voxel Design ########################### +setup = Dict() + +### 1.b Draw Lattice + +rhino=false + +voxelSize=0.001 +latticeSizeX=2+8 +latticeSizeY=8 +latticeSizeZ=5 + +gridSize=10 + +setup["gridSize"]=gridSize + +setup["rhino"]=false +setup["useVoxelList"]=true + + +setup["latticeSizeX"]=latticeSizeX +setup["latticeSizeY"]=latticeSizeY +setup["latticeSizeZ"]=latticeSizeZ + +######################### 2. Boundary Conditions ######################### + +######################### 2.a. Global Settings ######################### + +#scaling params +setup["voxelSize"]=voxelSize; #voxel size +setup["scale"]=1e4; #scale for visualization +setup["hierarchical"]=true; #hierachical simualtion + + +#simulation params +setup["numTimeSteps"]=30000*5.0/1.0; #num of timesteps for simulation + +setup["poisson"]=false; # account for poisson ration (only for hierarchical) +setup["linear"]=true; # linear vs non-linear +setup["thermal"]=true; #if there is change in temperature +setup["globalDamping"]=0.15; # (usually from 0.1 to 0.4) + + +#visualization params +setup["maxNumFiles"]=50; #num of saved timesteps for visualization + + +######################### 2.b. Materials ######################### + +density=50.0 +stiffness=1e6 + +#default neural material +material0= Dict() +material0["area"]=voxelSize*voxelSize +material0["density"]=density +material0["stiffness"]=stiffness*10.0 +material0["poissonRatio"]=0.0 +material0["cTE"]=0.0 #coefficient of thermal expansion + +#first material leg1 +material11= Dict() +material11["area"]=voxelSize*voxelSize +material11["density"]=density +material11["stiffness"]=stiffness +material11["poissonRatio"]=0.1 +material11["cTE"]=-0.1 #coefficient of thermal expansion + + +#second material leg1 +material12= Dict() +material12["area"]=voxelSize*voxelSize +material12["density"]=density +material12["stiffness"]=stiffness +material12["poissonRatio"]=0.1 +material12["cTE"]=0.1 #coefficient of thermal expansion + + +#first material leg2 +material21= Dict() +material21["area"]=voxelSize*voxelSize +material21["density"]=density +material21["stiffness"]=stiffness +material21["poissonRatio"]=-0.1 +material21["cTE"]=-0.1 #coefficient of thermal expansion + + +#second material leg2 +material22= Dict() +material22["area"]=voxelSize*voxelSize +material22["density"]=density +material22["stiffness"]=stiffness +material22["poissonRatio"]=-0.1 +material22["cTE"]=0.1 #coefficient of thermal expansion + + +#first material leg1 +material11_shift= Dict() +material11_shift["area"]=voxelSize*voxelSize +material11_shift["density"]=density +material11_shift["stiffness"]=stiffness +material11_shift["poissonRatio"]=0.1 +material11_shift["cTE"]=-0.5 #coefficient of thermal expansion + + +#second material leg1 +material12_shift= Dict() +material12_shift["area"]=voxelSize*voxelSize +material12_shift["density"]=density +material12_shift["stiffness"]=stiffness +material12_shift["poissonRatio"]=0.1 +material12_shift["cTE"]=0.5 #coefficient of thermal expansion + + +#first material leg2 +material21_shift= Dict() +material21_shift["area"]=voxelSize*voxelSize +material21_shift["density"]=density +material21_shift["stiffness"]=stiffness +material21_shift["poissonRatio"]=-0.1 +material21_shift["cTE"]=-0.5 #coefficient of thermal expansion + + +#second material leg2 +material22_shift= Dict() +material22_shift["area"]=voxelSize*voxelSize +material22_shift["density"]=density +material22_shift["stiffness"]=stiffness +material22_shift["poissonRatio"]=-0.1 +material22_shift["cTE"]=0.5 #coefficient of thermal expansion + + + +setup["materials"]=[ + +]; + + +#//allowed x, yand z are from -gridSize to +gridSize (floor is at 0) +setup["voxelList"]=[ + + [[0,7,0],material0],#top + [[1,7,0],material0],#top + [[0,7,1],material0],#top + [[1,7,1],material0],#top + [[0,7,2],material0],#top + [[1,7,2],material0],#top + [[0,7,3],material0],#top + [[1,7,3],material0],#top + [[0,7,4],material0],#top + [[1,7,4],material0],#top + + [[0,6,0],material0],#top + [[1,6,0],material0],#top + [[0,6,1],material0],#top + [[1,6,1],material0],#top + [[0,6,2],material0],#top + [[1,6,2],material0],#top + [[0,6,3],material0],#top + [[1,6,3],material0],#top + [[0,6,4],material0],#top + [[1,6,4],material0],#top + + + + [[0+2,7,0],material0],#top + [[1+2,7,0],material0],#top + [[0+2,7,1],material0],#top + [[1+2,7,1],material0],#top + [[0+2,7,2],material0],#top + [[1+2,7,2],material0],#top + [[0+2,7,3],material0],#top + [[1+2,7,3],material0],#top + [[0+2,7,4],material0],#top + [[1+2,7,4],material0],#top + [[0+2,6,0],material0],#top + [[1+2,6,0],material0],#top + [[0+2,6,1],material0],#top + [[1+2,6,1],material0],#top + [[0+2,6,2],material0],#top + [[1+2,6,2],material0],#top + [[0+2,6,3],material0],#top + [[1+2,6,3],material0],#top + [[0+2,6,4],material0],#top + [[1+2,6,4],material0],#top + + + [[0+4,7,0],material0],#top + [[1+4,7,0],material0],#top + [[0+4,7,1],material0],#top + [[1+4,7,1],material0],#top + [[0+4,7,2],material0],#top + [[1+4,7,2],material0],#top + [[0+4,7,3],material0],#top + [[1+4,7,3],material0],#top + [[0+4,7,4],material0],#top + [[1+4,7,4],material0],#top + [[0+4,6,0],material0],#top + [[1+4,6,0],material0],#top + [[0+4,6,1],material0],#top + [[1+4,6,1],material0],#top + [[0+4,6,2],material0],#top + [[1+4,6,2],material0],#top + [[0+4,6,3],material0],#top + [[1+4,6,3],material0],#top + [[0+4,6,4],material0],#top + [[1+4,6,4],material0],#top + + [[0+6,7,0],material0],#top + [[1+6,7,0],material0],#top + [[0+6,7,1],material0],#top + [[1+6,7,1],material0],#top + [[0+6,7,2],material0],#top + [[1+6,7,2],material0],#top + [[0+6,7,3],material0],#top + [[1+6,7,3],material0],#top + [[0+6,7,4],material0],#top + [[1+6,7,4],material0],#top + [[0+6,6,0],material0],#top + [[1+6,6,0],material0],#top + [[0+6,6,1],material0],#top + [[1+6,6,1],material0],#top + [[0+6,6,2],material0],#top + [[1+6,6,2],material0],#top + [[0+6,6,3],material0],#top + [[1+6,6,3],material0],#top + [[0+6,6,4],material0],#top + [[1+6,6,4],material0],#top + + [[0+8,7,0],material0],#top + [[1+8,7,0],material0],#top + [[0+8,7,1],material0],#top + [[1+8,7,1],material0],#top + [[0+8,7,2],material0],#top + [[1+8,7,2],material0],#top + [[0+8,7,3],material0],#top + [[1+8,7,3],material0],#top + [[0+8,7,4],material0],#top + [[1+8,7,4],material0],#top + [[0+8,6,0],material0],#top + [[1+8,6,0],material0],#top + [[0+8,6,1],material0],#top + [[1+8,6,1],material0],#top + [[0+8,6,2],material0],#top + [[1+8,6,2],material0],#top + [[0+8,6,3],material0],#top + [[1+8,6,3],material0],#top + [[0+8,6,4],material0],#top + [[1+8,6,4],material0],#top + + ########################################################## front legs #################################################################### + + ########################upper################################## + [[0,5,0],material12],#leg1 front + [[0,5,1],material12],#leg1 front + [[0,4,0],material12],#leg1 front + [[0,4,1],material12],#leg1 front + [[0,3,0],material12],#leg1 front + [[0,3,1],material12],#leg1 front + + + [[1,5,0],material11],#leg1 back + [[1,5,1],material11],#leg1 back + [[1,4,0],material11],#leg1 back + [[1,4,1],material11],#leg1 back + [[1,3,0],material11],#leg1 back + [[1,3,1],material11],#leg1 back + + + [[0,5,3],material22],#leg2 front + [[0,5,4],material22],#leg2 front + [[0,4,3],material22],#leg2 front + [[0,4,4],material22],#leg2 front + [[0,3,3],material22],#leg2 front + [[0,3,4],material22],#leg2 front + + + [[1,5,4],material21],#leg2 back + [[1,5,3],material21],#leg2 back + [[1,4,3],material21],#leg2 back + [[1,4,4],material21],#leg2 back + [[1,3,3],material21],#leg2 back + [[1,3,4],material21],#leg2 back + + + ########################lower################################## + + + [[0,2,0],material0],#leg1 front + [[0,2,1],material0],#leg1 front + [[0,1,0],material0],#leg1 front + [[0,1,1],material0],#leg1 front + [[0,0,0],material0],#leg1 front + [[0,0,1],material0],#leg1 front + + + [[1,2,0],material12],#leg1 back 2 + [[1,2,1],material12],#leg1 back 2 + [[1,1,0],material12],#leg1 back 2 + [[1,1,1],material12],#leg1 back 2 + [[1,0,0],material12],#leg1 back 2 + [[1,0,1],material12],#leg1 back 2 + + [[0,2,3],material0],#leg2 front 2 + [[0,2,4],material0],#leg2 front 2 + [[0,1,3],material0],#leg2 front 2 + [[0,1,4],material0],#leg2 front 2 + [[0,0,3],material0],#leg2 front 2 + [[0,0,4],material0],#leg2 front 2 + + + [[1,2,3],material22],#leg2 back + [[1,2,4],material22],#leg2 back + [[1,0,3],material22],#leg2 back + [[1,0,4],material22],#leg2 back + [[1,1,3],material22],#leg2 back + [[1,1,4],material22],#leg2 back + + ########################################################## back legs #################################################################### + + ########################upper################################## + # [[0+4,5,0],material22],#leg1 front + # [[0+4,5,1],material22],#leg1 front + # [[0+4,4,0],material22],#leg1 front + # [[0+4,4,1],material22],#leg1 front + # [[0+4,3,0],material22],#leg1 front + # [[0+4,3,1],material22],#leg1 front + + # [[1+4,5,0],material21],#leg1 back + # [[1+4,5,1],material21],#leg1 back + # [[1+4,4,0],material21],#leg1 back + # [[1+4,4,1],material21],#leg1 back + # [[1+4,3,0],material21],#leg1 back + # [[1+4,3,1],material21],#leg1 back + + # [[0+4,5,3],material12],#leg2 front + # [[0+4,5,4],material12],#leg2 front + # [[0+4,4,3],material12],#leg2 front + # [[0+4,4,4],material12],#leg2 front + # [[0+4,3,3],material12],#leg2 front + # [[0+4,3,4],material12],#leg2 front + + # [[1+4,5,4],material11],#leg2 back + # [[1+4,5,3],material11],#leg2 back + # [[1+4,4,3],material11],#leg2 back + # [[1+4,4,4],material11],#leg2 back + # [[1+4,3,3],material11],#leg2 back + # [[1+4,3,4],material11],#leg2 back + + + ########################lower################################## + + + # [[0+4,2,0],material0],#leg1 front + # [[0+4,2,1],material0],#leg1 front + # [[0+4,1,0],material0],#leg1 front + # [[0+4,1,1],material0],#leg1 front + # [[0+4,0,0],material0],#leg1 front + # [[0+4,0,1],material0],#leg1 front + + + # [[1+4,2,0],material22],#leg1 back 2 + # [[1+4,2,1],material22],#leg1 back 2 + # [[1+4,1,0],material22],#leg1 back 2 + # [[1+4,1,1],material22],#leg1 back 2 + # [[1+4,0,0],material22],#leg1 back 2 + # [[1+4,0,1],material22],#leg1 back 2 + + # [[0+4,2,3],material0],#leg2 front 2 + # [[0+4,2,4],material0],#leg2 front 2 + # [[0+4,1,3],material0],#leg2 front 2 + # [[0+4,1,4],material0],#leg2 front 2 + # [[0+4,0,3],material0],#leg2 front 2 + # [[0+4,0,4],material0],#leg2 front 2 + + + # [[1+4,2,3],material12],#leg2 back + # [[1+4,2,4],material12],#leg2 back + # [[1+4,0,3],material12],#leg2 back + # [[1+4,0,4],material12],#leg2 back + # [[1+4,1,3],material12],#leg2 back + # [[1+4,1,4],material12],#leg2 back + + + # ########################################################## front legs #################################################################### + + # ########################upper################################## + [[0+8,5,0],material12_shift],#leg1 front + [[0+8,5,1],material12_shift],#leg1 front + [[0+8,4,0],material12_shift],#leg1 front + [[0+8,4,1],material12_shift],#leg1 front + [[0+8,3,0],material12_shift],#leg1 front + [[0+8,3,1],material12_shift],#leg1 front + + [[1+8,5,0],material11_shift],#leg1 back + [[1+8,5,1],material11_shift],#leg1 back + [[1+8,4,0],material11_shift],#leg1 back + [[1+8,4,1],material11_shift],#leg1 back + [[1+8,3,0],material11_shift],#leg1 back + [[1+8,3,1],material11_shift],#leg1 back + + + [[0+8,5,3],material22_shift],#leg2 front + [[0+8,5,4],material22_shift],#leg2 front + [[0+8,4,3],material22_shift],#leg2 front + [[0+8,4,4],material22_shift],#leg2 front + [[0+8,3,3],material22_shift],#leg2 front + [[0+8,3,4],material22_shift],#leg2 front + + [[1+8,5,4],material21_shift],#leg2 back + [[1+8,5,3],material21_shift],#leg2 back + [[1+8,4,3],material21_shift],#leg2 back + [[1+8,4,4],material21_shift],#leg2 back + [[1+8,3,3],material21_shift],#leg2 back + [[1+8,3,4],material21_shift],#leg2 back + + + ########################lower################################## + + + [[0+8,2,0],material0],#leg1 front + [[0+8,2,1],material0],#leg1 front + [[0+8,1,0],material0],#leg1 front + [[0+8,1,1],material0],#leg1 front + [[0+8,0,0],material0],#leg1 front + [[0+8,0,1],material0],#leg1 front + + [[1+8,2,0],material12_shift],#leg1 back 2 + [[1+8,2,1],material12_shift],#leg1 back 2 + [[1+8,1,0],material12_shift],#leg1 back 2 + [[1+8,1,1],material12_shift],#leg1 back 2 + [[1+8,0,0],material12_shift],#leg1 back 2 + [[1+8,0,1],material12_shift],#leg1 back 2 + + [[0+8,2,3],material0],#leg2 front 2 + [[0+8,2,4],material0],#leg2 front 2 + [[0+8,1,3],material0],#leg2 front 2 + [[0+8,1,4],material0],#leg2 front 2 + [[0+8,0,3],material0],#leg2 front 2 + [[0+8,0,4],material0],#leg2 front 2 + + [[1+8,2,3],material22_shift],#leg2 back + [[1+8,2,4],material22_shift],#leg2 back + [[1+8,0,3],material22_shift],#leg2 back + [[1+8,0,4],material22_shift],#leg2 back + [[1+8,1,3],material22_shift],#leg2 back + [[1+8,1,4],material22_shift],#leg2 back + + +]; +######################### 2.c. Supports ######################### + +#x,y,z,rx,ry,rz (default is pinned joing i.e [false,false,false,true,true,true]) +dof=[true,true,true,true,true,true] +# dof=[false,true,false,true,true,true] + + +boundingBoxSupport1=Dict() +boundingBoxSupport1["min"]=Dict() +boundingBoxSupport1["max"]=Dict() + + +boundingBoxSupport1["min"]["x"]=0; +boundingBoxSupport1["min"]["y"]=voxelSize*(latticeSizeY-2); +boundingBoxSupport1["min"]["z"]=0; + +boundingBoxSupport1["max"]["x"]=voxelSize*(latticeSizeX); +boundingBoxSupport1["max"]["y"]=voxelSize*(latticeSizeY); +boundingBoxSupport1["max"]["z"]=voxelSize*(latticeSizeZ); + +setup["supports"]=[ + # [boundingBoxSupport1,dof] + ]; + +######################### 2.d. Loads ######################### +#### 2.d.1 Static Loads +load1=Dict() +load1["x"]=0.0 +load1["y"]=0.0 +load1["z"]=0.0 + +boundingBoxLoad1=Dict() +boundingBoxLoad1["min"]=Dict() +boundingBoxLoad1["max"]=Dict() + +boundingBoxLoad1["min"]["x"]=0 +boundingBoxLoad1["min"]["y"]=voxelSize*(latticeSizeY-1); +boundingBoxLoad1["min"]["z"]=0; + +boundingBoxLoad1["max"]["x"]=voxelSize*(latticeSizeX); +boundingBoxLoad1["max"]["y"]=voxelSize*(latticeSizeY); +boundingBoxLoad1["max"]["z"]=voxelSize*(latticeSizeZ); + + +setup["loads"]=[ + # [boundingBoxLoad1,load1] + ]; + +setup["fixedDisplacements"]=[]; + + +#### 2.d.2 Dynamic Loads +function floorEnabled() + return true +end + +function gravityEnabled() + return true +end + +function externalDisplacement(currentTimeStep,N_position,N_fixedDisplacement) + return N_fixedDisplacement +end + +function externalForce(currentTimeStep,N_position,N_force) + + return N_force +end + +# if no temperature: +# function updateTemperature(currentRestLength,currentTimeStep,mat) +# return currentRestLength +# end + +# function updateTemperature(currentRestLength,currentTimeStep,mat) +# if currentTimeStep<1000 +# temp=-5.0*currentTimeStep/1000 +# currentRestLength=0.5*mat.L*(2.0+temp*mat.cTE) +# elseif currentTimeStep==2500 +# temp=0 +# currentRestLength=0.5*mat.L*(2.0+temp*mat.cTE) +# end +# return currentRestLength +# end + + +function updateTemperature(currentRestLength,currentTimeStep,mat) + cte=mat.cTE + factor=0.4; + interval=2000.0*5.0/1.0 + + currentTimeStep1=currentTimeStep + if (mat.nu<0.0) + currentTimeStep1+=interval + end + + if abs(cte)>0.3 + currentTimeStep1+=interval/2.0 + end + + + t=floor(currentTimeStep1/interval) + t1=currentTimeStep1-t*interval + + + + if t%2.0!=0.0 + if (cte<0.0) + currentRestLength=mat.L-factor*mat.L*(1.0-(t1)/interval); + elseif (cte>0.0) + currentRestLength=mat.L-factor*mat.L*((t1)/interval); + else + currentRestLength=mat.L; + end + else + if (cte>0.0) + currentRestLength=mat.L-factor*mat.L*(1.0-(t1)/interval); + elseif (cte<0.0) + currentRestLength=mat.L-factor*mat.L*((t1)/interval); + else + currentRestLength=mat.L; + end + end + return currentRestLength +end + + +function floorPenetration(x,y,nomSize) + floor=0.001*1.2 + # floor=0.0 + p=0.0 + d=10.0 + if(y<floor) + # if(y<floor&& (x<5.0*d || x>=14.0*d)) + p=floor-y + end + return p +end +#Returns the interference (in meters) between the collision envelope of this voxel and the floor at Z=0. Positive numbers correspond to interference. If the voxel is not touching the floor 0 is returned. + + +function penetrationStiffness(E,nomSize) + return (1.0*E*nomSize) +end + +function floorForce!(dt,pTotalForce,pos,linMom,FloorStaticFriction,N_material) + E=convert(Float64,N_material.E) + nomSize=convert(Float64,N_material.nomSize) + mass=convert(Float64,N_material.mass) + massInverse=convert(Float64,N_material.massInverse) + muStatic=convert(Float64,N_material.muStatic)*1.0 + muKinetic=convert(Float64,N_material.muKinetic)*100.0 + _2xSqMxExS=convert(Float64,N_material._2xSqMxExS) + zetaCollision=convert(Float64,N_material.zetaCollision) + + CurPenetration = floorPenetration(convert(Float64,pos.x),convert(Float64,pos.y),nomSize); #for now use the average. + + + if (CurPenetration>=0.0) + vel = linMom*Vector3((massInverse),(massInverse),(massInverse)) #Returns the 3D velocity of this voxel in m/s (GCS) + horizontalVel= Vector3(convert(Float64,vel.x), 0.0, convert(Float64,vel.z)); + + normalForce = penetrationStiffness(E,nomSize)*CurPenetration; + pTotalForce=Vector3( pTotalForce.x, convert(Float64,pTotalForce.y) + normalForce - collisionDampingTranslateC(_2xSqMxExS,zetaCollision)*convert(Float64,vel.y),pTotalForce.z) + #in the z direction: k*x-C*v - spring and damping + + if (FloorStaticFriction) #If this voxel is currently in static friction mode (no lateral motion) + # assert(horizontalVel.Length2() == 0); + surfaceForceSq = convert(Float64,(pTotalForce.x*pTotalForce.x + pTotalForce.z*pTotalForce.z)); #use squares to avoid a square root + frictionForceSq = (muStatic*normalForce)*(muStatic*normalForce); + + + if (surfaceForceSq > frictionForceSq) + FloorStaticFriction=false; #if we're breaking static friction, leave the forces as they currently have been calculated to initiate motion this time step + end + + else #even if we just transitioned don't process here or else with a complete lack of momentum it'll just go back to static friction + #add a friction force opposing velocity according to the normal force and the kinetic coefficient of friction + leng=sqrt((convert(Float64,vel.x) * convert(Float64,vel.x)) + (0.0 * 0.0) + (convert(Float64,vel.z) * convert(Float64,vel.z))) + if(leng>0) + horizontalVel= Vector3(convert(Float64,vel.x)/(leng),0.0,convert(Float64,vel.z)/(leng)) + else + horizontalVel= Vector3(convert(Float64,vel.x)*(leng),0.0,convert(Float64,vel.z)*(leng)) + + end + pTotalForce = pTotalForce- Vector3(muKinetic*normalForce,muKinetic*normalForce,muKinetic*normalForce) * horizontalVel; + end + + else + FloorStaticFriction=false; + end + + + + return pTotalForce,FloorStaticFriction +end