diff --git a/CLAUDE.md b/CLAUDE.md index 307a39f0e..2fe816bb3 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -4,6 +4,13 @@ ROSS (Rotordynamic Open Source Software) is a Python library for rotordynamic analysis. Package name: `ross-rotordynamics`. +## Git Workflow + +- **Main branch**: `main` +- **Upstream remote**: `upstream` → `petrobras/ross` (PRs target this repo) +- **Fork remote**: `origin` → the developer's personal fork +- Push development branches to `origin`, then open PRs against `upstream/main` + ## Build & Install ```bash diff --git a/ross/rotor_assembly.py b/ross/rotor_assembly.py index cadba7153..64b1ccc27 100644 --- a/ross/rotor_assembly.py +++ b/ross/rotor_assembly.py @@ -4150,10 +4150,13 @@ def save(self, file): >>> rotor = rotor_example() >>> rotor.save(file) """ + import ross from ross.utils import dump_data file = Path(file) - dump_data({"parameters": self.parameters}, file) + dump_data( + {"ross_version": ross.__version__, "parameters": self.parameters}, file + ) for el in self.elements: el.save(file) @@ -4209,14 +4212,23 @@ def load(cls, file): >>> rotor1 == rotor2 True """ + import ross from ross.utils import load_data data = load_data(file) + + saved_version = data.get("ross_version", "unknown") + if saved_version != ross.__version__: + warnings.warn( + f"File was created with ROSS {saved_version}, " + f"but current version is {ross.__version__}. " + f"This may lead to incompatibilities." + ) parameters = data["parameters"] elements = [] for el_name, el_data in data.items(): - if el_name == "parameters" or el_name.startswith("_"): + if el_name in ("parameters", "ross_version") or el_name.startswith("_"): continue class_name = el_name.split("_")[0] try: diff --git a/ross/tests/data/compressor_example.json b/ross/tests/data/compressor_example.json index 7e7ab3303..a2a196baf 100644 --- a/ross/tests/data/compressor_example.json +++ b/ross/tests/data/compressor_example.json @@ -1,4749 +1,4750 @@ { "_note": "This file is auto-generated by ROSS. Do not edit values directly.\nWhen loading, element coefficients are read as-is without recomputation.\nChanging values here will NOT trigger recalculation of dependent quantities.\nTo modify the rotor, change parameters in Python and save again.", - "BearingElement_Bearing 0": { - "color": "#355d7a", - "cxx": [ - 189136.98206619456, - 176440.286510825, - 165762.80336584736, - 156496.8425129563, - 148349.9421372902, - 140994.6150569382, - 134355.55673274427, - 128322.43725850315 - ], - "cxy": [ - -551.6670437099255, - -310.1496252215098, - -188.54155082635654, - -119.07924289419412, - -75.18019910295988, - -44.84647996991768, - -22.339179104040536, - -5.18935838202359 - ], - "cyx": [ - -594.4680422441643, - -362.81026458012525, - -250.79914075647892, - -190.6956108998882, - -155.93118283511018, - -134.5376886414006, - -120.79373461125712, - -112.24754505122908 - ], - "cyy": [ - 199662.10486450777, - 183567.94870535663, - 170981.58305619235, - 160516.00338186292, - 151560.0170273581, - 143637.27900080752, - 136577.91627202206, - 130227.81722598482 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.87902047863906, - 523.5987755982989, - 628.3185307179587, - 733.0382858376183, - 837.7580409572781, - 942.4777960769379, - 1047.1975511965977, - 1151.9173063162575 - ], - "kxx": [ - 114058356.52767764, - 133516699.19191365, - 151278062.82261127, - 167517574.25501704, - 182482162.32682845, - 196142055.47605363, - 208733674.93027526, - 220397122.1576906 - ], - "kxy": [ - -578233.784616816, - -457116.0653603528, - -394350.6076080157, - -363178.0309341429, - -351479.5583396782, - -352740.47155345284, - -363738.43680693157, - -382336.90671010735 - ], - "kyx": [ - -520564.51777015126, - -367223.4608283365, - -265194.5666137393, - -187700.94201717345, - -122643.07399145991, - -63560.53358435616, - -7213.124090131872, - 48538.15365691342 - ], - "kyy": [ - 122826957.16846871, - 141064665.79103678, - 158008187.10113338, - 173655769.83040604, - 188156271.7888143, - 201465911.2675465, - 213794840.46889845, - 225213110.1269687 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 7, - "n_link": null, - "scale_factor": 1, - "tag": "Bearing 0" - }, - "BearingElement_Bearing 13": { - "color": "#355d7a", - "cxx": [ - 189136.98206619456, - 176440.286510825, - 165762.80336584736, - 156496.8425129563, - 148349.9421372902, - 140994.6150569382, - 134355.55673274427, - 128322.43725850315 - ], - "cxy": [ - -551.6670437099255, - -310.1496252215098, - -188.54155082635654, - -119.07924289419412, - -75.18019910295988, - -44.84647996991768, - -22.339179104040536, - -5.18935838202359 - ], - "cyx": [ - -594.4680422441643, - -362.81026458012525, - -250.79914075647892, - -190.6956108998882, - -155.93118283511018, - -134.5376886414006, - -120.79373461125712, - -112.24754505122908 - ], - "cyy": [ - 199662.10486450777, - 183567.94870535663, - 170981.58305619235, - 160516.00338186292, - 151560.0170273581, - 143637.27900080752, - 136577.91627202206, - 130227.81722598482 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.87902047863906, - 523.5987755982989, - 628.3185307179587, - 733.0382858376183, - 837.7580409572781, - 942.4777960769379, - 1047.1975511965977, - 1151.9173063162575 - ], - "kxx": [ - 114058356.52767764, - 133516699.19191365, - 151278062.82261127, - 167517574.25501704, - 182482162.32682845, - 196142055.47605363, - 208733674.93027526, - 220397122.1576906 - ], - "kxy": [ - -578233.784616816, - -457116.0653603528, - -394350.6076080157, - -363178.0309341429, - -351479.5583396782, - -352740.47155345284, - -363738.43680693157, - -382336.90671010735 - ], - "kyx": [ - -520564.51777015126, - -367223.4608283365, - -265194.5666137393, - -187700.94201717345, - -122643.07399145991, - -63560.53358435616, - -7213.124090131872, - 48538.15365691342 - ], - "kyy": [ - 122826957.16846871, - 141064665.79103678, - 158008187.10113338, - 173655769.83040604, - 188156271.7888143, - 201465911.2675465, - 213794840.46889845, - 225213110.1269687 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 48, - "n_link": null, - "scale_factor": 1, - "tag": "Bearing 13" - }, - "DiskElement_Disk 0": { - "color": "Firebrick", - "Id": 0.0, - "Ip": 0.0, - "m": 15.119982018530925, - "n": 3, - "scale_factor": 1, - "tag": "Disk 0" - }, - "DiskElement_Disk 1": { - "color": "Firebrick", - "Id": 0.02499983979288977, - "Ip": 0.046999698810632776, - "m": 6.909991782278354, - "n": 20, - "scale_factor": 1, - "tag": "Disk 1" - }, - "DiskElement_Disk 2": { - "color": "Firebrick", - "Id": 0.02499983979288977, - "Ip": 0.046999698810632776, - "m": 6.929991758493341, - "n": 23, - "scale_factor": 1, - "tag": "Disk 2" - }, - "DiskElement_Disk 3": { - "color": "Firebrick", - "Id": 0.02499983979288977, - "Ip": 0.047999692402348366, - "m": 6.94999173470833, - "n": 26, - "scale_factor": 1, - "tag": "Disk 3" - }, - "DiskElement_Disk 4": { - "color": "Firebrick", - "Id": 0.02499983979288977, - "Ip": 0.047999692402348366, - "m": 6.979991699030812, - "n": 29, - "scale_factor": 1, - "tag": "Disk 4" - }, - "DiskElement_Disk 5": { - "color": "Firebrick", - "Id": 0.02499983979288977, - "Ip": 0.047999692402348366, - "m": 6.939991746600836, - "n": 32, - "scale_factor": 1, - "tag": "Disk 5" - }, - "DiskElement_Disk 6": { - "color": "Firebrick", - "Id": 0.02499983979288977, - "Ip": 0.047999692402348366, - "m": 6.959991722815824, - "n": 35, - "scale_factor": 1, - "tag": "Disk 6" - }, - "parameters": { - "max_w": null, - "min_w": null, - "rated_w": null - }, - "SealElement_Seal 1": { - "color": "#77ACA2", - "cxx": [ - 74107.0, - 73866.0, - 73474.0, - 72946.0, - 72298.0, - 71545.0 - ], - "cxy": [ - -344.22, - -693.67, - -1053.7, - -1429.8, - -1827.8, - -2253.2 - ], - "cyx": [ - -344.22, - -693.67, - -1053.7, - -1429.8, - -1827.8, - -2253.2 - ], - "cyy": [ - 74107.0, - 73866.0, - 73474.0, - 72946.0, - 72298.0, - 71545.0 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 209.43951023931953, - 418.87902047863906, - 628.3185307179587, - 837.7580409572781, - 1047.1975511965977, - 1256.6370614359173 - ], - "kxx": [ - 145300000.0, - 145440000.0, - 145650000.0, - 145880000.0, - 146080000.0, - 146210000.0 - ], - "kxy": [ - 1462300.0, - 2937800.0, - 4443500.0, - 6003500.0, - 7649100.0, - 9417700.0 - ], - "kyx": [ - 1462300.0, - 2937800.0, - 4443500.0, - 6003500.0, - 7649100.0, - 9417700.0 - ], - "kyy": [ - 145300000.0, - 145440000.0, - 145650000.0, - 145880000.0, - 146080000.0, - 146210000.0 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 18, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 1" - }, - "SealElement_Seal 10": { - "color": "#77ACA2", - "cxx": [ - 780.119253662987, - 787.684355944009, - 794.242332296682, - 799.312347070576, - 802.55627409239, - 803.753118817436, - 802.777721491268, - 799.582973527294, - 685.153719729093 - ], - "cxy": [ - 71.9405192865185, - 73.2172125105903, - 69.7772091351367, - 62.3870346967872, - 51.7470502670171, - 38.4965142422057, - 23.2144639309886, - 6.42115937619801, - -153.589719559604 - ], - "cyx": [ - -71.9405192865185, - -73.2172125105903, - -69.7772091351367, - -62.3870346967872, - -51.7470502670171, - -38.4965142422057, - -23.2144639309886, - -6.42115937619801, - 153.589719559604 - ], - "cyy": [ - 780.119253662987, - 787.684355944009, - 794.242332296682, - 799.312347070576, - 802.55627409239, - 803.753118817436, - 802.777721491268, - 799.582973527294, - 685.153719729093 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 140049.817601769, - 152063.602437156, - 166813.832185813, - 184639.367211113, - 205775.545611855, - 230379.77415706, - 258549.549695261, - 290334.891898862, - 732939.091902253 - ], - "kxy": [ - 388401.623689309, - 504334.860616662, - 625326.20214955, - 750542.069249618, - 879260.768917699, - 1010847.15033575, - 1144738.0717901, - 1280430.08808057, - 2520968.98404806 - ], - "kyx": [ - -388401.623689309, - -504334.860616662, - -625326.20214955, - -750542.069249618, - -879260.768917699, - -1010847.15033575, - -1144738.0717901, - -1280430.08808057, - -2520968.98404806 - ], - "kyy": [ - 140049.817601769, - 152063.602437156, - 166813.832185813, - 184639.367211113, - 205775.545611855, - 230379.77415706, - 258549.549695261, - 290334.891898862, - 732939.091902253 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 31, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 10" - }, - "SealElement_Seal 11": { - "color": "#77ACA2", - "cxx": [ - 805.360714967088, - 810.807324312486, - 814.773343900831, - 816.814170445135, - 816.638103264431, - 814.07641475685, - 809.059159293008, - 801.595062580611, - 646.55136163657 - ], - "cxy": [ - 63.6178915228003, - 62.1369490163509, - 55.9666789064099, - 45.9704212310253, - 32.9255972926375, - 17.5307496744211, - 0.409583747581219, - -17.8859321380999, - -175.328107698497 - ], - "cyx": [ - -63.6178915228003, - -62.1369490163509, - -55.9666789064099, - -45.9704212310253, - -32.9255972926375, - -17.5307496744211, - -0.409583747581219, - 17.8859321380999, - 175.328107698497 - ], - "cyy": [ - 805.360714967088, - 810.807324312486, - 814.773343900831, - 816.814170445135, - 816.638103264431, - 814.07641475685, - 809.059159293008, - 801.595062580611, - 646.55136163657 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 162079.699898803, - 175413.041171466, - 191782.836082965, - 211515.373531839, - 234827.564468616, - 261855.220747408, - 292672.259417268, - 327304.284853313, - 800601.079718764 - ], - "kxy": [ - 406978.422739746, - 529155.447676398, - 656706.644009378, - 788702.816695279, - 924345.338451978, - 1062937.9131192, - 1203867.36017507, - 1346589.781951, - 2646350.0643761 - ], - "kyx": [ - -406978.422739746, - -529155.447676398, - -656706.644009378, - -788702.816695279, - -924345.338451978, - -1062937.9131192, - -1203867.36017507, - -1346589.781951, - -2646350.0643761 - ], - "kyy": [ - 162079.699898803, - 175413.041171466, - 191782.836082965, - 211515.373531839, - 234827.564468616, - 261855.220747408, - 292672.259417268, - 327304.284853313, - 800601.079718764 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 28, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 11" - }, - "SealElement_Seal 12": { - "color": "#77ACA2", - "cxx": [ - 828.076214508057, - 831.698341316398, - 833.420964081016, - 832.833200737184, - 829.68538941482, - 823.855212022527, - 815.320735537458, - 804.138365393787, - 613.175254017714 - ], - "cxy": [ - 56.639482846621, - 52.6803994392273, - 44.0249331997799, - 31.6254311839271, - 16.3284602522176, - -1.11491725585648, - -20.0424044945381, - -39.8750850779251, - -198.229669313471 - ], - "cyx": [ - -56.639482846621, - -52.6803994392273, - -44.0249331997799, - -31.6254311839271, - -16.3284602522176, - 1.11491725585648, - 20.0424044945381, - 39.8750850779251, - 198.229669313471 - ], - "cyy": [ - 828.076214508057, - 831.698341316398, - 833.420964081016, - 832.833200737184, - 829.68538941482, - 823.855212022527, - 815.320735537458, - 804.138365393787, - 613.175254017714 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 180839.024474825, - 195355.027554806, - 213179.711736108, - 234627.751980985, - 259899.30178444, - 289110.53399467, - 322314.274331595, - 359514.507333211, - 860767.574416809 - ], - "kxy": [ - 424916.756322156, - 553193.12733327, - 687168.6168166, - 825821.555318317, - 968280.211140864, - 1113789.96941796, - 1261690.85775216, - 1411401.36210057, - 2771413.59584677 - ], - "kyx": [ - -424916.756322156, - -553193.12733327, - -687168.6168166, - -825821.555318317, - -968280.211140864, - -1113789.96941796, - -1261690.85775216, - -1411401.36210057, - -2771413.59584677 - ], - "kyy": [ - 180839.024474825, - 195355.027554806, - 213179.711736108, - 234627.751980985, - 259899.30178444, - 289110.53399467, - 322314.274331595, - 359514.507333211, - 860767.574416809 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 25, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 12" - }, - "SealElement_Seal 13": { - "color": "#77ACA2", - "cxx": [ - 844.704816544965, - 845.510119153807, - 843.879821457693, - 839.45090843711, - 832.029915317881, - 821.555183438786, - 808.067199559831, - 791.684638045522, - 551.77571052815 - ], - "cxy": [ - 41.8735664570863, - 33.9385369802047, - 21.4702902513189, - 5.51035377944818, - -13.0248291697293, - -33.3307978115303, - -54.7060168965144, - -76.544502427302, - -232.737765811523 - ], - "cyx": [ - -41.8735664570863, - -33.9385369802047, - -21.4702902513189, - -5.51035377944818, - 13.0248291697293, - 33.3307978115303, - 54.7060168965144, - 76.544502427302, - 232.737765811523 - ], - "cyy": [ - 844.704816544965, - 845.510119153807, - 843.879821457693, - 839.45090843711, - 832.029915317881, - 821.555183438786, - 808.067199559831, - 791.684638045522, - 551.77571052815 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 212004.230533674, - 228104.197005656, - 247866.752578785, - 271587.121157548, - 299441.94589272, - 331521.70676384, - 367852.540447444, - 408411.467916301, - 946059.583744362 - ], - "kxy": [ - 438140.709696468, - 570924.881967202, - 709603.313478691, - 853069.011373774, - 1000381.95159242, - 1150732.27599602, - 1303415.03798806, - 1457811.94108399, - 2852208.05920669 - ], - "kyx": [ - -438140.709696468, - -570924.881967202, - -709603.313478691, - -853069.011373774, - -1000381.95159242, - -1150732.27599602, - -1303415.03798806, - -1457811.94108399, - -2852208.05920669 - ], - "kyy": [ - 212004.230533674, - 228104.197005656, - 247866.752578785, - 271587.121157548, - 299441.94589272, - 331521.70676384, - 367852.540447444, - 408411.467916301, - 946059.583744362 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 22, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 13" - }, - "SealElement_Seal 3": { - "color": "#77ACA2", - "cxx": [ - 1963.22827166158, - 2015.78518072991, - 2071.30777883873, - 2128.0501207825, - 2184.53471897006, - 2239.50807488773, - 2291.90587538764, - 2340.82530827392, - 2532.59539821632 - ], - "cxy": [ - 327.498095371777, - 358.733673950888, - 373.552265248427, - 373.313275236128, - 359.267683770068, - 332.586462550931, - 294.376327892065, - 245.689271656646, - -511.811286666433 - ], - "cyx": [ - -327.498095371777, - -358.733673950888, - -373.552265248427, - -373.313275236128, - -359.267683770068, - -332.586462550931, - -294.376327892065, - -245.689271656646, - 511.811286666433 - ], - "cyy": [ - 1963.22827166158, - 2015.78518072991, - 2071.30777883873, - 2128.0501207825, - 2184.53471897006, - 2239.50807488773, - 2291.90587538764, - 2340.82530827392, - 2532.59539821632 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 42736.7276429811, - 67214.3361587494, - 97775.6346026271, - 135757.803441503, - 182192.939775206, - 237877.364149987, - 303419.845206835, - 379277.183402673, - 1553300.56707975 - ], - "kxy": [ - 990798.147638428, - 1287520.08475897, - 1598073.52054941, - 1920481.53213523, - 2252993.8192709, - 2594035.77027586, - 2942176.31364923, - 3296105.80753795, - 6569742.52112397 - ], - "kyx": [ - -990798.147638428, - -1287520.08475897, - -1598073.52054941, - -1920481.53213523, - -2252993.8192709, - -2594035.77027586, - -2942176.31364923, - -3296105.80753795, - -6569742.52112397 - ], - "kyy": [ - 42736.7276429811, - 67214.3361587494, - 97775.6346026271, - 135757.803441503, - 182192.939775206, - 237877.364149987, - 303419.845206835, - 379277.183402673, - 1553300.56707975 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 36, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 3" - }, - "SealElement_Seal 4": { - "color": "#77ACA2", - "cxx": [ - 2042.80354037266, - 2087.34323361495, - 2133.05245009602, - 2178.28290613318, - 2221.70220592325, - 2262.23898170276, - 2299.0394215401, - 2331.43213723079, - 2373.99452038876 - ], - "cxy": [ - 300.719623259512, - 323.676427884606, - 330.553298935302, - 323.075231492631, - 302.810062114474, - 271.199333765612, - 229.5757085895, - 179.173983835812, - -506.196065119599 - ], - "cyx": [ - -300.719623259512, - -323.676427884606, - -330.553298935302, - -323.075231492631, - -302.810062114474, - -271.199333765612, - -229.5757085895, - -179.173983835812, - 506.196065119599 - ], - "cyy": [ - 2042.80354037266, - 2087.34323361495, - 2133.05245009602, - 2178.28290613318, - 2221.70220592325, - 2262.23898170276, - 2299.0394215401, - 2331.43213723079, - 2373.99452038876 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 99565.3280288305, - 128280.786974181, - 163838.557867115, - 207478.594722917, - 260118.020975725, - 322429.13160572, - 394893.509217979, - 477841.629547027, - 1705205.47349929 - ], - "kxy": [ - 1045693.89578556, - 1360157.4064092, - 1689000.07378138, - 2029942.27233339, - 2381001.43932843, - 2740426.4413257, - 3106654.74733322, - 3478282.16261192, - 6889822.23965831 - ], - "kyx": [ - -1045693.89578556, - -1360157.4064092, - -1689000.07378138, - -2029942.27233339, - -2381001.43932843, - -2740426.4413257, - -3106654.74733322, - -3478282.16261192, - -6889822.23965831 - ], - "kyy": [ - 99565.3280288305, - 128280.786974181, - 163838.557867115, - 207478.594722917, - 260118.020975725, - 322429.13160572, - 394893.509217979, - 477841.629547027, - 1705205.47349929 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 33, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 4" - }, - "SealElement_Seal 5": { - "color": "#77ACA2", - "cxx": [ - 2114.3239242484, - 2151.86018396449, - 2189.00202211794, - 2224.19825749469, - 2256.25109134112, - 2284.25181009551, - 2307.52812156361, - 2325.60282589679, - 2236.14986468286 - ], - "cxy": [ - 276.125157962378, - 291.232201189786, - 290.488133219166, - 275.939934277962, - 249.425082886449, - 212.610147360682, - 167.009160238909, - 113.999361057078, - -525.407830501088 - ], - "cyx": [ - -276.125157962378, - -291.232201189786, - -290.488133219166, - -275.939934277962, - -249.425082886449, - -212.610147360682, - -167.009160238909, - -113.999361057078, - 525.407830501088 - ], - "cyy": [ - 2114.3239242484, - 2151.86018396449, - 2189.00202211794, - 2224.19825749469, - 2256.25109134112, - 2284.25181009551, - 2307.52812156361, - 2325.60282589679, - 2236.14986468286 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 152572.564780079, - 185205.802529499, - 225423.727870828, - 274388.567172405, - 332925.027240472, - 401604.961161511, - 480807.601610557, - 570761.855747787, - 1858564.83662114 - ], - "kxy": [ - 1098257.30952438, - 1429977.12678861, - 1776691.37706298, - 2135830.7407142, - 2505191.59642991, - 2882850.96447124, - 3267117.0862745, - 3656488.87697799, - 7208606.38767389 - ], - "kyx": [ - -1098257.30952438, - -1429977.12678861, - -1776691.37706298, - -2135830.7407142, - -2505191.59642991, - -2882850.96447124, - -3267117.0862745, - -3656488.87697799, - -7208606.38767389 - ], - "kyy": [ - 152572.564780079, - 185205.802529499, - 225423.727870828, - 274388.567172405, - 332925.027240472, - 401604.961161511, - 480807.601610557, - 570761.855747787, - 1858564.83662114 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 30, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 5" - }, - "SealElement_Seal 6": { - "color": "#77ACA2", - "cxx": [ - 2178.21606571578, - 2209.14806245493, - 2238.23710142438, - 2264.02667383226, - 2285.44579131069, - 2301.73368540227, - 2312.38047214785, - 2317.07943041658, - 2101.22864360535 - ], - "cxy": [ - 250.258153865912, - 257.227741725991, - 248.537158173789, - 226.525141043403, - 193.271057301904, - 150.636859160072, - 100.293246923114, - 43.7381624842223, - -567.222123721818 - ], - "cyx": [ - -250.258153865912, - -257.227741725991, - -248.537158173789, - -226.525141043403, - -193.271057301904, - -150.636859160072, - -100.293246923114, - -43.7381624842223, - 567.222123721818 - ], - "cyy": [ - 2178.21606571578, - 2209.14806245493, - 2238.23710142438, - 2264.02667383226, - 2285.44579131069, - 2301.73368540227, - 2312.38047214785, - 2317.07943041658, - 2101.22864360535 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 205852.667541406, - 242366.978579705, - 287218.2673746, - 341497.431815182, - 405944.815928242, - 481042.985669013, - 567080.222997083, - 664196.067389568, - 2018342.16604649 - ], - "kxy": [ - 1147712.75186238, - 1495785.8148233, - 1859450.35261072, - 2235861.74214649, - 2622603.49661036, - 3017591.3675152, - 3419008.72231515, - 3825260.09699669, - 7510461.330822 - ], - "kyx": [ - -1147712.75186238, - -1495785.8148233, - -1859450.35261072, - -2235861.74214649, - -2622603.49661036, - -3017591.3675152, - -3419008.72231515, - -3825260.09699669, - -7510461.330822 - ], - "kyy": [ - 205852.667541406, - 242366.978579705, - 287218.2673746, - 341497.431815182, - 405944.815928242, - 481042.985669013, - 567080.222997083, - 664196.067389568, - 2018342.16604649 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 27, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 6" - }, - "SealElement_Seal 7": { - "color": "#77ACA2", - "cxx": [ - 2237.27062169521, - 2262.54451706828, - 2284.71266328052, - 2302.40907831969, - 2314.67941113008, - 2320.89559745058, - 2320.68980309972, - 2313.90150206837, - 1988.68376388278 - ], - "cxy": [ - 228.5066838492, - 228.216282636906, - 212.358685620386, - 183.537798746503, - 144.04734233591, - 95.9190515734874, - 40.9558585213239, - -19.2447358005768, - -614.227168738531 - ], - "cyx": [ - -228.5066838492, - -228.216282636906, - -212.358685620386, - -183.537798746503, - -144.04734233591, - -95.9190515734874, - -40.9558585213239, - 19.2447358005768, - 614.227168738531 - ], - "cyy": [ - 2237.27062169521, - 2262.54451706828, - 2284.71266328052, - 2302.40907831969, - 2314.67941113008, - 2320.89559745058, - 2320.68980309972, - 2313.90150206837, - 1988.68376388278 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 252811.630578299, - 292779.969788229, - 341775.407113344, - 400829.381676715, - 470611.220647497, - 551527.947163869, - 643791.437001381, - 747466.3932106181, - 2165015.37392413 - ], - "kxy": [ - 1196154.91738691, - 1560429.00166038, - 1940945.78963764, - 2334594.59072454, - 2738754.90307113, - 3151186.98050217, - 3569954.75170215, - 3993371.59388281, - 7817904.77114129 - ], - "kyx": [ - -1196154.91738691, - -1560429.00166038, - -1940945.78963764, - -2334594.59072454, - -2738754.90307113, - -3151186.98050217, - -3569954.75170215, - -3993371.59388281, - -7817904.77114129 - ], - "kyy": [ - 252811.630578299, - 292779.969788229, - 341775.407113344, - 400829.381676715, - 470611.220647497, - 551527.947163869, - 643791.437001381, - 747466.3932106181, - 2165015.37392413 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 24, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 7" - }, - "SealElement_Seal 8": { - "color": "#77ACA2", - "cxx": [ - 2291.12243345773, - 2311.1040718269, - 2326.80597091329, - 2336.94965058397, - 2340.6898099477, - 2337.52046884341, - 2327.20232641125, - 2309.70538908619, - 1880.94276136733 - ], - "cxy": [ - 206.926347739178, - 199.422636876644, - 176.412369573979, - 140.746432758469, - 94.9135905607814, - 41.0991829034798, - -18.775866654557, - -83.0260630423863, - -671.209405124406 - ], - "cyx": [ - -206.926347739178, - -199.422636876644, - -176.412369573979, - -140.746432758469, - -94.9135905607814, - -41.0991829034798, - 18.775866654557, - 83.0260630423863, - 671.209405124406 - ], - "cyy": [ - 2291.12243345773, - 2311.1040718269, - 2326.80597091329, - 2336.94965058397, - 2340.6898099477, - 2337.52046884341, - 2327.20232641125, - 2309.70538908619, - 1880.94276136733 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 298251.102793201, - 341553.083464932, - 394552.018603807, - 458222.132531081, - 533166.367271116, - 619721.596416625, - 718029.641688798, - 828087.262141986, - 2308865.1768009 - ], - "kxy": [ - 1242500.2855946, - 1622346.60563776, - 2019067.07204817, - 2429294.4077584, - 2850215.15001386, - 3279441.40422489, - 3714924.05537521, - 4154890.25666796, - 8114286.71318661 - ], - "kyx": [ - -1242500.2855946, - -1622346.60563776, - -2019067.07204817, - -2429294.4077584, - -2850215.15001386, - -3279441.40422489, - -3714924.05537521, - -4154890.25666796, - -8114286.71318661 - ], - "kyy": [ - 298251.102793201, - 341553.083464932, - 394552.018603807, - 458222.132531081, - 533166.367271116, - 619721.596416625, - 718029.641688798, - 828087.262141986, - 2308865.1768009 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 21, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 8" - }, - "SealElement_Seal 9": { - "color": "#77ACA2", - "cxx": [ - 750.949959062333, - 760.710326884617, - 769.964578233571, - 778.19629293504, - 785.019902997508, - 790.15932800096, - 793.430153680943, - 794.724300760962, - 722.544808720561 - ], - "cxy": [ - 79.8543326386884, - 83.81589186923, - 83.0331567785093, - 78.1681935600569, - 69.837391650402, - 58.613348963646, - 45.0245327033877, - 29.554474250066, - -136.376148153058 - ], - "cyx": [ - -79.8543326386884, - -83.81589186923, - -83.0331567785093, - -78.1681935600569, - -69.837391650402, - -58.613348963646, - -45.0245327033877, - -29.554474250066, - 136.376148153058 - ], - "cyy": [ - 750.949959062333, - 760.710326884617, - 769.964578233571, - 778.19629293504, - 785.019902997508, - 790.15932800096, - 793.430153680943, - 794.724300760962, - 722.544808720561 - ], - "czz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "frequency": [ - 418.8790204788, - 523.5987755985, - 628.3185307182, - 733.0382858378999, - 837.7580409576, - 942.4777960773, - 1047.197551197, - 1151.9173063167, - 2094.395102394 - ], - "kxx": [ - 117358.92657379, - 128015.751147855, - 141102.498057583, - 156969.989754583, - 175871.907235927, - 197988.188305016, - 223441.071331206, - 252306.609321979, - 663772.402239837 - ], - "kxy": [ - 368248.874078639, - 477487.487203766, - 591452.926163509, - 709411.473344204, - 830721.103799336, - 954812.05503821, - 1081173.83156822, - 1209345.94547456, - 2386511.8788015 - ], - "kyx": [ - -368248.874078639, - -477487.487203766, - -591452.926163509, - -709411.473344204, - -830721.103799336, - -954812.05503821, - -1081173.83156822, - -1209345.94547456, - -2386511.8788015 - ], - "kyy": [ - 117358.92657379, - 128015.751147855, - 141102.498057583, - 156969.989754583, - 175871.907235927, - 197988.188305016, - 223441.071331206, - 252306.609321979, - 663772.402239837 - ], - "kzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mxy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myx": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "myy": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "mzz": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "n": 34, - "n_link": null, - "scale_factor": 0.5, - "seal_leakage": null, - "tag": "Seal 9" + "ross_version": "2.0.0", + "parameters": { + "min_w": null, + "max_w": null, + "rated_w": null }, "ShaftElement_ShaftElement 0": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.035500000000000004, "idl": 0.1409954, + "odl": 0.151003, "idr": 0.1409954, - "L": 0.035500000000000004, + "odr": 0.151003, "material": { - "color": "#525252", + "name": "shaft_mat_3", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_3", - "rho": 7833.412 + "color": "#525252" }, "n": 0, - "odl": 0.151003, - "odr": 0.151003, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 0", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 1": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.036000000000000004, "idl": 0.1409954, + "odl": 0.151003, "idr": 0.1409954, - "L": 0.036000000000000004, + "odr": 0.151003, "material": { - "color": "#525252", + "name": "shaft_mat_3", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_3", - "rho": 7833.412 + "color": "#525252" }, "n": 1, - "odl": 0.151003, - "odr": 0.151003, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 1", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, - "ShaftElement_ShaftElement 10": { + "ShaftElement_ShaftElement 2": { + "L": 0.054000000000000006, + "idl": 0.0, + "odl": 0.08, + "idr": 0.0, + "odr": 0.08, + "material": { + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 2, + "axial_force": 0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 2", "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 3": { + "L": 0.043000000000000003, + "idl": 0.0, + "odl": 0.08, + "idr": 0.0, + "odr": 0.08, + "material": { + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 3, "axial_force": 0, - "beta": 0.0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 3", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 4": { + "L": 0.0165, "idl": 0.0, + "odl": 0.088, "idr": 0.0, - "L": 0.016, + "odr": 0.088, + "material": { + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 4, + "axial_force": 0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 4", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 5": { + "L": 0.014, + "idl": 0.0, + "odl": 0.088, + "idr": 0.0, + "odr": 0.088, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 5, + "axial_force": 0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 5", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 6": { + "L": 0.036500000000000005, + "idl": 0.0, + "odl": 0.09000000000000001, + "idr": 0.0, + "odr": 0.09000000000000001, + "material": { "name": "shaft_mat_1", - "rho": 7833.412 + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" }, - "n": 9, - "odl": 0.085, - "odr": 0.085, + "n": 6, + "axial_force": 0, + "torque": 0, + "shear_effects": true, "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 6", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 7": { + "L": 0.051, + "idl": 0.0, + "odl": 0.09000000000000001, + "idr": 0.0, + "odr": 0.09000000000000001, + "material": { + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 7, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 10", - "torque": 0 + "tag": "ShaftElement 7", + "alpha": 0.0, + "beta": 0.0 }, - "ShaftElement_ShaftElement 11": { + "ShaftElement_ShaftElement 8": { + "L": 0.025, + "idl": 0.0, + "odl": 0.103, + "idr": 0.0, + "odr": 0.103, + "material": { + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 8, + "axial_force": 0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 8", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 9": { + "L": 0.025, + "idl": 0.103, + "odl": 0.13799999999999998, + "idr": 0.103, + "odr": 0.13799999999999998, + "material": { + "name": "shaft_mat_2", + "rho": 7833.412, + "E": 6894.75, + "G_s": 6894.75, + "color": "#525252" + }, + "n": 8, + "axial_force": 0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 9", "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 10": { + "L": 0.016, + "idl": 0.0, + "odl": 0.085, + "idr": 0.0, + "odr": 0.085, + "material": { + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 9, "axial_force": 0, - "beta": 0.0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 10", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 11": { + "L": 0.016, "idl": 0.085, + "odl": 0.13799999999999998, "idr": 0.085, - "L": 0.016, + "odr": 0.13799999999999998, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 9, - "odl": 0.13799999999999998, - "odr": 0.13799999999999998, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 11", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 12": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.0242, "idl": 0.0, + "odl": 0.104, "idr": 0.0, - "L": 0.0242, + "odr": 0.104, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 10, - "odl": 0.104, - "odr": 0.104, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 12", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 13": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.0242, "idl": 0.104, + "odl": 0.174, "idr": 0.104, - "L": 0.0242, + "odr": 0.174, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 10, - "odl": 0.174, - "odr": 0.174, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 13", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 14": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.0045000000000000005, "idl": 0.0, + "odl": 0.0982, "idr": 0.0, - "L": 0.0045000000000000005, + "odr": 0.0982, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 11, - "odl": 0.0982, - "odr": 0.0982, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 14", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 15": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.0045000000000000005, "idl": 0.0982, + "odl": 0.174, "idr": 0.0982, - "L": 0.0045000000000000005, + "odr": 0.174, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 11, - "odl": 0.174, - "odr": 0.174, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 15", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 16": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.01257, "idl": 0.0, + "odl": 0.104, "idr": 0.0, - "L": 0.01257, + "odr": 0.104, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 12, - "odl": 0.104, - "odr": 0.104, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 16", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 17": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.01257, "idl": 0.104, + "odl": 0.174, "idr": 0.104, - "L": 0.01257, + "odr": 0.174, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 12, - "odl": 0.174, - "odr": 0.174, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 17", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 18": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.02, "idl": 0.0, + "odl": 0.10600000000000001, "idr": 0.0, - "L": 0.02, + "odr": 0.10600000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 13, - "odl": 0.10600000000000001, - "odr": 0.10600000000000001, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 18", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 19": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.02, "idl": 0.10600000000000001, + "odl": 0.184, "idr": 0.10600000000000001, - "L": 0.02, + "odr": 0.184, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 13, - "odl": 0.184, - "odr": 0.184, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 19", - "torque": 0 - }, - "ShaftElement_ShaftElement 2": { "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.054000000000000006, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 2, - "odl": 0.08, - "odr": 0.08, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 2", - "torque": 0 + "beta": 0.0 }, "ShaftElement_ShaftElement 20": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.06273000000000001, "idl": 0.0, + "odl": 0.10800000000000001, "idr": 0.0, - "L": 0.06273000000000001, + "odr": 0.10800000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 14, - "odl": 0.10800000000000001, - "odr": 0.10800000000000001, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 20", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 21": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.06273000000000001, "idl": 0.10800000000000001, + "odl": 0.184, "idr": 0.10800000000000001, - "L": 0.06273000000000001, + "odr": 0.184, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 14, - "odl": 0.184, - "odr": 0.184, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 21", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 22": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.038, "idl": 0.0, + "odl": 0.11, "idr": 0.0, - "L": 0.038, + "odr": 0.11, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 15, - "odl": 0.11, - "odr": 0.11, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 22", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 23": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.038, "idl": 0.11, + "odl": 0.184, "idr": 0.11, - "L": 0.038, + "odr": 0.184, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 15, - "odl": 0.184, - "odr": 0.184, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 23", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 24": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.038, "idl": 0.0, + "odl": 0.122, "idr": 0.0, - "L": 0.038, + "odr": 0.122, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 16, - "odl": 0.122, - "odr": 0.122, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 24", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 25": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.038, "idl": 0.122, + "odl": 0.13899999999999998, "idr": 0.122, - "L": 0.038, + "odr": 0.13899999999999998, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 16, - "odl": 0.13899999999999998, - "odr": 0.13899999999999998, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 25", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 26": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.030000000000000002, "idl": 0.0, + "odl": 0.135, "idr": 0.0, - "L": 0.030000000000000002, + "odr": 0.135, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 17, - "odl": 0.135, - "odr": 0.135, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 26", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 27": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.030000000000000002, "idl": 0.135, + "odl": 0.175, "idr": 0.135, - "L": 0.030000000000000002, + "odr": 0.175, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 17, - "odl": 0.175, - "odr": 0.175, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 27", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 28": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.053000000000000005, "idl": 0.0, + "odl": 0.11770000000000001, "idr": 0.0, - "L": 0.053000000000000005, + "odr": 0.11770000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 18, - "odl": 0.11770000000000001, - "odr": 0.11770000000000001, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 28", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 29": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.053000000000000005, "idl": 0.11770000000000001, + "odl": 0.1965, "idr": 0.11770000000000001, - "L": 0.053000000000000005, + "odr": 0.1965, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 18, - "odl": 0.1965, - "odr": 0.1965, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 29", - "torque": 0 - }, - "ShaftElement_ShaftElement 3": { "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.043000000000000003, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 3, - "odl": 0.08, - "odr": 0.08, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 3", - "torque": 0 + "beta": 0.0 }, "ShaftElement_ShaftElement 30": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.01949, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.01949, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 19, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 30", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 31": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.01949, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.01949, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 19, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 31", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 32": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.013510000000000003, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.013510000000000003, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 20, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 32", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 33": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.013510000000000003, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.013510000000000003, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 20, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 33", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 34": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.0495, "idl": 0.0, + "odl": 0.11770000000000001, "idr": 0.0, - "L": 0.0495, + "odr": 0.11770000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 21, - "odl": 0.11770000000000001, - "odr": 0.11770000000000001, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 34", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 35": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.01959, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.01959, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 22, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 35", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 36": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.01959, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.01959, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 22, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 36", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 37": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.012410000000000001, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.012410000000000001, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 23, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 37", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 38": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.012410000000000001, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.012410000000000001, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 23, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 38", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 39": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.049, "idl": 0.0, + "odl": 0.11770000000000001, "idr": 0.0, - "L": 0.049, + "odr": 0.11770000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 24, - "odl": 0.11770000000000001, - "odr": 0.11770000000000001, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 39", - "torque": 0 - }, - "ShaftElement_ShaftElement 4": { "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.0165, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 4, - "odl": 0.088, - "odr": 0.088, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 4", - "torque": 0 + "beta": 0.0 }, "ShaftElement_ShaftElement 40": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.019700000000000002, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.019700000000000002, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 25, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 40", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 41": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.019700000000000002, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.019700000000000002, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 25, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 41", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 42": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.0123, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.0123, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 26, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 42", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 43": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.0123, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.0123, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 26, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 43", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 44": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.0495, "idl": 0.0, + "odl": 0.11770000000000001, "idr": 0.0, - "L": 0.0495, + "odr": 0.11770000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 27, - "odl": 0.11770000000000001, - "odr": 0.11770000000000001, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 44", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 45": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.019829999999999997, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.019829999999999997, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 28, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 45", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 46": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.019829999999999997, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.019829999999999997, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 28, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 46", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 47": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.011670000000000002, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.011670000000000002, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 29, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 47", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 48": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.011670000000000002, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.011670000000000002, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, "n": 29, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 48", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, "ShaftElement_ShaftElement 49": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "L": 0.0495, "idl": 0.0, + "odl": 0.11770000000000001, "idr": 0.0, - "L": 0.0495, + "odr": 0.11770000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, "n": 30, - "odl": 0.11770000000000001, - "odr": 0.11770000000000001, - "rotary_inertia": true, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", "tag": "ShaftElement 49", - "torque": 0 + "alpha": 0.0, + "beta": 0.0 }, - "ShaftElement_ShaftElement 5": { + "ShaftElement_ShaftElement 50": { + "L": 0.01998, + "idl": 0.0, + "odl": 0.12234999999999999, + "idr": 0.0, + "odr": 0.12234999999999999, + "material": { + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 31, + "axial_force": 0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 50", "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 51": { + "L": 0.01998, + "idl": 0.12234999999999999, + "odl": 0.127, + "idr": 0.12234999999999999, + "odr": 0.127, + "material": { + "name": "shaft_mat_2", + "rho": 7833.412, + "E": 6894.75, + "G_s": 6894.75, + "color": "#525252" + }, + "n": 31, "axial_force": 0, - "beta": 0.0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 51", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 52": { + "L": 0.01202, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.014, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 5, - "odl": 0.088, - "odr": 0.088, - "rotary_inertia": true, + "n": 32, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 5", - "torque": 0 - }, - "ShaftElement_ShaftElement 50": { + "tag": "ShaftElement 52", "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 53": { + "L": 0.01202, + "idl": 0.12234999999999999, + "odl": 0.127, + "idr": 0.12234999999999999, + "odr": 0.127, + "material": { + "name": "shaft_mat_2", + "rho": 7833.412, + "E": 6894.75, + "G_s": 6894.75, + "color": "#525252" + }, + "n": 32, "axial_force": 0, - "beta": 0.0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 53", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 54": { + "L": 0.0495, "idl": 0.0, + "odl": 0.11770000000000001, "idr": 0.0, - "L": 0.01998, + "odr": 0.11770000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 31, + "n": 33, + "axial_force": 0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 54", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 55": { + "L": 0.020100000000000003, + "idl": 0.0, "odl": 0.12234999999999999, + "idr": 0.0, "odr": 0.12234999999999999, - "rotary_inertia": true, + "material": { + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 34, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 50", - "torque": 0 - }, - "ShaftElement_ShaftElement 51": { + "tag": "ShaftElement 55", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 56": { + "L": 0.020100000000000003, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.01998, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 31, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "n": 34, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 51", - "torque": 0 - }, - "ShaftElement_ShaftElement 52": { + "tag": "ShaftElement 56", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 57": { + "L": 0.012399999999999998, "idl": 0.0, + "odl": 0.12234999999999999, "idr": 0.0, - "L": 0.01202, + "odr": 0.12234999999999999, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 32, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "n": 35, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 52", - "torque": 0 - }, - "ShaftElement_ShaftElement 53": { + "tag": "ShaftElement 57", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 58": { + "L": 0.012399999999999998, "idl": 0.12234999999999999, + "odl": 0.127, "idr": 0.12234999999999999, - "L": 0.01202, + "odr": 0.127, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 32, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "n": 35, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 53", - "torque": 0 - }, - "ShaftElement_ShaftElement 54": { + "tag": "ShaftElement 58", "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 59": { + "L": 0.056999999999999995, + "idl": 0.0, + "odl": 0.11770000000000001, + "idr": 0.0, + "odr": 0.11770000000000001, + "material": { + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" + }, + "n": 36, "axial_force": 0, - "beta": 0.0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 59", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 60": { + "L": 0.026, "idl": 0.0, + "odl": 0.135, "idr": 0.0, - "L": 0.0495, + "odr": 0.135, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 33, - "odl": 0.11770000000000001, - "odr": 0.11770000000000001, - "rotary_inertia": true, + "n": 37, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 54", - "torque": 0 - }, - "ShaftElement_ShaftElement 55": { + "tag": "ShaftElement 60", "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 61": { + "L": 0.026, + "idl": 0.135, + "odl": 0.175, + "idr": 0.135, + "odr": 0.175, + "material": { + "name": "shaft_mat_2", + "rho": 7833.412, + "E": 6894.75, + "G_s": 6894.75, + "color": "#525252" + }, + "n": 37, "axial_force": 0, - "beta": 0.0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 61", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 62": { + "L": 0.038, "idl": 0.0, + "odl": 0.122, "idr": 0.0, - "L": 0.020100000000000003, + "odr": 0.122, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 34, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "n": 38, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 55", - "torque": 0 - }, - "ShaftElement_ShaftElement 56": { + "tag": "ShaftElement 62", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.12234999999999999, - "idr": 0.12234999999999999, - "L": 0.020100000000000003, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 63": { + "L": 0.038, + "idl": 0.122, + "odl": 0.13899999999999998, + "idr": 0.122, + "odr": 0.13899999999999998, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 34, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "n": 38, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 56", - "torque": 0 - }, - "ShaftElement_ShaftElement 57": { + "tag": "ShaftElement 63", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 64": { + "L": 0.038, "idl": 0.0, + "odl": 0.11, "idr": 0.0, - "L": 0.012399999999999998, + "odr": 0.11, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 35, - "odl": 0.12234999999999999, - "odr": 0.12234999999999999, - "rotary_inertia": true, + "n": 39, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 57", - "torque": 0 - }, - "ShaftElement_ShaftElement 58": { + "tag": "ShaftElement 64", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.12234999999999999, - "idr": 0.12234999999999999, - "L": 0.012399999999999998, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 65": { + "L": 0.038, + "idl": 0.11, + "odl": 0.184, + "idr": 0.11, + "odr": 0.184, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 35, - "odl": 0.127, - "odr": 0.127, - "rotary_inertia": true, + "n": 39, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 58", - "torque": 0 - }, - "ShaftElement_ShaftElement 59": { + "tag": "ShaftElement 65", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 66": { + "L": 0.06273000000000001, "idl": 0.0, + "odl": 0.10800000000000001, "idr": 0.0, - "L": 0.056999999999999995, + "odr": 0.10800000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 36, - "odl": 0.11770000000000001, - "odr": 0.11770000000000001, - "rotary_inertia": true, + "n": 40, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 59", - "torque": 0 + "tag": "ShaftElement 66", + "alpha": 0.0, + "beta": 0.0 }, - "ShaftElement_ShaftElement 6": { + "ShaftElement_ShaftElement 67": { + "L": 0.06273000000000001, + "idl": 0.10800000000000001, + "odl": 0.184, + "idr": 0.10800000000000001, + "odr": 0.184, + "material": { + "name": "shaft_mat_2", + "rho": 7833.412, + "E": 6894.75, + "G_s": 6894.75, + "color": "#525252" + }, + "n": 40, + "axial_force": 0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 67", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 68": { + "L": 0.02, "idl": 0.0, + "odl": 0.10600000000000001, "idr": 0.0, - "L": 0.036500000000000005, + "odr": 0.10600000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 6, - "odl": 0.09000000000000001, - "odr": 0.09000000000000001, - "rotary_inertia": true, + "n": 41, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 6", - "torque": 0 - }, - "ShaftElement_ShaftElement 60": { + "tag": "ShaftElement 68", "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 69": { + "L": 0.02, + "idl": 0.10600000000000001, + "odl": 0.184, + "idr": 0.10600000000000001, + "odr": 0.184, + "material": { + "name": "shaft_mat_2", + "rho": 7833.412, + "E": 6894.75, + "G_s": 6894.75, + "color": "#525252" + }, + "n": 41, "axial_force": 0, - "beta": 0.0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 69", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 70": { + "L": 0.01257, "idl": 0.0, + "odl": 0.104, "idr": 0.0, - "L": 0.026, + "odr": 0.104, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 37, - "odl": 0.135, - "odr": 0.135, - "rotary_inertia": true, + "n": 42, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 60", - "torque": 0 - }, - "ShaftElement_ShaftElement 61": { + "tag": "ShaftElement 70", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.135, - "idr": 0.135, - "L": 0.026, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 71": { + "L": 0.01257, + "idl": 0.104, + "odl": 0.174, + "idr": 0.104, + "odr": 0.174, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 37, - "odl": 0.175, - "odr": 0.175, - "rotary_inertia": true, + "n": 42, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 61", - "torque": 0 - }, - "ShaftElement_ShaftElement 62": { + "tag": "ShaftElement 71", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 72": { + "L": 0.0045000000000000005, "idl": 0.0, + "odl": 0.0982, "idr": 0.0, - "L": 0.038, + "odr": 0.0982, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 38, - "odl": 0.122, - "odr": 0.122, - "rotary_inertia": true, + "n": 43, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 62", - "torque": 0 - }, - "ShaftElement_ShaftElement 63": { + "tag": "ShaftElement 72", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.122, - "idr": 0.122, - "L": 0.038, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 73": { + "L": 0.0045000000000000005, + "idl": 0.0982, + "odl": 0.174, + "idr": 0.0982, + "odr": 0.174, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 38, - "odl": 0.13899999999999998, - "odr": 0.13899999999999998, - "rotary_inertia": true, + "n": 43, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 63", - "torque": 0 - }, - "ShaftElement_ShaftElement 64": { + "tag": "ShaftElement 73", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 74": { + "L": 0.0242, "idl": 0.0, + "odl": 0.104, "idr": 0.0, - "L": 0.038, + "odr": 0.104, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 39, - "odl": 0.11, - "odr": 0.11, - "rotary_inertia": true, + "n": 44, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 64", - "torque": 0 - }, - "ShaftElement_ShaftElement 65": { + "tag": "ShaftElement 74", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.11, - "idr": 0.11, - "L": 0.038, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 75": { + "L": 0.0242, + "idl": 0.104, + "odl": 0.174, + "idr": 0.104, + "odr": 0.174, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 39, - "odl": 0.184, - "odr": 0.184, - "rotary_inertia": true, + "n": 44, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 65", - "torque": 0 - }, - "ShaftElement_ShaftElement 66": { + "tag": "ShaftElement 75", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 76": { + "L": 0.016, "idl": 0.0, + "odl": 0.085, "idr": 0.0, - "L": 0.06273000000000001, + "odr": 0.085, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 40, - "odl": 0.10800000000000001, - "odr": 0.10800000000000001, - "rotary_inertia": true, + "n": 45, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 66", - "torque": 0 - }, - "ShaftElement_ShaftElement 67": { + "tag": "ShaftElement 76", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.10800000000000001, - "idr": 0.10800000000000001, - "L": 0.06273000000000001, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 77": { + "L": 0.016, + "idl": 0.085, + "odl": 0.13799999999999998, + "idr": 0.085, + "odr": 0.13799999999999998, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 40, - "odl": 0.184, - "odr": 0.184, - "rotary_inertia": true, + "n": 45, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 67", - "torque": 0 - }, - "ShaftElement_ShaftElement 68": { + "tag": "ShaftElement 77", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 78": { + "L": 0.025, "idl": 0.0, + "odl": 0.103, "idr": 0.0, - "L": 0.02, + "odr": 0.103, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 41, - "odl": 0.10600000000000001, - "odr": 0.10600000000000001, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 68", - "torque": 0 - }, - "ShaftElement_ShaftElement 69": { - "alpha": 0.0, + "n": 46, "axial_force": 0, - "beta": 0.0, + "torque": 0, + "shear_effects": true, + "rotary_inertia": true, "gyroscopic": true, - "idl": 0.10600000000000001, - "idr": 0.10600000000000001, - "L": 0.02, + "shear_method_calc": "cowper", + "tag": "ShaftElement 78", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 79": { + "L": 0.025, + "idl": 0.103, + "odl": 0.13799999999999998, + "idr": 0.103, + "odr": 0.13799999999999998, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 41, - "odl": 0.184, - "odr": 0.184, - "rotary_inertia": true, + "n": 46, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 69", - "torque": 0 - }, - "ShaftElement_ShaftElement 7": { + "tag": "ShaftElement 79", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 80": { + "L": 0.051, "idl": 0.0, + "odl": 0.09000000000000001, "idr": 0.0, - "L": 0.051, + "odr": 0.09000000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 7, - "odl": 0.09000000000000001, - "odr": 0.09000000000000001, - "rotary_inertia": true, + "n": 47, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 7", - "torque": 0 - }, - "ShaftElement_ShaftElement 70": { + "tag": "ShaftElement 80", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 81": { + "L": 0.050499999999999996, "idl": 0.0, + "odl": 0.09000000000000001, "idr": 0.0, - "L": 0.01257, + "odr": 0.09000000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 42, - "odl": 0.104, - "odr": 0.104, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 70", - "torque": 0 - }, - "ShaftElement_ShaftElement 71": { - "alpha": 0.0, + "n": 48, "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.104, - "idr": 0.104, - "L": 0.01257, - "material": { - "color": "#525252", - "E": 6894.75, - "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 - }, - "n": 42, - "odl": 0.174, - "odr": 0.174, - "rotary_inertia": true, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 71", - "torque": 0 - }, - "ShaftElement_ShaftElement 72": { + "tag": "ShaftElement 81", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 82": { + "L": 0.036375000000000005, "idl": 0.0, + "odl": 0.09000000000000001, "idr": 0.0, - "L": 0.0045000000000000005, + "odr": 0.09000000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 43, - "odl": 0.0982, - "odr": 0.0982, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 72", - "torque": 0 - }, - "ShaftElement_ShaftElement 73": { - "alpha": 0.0, + "n": 49, "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0982, - "idr": 0.0982, - "L": 0.0045000000000000005, - "material": { - "color": "#525252", - "E": 6894.75, - "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 - }, - "n": 43, - "odl": 0.174, - "odr": 0.174, - "rotary_inertia": true, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 73", - "torque": 0 - }, - "ShaftElement_ShaftElement 74": { + "tag": "ShaftElement 82", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 83": { + "L": 0.036375000000000005, "idl": 0.0, + "odl": 0.09000000000000001, "idr": 0.0, - "L": 0.0242, + "odr": 0.09000000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 44, - "odl": 0.104, - "odr": 0.104, - "rotary_inertia": true, + "n": 50, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 74", - "torque": 0 - }, - "ShaftElement_ShaftElement 75": { + "tag": "ShaftElement 83", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.104, - "idr": 0.104, - "L": 0.0242, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 84": { + "L": 0.013500000000000002, + "idl": 0.0, + "odl": 0.09000000000000001, + "idr": 0.0, + "odr": 0.09000000000000001, "material": { - "color": "#525252", - "E": 6894.75, - "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "name": "shaft_mat_1", + "rho": 7833.412, + "E": 206842300000.0, + "G_s": 82736940000.0, + "color": "#525252" }, - "n": 44, - "odl": 0.174, - "odr": 0.174, - "rotary_inertia": true, + "n": 51, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 75", - "torque": 0 - }, - "ShaftElement_ShaftElement 76": { + "tag": "ShaftElement 84", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 85": { + "L": 0.034999999999999996, "idl": 0.0, + "odl": 0.09000000000000001, "idr": 0.0, - "L": 0.016, + "odr": 0.09000000000000001, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 45, - "odl": 0.085, - "odr": 0.085, - "rotary_inertia": true, + "n": 52, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 76", - "torque": 0 - }, - "ShaftElement_ShaftElement 77": { + "tag": "ShaftElement 85", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.085, - "idr": 0.085, - "L": 0.016, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 86": { + "L": 0.034999999999999996, + "idl": 0.09000000000000001, + "odl": 0.245, + "idr": 0.09000000000000001, + "odr": 0.245, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 45, - "odl": 0.13799999999999998, - "odr": 0.13799999999999998, - "rotary_inertia": true, + "n": 52, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 77", - "torque": 0 - }, - "ShaftElement_ShaftElement 78": { + "tag": "ShaftElement 86", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 87": { + "L": 0.024, "idl": 0.0, + "odl": 0.0872, "idr": 0.0, - "L": 0.025, + "odr": 0.0872, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 46, - "odl": 0.103, - "odr": 0.103, - "rotary_inertia": true, + "n": 53, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 78", - "torque": 0 - }, - "ShaftElement_ShaftElement 79": { + "tag": "ShaftElement 87", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.103, - "idr": 0.103, - "L": 0.025, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 88": { + "L": 0.024, + "idl": 0.0872, + "odl": 0.112, + "idr": 0.0872, + "odr": 0.112, "material": { - "color": "#525252", + "name": "shaft_mat_2", + "rho": 7833.412, "E": 6894.75, "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 + "color": "#525252" }, - "n": 46, - "odl": 0.13799999999999998, - "odr": 0.13799999999999998, - "rotary_inertia": true, + "n": 53, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 79", - "torque": 0 - }, - "ShaftElement_ShaftElement 8": { + "tag": "ShaftElement 88", "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 89": { + "L": 0.032, "idl": 0.0, + "odl": 0.085, "idr": 0.0, - "L": 0.025, + "odr": 0.085, "material": { - "color": "#525252", + "name": "shaft_mat_1", + "rho": 7833.412, "E": 206842300000.0, "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 + "color": "#525252" }, - "n": 8, - "odl": 0.103, - "odr": 0.103, + "n": 54, + "axial_force": 0, + "torque": 0, + "shear_effects": true, "rotary_inertia": true, + "gyroscopic": true, + "shear_method_calc": "cowper", + "tag": "ShaftElement 89", + "alpha": 0.0, + "beta": 0.0 + }, + "ShaftElement_ShaftElement 90": { + "L": 0.032, + "idl": 0.085, + "odl": 0.113, + "idr": 0.085, + "odr": 0.113, + "material": { + "name": "shaft_mat_2", + "rho": 7833.412, + "E": 6894.75, + "G_s": 6894.75, + "color": "#525252" + }, + "n": 54, + "axial_force": 0, + "torque": 0, "shear_effects": true, + "rotary_inertia": true, + "gyroscopic": true, "shear_method_calc": "cowper", - "tag": "ShaftElement 8", - "torque": 0 + "tag": "ShaftElement 90", + "alpha": 0.0, + "beta": 0.0 + }, + "DiskElement_Disk 0": { + "n": 3, + "m": 15.119982018530925, + "Id": 0.0, + "Ip": 0.0, + "tag": "Disk 0", + "scale_factor": 1, + "color": "Firebrick" + }, + "DiskElement_Disk 1": { + "n": 20, + "m": 6.909991782278354, + "Id": 0.02499983979288977, + "Ip": 0.046999698810632776, + "tag": "Disk 1", + "scale_factor": 1, + "color": "Firebrick" + }, + "DiskElement_Disk 2": { + "n": 23, + "m": 6.929991758493341, + "Id": 0.02499983979288977, + "Ip": 0.046999698810632776, + "tag": "Disk 2", + "scale_factor": 1, + "color": "Firebrick" + }, + "DiskElement_Disk 3": { + "n": 26, + "m": 6.94999173470833, + "Id": 0.02499983979288977, + "Ip": 0.047999692402348366, + "tag": "Disk 3", + "scale_factor": 1, + "color": "Firebrick" + }, + "DiskElement_Disk 4": { + "n": 29, + "m": 6.979991699030812, + "Id": 0.02499983979288977, + "Ip": 0.047999692402348366, + "tag": "Disk 4", + "scale_factor": 1, + "color": "Firebrick" + }, + "DiskElement_Disk 5": { + "n": 32, + "m": 6.939991746600836, + "Id": 0.02499983979288977, + "Ip": 0.047999692402348366, + "tag": "Disk 5", + "scale_factor": 1, + "color": "Firebrick" + }, + "DiskElement_Disk 6": { + "n": 35, + "m": 6.959991722815824, + "Id": 0.02499983979288977, + "Ip": 0.047999692402348366, + "tag": "Disk 6", + "scale_factor": 1, + "color": "Firebrick" + }, + "BearingElement_Bearing 0": { + "color": "#355d7a", + "cxx": [ + 189136.98206619456, + 176440.286510825, + 165762.80336584736, + 156496.8425129563, + 148349.9421372902, + 140994.6150569382, + 134355.55673274427, + 128322.43725850315 + ], + "cxy": [ + -551.6670437099255, + -310.1496252215098, + -188.54155082635654, + -119.07924289419412, + -75.18019910295988, + -44.84647996991768, + -22.339179104040536, + -5.18935838202359 + ], + "cyx": [ + -594.4680422441643, + -362.81026458012525, + -250.79914075647892, + -190.6956108998882, + -155.93118283511018, + -134.5376886414006, + -120.79373461125712, + -112.24754505122908 + ], + "cyy": [ + 199662.10486450777, + 183567.94870535663, + 170981.58305619235, + 160516.00338186292, + 151560.0170273581, + 143637.27900080752, + 136577.91627202206, + 130227.81722598482 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.87902047863906, + 523.5987755982989, + 628.3185307179587, + 733.0382858376183, + 837.7580409572781, + 942.4777960769379, + 1047.1975511965977, + 1151.9173063162575 + ], + "kxx": [ + 114058356.52767764, + 133516699.19191365, + 151278062.82261127, + 167517574.25501704, + 182482162.32682845, + 196142055.47605363, + 208733674.93027526, + 220397122.1576906 + ], + "kxy": [ + -578233.784616816, + -457116.0653603528, + -394350.6076080157, + -363178.0309341429, + -351479.5583396782, + -352740.47155345284, + -363738.43680693157, + -382336.90671010735 + ], + "kyx": [ + -520564.51777015126, + -367223.4608283365, + -265194.5666137393, + -187700.94201717345, + -122643.07399145991, + -63560.53358435616, + -7213.124090131872, + 48538.15365691342 + ], + "kyy": [ + 122826957.16846871, + 141064665.79103678, + 158008187.10113338, + 173655769.83040604, + 188156271.7888143, + 201465911.2675465, + 213794840.46889845, + 225213110.1269687 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 7, + "n_link": null, + "scale_factor": 1, + "tag": "Bearing 0" }, - "ShaftElement_ShaftElement 80": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.051, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 47, - "odl": 0.09000000000000001, - "odr": 0.09000000000000001, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 80", - "torque": 0 + "SealElement_Seal 1": { + "color": "#77ACA2", + "cxx": [ + 74107.0, + 73866.0, + 73474.0, + 72946.0, + 72298.0, + 71545.0 + ], + "cxy": [ + -344.22, + -693.67, + -1053.7, + -1429.8, + -1827.8, + -2253.2 + ], + "cyx": [ + -344.22, + -693.67, + -1053.7, + -1429.8, + -1827.8, + -2253.2 + ], + "cyy": [ + 74107.0, + 73866.0, + 73474.0, + 72946.0, + 72298.0, + 71545.0 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 209.43951023931953, + 418.87902047863906, + 628.3185307179587, + 837.7580409572781, + 1047.1975511965977, + 1256.6370614359173 + ], + "kxx": [ + 145300000.0, + 145440000.0, + 145650000.0, + 145880000.0, + 146080000.0, + 146210000.0 + ], + "kxy": [ + 1462300.0, + 2937800.0, + 4443500.0, + 6003500.0, + 7649100.0, + 9417700.0 + ], + "kyx": [ + 1462300.0, + 2937800.0, + 4443500.0, + 6003500.0, + 7649100.0, + 9417700.0 + ], + "kyy": [ + 145300000.0, + 145440000.0, + 145650000.0, + 145880000.0, + 146080000.0, + 146210000.0 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 18, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 1" }, - "ShaftElement_ShaftElement 81": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.050499999999999996, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 48, - "odl": 0.09000000000000001, - "odr": 0.09000000000000001, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 81", - "torque": 0 + "SealElement_Seal 8": { + "color": "#77ACA2", + "cxx": [ + 2291.12243345773, + 2311.1040718269, + 2326.80597091329, + 2336.94965058397, + 2340.6898099477, + 2337.52046884341, + 2327.20232641125, + 2309.70538908619, + 1880.94276136733 + ], + "cxy": [ + 206.926347739178, + 199.422636876644, + 176.412369573979, + 140.746432758469, + 94.9135905607814, + 41.0991829034798, + -18.775866654557, + -83.0260630423863, + -671.209405124406 + ], + "cyx": [ + -206.926347739178, + -199.422636876644, + -176.412369573979, + -140.746432758469, + -94.9135905607814, + -41.0991829034798, + 18.775866654557, + 83.0260630423863, + 671.209405124406 + ], + "cyy": [ + 2291.12243345773, + 2311.1040718269, + 2326.80597091329, + 2336.94965058397, + 2340.6898099477, + 2337.52046884341, + 2327.20232641125, + 2309.70538908619, + 1880.94276136733 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 298251.102793201, + 341553.083464932, + 394552.018603807, + 458222.132531081, + 533166.367271116, + 619721.596416625, + 718029.641688798, + 828087.262141986, + 2308865.1768009 + ], + "kxy": [ + 1242500.2855946, + 1622346.60563776, + 2019067.07204817, + 2429294.4077584, + 2850215.15001386, + 3279441.40422489, + 3714924.05537521, + 4154890.25666796, + 8114286.71318661 + ], + "kyx": [ + -1242500.2855946, + -1622346.60563776, + -2019067.07204817, + -2429294.4077584, + -2850215.15001386, + -3279441.40422489, + -3714924.05537521, + -4154890.25666796, + -8114286.71318661 + ], + "kyy": [ + 298251.102793201, + 341553.083464932, + 394552.018603807, + 458222.132531081, + 533166.367271116, + 619721.596416625, + 718029.641688798, + 828087.262141986, + 2308865.1768009 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 21, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 8" }, - "ShaftElement_ShaftElement 82": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.036375000000000005, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 49, - "odl": 0.09000000000000001, - "odr": 0.09000000000000001, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 82", - "torque": 0 + "SealElement_Seal 13": { + "color": "#77ACA2", + "cxx": [ + 844.704816544965, + 845.510119153807, + 843.879821457693, + 839.45090843711, + 832.029915317881, + 821.555183438786, + 808.067199559831, + 791.684638045522, + 551.77571052815 + ], + "cxy": [ + 41.8735664570863, + 33.9385369802047, + 21.4702902513189, + 5.51035377944818, + -13.0248291697293, + -33.3307978115303, + -54.7060168965144, + -76.544502427302, + -232.737765811523 + ], + "cyx": [ + -41.8735664570863, + -33.9385369802047, + -21.4702902513189, + -5.51035377944818, + 13.0248291697293, + 33.3307978115303, + 54.7060168965144, + 76.544502427302, + 232.737765811523 + ], + "cyy": [ + 844.704816544965, + 845.510119153807, + 843.879821457693, + 839.45090843711, + 832.029915317881, + 821.555183438786, + 808.067199559831, + 791.684638045522, + 551.77571052815 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 212004.230533674, + 228104.197005656, + 247866.752578785, + 271587.121157548, + 299441.94589272, + 331521.70676384, + 367852.540447444, + 408411.467916301, + 946059.583744362 + ], + "kxy": [ + 438140.709696468, + 570924.881967202, + 709603.313478691, + 853069.011373774, + 1000381.95159242, + 1150732.27599602, + 1303415.03798806, + 1457811.94108399, + 2852208.05920669 + ], + "kyx": [ + -438140.709696468, + -570924.881967202, + -709603.313478691, + -853069.011373774, + -1000381.95159242, + -1150732.27599602, + -1303415.03798806, + -1457811.94108399, + -2852208.05920669 + ], + "kyy": [ + 212004.230533674, + 228104.197005656, + 247866.752578785, + 271587.121157548, + 299441.94589272, + 331521.70676384, + 367852.540447444, + 408411.467916301, + 946059.583744362 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 22, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 13" }, - "ShaftElement_ShaftElement 83": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.036375000000000005, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 50, - "odl": 0.09000000000000001, - "odr": 0.09000000000000001, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 83", - "torque": 0 + "SealElement_Seal 7": { + "color": "#77ACA2", + "cxx": [ + 2237.27062169521, + 2262.54451706828, + 2284.71266328052, + 2302.40907831969, + 2314.67941113008, + 2320.89559745058, + 2320.68980309972, + 2313.90150206837, + 1988.68376388278 + ], + "cxy": [ + 228.5066838492, + 228.216282636906, + 212.358685620386, + 183.537798746503, + 144.04734233591, + 95.9190515734874, + 40.9558585213239, + -19.2447358005768, + -614.227168738531 + ], + "cyx": [ + -228.5066838492, + -228.216282636906, + -212.358685620386, + -183.537798746503, + -144.04734233591, + -95.9190515734874, + -40.9558585213239, + 19.2447358005768, + 614.227168738531 + ], + "cyy": [ + 2237.27062169521, + 2262.54451706828, + 2284.71266328052, + 2302.40907831969, + 2314.67941113008, + 2320.89559745058, + 2320.68980309972, + 2313.90150206837, + 1988.68376388278 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 252811.630578299, + 292779.969788229, + 341775.407113344, + 400829.381676715, + 470611.220647497, + 551527.947163869, + 643791.437001381, + 747466.3932106181, + 2165015.37392413 + ], + "kxy": [ + 1196154.91738691, + 1560429.00166038, + 1940945.78963764, + 2334594.59072454, + 2738754.90307113, + 3151186.98050217, + 3569954.75170215, + 3993371.59388281, + 7817904.77114129 + ], + "kyx": [ + -1196154.91738691, + -1560429.00166038, + -1940945.78963764, + -2334594.59072454, + -2738754.90307113, + -3151186.98050217, + -3569954.75170215, + -3993371.59388281, + -7817904.77114129 + ], + "kyy": [ + 252811.630578299, + 292779.969788229, + 341775.407113344, + 400829.381676715, + 470611.220647497, + 551527.947163869, + 643791.437001381, + 747466.3932106181, + 2165015.37392413 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 24, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 7" }, - "ShaftElement_ShaftElement 84": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.013500000000000002, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 51, - "odl": 0.09000000000000001, - "odr": 0.09000000000000001, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 84", - "torque": 0 + "SealElement_Seal 12": { + "color": "#77ACA2", + "cxx": [ + 828.076214508057, + 831.698341316398, + 833.420964081016, + 832.833200737184, + 829.68538941482, + 823.855212022527, + 815.320735537458, + 804.138365393787, + 613.175254017714 + ], + "cxy": [ + 56.639482846621, + 52.6803994392273, + 44.0249331997799, + 31.6254311839271, + 16.3284602522176, + -1.11491725585648, + -20.0424044945381, + -39.8750850779251, + -198.229669313471 + ], + "cyx": [ + -56.639482846621, + -52.6803994392273, + -44.0249331997799, + -31.6254311839271, + -16.3284602522176, + 1.11491725585648, + 20.0424044945381, + 39.8750850779251, + 198.229669313471 + ], + "cyy": [ + 828.076214508057, + 831.698341316398, + 833.420964081016, + 832.833200737184, + 829.68538941482, + 823.855212022527, + 815.320735537458, + 804.138365393787, + 613.175254017714 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 180839.024474825, + 195355.027554806, + 213179.711736108, + 234627.751980985, + 259899.30178444, + 289110.53399467, + 322314.274331595, + 359514.507333211, + 860767.574416809 + ], + "kxy": [ + 424916.756322156, + 553193.12733327, + 687168.6168166, + 825821.555318317, + 968280.211140864, + 1113789.96941796, + 1261690.85775216, + 1411401.36210057, + 2771413.59584677 + ], + "kyx": [ + -424916.756322156, + -553193.12733327, + -687168.6168166, + -825821.555318317, + -968280.211140864, + -1113789.96941796, + -1261690.85775216, + -1411401.36210057, + -2771413.59584677 + ], + "kyy": [ + 180839.024474825, + 195355.027554806, + 213179.711736108, + 234627.751980985, + 259899.30178444, + 289110.53399467, + 322314.274331595, + 359514.507333211, + 860767.574416809 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 25, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 12" + }, + "SealElement_Seal 6": { + "color": "#77ACA2", + "cxx": [ + 2178.21606571578, + 2209.14806245493, + 2238.23710142438, + 2264.02667383226, + 2285.44579131069, + 2301.73368540227, + 2312.38047214785, + 2317.07943041658, + 2101.22864360535 + ], + "cxy": [ + 250.258153865912, + 257.227741725991, + 248.537158173789, + 226.525141043403, + 193.271057301904, + 150.636859160072, + 100.293246923114, + 43.7381624842223, + -567.222123721818 + ], + "cyx": [ + -250.258153865912, + -257.227741725991, + -248.537158173789, + -226.525141043403, + -193.271057301904, + -150.636859160072, + -100.293246923114, + -43.7381624842223, + 567.222123721818 + ], + "cyy": [ + 2178.21606571578, + 2209.14806245493, + 2238.23710142438, + 2264.02667383226, + 2285.44579131069, + 2301.73368540227, + 2312.38047214785, + 2317.07943041658, + 2101.22864360535 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 205852.667541406, + 242366.978579705, + 287218.2673746, + 341497.431815182, + 405944.815928242, + 481042.985669013, + 567080.222997083, + 664196.067389568, + 2018342.16604649 + ], + "kxy": [ + 1147712.75186238, + 1495785.8148233, + 1859450.35261072, + 2235861.74214649, + 2622603.49661036, + 3017591.3675152, + 3419008.72231515, + 3825260.09699669, + 7510461.330822 + ], + "kyx": [ + -1147712.75186238, + -1495785.8148233, + -1859450.35261072, + -2235861.74214649, + -2622603.49661036, + -3017591.3675152, + -3419008.72231515, + -3825260.09699669, + -7510461.330822 + ], + "kyy": [ + 205852.667541406, + 242366.978579705, + 287218.2673746, + 341497.431815182, + 405944.815928242, + 481042.985669013, + 567080.222997083, + 664196.067389568, + 2018342.16604649 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 27, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 6" }, - "ShaftElement_ShaftElement 85": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.034999999999999996, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 52, - "odl": 0.09000000000000001, - "odr": 0.09000000000000001, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 85", - "torque": 0 + "SealElement_Seal 11": { + "color": "#77ACA2", + "cxx": [ + 805.360714967088, + 810.807324312486, + 814.773343900831, + 816.814170445135, + 816.638103264431, + 814.07641475685, + 809.059159293008, + 801.595062580611, + 646.55136163657 + ], + "cxy": [ + 63.6178915228003, + 62.1369490163509, + 55.9666789064099, + 45.9704212310253, + 32.9255972926375, + 17.5307496744211, + 0.409583747581219, + -17.8859321380999, + -175.328107698497 + ], + "cyx": [ + -63.6178915228003, + -62.1369490163509, + -55.9666789064099, + -45.9704212310253, + -32.9255972926375, + -17.5307496744211, + -0.409583747581219, + 17.8859321380999, + 175.328107698497 + ], + "cyy": [ + 805.360714967088, + 810.807324312486, + 814.773343900831, + 816.814170445135, + 816.638103264431, + 814.07641475685, + 809.059159293008, + 801.595062580611, + 646.55136163657 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 162079.699898803, + 175413.041171466, + 191782.836082965, + 211515.373531839, + 234827.564468616, + 261855.220747408, + 292672.259417268, + 327304.284853313, + 800601.079718764 + ], + "kxy": [ + 406978.422739746, + 529155.447676398, + 656706.644009378, + 788702.816695279, + 924345.338451978, + 1062937.9131192, + 1203867.36017507, + 1346589.781951, + 2646350.0643761 + ], + "kyx": [ + -406978.422739746, + -529155.447676398, + -656706.644009378, + -788702.816695279, + -924345.338451978, + -1062937.9131192, + -1203867.36017507, + -1346589.781951, + -2646350.0643761 + ], + "kyy": [ + 162079.699898803, + 175413.041171466, + 191782.836082965, + 211515.373531839, + 234827.564468616, + 261855.220747408, + 292672.259417268, + 327304.284853313, + 800601.079718764 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 28, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 11" }, - "ShaftElement_ShaftElement 86": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.09000000000000001, - "idr": 0.09000000000000001, - "L": 0.034999999999999996, - "material": { - "color": "#525252", - "E": 6894.75, - "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 - }, - "n": 52, - "odl": 0.245, - "odr": 0.245, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 86", - "torque": 0 + "SealElement_Seal 5": { + "color": "#77ACA2", + "cxx": [ + 2114.3239242484, + 2151.86018396449, + 2189.00202211794, + 2224.19825749469, + 2256.25109134112, + 2284.25181009551, + 2307.52812156361, + 2325.60282589679, + 2236.14986468286 + ], + "cxy": [ + 276.125157962378, + 291.232201189786, + 290.488133219166, + 275.939934277962, + 249.425082886449, + 212.610147360682, + 167.009160238909, + 113.999361057078, + -525.407830501088 + ], + "cyx": [ + -276.125157962378, + -291.232201189786, + -290.488133219166, + -275.939934277962, + -249.425082886449, + -212.610147360682, + -167.009160238909, + -113.999361057078, + 525.407830501088 + ], + "cyy": [ + 2114.3239242484, + 2151.86018396449, + 2189.00202211794, + 2224.19825749469, + 2256.25109134112, + 2284.25181009551, + 2307.52812156361, + 2325.60282589679, + 2236.14986468286 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 152572.564780079, + 185205.802529499, + 225423.727870828, + 274388.567172405, + 332925.027240472, + 401604.961161511, + 480807.601610557, + 570761.855747787, + 1858564.83662114 + ], + "kxy": [ + 1098257.30952438, + 1429977.12678861, + 1776691.37706298, + 2135830.7407142, + 2505191.59642991, + 2882850.96447124, + 3267117.0862745, + 3656488.87697799, + 7208606.38767389 + ], + "kyx": [ + -1098257.30952438, + -1429977.12678861, + -1776691.37706298, + -2135830.7407142, + -2505191.59642991, + -2882850.96447124, + -3267117.0862745, + -3656488.87697799, + -7208606.38767389 + ], + "kyy": [ + 152572.564780079, + 185205.802529499, + 225423.727870828, + 274388.567172405, + 332925.027240472, + 401604.961161511, + 480807.601610557, + 570761.855747787, + 1858564.83662114 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 30, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 5" }, - "ShaftElement_ShaftElement 87": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.024, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 53, - "odl": 0.0872, - "odr": 0.0872, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 87", - "torque": 0 + "SealElement_Seal 10": { + "color": "#77ACA2", + "cxx": [ + 780.119253662987, + 787.684355944009, + 794.242332296682, + 799.312347070576, + 802.55627409239, + 803.753118817436, + 802.777721491268, + 799.582973527294, + 685.153719729093 + ], + "cxy": [ + 71.9405192865185, + 73.2172125105903, + 69.7772091351367, + 62.3870346967872, + 51.7470502670171, + 38.4965142422057, + 23.2144639309886, + 6.42115937619801, + -153.589719559604 + ], + "cyx": [ + -71.9405192865185, + -73.2172125105903, + -69.7772091351367, + -62.3870346967872, + -51.7470502670171, + -38.4965142422057, + -23.2144639309886, + -6.42115937619801, + 153.589719559604 + ], + "cyy": [ + 780.119253662987, + 787.684355944009, + 794.242332296682, + 799.312347070576, + 802.55627409239, + 803.753118817436, + 802.777721491268, + 799.582973527294, + 685.153719729093 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 140049.817601769, + 152063.602437156, + 166813.832185813, + 184639.367211113, + 205775.545611855, + 230379.77415706, + 258549.549695261, + 290334.891898862, + 732939.091902253 + ], + "kxy": [ + 388401.623689309, + 504334.860616662, + 625326.20214955, + 750542.069249618, + 879260.768917699, + 1010847.15033575, + 1144738.0717901, + 1280430.08808057, + 2520968.98404806 + ], + "kyx": [ + -388401.623689309, + -504334.860616662, + -625326.20214955, + -750542.069249618, + -879260.768917699, + -1010847.15033575, + -1144738.0717901, + -1280430.08808057, + -2520968.98404806 + ], + "kyy": [ + 140049.817601769, + 152063.602437156, + 166813.832185813, + 184639.367211113, + 205775.545611855, + 230379.77415706, + 258549.549695261, + 290334.891898862, + 732939.091902253 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 31, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 10" }, - "ShaftElement_ShaftElement 88": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0872, - "idr": 0.0872, - "L": 0.024, - "material": { - "color": "#525252", - "E": 6894.75, - "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 - }, - "n": 53, - "odl": 0.112, - "odr": 0.112, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 88", - "torque": 0 + "SealElement_Seal 4": { + "color": "#77ACA2", + "cxx": [ + 2042.80354037266, + 2087.34323361495, + 2133.05245009602, + 2178.28290613318, + 2221.70220592325, + 2262.23898170276, + 2299.0394215401, + 2331.43213723079, + 2373.99452038876 + ], + "cxy": [ + 300.719623259512, + 323.676427884606, + 330.553298935302, + 323.075231492631, + 302.810062114474, + 271.199333765612, + 229.5757085895, + 179.173983835812, + -506.196065119599 + ], + "cyx": [ + -300.719623259512, + -323.676427884606, + -330.553298935302, + -323.075231492631, + -302.810062114474, + -271.199333765612, + -229.5757085895, + -179.173983835812, + 506.196065119599 + ], + "cyy": [ + 2042.80354037266, + 2087.34323361495, + 2133.05245009602, + 2178.28290613318, + 2221.70220592325, + 2262.23898170276, + 2299.0394215401, + 2331.43213723079, + 2373.99452038876 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 99565.3280288305, + 128280.786974181, + 163838.557867115, + 207478.594722917, + 260118.020975725, + 322429.13160572, + 394893.509217979, + 477841.629547027, + 1705205.47349929 + ], + "kxy": [ + 1045693.89578556, + 1360157.4064092, + 1689000.07378138, + 2029942.27233339, + 2381001.43932843, + 2740426.4413257, + 3106654.74733322, + 3478282.16261192, + 6889822.23965831 + ], + "kyx": [ + -1045693.89578556, + -1360157.4064092, + -1689000.07378138, + -2029942.27233339, + -2381001.43932843, + -2740426.4413257, + -3106654.74733322, + -3478282.16261192, + -6889822.23965831 + ], + "kyy": [ + 99565.3280288305, + 128280.786974181, + 163838.557867115, + 207478.594722917, + 260118.020975725, + 322429.13160572, + 394893.509217979, + 477841.629547027, + 1705205.47349929 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 33, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 4" }, - "ShaftElement_ShaftElement 89": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.0, - "idr": 0.0, - "L": 0.032, - "material": { - "color": "#525252", - "E": 206842300000.0, - "G_s": 82736940000.0, - "name": "shaft_mat_1", - "rho": 7833.412 - }, - "n": 54, - "odl": 0.085, - "odr": 0.085, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 89", - "torque": 0 + "SealElement_Seal 9": { + "color": "#77ACA2", + "cxx": [ + 750.949959062333, + 760.710326884617, + 769.964578233571, + 778.19629293504, + 785.019902997508, + 790.15932800096, + 793.430153680943, + 794.724300760962, + 722.544808720561 + ], + "cxy": [ + 79.8543326386884, + 83.81589186923, + 83.0331567785093, + 78.1681935600569, + 69.837391650402, + 58.613348963646, + 45.0245327033877, + 29.554474250066, + -136.376148153058 + ], + "cyx": [ + -79.8543326386884, + -83.81589186923, + -83.0331567785093, + -78.1681935600569, + -69.837391650402, + -58.613348963646, + -45.0245327033877, + -29.554474250066, + 136.376148153058 + ], + "cyy": [ + 750.949959062333, + 760.710326884617, + 769.964578233571, + 778.19629293504, + 785.019902997508, + 790.15932800096, + 793.430153680943, + 794.724300760962, + 722.544808720561 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 117358.92657379, + 128015.751147855, + 141102.498057583, + 156969.989754583, + 175871.907235927, + 197988.188305016, + 223441.071331206, + 252306.609321979, + 663772.402239837 + ], + "kxy": [ + 368248.874078639, + 477487.487203766, + 591452.926163509, + 709411.473344204, + 830721.103799336, + 954812.05503821, + 1081173.83156822, + 1209345.94547456, + 2386511.8788015 + ], + "kyx": [ + -368248.874078639, + -477487.487203766, + -591452.926163509, + -709411.473344204, + -830721.103799336, + -954812.05503821, + -1081173.83156822, + -1209345.94547456, + -2386511.8788015 + ], + "kyy": [ + 117358.92657379, + 128015.751147855, + 141102.498057583, + 156969.989754583, + 175871.907235927, + 197988.188305016, + 223441.071331206, + 252306.609321979, + 663772.402239837 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 34, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 9" }, - "ShaftElement_ShaftElement 9": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.103, - "idr": 0.103, - "L": 0.025, - "material": { - "color": "#525252", - "E": 6894.75, - "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 - }, - "n": 8, - "odl": 0.13799999999999998, - "odr": 0.13799999999999998, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 9", - "torque": 0 + "SealElement_Seal 3": { + "color": "#77ACA2", + "cxx": [ + 1963.22827166158, + 2015.78518072991, + 2071.30777883873, + 2128.0501207825, + 2184.53471897006, + 2239.50807488773, + 2291.90587538764, + 2340.82530827392, + 2532.59539821632 + ], + "cxy": [ + 327.498095371777, + 358.733673950888, + 373.552265248427, + 373.313275236128, + 359.267683770068, + 332.586462550931, + 294.376327892065, + 245.689271656646, + -511.811286666433 + ], + "cyx": [ + -327.498095371777, + -358.733673950888, + -373.552265248427, + -373.313275236128, + -359.267683770068, + -332.586462550931, + -294.376327892065, + -245.689271656646, + 511.811286666433 + ], + "cyy": [ + 1963.22827166158, + 2015.78518072991, + 2071.30777883873, + 2128.0501207825, + 2184.53471897006, + 2239.50807488773, + 2291.90587538764, + 2340.82530827392, + 2532.59539821632 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.8790204788, + 523.5987755985, + 628.3185307182, + 733.0382858378999, + 837.7580409576, + 942.4777960773, + 1047.197551197, + 1151.9173063167, + 2094.395102394 + ], + "kxx": [ + 42736.7276429811, + 67214.3361587494, + 97775.6346026271, + 135757.803441503, + 182192.939775206, + 237877.364149987, + 303419.845206835, + 379277.183402673, + 1553300.56707975 + ], + "kxy": [ + 990798.147638428, + 1287520.08475897, + 1598073.52054941, + 1920481.53213523, + 2252993.8192709, + 2594035.77027586, + 2942176.31364923, + 3296105.80753795, + 6569742.52112397 + ], + "kyx": [ + -990798.147638428, + -1287520.08475897, + -1598073.52054941, + -1920481.53213523, + -2252993.8192709, + -2594035.77027586, + -2942176.31364923, + -3296105.80753795, + -6569742.52112397 + ], + "kyy": [ + 42736.7276429811, + 67214.3361587494, + 97775.6346026271, + 135757.803441503, + 182192.939775206, + 237877.364149987, + 303419.845206835, + 379277.183402673, + 1553300.56707975 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 36, + "n_link": null, + "scale_factor": 0.5, + "seal_leakage": null, + "tag": "Seal 3" }, - "ShaftElement_ShaftElement 90": { - "alpha": 0.0, - "axial_force": 0, - "beta": 0.0, - "gyroscopic": true, - "idl": 0.085, - "idr": 0.085, - "L": 0.032, - "material": { - "color": "#525252", - "E": 6894.75, - "G_s": 6894.75, - "name": "shaft_mat_2", - "rho": 7833.412 - }, - "n": 54, - "odl": 0.113, - "odr": 0.113, - "rotary_inertia": true, - "shear_effects": true, - "shear_method_calc": "cowper", - "tag": "ShaftElement 90", - "torque": 0 + "BearingElement_Bearing 13": { + "color": "#355d7a", + "cxx": [ + 189136.98206619456, + 176440.286510825, + 165762.80336584736, + 156496.8425129563, + 148349.9421372902, + 140994.6150569382, + 134355.55673274427, + 128322.43725850315 + ], + "cxy": [ + -551.6670437099255, + -310.1496252215098, + -188.54155082635654, + -119.07924289419412, + -75.18019910295988, + -44.84647996991768, + -22.339179104040536, + -5.18935838202359 + ], + "cyx": [ + -594.4680422441643, + -362.81026458012525, + -250.79914075647892, + -190.6956108998882, + -155.93118283511018, + -134.5376886414006, + -120.79373461125712, + -112.24754505122908 + ], + "cyy": [ + 199662.10486450777, + 183567.94870535663, + 170981.58305619235, + 160516.00338186292, + 151560.0170273581, + 143637.27900080752, + 136577.91627202206, + 130227.81722598482 + ], + "czz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "frequency": [ + 418.87902047863906, + 523.5987755982989, + 628.3185307179587, + 733.0382858376183, + 837.7580409572781, + 942.4777960769379, + 1047.1975511965977, + 1151.9173063162575 + ], + "kxx": [ + 114058356.52767764, + 133516699.19191365, + 151278062.82261127, + 167517574.25501704, + 182482162.32682845, + 196142055.47605363, + 208733674.93027526, + 220397122.1576906 + ], + "kxy": [ + -578233.784616816, + -457116.0653603528, + -394350.6076080157, + -363178.0309341429, + -351479.5583396782, + -352740.47155345284, + -363738.43680693157, + -382336.90671010735 + ], + "kyx": [ + -520564.51777015126, + -367223.4608283365, + -265194.5666137393, + -187700.94201717345, + -122643.07399145991, + -63560.53358435616, + -7213.124090131872, + 48538.15365691342 + ], + "kyy": [ + 122826957.16846871, + 141064665.79103678, + 158008187.10113338, + 173655769.83040604, + 188156271.7888143, + 201465911.2675465, + 213794840.46889845, + 225213110.1269687 + ], + "kzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mxy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myx": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "myy": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "mzz": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "n": 48, + "n_link": null, + "scale_factor": 1, + "tag": "Bearing 13" } } \ No newline at end of file diff --git a/ross/tests/data/compressor_example.toml b/ross/tests/data/compressor_example.toml index 71c410c33..adbcb3f37 100644 --- a/ross/tests/data/compressor_example.toml +++ b/ross/tests/data/compressor_example.toml @@ -1,3 +1,10 @@ +# This file is auto-generated by ROSS. Do not edit values directly. +# When loading, element coefficients are read as-is without recomputation. +# Changing values here will NOT trigger recalculation of dependent quantities. +# To modify the rotor, change parameters in Python and save again. + +ross_version = "2.0.0" + [parameters] ["ShaftElement_ShaftElement 0"] @@ -14,6 +21,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 0" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 1"] L = 0.036000000000000004 @@ -29,6 +38,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 1" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 2"] L = 0.054000000000000006 @@ -44,6 +55,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 2" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 3"] L = 0.043000000000000003 @@ -59,6 +72,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 3" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 4"] L = 0.0165 @@ -74,6 +89,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 4" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 5"] L = 0.014 @@ -89,6 +106,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 5" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 6"] L = 0.036500000000000005 @@ -104,6 +123,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 6" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 7"] L = 0.051 @@ -119,6 +140,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 7" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 8"] L = 0.025 @@ -134,6 +157,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 8" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 9"] L = 0.025 @@ -149,6 +174,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 9" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 10"] L = 0.016 @@ -164,6 +191,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 10" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 11"] L = 0.016 @@ -179,6 +208,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 11" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 12"] L = 0.0242 @@ -194,6 +225,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 12" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 13"] L = 0.0242 @@ -209,6 +242,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 13" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 14"] L = 0.0045000000000000005 @@ -224,6 +259,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 14" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 15"] L = 0.0045000000000000005 @@ -239,6 +276,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 15" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 16"] L = 0.01257 @@ -254,6 +293,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 16" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 17"] L = 0.01257 @@ -269,6 +310,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 17" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 18"] L = 0.02 @@ -284,6 +327,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 18" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 19"] L = 0.02 @@ -299,6 +344,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 19" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 20"] L = 0.06273000000000001 @@ -314,6 +361,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 20" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 21"] L = 0.06273000000000001 @@ -329,6 +378,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 21" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 22"] L = 0.038 @@ -344,6 +395,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 22" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 23"] L = 0.038 @@ -359,6 +412,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 23" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 24"] L = 0.038 @@ -374,6 +429,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 24" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 25"] L = 0.038 @@ -389,6 +446,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 25" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 26"] L = 0.030000000000000002 @@ -404,6 +463,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 26" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 27"] L = 0.030000000000000002 @@ -419,6 +480,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 27" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 28"] L = 0.053000000000000005 @@ -434,6 +497,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 28" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 29"] L = 0.053000000000000005 @@ -449,6 +514,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 29" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 30"] L = 0.01949 @@ -464,6 +531,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 30" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 31"] L = 0.01949 @@ -479,6 +548,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 31" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 32"] L = 0.013510000000000003 @@ -494,6 +565,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 32" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 33"] L = 0.013510000000000003 @@ -509,6 +582,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 33" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 34"] L = 0.0495 @@ -524,6 +599,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 34" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 35"] L = 0.01959 @@ -539,6 +616,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 35" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 36"] L = 0.01959 @@ -554,6 +633,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 36" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 37"] L = 0.012410000000000001 @@ -569,6 +650,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 37" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 38"] L = 0.012410000000000001 @@ -584,6 +667,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 38" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 39"] L = 0.049 @@ -599,6 +684,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 39" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 40"] L = 0.019700000000000002 @@ -614,6 +701,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 40" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 41"] L = 0.019700000000000002 @@ -629,6 +718,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 41" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 42"] L = 0.0123 @@ -644,6 +735,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 42" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 43"] L = 0.0123 @@ -659,6 +752,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 43" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 44"] L = 0.0495 @@ -674,6 +769,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 44" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 45"] L = 0.019829999999999997 @@ -689,6 +786,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 45" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 46"] L = 0.019829999999999997 @@ -704,6 +803,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 46" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 47"] L = 0.011670000000000002 @@ -719,6 +820,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 47" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 48"] L = 0.011670000000000002 @@ -734,6 +837,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 48" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 49"] L = 0.0495 @@ -749,6 +854,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 49" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 50"] L = 0.01998 @@ -764,6 +871,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 50" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 51"] L = 0.01998 @@ -779,6 +888,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 51" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 52"] L = 0.01202 @@ -794,6 +905,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 52" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 53"] L = 0.01202 @@ -809,6 +922,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 53" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 54"] L = 0.0495 @@ -824,6 +939,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 54" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 55"] L = 0.020100000000000003 @@ -839,6 +956,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 55" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 56"] L = 0.020100000000000003 @@ -854,6 +973,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 56" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 57"] L = 0.012399999999999998 @@ -869,6 +990,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 57" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 58"] L = 0.012399999999999998 @@ -884,6 +1007,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 58" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 59"] L = 0.056999999999999995 @@ -899,6 +1024,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 59" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 60"] L = 0.026 @@ -914,6 +1041,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 60" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 61"] L = 0.026 @@ -929,6 +1058,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 61" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 62"] L = 0.038 @@ -944,6 +1075,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 62" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 63"] L = 0.038 @@ -959,6 +1092,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 63" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 64"] L = 0.038 @@ -974,6 +1109,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 64" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 65"] L = 0.038 @@ -989,6 +1126,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 65" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 66"] L = 0.06273000000000001 @@ -1004,6 +1143,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 66" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 67"] L = 0.06273000000000001 @@ -1019,6 +1160,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 67" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 68"] L = 0.02 @@ -1034,6 +1177,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 68" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 69"] L = 0.02 @@ -1049,6 +1194,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 69" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 70"] L = 0.01257 @@ -1064,6 +1211,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 70" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 71"] L = 0.01257 @@ -1079,6 +1228,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 71" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 72"] L = 0.0045000000000000005 @@ -1094,6 +1245,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 72" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 73"] L = 0.0045000000000000005 @@ -1109,6 +1262,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 73" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 74"] L = 0.0242 @@ -1124,6 +1279,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 74" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 75"] L = 0.0242 @@ -1139,6 +1296,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 75" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 76"] L = 0.016 @@ -1154,6 +1313,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 76" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 77"] L = 0.016 @@ -1169,6 +1330,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 77" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 78"] L = 0.025 @@ -1184,6 +1347,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 78" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 79"] L = 0.025 @@ -1199,6 +1364,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 79" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 80"] L = 0.051 @@ -1214,6 +1381,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 80" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 81"] L = 0.050499999999999996 @@ -1229,6 +1398,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 81" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 82"] L = 0.036375000000000005 @@ -1244,6 +1415,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 82" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 83"] L = 0.036375000000000005 @@ -1259,6 +1432,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 83" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 84"] L = 0.013500000000000002 @@ -1274,6 +1449,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 84" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 85"] L = 0.034999999999999996 @@ -1289,6 +1466,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 85" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 86"] L = 0.034999999999999996 @@ -1304,6 +1483,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 86" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 87"] L = 0.024 @@ -1319,6 +1500,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 87" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 88"] L = 0.024 @@ -1334,6 +1517,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 88" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 89"] L = 0.032 @@ -1349,6 +1534,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 89" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 90"] L = 0.032 @@ -1364,6 +1551,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 90" +alpha = 0.0 +beta = 0.0 ["DiskElement_Disk 0"] n = 3 @@ -1429,270 +1618,312 @@ scale_factor = 1 color = "Firebrick" ["BearingElement_Bearing 0"] -n = 7 -kxx = [ 114058356.52767764, 133516699.19191365, 151278062.82261127, 167517574.25501704, 182482162.32682845, 196142055.47605363, 208733674.93027526, 220397122.1576906,] +color = "#355d7a" cxx = [ 189136.98206619456, 176440.286510825, 165762.80336584736, 156496.8425129563, 148349.9421372902, 140994.6150569382, 134355.55673274427, 128322.43725850315,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 122826957.16846871, 141064665.79103678, 158008187.10113338, 173655769.83040604, 188156271.7888143, 201465911.2675465, 213794840.46889845, 225213110.1269687,] -kxy = [ -578233.784616816, -457116.0653603528, -394350.6076080157, -363178.0309341429, -351479.5583396782, -352740.47155345284, -363738.43680693157, -382336.90671010735,] -kyx = [ -520564.51777015126, -367223.4608283365, -265194.5666137393, -187700.94201717345, -122643.07399145991, -63560.53358435616, -7213.124090131872, 48538.15365691342,] -cyy = [ 199662.10486450777, 183567.94870535663, 170981.58305619235, 160516.00338186292, 151560.0170273581, 143637.27900080752, 136577.91627202206, 130227.81722598482,] cxy = [ -551.6670437099255, -310.1496252215098, -188.54155082635654, -119.07924289419412, -75.18019910295988, -44.84647996991768, -22.339179104040536, -5.18935838202359,] cyx = [ -594.4680422441643, -362.81026458012525, -250.79914075647892, -190.6956108998882, -155.93118283511018, -134.5376886414006, -120.79373461125712, -112.24754505122908,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 199662.10486450777, 183567.94870535663, 170981.58305619235, 160516.00338186292, 151560.0170273581, 143637.27900080752, 136577.91627202206, 130227.81722598482,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.87902047863906, 523.5987755982989, 628.3185307179587, 733.0382858376183, 837.7580409572781, 942.4777960769379, 1047.1975511965977, 1151.9173063162575,] +kxx = [ 114058356.52767764, 133516699.19191365, 151278062.82261127, 167517574.25501704, 182482162.32682845, 196142055.47605363, 208733674.93027526, 220397122.1576906,] +kxy = [ -578233.784616816, -457116.0653603528, -394350.6076080157, -363178.0309341429, -351479.5583396782, -352740.47155345284, -363738.43680693157, -382336.90671010735,] +kyx = [ -520564.51777015126, -367223.4608283365, -265194.5666137393, -187700.94201717345, -122643.07399145991, -63560.53358435616, -7213.124090131872, 48538.15365691342,] +kyy = [ 122826957.16846871, 141064665.79103678, 158008187.10113338, 173655769.83040604, 188156271.7888143, 201465911.2675465, 213794840.46889845, 225213110.1269687,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.87902047863906, 523.5987755982989, 628.3185307179587, 733.0382858376183, 837.7580409572781, 942.4777960769379, 1047.1975511965977, 1151.9173063162575,] -tag = "Bearing 0" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0,] +n = 7 scale_factor = 1 -color = "#355d7a" +tag = "Bearing 0" ["SealElement_Seal 1"] -n = 18 -kxx = [ 145300000.0, 145440000.0, 145650000.0, 145880000.0, 146080000.0, 146210000.0,] +color = "#77ACA2" cxx = [ 74107.0, 73866.0, 73474.0, 72946.0, 72298.0, 71545.0,] -mxx = [ 0, 0, 0, 0, 0, 0,] -kyy = [ 145300000.0, 145440000.0, 145650000.0, 145880000.0, 146080000.0, 146210000.0,] -kxy = [ 1462300.0, 2937800.0, 4443500.0, 6003500.0, 7649100.0, 9417700.0,] -kyx = [ 1462300.0, 2937800.0, 4443500.0, 6003500.0, 7649100.0, 9417700.0,] -cyy = [ 74107.0, 73866.0, 73474.0, 72946.0, 72298.0, 71545.0,] cxy = [ -344.22, -693.67, -1053.7, -1429.8, -1827.8, -2253.2,] cyx = [ -344.22, -693.67, -1053.7, -1429.8, -1827.8, -2253.2,] -myy = [ 0, 0, 0, 0, 0, 0,] +cyy = [ 74107.0, 73866.0, 73474.0, 72946.0, 72298.0, 71545.0,] +czz = [ 0, 0, 0, 0, 0, 0,] +frequency = [ 209.43951023931953, 418.87902047863906, 628.3185307179587, 837.7580409572781, 1047.1975511965977, 1256.6370614359173,] +kxx = [ 145300000.0, 145440000.0, 145650000.0, 145880000.0, 146080000.0, 146210000.0,] +kxy = [ 1462300.0, 2937800.0, 4443500.0, 6003500.0, 7649100.0, 9417700.0,] +kyx = [ 1462300.0, 2937800.0, 4443500.0, 6003500.0, 7649100.0, 9417700.0,] +kyy = [ 145300000.0, 145440000.0, 145650000.0, 145880000.0, 146080000.0, 146210000.0,] +kzz = [ 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0,] -frequency = [ 209.43951023931953, 418.87902047863906, 628.3185307179587, 837.7580409572781, 1047.1975511965977, 1256.6370614359173,] -tag = "Seal 1" +myy = [ 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0,] +n = 18 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 1" ["SealElement_Seal 8"] -n = 21 -kxx = [ 298251.102793201, 341553.083464932, 394552.018603807, 458222.132531081, 533166.367271116, 619721.596416625, 718029.641688798, 828087.262141986, 2308865.1768009,] +color = "#77ACA2" cxx = [ 2291.12243345773, 2311.1040718269, 2326.80597091329, 2336.94965058397, 2340.6898099477, 2337.52046884341, 2327.20232641125, 2309.70538908619, 1880.94276136733,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 298251.102793201, 341553.083464932, 394552.018603807, 458222.132531081, 533166.367271116, 619721.596416625, 718029.641688798, 828087.262141986, 2308865.1768009,] -kxy = [ 1242500.2855946, 1622346.60563776, 2019067.07204817, 2429294.4077584, 2850215.15001386, 3279441.40422489, 3714924.05537521, 4154890.25666796, 8114286.71318661,] -kyx = [ -1242500.2855946, -1622346.60563776, -2019067.07204817, -2429294.4077584, -2850215.15001386, -3279441.40422489, -3714924.05537521, -4154890.25666796, -8114286.71318661,] -cyy = [ 2291.12243345773, 2311.1040718269, 2326.80597091329, 2336.94965058397, 2340.6898099477, 2337.52046884341, 2327.20232641125, 2309.70538908619, 1880.94276136733,] cxy = [ 206.926347739178, 199.422636876644, 176.412369573979, 140.746432758469, 94.9135905607814, 41.0991829034798, -18.775866654557, -83.0260630423863, -671.209405124406,] cyx = [ -206.926347739178, -199.422636876644, -176.412369573979, -140.746432758469, -94.9135905607814, -41.0991829034798, 18.775866654557, 83.0260630423863, 671.209405124406,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 2291.12243345773, 2311.1040718269, 2326.80597091329, 2336.94965058397, 2340.6898099477, 2337.52046884341, 2327.20232641125, 2309.70538908619, 1880.94276136733,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 298251.102793201, 341553.083464932, 394552.018603807, 458222.132531081, 533166.367271116, 619721.596416625, 718029.641688798, 828087.262141986, 2308865.1768009,] +kxy = [ 1242500.2855946, 1622346.60563776, 2019067.07204817, 2429294.4077584, 2850215.15001386, 3279441.40422489, 3714924.05537521, 4154890.25666796, 8114286.71318661,] +kyx = [ -1242500.2855946, -1622346.60563776, -2019067.07204817, -2429294.4077584, -2850215.15001386, -3279441.40422489, -3714924.05537521, -4154890.25666796, -8114286.71318661,] +kyy = [ 298251.102793201, 341553.083464932, 394552.018603807, 458222.132531081, 533166.367271116, 619721.596416625, 718029.641688798, 828087.262141986, 2308865.1768009,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 8" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 21 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 8" ["SealElement_Seal 13"] -n = 22 -kxx = [ 212004.230533674, 228104.197005656, 247866.752578785, 271587.121157548, 299441.94589272, 331521.70676384, 367852.540447444, 408411.467916301, 946059.583744362,] +color = "#77ACA2" cxx = [ 844.704816544965, 845.510119153807, 843.879821457693, 839.45090843711, 832.029915317881, 821.555183438786, 808.067199559831, 791.684638045522, 551.77571052815,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 212004.230533674, 228104.197005656, 247866.752578785, 271587.121157548, 299441.94589272, 331521.70676384, 367852.540447444, 408411.467916301, 946059.583744362,] -kxy = [ 438140.709696468, 570924.881967202, 709603.313478691, 853069.011373774, 1000381.95159242, 1150732.27599602, 1303415.03798806, 1457811.94108399, 2852208.05920669,] -kyx = [ -438140.709696468, -570924.881967202, -709603.313478691, -853069.011373774, -1000381.95159242, -1150732.27599602, -1303415.03798806, -1457811.94108399, -2852208.05920669,] -cyy = [ 844.704816544965, 845.510119153807, 843.879821457693, 839.45090843711, 832.029915317881, 821.555183438786, 808.067199559831, 791.684638045522, 551.77571052815,] cxy = [ 41.8735664570863, 33.9385369802047, 21.4702902513189, 5.51035377944818, -13.0248291697293, -33.3307978115303, -54.7060168965144, -76.544502427302, -232.737765811523,] cyx = [ -41.8735664570863, -33.9385369802047, -21.4702902513189, -5.51035377944818, 13.0248291697293, 33.3307978115303, 54.7060168965144, 76.544502427302, 232.737765811523,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 844.704816544965, 845.510119153807, 843.879821457693, 839.45090843711, 832.029915317881, 821.555183438786, 808.067199559831, 791.684638045522, 551.77571052815,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 212004.230533674, 228104.197005656, 247866.752578785, 271587.121157548, 299441.94589272, 331521.70676384, 367852.540447444, 408411.467916301, 946059.583744362,] +kxy = [ 438140.709696468, 570924.881967202, 709603.313478691, 853069.011373774, 1000381.95159242, 1150732.27599602, 1303415.03798806, 1457811.94108399, 2852208.05920669,] +kyx = [ -438140.709696468, -570924.881967202, -709603.313478691, -853069.011373774, -1000381.95159242, -1150732.27599602, -1303415.03798806, -1457811.94108399, -2852208.05920669,] +kyy = [ 212004.230533674, 228104.197005656, 247866.752578785, 271587.121157548, 299441.94589272, 331521.70676384, 367852.540447444, 408411.467916301, 946059.583744362,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 13" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 22 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 13" ["SealElement_Seal 7"] -n = 24 -kxx = [ 252811.630578299, 292779.969788229, 341775.407113344, 400829.381676715, 470611.220647497, 551527.947163869, 643791.437001381, 747466.3932106181, 2165015.37392413,] +color = "#77ACA2" cxx = [ 2237.27062169521, 2262.54451706828, 2284.71266328052, 2302.40907831969, 2314.67941113008, 2320.89559745058, 2320.68980309972, 2313.90150206837, 1988.68376388278,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 252811.630578299, 292779.969788229, 341775.407113344, 400829.381676715, 470611.220647497, 551527.947163869, 643791.437001381, 747466.3932106181, 2165015.37392413,] -kxy = [ 1196154.91738691, 1560429.00166038, 1940945.78963764, 2334594.59072454, 2738754.90307113, 3151186.98050217, 3569954.75170215, 3993371.59388281, 7817904.77114129,] -kyx = [ -1196154.91738691, -1560429.00166038, -1940945.78963764, -2334594.59072454, -2738754.90307113, -3151186.98050217, -3569954.75170215, -3993371.59388281, -7817904.77114129,] -cyy = [ 2237.27062169521, 2262.54451706828, 2284.71266328052, 2302.40907831969, 2314.67941113008, 2320.89559745058, 2320.68980309972, 2313.90150206837, 1988.68376388278,] cxy = [ 228.5066838492, 228.216282636906, 212.358685620386, 183.537798746503, 144.04734233591, 95.9190515734874, 40.9558585213239, -19.2447358005768, -614.227168738531,] cyx = [ -228.5066838492, -228.216282636906, -212.358685620386, -183.537798746503, -144.04734233591, -95.9190515734874, -40.9558585213239, 19.2447358005768, 614.227168738531,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 2237.27062169521, 2262.54451706828, 2284.71266328052, 2302.40907831969, 2314.67941113008, 2320.89559745058, 2320.68980309972, 2313.90150206837, 1988.68376388278,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 252811.630578299, 292779.969788229, 341775.407113344, 400829.381676715, 470611.220647497, 551527.947163869, 643791.437001381, 747466.3932106181, 2165015.37392413,] +kxy = [ 1196154.91738691, 1560429.00166038, 1940945.78963764, 2334594.59072454, 2738754.90307113, 3151186.98050217, 3569954.75170215, 3993371.59388281, 7817904.77114129,] +kyx = [ -1196154.91738691, -1560429.00166038, -1940945.78963764, -2334594.59072454, -2738754.90307113, -3151186.98050217, -3569954.75170215, -3993371.59388281, -7817904.77114129,] +kyy = [ 252811.630578299, 292779.969788229, 341775.407113344, 400829.381676715, 470611.220647497, 551527.947163869, 643791.437001381, 747466.3932106181, 2165015.37392413,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 7" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 24 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 7" ["SealElement_Seal 12"] -n = 25 -kxx = [ 180839.024474825, 195355.027554806, 213179.711736108, 234627.751980985, 259899.30178444, 289110.53399467, 322314.274331595, 359514.507333211, 860767.574416809,] +color = "#77ACA2" cxx = [ 828.076214508057, 831.698341316398, 833.420964081016, 832.833200737184, 829.68538941482, 823.855212022527, 815.320735537458, 804.138365393787, 613.175254017714,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 180839.024474825, 195355.027554806, 213179.711736108, 234627.751980985, 259899.30178444, 289110.53399467, 322314.274331595, 359514.507333211, 860767.574416809,] -kxy = [ 424916.756322156, 553193.12733327, 687168.6168166, 825821.555318317, 968280.211140864, 1113789.96941796, 1261690.85775216, 1411401.36210057, 2771413.59584677,] -kyx = [ -424916.756322156, -553193.12733327, -687168.6168166, -825821.555318317, -968280.211140864, -1113789.96941796, -1261690.85775216, -1411401.36210057, -2771413.59584677,] -cyy = [ 828.076214508057, 831.698341316398, 833.420964081016, 832.833200737184, 829.68538941482, 823.855212022527, 815.320735537458, 804.138365393787, 613.175254017714,] cxy = [ 56.639482846621, 52.6803994392273, 44.0249331997799, 31.6254311839271, 16.3284602522176, -1.11491725585648, -20.0424044945381, -39.8750850779251, -198.229669313471,] cyx = [ -56.639482846621, -52.6803994392273, -44.0249331997799, -31.6254311839271, -16.3284602522176, 1.11491725585648, 20.0424044945381, 39.8750850779251, 198.229669313471,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 828.076214508057, 831.698341316398, 833.420964081016, 832.833200737184, 829.68538941482, 823.855212022527, 815.320735537458, 804.138365393787, 613.175254017714,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 180839.024474825, 195355.027554806, 213179.711736108, 234627.751980985, 259899.30178444, 289110.53399467, 322314.274331595, 359514.507333211, 860767.574416809,] +kxy = [ 424916.756322156, 553193.12733327, 687168.6168166, 825821.555318317, 968280.211140864, 1113789.96941796, 1261690.85775216, 1411401.36210057, 2771413.59584677,] +kyx = [ -424916.756322156, -553193.12733327, -687168.6168166, -825821.555318317, -968280.211140864, -1113789.96941796, -1261690.85775216, -1411401.36210057, -2771413.59584677,] +kyy = [ 180839.024474825, 195355.027554806, 213179.711736108, 234627.751980985, 259899.30178444, 289110.53399467, 322314.274331595, 359514.507333211, 860767.574416809,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 12" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 25 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 12" ["SealElement_Seal 6"] -n = 27 -kxx = [ 205852.667541406, 242366.978579705, 287218.2673746, 341497.431815182, 405944.815928242, 481042.985669013, 567080.222997083, 664196.067389568, 2018342.16604649,] +color = "#77ACA2" cxx = [ 2178.21606571578, 2209.14806245493, 2238.23710142438, 2264.02667383226, 2285.44579131069, 2301.73368540227, 2312.38047214785, 2317.07943041658, 2101.22864360535,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 205852.667541406, 242366.978579705, 287218.2673746, 341497.431815182, 405944.815928242, 481042.985669013, 567080.222997083, 664196.067389568, 2018342.16604649,] -kxy = [ 1147712.75186238, 1495785.8148233, 1859450.35261072, 2235861.74214649, 2622603.49661036, 3017591.3675152, 3419008.72231515, 3825260.09699669, 7510461.330822,] -kyx = [ -1147712.75186238, -1495785.8148233, -1859450.35261072, -2235861.74214649, -2622603.49661036, -3017591.3675152, -3419008.72231515, -3825260.09699669, -7510461.330822,] -cyy = [ 2178.21606571578, 2209.14806245493, 2238.23710142438, 2264.02667383226, 2285.44579131069, 2301.73368540227, 2312.38047214785, 2317.07943041658, 2101.22864360535,] cxy = [ 250.258153865912, 257.227741725991, 248.537158173789, 226.525141043403, 193.271057301904, 150.636859160072, 100.293246923114, 43.7381624842223, -567.222123721818,] cyx = [ -250.258153865912, -257.227741725991, -248.537158173789, -226.525141043403, -193.271057301904, -150.636859160072, -100.293246923114, -43.7381624842223, 567.222123721818,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 2178.21606571578, 2209.14806245493, 2238.23710142438, 2264.02667383226, 2285.44579131069, 2301.73368540227, 2312.38047214785, 2317.07943041658, 2101.22864360535,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 205852.667541406, 242366.978579705, 287218.2673746, 341497.431815182, 405944.815928242, 481042.985669013, 567080.222997083, 664196.067389568, 2018342.16604649,] +kxy = [ 1147712.75186238, 1495785.8148233, 1859450.35261072, 2235861.74214649, 2622603.49661036, 3017591.3675152, 3419008.72231515, 3825260.09699669, 7510461.330822,] +kyx = [ -1147712.75186238, -1495785.8148233, -1859450.35261072, -2235861.74214649, -2622603.49661036, -3017591.3675152, -3419008.72231515, -3825260.09699669, -7510461.330822,] +kyy = [ 205852.667541406, 242366.978579705, 287218.2673746, 341497.431815182, 405944.815928242, 481042.985669013, 567080.222997083, 664196.067389568, 2018342.16604649,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 6" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 27 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 6" ["SealElement_Seal 11"] -n = 28 -kxx = [ 162079.699898803, 175413.041171466, 191782.836082965, 211515.373531839, 234827.564468616, 261855.220747408, 292672.259417268, 327304.284853313, 800601.079718764,] +color = "#77ACA2" cxx = [ 805.360714967088, 810.807324312486, 814.773343900831, 816.814170445135, 816.638103264431, 814.07641475685, 809.059159293008, 801.595062580611, 646.55136163657,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 162079.699898803, 175413.041171466, 191782.836082965, 211515.373531839, 234827.564468616, 261855.220747408, 292672.259417268, 327304.284853313, 800601.079718764,] -kxy = [ 406978.422739746, 529155.447676398, 656706.644009378, 788702.816695279, 924345.338451978, 1062937.9131192, 1203867.36017507, 1346589.781951, 2646350.0643761,] -kyx = [ -406978.422739746, -529155.447676398, -656706.644009378, -788702.816695279, -924345.338451978, -1062937.9131192, -1203867.36017507, -1346589.781951, -2646350.0643761,] -cyy = [ 805.360714967088, 810.807324312486, 814.773343900831, 816.814170445135, 816.638103264431, 814.07641475685, 809.059159293008, 801.595062580611, 646.55136163657,] cxy = [ 63.6178915228003, 62.1369490163509, 55.9666789064099, 45.9704212310253, 32.9255972926375, 17.5307496744211, 0.409583747581219, -17.8859321380999, -175.328107698497,] cyx = [ -63.6178915228003, -62.1369490163509, -55.9666789064099, -45.9704212310253, -32.9255972926375, -17.5307496744211, -0.409583747581219, 17.8859321380999, 175.328107698497,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 805.360714967088, 810.807324312486, 814.773343900831, 816.814170445135, 816.638103264431, 814.07641475685, 809.059159293008, 801.595062580611, 646.55136163657,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 162079.699898803, 175413.041171466, 191782.836082965, 211515.373531839, 234827.564468616, 261855.220747408, 292672.259417268, 327304.284853313, 800601.079718764,] +kxy = [ 406978.422739746, 529155.447676398, 656706.644009378, 788702.816695279, 924345.338451978, 1062937.9131192, 1203867.36017507, 1346589.781951, 2646350.0643761,] +kyx = [ -406978.422739746, -529155.447676398, -656706.644009378, -788702.816695279, -924345.338451978, -1062937.9131192, -1203867.36017507, -1346589.781951, -2646350.0643761,] +kyy = [ 162079.699898803, 175413.041171466, 191782.836082965, 211515.373531839, 234827.564468616, 261855.220747408, 292672.259417268, 327304.284853313, 800601.079718764,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 11" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 28 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 11" ["SealElement_Seal 5"] -n = 30 -kxx = [ 152572.564780079, 185205.802529499, 225423.727870828, 274388.567172405, 332925.027240472, 401604.961161511, 480807.601610557, 570761.855747787, 1858564.83662114,] +color = "#77ACA2" cxx = [ 2114.3239242484, 2151.86018396449, 2189.00202211794, 2224.19825749469, 2256.25109134112, 2284.25181009551, 2307.52812156361, 2325.60282589679, 2236.14986468286,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 152572.564780079, 185205.802529499, 225423.727870828, 274388.567172405, 332925.027240472, 401604.961161511, 480807.601610557, 570761.855747787, 1858564.83662114,] -kxy = [ 1098257.30952438, 1429977.12678861, 1776691.37706298, 2135830.7407142, 2505191.59642991, 2882850.96447124, 3267117.0862745, 3656488.87697799, 7208606.38767389,] -kyx = [ -1098257.30952438, -1429977.12678861, -1776691.37706298, -2135830.7407142, -2505191.59642991, -2882850.96447124, -3267117.0862745, -3656488.87697799, -7208606.38767389,] -cyy = [ 2114.3239242484, 2151.86018396449, 2189.00202211794, 2224.19825749469, 2256.25109134112, 2284.25181009551, 2307.52812156361, 2325.60282589679, 2236.14986468286,] cxy = [ 276.125157962378, 291.232201189786, 290.488133219166, 275.939934277962, 249.425082886449, 212.610147360682, 167.009160238909, 113.999361057078, -525.407830501088,] cyx = [ -276.125157962378, -291.232201189786, -290.488133219166, -275.939934277962, -249.425082886449, -212.610147360682, -167.009160238909, -113.999361057078, 525.407830501088,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 2114.3239242484, 2151.86018396449, 2189.00202211794, 2224.19825749469, 2256.25109134112, 2284.25181009551, 2307.52812156361, 2325.60282589679, 2236.14986468286,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 152572.564780079, 185205.802529499, 225423.727870828, 274388.567172405, 332925.027240472, 401604.961161511, 480807.601610557, 570761.855747787, 1858564.83662114,] +kxy = [ 1098257.30952438, 1429977.12678861, 1776691.37706298, 2135830.7407142, 2505191.59642991, 2882850.96447124, 3267117.0862745, 3656488.87697799, 7208606.38767389,] +kyx = [ -1098257.30952438, -1429977.12678861, -1776691.37706298, -2135830.7407142, -2505191.59642991, -2882850.96447124, -3267117.0862745, -3656488.87697799, -7208606.38767389,] +kyy = [ 152572.564780079, 185205.802529499, 225423.727870828, 274388.567172405, 332925.027240472, 401604.961161511, 480807.601610557, 570761.855747787, 1858564.83662114,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 5" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 30 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 5" ["SealElement_Seal 10"] -n = 31 -kxx = [ 140049.817601769, 152063.602437156, 166813.832185813, 184639.367211113, 205775.545611855, 230379.77415706, 258549.549695261, 290334.891898862, 732939.091902253,] +color = "#77ACA2" cxx = [ 780.119253662987, 787.684355944009, 794.242332296682, 799.312347070576, 802.55627409239, 803.753118817436, 802.777721491268, 799.582973527294, 685.153719729093,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 140049.817601769, 152063.602437156, 166813.832185813, 184639.367211113, 205775.545611855, 230379.77415706, 258549.549695261, 290334.891898862, 732939.091902253,] -kxy = [ 388401.623689309, 504334.860616662, 625326.20214955, 750542.069249618, 879260.768917699, 1010847.15033575, 1144738.0717901, 1280430.08808057, 2520968.98404806,] -kyx = [ -388401.623689309, -504334.860616662, -625326.20214955, -750542.069249618, -879260.768917699, -1010847.15033575, -1144738.0717901, -1280430.08808057, -2520968.98404806,] -cyy = [ 780.119253662987, 787.684355944009, 794.242332296682, 799.312347070576, 802.55627409239, 803.753118817436, 802.777721491268, 799.582973527294, 685.153719729093,] cxy = [ 71.9405192865185, 73.2172125105903, 69.7772091351367, 62.3870346967872, 51.7470502670171, 38.4965142422057, 23.2144639309886, 6.42115937619801, -153.589719559604,] cyx = [ -71.9405192865185, -73.2172125105903, -69.7772091351367, -62.3870346967872, -51.7470502670171, -38.4965142422057, -23.2144639309886, -6.42115937619801, 153.589719559604,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 780.119253662987, 787.684355944009, 794.242332296682, 799.312347070576, 802.55627409239, 803.753118817436, 802.777721491268, 799.582973527294, 685.153719729093,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 140049.817601769, 152063.602437156, 166813.832185813, 184639.367211113, 205775.545611855, 230379.77415706, 258549.549695261, 290334.891898862, 732939.091902253,] +kxy = [ 388401.623689309, 504334.860616662, 625326.20214955, 750542.069249618, 879260.768917699, 1010847.15033575, 1144738.0717901, 1280430.08808057, 2520968.98404806,] +kyx = [ -388401.623689309, -504334.860616662, -625326.20214955, -750542.069249618, -879260.768917699, -1010847.15033575, -1144738.0717901, -1280430.08808057, -2520968.98404806,] +kyy = [ 140049.817601769, 152063.602437156, 166813.832185813, 184639.367211113, 205775.545611855, 230379.77415706, 258549.549695261, 290334.891898862, 732939.091902253,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 10" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 31 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 10" ["SealElement_Seal 4"] -n = 33 -kxx = [ 99565.3280288305, 128280.786974181, 163838.557867115, 207478.594722917, 260118.020975725, 322429.13160572, 394893.509217979, 477841.629547027, 1705205.47349929,] +color = "#77ACA2" cxx = [ 2042.80354037266, 2087.34323361495, 2133.05245009602, 2178.28290613318, 2221.70220592325, 2262.23898170276, 2299.0394215401, 2331.43213723079, 2373.99452038876,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 99565.3280288305, 128280.786974181, 163838.557867115, 207478.594722917, 260118.020975725, 322429.13160572, 394893.509217979, 477841.629547027, 1705205.47349929,] -kxy = [ 1045693.89578556, 1360157.4064092, 1689000.07378138, 2029942.27233339, 2381001.43932843, 2740426.4413257, 3106654.74733322, 3478282.16261192, 6889822.23965831,] -kyx = [ -1045693.89578556, -1360157.4064092, -1689000.07378138, -2029942.27233339, -2381001.43932843, -2740426.4413257, -3106654.74733322, -3478282.16261192, -6889822.23965831,] -cyy = [ 2042.80354037266, 2087.34323361495, 2133.05245009602, 2178.28290613318, 2221.70220592325, 2262.23898170276, 2299.0394215401, 2331.43213723079, 2373.99452038876,] cxy = [ 300.719623259512, 323.676427884606, 330.553298935302, 323.075231492631, 302.810062114474, 271.199333765612, 229.5757085895, 179.173983835812, -506.196065119599,] cyx = [ -300.719623259512, -323.676427884606, -330.553298935302, -323.075231492631, -302.810062114474, -271.199333765612, -229.5757085895, -179.173983835812, 506.196065119599,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 2042.80354037266, 2087.34323361495, 2133.05245009602, 2178.28290613318, 2221.70220592325, 2262.23898170276, 2299.0394215401, 2331.43213723079, 2373.99452038876,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 99565.3280288305, 128280.786974181, 163838.557867115, 207478.594722917, 260118.020975725, 322429.13160572, 394893.509217979, 477841.629547027, 1705205.47349929,] +kxy = [ 1045693.89578556, 1360157.4064092, 1689000.07378138, 2029942.27233339, 2381001.43932843, 2740426.4413257, 3106654.74733322, 3478282.16261192, 6889822.23965831,] +kyx = [ -1045693.89578556, -1360157.4064092, -1689000.07378138, -2029942.27233339, -2381001.43932843, -2740426.4413257, -3106654.74733322, -3478282.16261192, -6889822.23965831,] +kyy = [ 99565.3280288305, 128280.786974181, 163838.557867115, 207478.594722917, 260118.020975725, 322429.13160572, 394893.509217979, 477841.629547027, 1705205.47349929,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 4" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 33 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 4" ["SealElement_Seal 9"] -n = 34 -kxx = [ 117358.92657379, 128015.751147855, 141102.498057583, 156969.989754583, 175871.907235927, 197988.188305016, 223441.071331206, 252306.609321979, 663772.402239837,] +color = "#77ACA2" cxx = [ 750.949959062333, 760.710326884617, 769.964578233571, 778.19629293504, 785.019902997508, 790.15932800096, 793.430153680943, 794.724300760962, 722.544808720561,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 117358.92657379, 128015.751147855, 141102.498057583, 156969.989754583, 175871.907235927, 197988.188305016, 223441.071331206, 252306.609321979, 663772.402239837,] -kxy = [ 368248.874078639, 477487.487203766, 591452.926163509, 709411.473344204, 830721.103799336, 954812.05503821, 1081173.83156822, 1209345.94547456, 2386511.8788015,] -kyx = [ -368248.874078639, -477487.487203766, -591452.926163509, -709411.473344204, -830721.103799336, -954812.05503821, -1081173.83156822, -1209345.94547456, -2386511.8788015,] -cyy = [ 750.949959062333, 760.710326884617, 769.964578233571, 778.19629293504, 785.019902997508, 790.15932800096, 793.430153680943, 794.724300760962, 722.544808720561,] cxy = [ 79.8543326386884, 83.81589186923, 83.0331567785093, 78.1681935600569, 69.837391650402, 58.613348963646, 45.0245327033877, 29.554474250066, -136.376148153058,] cyx = [ -79.8543326386884, -83.81589186923, -83.0331567785093, -78.1681935600569, -69.837391650402, -58.613348963646, -45.0245327033877, -29.554474250066, 136.376148153058,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 750.949959062333, 760.710326884617, 769.964578233571, 778.19629293504, 785.019902997508, 790.15932800096, 793.430153680943, 794.724300760962, 722.544808720561,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 117358.92657379, 128015.751147855, 141102.498057583, 156969.989754583, 175871.907235927, 197988.188305016, 223441.071331206, 252306.609321979, 663772.402239837,] +kxy = [ 368248.874078639, 477487.487203766, 591452.926163509, 709411.473344204, 830721.103799336, 954812.05503821, 1081173.83156822, 1209345.94547456, 2386511.8788015,] +kyx = [ -368248.874078639, -477487.487203766, -591452.926163509, -709411.473344204, -830721.103799336, -954812.05503821, -1081173.83156822, -1209345.94547456, -2386511.8788015,] +kyy = [ 117358.92657379, 128015.751147855, 141102.498057583, 156969.989754583, 175871.907235927, 197988.188305016, 223441.071331206, 252306.609321979, 663772.402239837,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 9" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 34 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 9" ["SealElement_Seal 3"] -n = 36 -kxx = [ 42736.7276429811, 67214.3361587494, 97775.6346026271, 135757.803441503, 182192.939775206, 237877.364149987, 303419.845206835, 379277.183402673, 1553300.56707975,] +color = "#77ACA2" cxx = [ 1963.22827166158, 2015.78518072991, 2071.30777883873, 2128.0501207825, 2184.53471897006, 2239.50807488773, 2291.90587538764, 2340.82530827392, 2532.59539821632,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 42736.7276429811, 67214.3361587494, 97775.6346026271, 135757.803441503, 182192.939775206, 237877.364149987, 303419.845206835, 379277.183402673, 1553300.56707975,] -kxy = [ 990798.147638428, 1287520.08475897, 1598073.52054941, 1920481.53213523, 2252993.8192709, 2594035.77027586, 2942176.31364923, 3296105.80753795, 6569742.52112397,] -kyx = [ -990798.147638428, -1287520.08475897, -1598073.52054941, -1920481.53213523, -2252993.8192709, -2594035.77027586, -2942176.31364923, -3296105.80753795, -6569742.52112397,] -cyy = [ 1963.22827166158, 2015.78518072991, 2071.30777883873, 2128.0501207825, 2184.53471897006, 2239.50807488773, 2291.90587538764, 2340.82530827392, 2532.59539821632,] cxy = [ 327.498095371777, 358.733673950888, 373.552265248427, 373.313275236128, 359.267683770068, 332.586462550931, 294.376327892065, 245.689271656646, -511.811286666433,] cyx = [ -327.498095371777, -358.733673950888, -373.552265248427, -373.313275236128, -359.267683770068, -332.586462550931, -294.376327892065, -245.689271656646, 511.811286666433,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 1963.22827166158, 2015.78518072991, 2071.30777883873, 2128.0501207825, 2184.53471897006, 2239.50807488773, 2291.90587538764, 2340.82530827392, 2532.59539821632,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 42736.7276429811, 67214.3361587494, 97775.6346026271, 135757.803441503, 182192.939775206, 237877.364149987, 303419.845206835, 379277.183402673, 1553300.56707975,] +kxy = [ 990798.147638428, 1287520.08475897, 1598073.52054941, 1920481.53213523, 2252993.8192709, 2594035.77027586, 2942176.31364923, 3296105.80753795, 6569742.52112397,] +kyx = [ -990798.147638428, -1287520.08475897, -1598073.52054941, -1920481.53213523, -2252993.8192709, -2594035.77027586, -2942176.31364923, -3296105.80753795, -6569742.52112397,] +kyy = [ 42736.7276429811, 67214.3361587494, 97775.6346026271, 135757.803441503, 182192.939775206, 237877.364149987, 303419.845206835, 379277.183402673, 1553300.56707975,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] -tag = "Seal 3" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 36 scale_factor = 0.5 -color = "#77ACA2" +tag = "Seal 3" ["BearingElement_Bearing 13"] -n = 48 -kxx = [ 114058356.52767764, 133516699.19191365, 151278062.82261127, 167517574.25501704, 182482162.32682845, 196142055.47605363, 208733674.93027526, 220397122.1576906,] +color = "#355d7a" cxx = [ 189136.98206619456, 176440.286510825, 165762.80336584736, 156496.8425129563, 148349.9421372902, 140994.6150569382, 134355.55673274427, 128322.43725850315,] -mxx = [ 0, 0, 0, 0, 0, 0, 0, 0,] -kyy = [ 122826957.16846871, 141064665.79103678, 158008187.10113338, 173655769.83040604, 188156271.7888143, 201465911.2675465, 213794840.46889845, 225213110.1269687,] -kxy = [ -578233.784616816, -457116.0653603528, -394350.6076080157, -363178.0309341429, -351479.5583396782, -352740.47155345284, -363738.43680693157, -382336.90671010735,] -kyx = [ -520564.51777015126, -367223.4608283365, -265194.5666137393, -187700.94201717345, -122643.07399145991, -63560.53358435616, -7213.124090131872, 48538.15365691342,] -cyy = [ 199662.10486450777, 183567.94870535663, 170981.58305619235, 160516.00338186292, 151560.0170273581, 143637.27900080752, 136577.91627202206, 130227.81722598482,] cxy = [ -551.6670437099255, -310.1496252215098, -188.54155082635654, -119.07924289419412, -75.18019910295988, -44.84647996991768, -22.339179104040536, -5.18935838202359,] cyx = [ -594.4680422441643, -362.81026458012525, -250.79914075647892, -190.6956108998882, -155.93118283511018, -134.5376886414006, -120.79373461125712, -112.24754505122908,] -myy = [ 0, 0, 0, 0, 0, 0, 0, 0,] +cyy = [ 199662.10486450777, 183567.94870535663, 170981.58305619235, 160516.00338186292, 151560.0170273581, 143637.27900080752, 136577.91627202206, 130227.81722598482,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0,] +frequency = [ 418.87902047863906, 523.5987755982989, 628.3185307179587, 733.0382858376183, 837.7580409572781, 942.4777960769379, 1047.1975511965977, 1151.9173063162575,] +kxx = [ 114058356.52767764, 133516699.19191365, 151278062.82261127, 167517574.25501704, 182482162.32682845, 196142055.47605363, 208733674.93027526, 220397122.1576906,] +kxy = [ -578233.784616816, -457116.0653603528, -394350.6076080157, -363178.0309341429, -351479.5583396782, -352740.47155345284, -363738.43680693157, -382336.90671010735,] +kyx = [ -520564.51777015126, -367223.4608283365, -265194.5666137393, -187700.94201717345, -122643.07399145991, -63560.53358435616, -7213.124090131872, 48538.15365691342,] +kyy = [ 122826957.16846871, 141064665.79103678, 158008187.10113338, 173655769.83040604, 188156271.7888143, 201465911.2675465, 213794840.46889845, 225213110.1269687,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0,] mxy = [ 0, 0, 0, 0, 0, 0, 0, 0,] myx = [ 0, 0, 0, 0, 0, 0, 0, 0,] -frequency = [ 418.87902047863906, 523.5987755982989, 628.3185307179587, 733.0382858376183, 837.7580409572781, 942.4777960769379, 1047.1975511965977, 1151.9173063162575,] -tag = "Bearing 13" +myy = [ 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0,] +n = 48 scale_factor = 1 -color = "#355d7a" +tag = "Bearing 13" ["ShaftElement_ShaftElement 0".material] name = "shaft_mat_3" diff --git a/ross/tests/data/rotor.toml b/ross/tests/data/rotor.toml index 9d0abfcfa..c7fe4f42d 100644 --- a/ross/tests/data/rotor.toml +++ b/ross/tests/data/rotor.toml @@ -1,3 +1,10 @@ +# This file is auto-generated by ROSS. Do not edit values directly. +# When loading, element coefficients are read as-is without recomputation. +# Changing values here will NOT trigger recalculation of dependent quantities. +# To modify the rotor, change parameters in Python and save again. + +ross_version = "2.0.0" + [parameters] ["ShaftElement_ShaftElement 0"] @@ -14,6 +21,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 0" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 1"] L = 0.036000000000000004 @@ -29,6 +38,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 1" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 2"] L = 0.054000000000000006 @@ -44,6 +55,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 2" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 3"] L = 0.043000000000000003 @@ -59,6 +72,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 3" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 4"] L = 0.0165 @@ -74,6 +89,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 4" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 5"] L = 0.014 @@ -89,6 +106,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 5" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 6"] L = 0.036500000000000005 @@ -104,6 +123,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 6" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 7"] L = 0.051 @@ -119,6 +140,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 7" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 8"] L = 0.025 @@ -134,6 +157,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 8" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 9"] L = 0.025 @@ -149,6 +174,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 9" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 10"] L = 0.016 @@ -164,6 +191,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 10" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 11"] L = 0.016 @@ -179,6 +208,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 11" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 12"] L = 0.0242 @@ -194,6 +225,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 12" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 13"] L = 0.0242 @@ -209,6 +242,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 13" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 14"] L = 0.0045000000000000005 @@ -224,6 +259,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 14" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 15"] L = 0.0045000000000000005 @@ -239,6 +276,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 15" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 16"] L = 0.01257 @@ -254,6 +293,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 16" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 17"] L = 0.01257 @@ -269,6 +310,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 17" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 18"] L = 0.02 @@ -284,6 +327,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 18" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 19"] L = 0.02 @@ -299,6 +344,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 19" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 20"] L = 0.06273000000000001 @@ -314,6 +361,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 20" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 21"] L = 0.06273000000000001 @@ -329,6 +378,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 21" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 22"] L = 0.038 @@ -344,6 +395,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 22" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 23"] L = 0.038 @@ -359,6 +412,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 23" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 24"] L = 0.038 @@ -374,6 +429,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 24" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 25"] L = 0.038 @@ -389,6 +446,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 25" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 26"] L = 0.030000000000000002 @@ -404,6 +463,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 26" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 27"] L = 0.030000000000000002 @@ -419,6 +480,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 27" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 28"] L = 0.053000000000000005 @@ -434,6 +497,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 28" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 29"] L = 0.053000000000000005 @@ -449,6 +514,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 29" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 30"] L = 0.01949 @@ -464,6 +531,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 30" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 31"] L = 0.01949 @@ -479,6 +548,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 31" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 32"] L = 0.013510000000000003 @@ -494,6 +565,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 32" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 33"] L = 0.013510000000000003 @@ -509,6 +582,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 33" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 34"] L = 0.0495 @@ -524,6 +599,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 34" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 35"] L = 0.01959 @@ -539,6 +616,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 35" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 36"] L = 0.01959 @@ -554,6 +633,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 36" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 37"] L = 0.012410000000000001 @@ -569,6 +650,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 37" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 38"] L = 0.012410000000000001 @@ -584,6 +667,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 38" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 39"] L = 0.049 @@ -599,6 +684,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 39" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 40"] L = 0.019700000000000002 @@ -614,6 +701,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 40" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 41"] L = 0.019700000000000002 @@ -629,6 +718,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 41" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 42"] L = 0.0123 @@ -644,6 +735,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 42" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 43"] L = 0.0123 @@ -659,6 +752,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 43" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 44"] L = 0.0495 @@ -674,6 +769,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 44" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 45"] L = 0.019829999999999997 @@ -689,6 +786,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 45" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 46"] L = 0.019829999999999997 @@ -704,6 +803,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 46" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 47"] L = 0.011670000000000002 @@ -719,6 +820,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 47" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 48"] L = 0.011670000000000002 @@ -734,6 +837,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 48" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 49"] L = 0.0495 @@ -749,6 +854,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 49" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 50"] L = 0.01998 @@ -764,6 +871,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 50" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 51"] L = 0.01998 @@ -779,6 +888,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 51" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 52"] L = 0.01202 @@ -794,6 +905,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 52" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 53"] L = 0.01202 @@ -809,6 +922,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 53" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 54"] L = 0.0495 @@ -824,6 +939,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 54" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 55"] L = 0.020100000000000003 @@ -839,6 +956,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 55" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 56"] L = 0.020100000000000003 @@ -854,6 +973,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 56" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 57"] L = 0.012399999999999998 @@ -869,6 +990,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 57" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 58"] L = 0.012399999999999998 @@ -884,6 +1007,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 58" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 59"] L = 0.056999999999999995 @@ -899,6 +1024,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 59" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 60"] L = 0.026 @@ -914,6 +1041,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 60" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 61"] L = 0.026 @@ -929,6 +1058,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 61" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 62"] L = 0.038 @@ -944,6 +1075,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 62" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 63"] L = 0.038 @@ -959,6 +1092,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 63" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 64"] L = 0.038 @@ -974,6 +1109,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 64" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 65"] L = 0.038 @@ -989,6 +1126,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 65" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 66"] L = 0.06273000000000001 @@ -1004,6 +1143,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 66" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 67"] L = 0.06273000000000001 @@ -1019,6 +1160,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 67" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 68"] L = 0.02 @@ -1034,6 +1177,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 68" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 69"] L = 0.02 @@ -1049,6 +1194,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 69" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 70"] L = 0.01257 @@ -1064,6 +1211,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 70" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 71"] L = 0.01257 @@ -1079,6 +1228,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 71" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 72"] L = 0.0045000000000000005 @@ -1094,6 +1245,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 72" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 73"] L = 0.0045000000000000005 @@ -1109,6 +1262,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 73" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 74"] L = 0.0242 @@ -1124,6 +1279,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 74" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 75"] L = 0.0242 @@ -1139,6 +1296,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 75" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 76"] L = 0.016 @@ -1154,6 +1313,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 76" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 77"] L = 0.016 @@ -1169,6 +1330,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 77" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 78"] L = 0.025 @@ -1184,6 +1347,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 78" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 79"] L = 0.025 @@ -1199,6 +1364,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 79" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 80"] L = 0.051 @@ -1214,6 +1381,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 80" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 81"] L = 0.050499999999999996 @@ -1229,6 +1398,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 81" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 82"] L = 0.036375000000000005 @@ -1244,6 +1415,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 82" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 83"] L = 0.036375000000000005 @@ -1259,6 +1432,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 83" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 84"] L = 0.013500000000000002 @@ -1274,6 +1449,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 84" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 85"] L = 0.034999999999999996 @@ -1289,6 +1466,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 85" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 86"] L = 0.034999999999999996 @@ -1304,6 +1483,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 86" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 87"] L = 0.024 @@ -1319,6 +1500,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 87" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 88"] L = 0.024 @@ -1334,6 +1517,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 88" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 89"] L = 0.032 @@ -1349,6 +1534,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 89" +alpha = 0.0 +beta = 0.0 ["ShaftElement_ShaftElement 90"] L = 0.032 @@ -1364,6 +1551,8 @@ rotary_inertia = true gyroscopic = true shear_method_calc = "cowper" tag = "ShaftElement 90" +alpha = 0.0 +beta = 0.0 ["DiskElement_Disk 0"] n = 3 @@ -1429,200 +1618,312 @@ scale_factor = 1 color = "Firebrick" ["BearingElement_Bearing 0"] -n = 7 -kxx = [ 13798100.0, 29951900.0, 53565699.99999999, 85144200.0, 120733000.0, 159519000.0, 197885000.0, 235239999.99999997, 271250000.0,] +color = "#355d7a" cxx = [ 102506.0, 127450.0, 144989.0, 153563.0, 155122.0, 150835.0, 145086.0, 141871.0, 140702.0,] -kyy = [ 13798100.0, 29951900.0, 53565699.99999999, 85144200.0, 120733000.0, 159519000.0, 197885000.0, 235239999.99999997, 271250000.0,] -kxy = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] -kyx = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] -cyy = [ 102506.0, 127450.0, 144989.0, 153563.0, 155122.0, 150835.0, 145086.0, 141871.0, 140702.0,] cxy = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] cyx = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] -tag = "Bearing 0" -scale_factor = 0.5 +cyy = [ 102506.0, 127450.0, 144989.0, 153563.0, 155122.0, 150835.0, 145086.0, 141871.0, 140702.0,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 314.1592653591, 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167,] +kxx = [ 13798100.0, 29951900.0, 53565699.99999999, 85144200.0, 120733000.0, 159519000.0, 197885000.0, 235239999.99999997, 271250000.0,] +kxy = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] +kyx = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] +kyy = [ 13798100.0, 29951900.0, 53565699.99999999, 85144200.0, 120733000.0, 159519000.0, 197885000.0, 235239999.99999997, 271250000.0,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 7 +scale_factor = 0.5 +tag = "Bearing 0" ["SealElement_Seal 2"] -n = 18 -kxx = [ 9740880.0, 21497099.999999996, 38963500.0, 61804200.0, 88339700.00000001, 115547000.0, 144098000.00000003, 171305000.0, 197673000.0,] +color = "#77ACA2" cxx = [ 212416.0, 265033.0, 301476.0, 318820.0, 319599.0, 311804.0, 301670.0, 293875.0, 289978.0,] -kyy = [ 9740880.0, 21497099.999999996, 38963500.0, 61804200.0, 88339700.00000001, 115547000.0, 144098000.00000003, 171305000.0, 197673000.0,] -kxy = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] -kyx = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] -cyy = [ 212416.0, 265033.0, 301476.0, 318820.0, 319599.0, 311804.0, 301670.0, 293875.0, 289978.0,] cxy = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] cyx = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] -tag = "Seal 2" -scale_factor = 0.3 +cyy = [ 212416.0, 265033.0, 301476.0, 318820.0, 319599.0, 311804.0, 301670.0, 293875.0, 289978.0,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 314.1592653591, 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167,] +kxx = [ 9740880.0, 21497099.999999996, 38963500.0, 61804200.0, 88339700.00000001, 115547000.0, 144098000.00000003, 171305000.0, 197673000.0,] +kxy = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] +kyx = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] +kyy = [ 9740880.0, 21497099.999999996, 38963500.0, 61804200.0, 88339700.00000001, 115547000.0, 144098000.00000003, 171305000.0, 197673000.0,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 18 +scale_factor = 0.3 +tag = "Seal 2" ["SealElement_Seal 8"] -n = 21 -kxx = [ 298251.102793201, 341553.083464932, 394552.018603807, 458222.132531081, 533166.367271116, 619721.596416625, 718029.641688798, 828087.262141986, 2308865.1768009,] +color = "#77ACA2" cxx = [ 2291.12243345773, 2311.1040718269, 2326.80597091329, 2336.94965058397, 2340.6898099477, 2337.52046884341, 2327.20232641125, 2309.70538908619, 1880.94276136733,] -kyy = [ 298251.102793201, 341553.083464932, 394552.018603807, 458222.132531081, 533166.367271116, 619721.596416625, 718029.641688798, 828087.262141986, 2308865.1768009,] -kxy = [ 1242500.2855946, 1622346.60563776, 2019067.07204817, 2429294.4077584, 2850215.15001386, 3279441.40422489, 3714924.05537521, 4154890.25666796, 8114286.71318661,] -kyx = [ -1242500.2855946, -1622346.60563776, -2019067.07204817, -2429294.4077584, -2850215.15001386, -3279441.40422489, -3714924.05537521, -4154890.25666796, -8114286.71318661,] -cyy = [ 2291.12243345773, 2311.1040718269, 2326.80597091329, 2336.94965058397, 2340.6898099477, 2337.52046884341, 2327.20232641125, 2309.70538908619, 1880.94276136733,] cxy = [ 206.926347739178, 199.422636876644, 176.412369573979, 140.746432758469, 94.9135905607814, 41.0991829034798, -18.775866654557, -83.0260630423863, -671.209405124406,] cyx = [ -206.926347739178, -199.422636876644, -176.412369573979, -140.746432758469, -94.9135905607814, -41.0991829034798, 18.775866654557, 83.0260630423863, 671.209405124406,] -tag = "Seal 8" -scale_factor = 0.3 +cyy = [ 2291.12243345773, 2311.1040718269, 2326.80597091329, 2336.94965058397, 2340.6898099477, 2337.52046884341, 2327.20232641125, 2309.70538908619, 1880.94276136733,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 298251.102793201, 341553.083464932, 394552.018603807, 458222.132531081, 533166.367271116, 619721.596416625, 718029.641688798, 828087.262141986, 2308865.1768009,] +kxy = [ 1242500.2855946, 1622346.60563776, 2019067.07204817, 2429294.4077584, 2850215.15001386, 3279441.40422489, 3714924.05537521, 4154890.25666796, 8114286.71318661,] +kyx = [ -1242500.2855946, -1622346.60563776, -2019067.07204817, -2429294.4077584, -2850215.15001386, -3279441.40422489, -3714924.05537521, -4154890.25666796, -8114286.71318661,] +kyy = [ 298251.102793201, 341553.083464932, 394552.018603807, 458222.132531081, 533166.367271116, 619721.596416625, 718029.641688798, 828087.262141986, 2308865.1768009,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 21 +scale_factor = 0.3 +tag = "Seal 8" ["SealElement_Seal 13"] -n = 22 -kxx = [ 212004.230533674, 228104.197005656, 247866.752578785, 271587.121157548, 299441.94589272, 331521.70676384, 367852.540447444, 408411.467916301, 946059.583744362,] +color = "#77ACA2" cxx = [ 844.704816544965, 845.510119153807, 843.879821457693, 839.45090843711, 832.029915317881, 821.555183438786, 808.067199559831, 791.684638045522, 551.77571052815,] -kyy = [ 212004.230533674, 228104.197005656, 247866.752578785, 271587.121157548, 299441.94589272, 331521.70676384, 367852.540447444, 408411.467916301, 946059.583744362,] -kxy = [ 438140.709696468, 570924.881967202, 709603.313478691, 853069.011373774, 1000381.95159242, 1150732.27599602, 1303415.03798806, 1457811.94108399, 2852208.05920669,] -kyx = [ -438140.709696468, -570924.881967202, -709603.313478691, -853069.011373774, -1000381.95159242, -1150732.27599602, -1303415.03798806, -1457811.94108399, -2852208.05920669,] -cyy = [ 844.704816544965, 845.510119153807, 843.879821457693, 839.45090843711, 832.029915317881, 821.555183438786, 808.067199559831, 791.684638045522, 551.77571052815,] cxy = [ 41.8735664570863, 33.9385369802047, 21.4702902513189, 5.51035377944818, -13.0248291697293, -33.3307978115303, -54.7060168965144, -76.544502427302, -232.737765811523,] cyx = [ -41.8735664570863, -33.9385369802047, -21.4702902513189, -5.51035377944818, 13.0248291697293, 33.3307978115303, 54.7060168965144, 76.544502427302, 232.737765811523,] -tag = "Seal 13" -scale_factor = 0.3 +cyy = [ 844.704816544965, 845.510119153807, 843.879821457693, 839.45090843711, 832.029915317881, 821.555183438786, 808.067199559831, 791.684638045522, 551.77571052815,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 212004.230533674, 228104.197005656, 247866.752578785, 271587.121157548, 299441.94589272, 331521.70676384, 367852.540447444, 408411.467916301, 946059.583744362,] +kxy = [ 438140.709696468, 570924.881967202, 709603.313478691, 853069.011373774, 1000381.95159242, 1150732.27599602, 1303415.03798806, 1457811.94108399, 2852208.05920669,] +kyx = [ -438140.709696468, -570924.881967202, -709603.313478691, -853069.011373774, -1000381.95159242, -1150732.27599602, -1303415.03798806, -1457811.94108399, -2852208.05920669,] +kyy = [ 212004.230533674, 228104.197005656, 247866.752578785, 271587.121157548, 299441.94589272, 331521.70676384, 367852.540447444, 408411.467916301, 946059.583744362,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 22 +scale_factor = 0.3 +tag = "Seal 13" ["SealElement_Seal 7"] -n = 24 -kxx = [ 252811.630578299, 292779.969788229, 341775.407113344, 400829.381676715, 470611.220647497, 551527.947163869, 643791.437001381, 747466.3932106181, 2165015.37392413,] +color = "#77ACA2" cxx = [ 2237.27062169521, 2262.54451706828, 2284.71266328052, 2302.40907831969, 2314.67941113008, 2320.89559745058, 2320.68980309972, 2313.90150206837, 1988.68376388278,] -kyy = [ 252811.630578299, 292779.969788229, 341775.407113344, 400829.381676715, 470611.220647497, 551527.947163869, 643791.437001381, 747466.3932106181, 2165015.37392413,] -kxy = [ 1196154.91738691, 1560429.00166038, 1940945.78963764, 2334594.59072454, 2738754.90307113, 3151186.98050217, 3569954.75170215, 3993371.59388281, 7817904.77114129,] -kyx = [ -1196154.91738691, -1560429.00166038, -1940945.78963764, -2334594.59072454, -2738754.90307113, -3151186.98050217, -3569954.75170215, -3993371.59388281, -7817904.77114129,] -cyy = [ 2237.27062169521, 2262.54451706828, 2284.71266328052, 2302.40907831969, 2314.67941113008, 2320.89559745058, 2320.68980309972, 2313.90150206837, 1988.68376388278,] cxy = [ 228.5066838492, 228.216282636906, 212.358685620386, 183.537798746503, 144.04734233591, 95.9190515734874, 40.9558585213239, -19.2447358005768, -614.227168738531,] cyx = [ -228.5066838492, -228.216282636906, -212.358685620386, -183.537798746503, -144.04734233591, -95.9190515734874, -40.9558585213239, 19.2447358005768, 614.227168738531,] -tag = "Seal 7" -scale_factor = 0.3 +cyy = [ 2237.27062169521, 2262.54451706828, 2284.71266328052, 2302.40907831969, 2314.67941113008, 2320.89559745058, 2320.68980309972, 2313.90150206837, 1988.68376388278,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 252811.630578299, 292779.969788229, 341775.407113344, 400829.381676715, 470611.220647497, 551527.947163869, 643791.437001381, 747466.3932106181, 2165015.37392413,] +kxy = [ 1196154.91738691, 1560429.00166038, 1940945.78963764, 2334594.59072454, 2738754.90307113, 3151186.98050217, 3569954.75170215, 3993371.59388281, 7817904.77114129,] +kyx = [ -1196154.91738691, -1560429.00166038, -1940945.78963764, -2334594.59072454, -2738754.90307113, -3151186.98050217, -3569954.75170215, -3993371.59388281, -7817904.77114129,] +kyy = [ 252811.630578299, 292779.969788229, 341775.407113344, 400829.381676715, 470611.220647497, 551527.947163869, 643791.437001381, 747466.3932106181, 2165015.37392413,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 24 +scale_factor = 0.3 +tag = "Seal 7" ["SealElement_Seal 12"] -n = 25 -kxx = [ 180839.024474825, 195355.027554806, 213179.711736108, 234627.751980985, 259899.30178444, 289110.53399467, 322314.274331595, 359514.507333211, 860767.574416809,] +color = "#77ACA2" cxx = [ 828.076214508057, 831.698341316398, 833.420964081016, 832.833200737184, 829.68538941482, 823.855212022527, 815.320735537458, 804.138365393787, 613.175254017714,] -kyy = [ 180839.024474825, 195355.027554806, 213179.711736108, 234627.751980985, 259899.30178444, 289110.53399467, 322314.274331595, 359514.507333211, 860767.574416809,] -kxy = [ 424916.756322156, 553193.12733327, 687168.6168166, 825821.555318317, 968280.211140864, 1113789.96941796, 1261690.85775216, 1411401.36210057, 2771413.59584677,] -kyx = [ -424916.756322156, -553193.12733327, -687168.6168166, -825821.555318317, -968280.211140864, -1113789.96941796, -1261690.85775216, -1411401.36210057, -2771413.59584677,] -cyy = [ 828.076214508057, 831.698341316398, 833.420964081016, 832.833200737184, 829.68538941482, 823.855212022527, 815.320735537458, 804.138365393787, 613.175254017714,] cxy = [ 56.639482846621, 52.6803994392273, 44.0249331997799, 31.6254311839271, 16.3284602522176, -1.11491725585648, -20.0424044945381, -39.8750850779251, -198.229669313471,] cyx = [ -56.639482846621, -52.6803994392273, -44.0249331997799, -31.6254311839271, -16.3284602522176, 1.11491725585648, 20.0424044945381, 39.8750850779251, 198.229669313471,] -tag = "Seal 12" -scale_factor = 0.3 +cyy = [ 828.076214508057, 831.698341316398, 833.420964081016, 832.833200737184, 829.68538941482, 823.855212022527, 815.320735537458, 804.138365393787, 613.175254017714,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 180839.024474825, 195355.027554806, 213179.711736108, 234627.751980985, 259899.30178444, 289110.53399467, 322314.274331595, 359514.507333211, 860767.574416809,] +kxy = [ 424916.756322156, 553193.12733327, 687168.6168166, 825821.555318317, 968280.211140864, 1113789.96941796, 1261690.85775216, 1411401.36210057, 2771413.59584677,] +kyx = [ -424916.756322156, -553193.12733327, -687168.6168166, -825821.555318317, -968280.211140864, -1113789.96941796, -1261690.85775216, -1411401.36210057, -2771413.59584677,] +kyy = [ 180839.024474825, 195355.027554806, 213179.711736108, 234627.751980985, 259899.30178444, 289110.53399467, 322314.274331595, 359514.507333211, 860767.574416809,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 25 +scale_factor = 0.3 +tag = "Seal 12" ["SealElement_Seal 6"] -n = 27 -kxx = [ 205852.667541406, 242366.978579705, 287218.2673746, 341497.431815182, 405944.815928242, 481042.985669013, 567080.222997083, 664196.067389568, 2018342.16604649,] +color = "#77ACA2" cxx = [ 2178.21606571578, 2209.14806245493, 2238.23710142438, 2264.02667383226, 2285.44579131069, 2301.73368540227, 2312.38047214785, 2317.07943041658, 2101.22864360535,] -kyy = [ 205852.667541406, 242366.978579705, 287218.2673746, 341497.431815182, 405944.815928242, 481042.985669013, 567080.222997083, 664196.067389568, 2018342.16604649,] -kxy = [ 1147712.75186238, 1495785.8148233, 1859450.35261072, 2235861.74214649, 2622603.49661036, 3017591.3675152, 3419008.72231515, 3825260.09699669, 7510461.330822,] -kyx = [ -1147712.75186238, -1495785.8148233, -1859450.35261072, -2235861.74214649, -2622603.49661036, -3017591.3675152, -3419008.72231515, -3825260.09699669, -7510461.330822,] -cyy = [ 2178.21606571578, 2209.14806245493, 2238.23710142438, 2264.02667383226, 2285.44579131069, 2301.73368540227, 2312.38047214785, 2317.07943041658, 2101.22864360535,] cxy = [ 250.258153865912, 257.227741725991, 248.537158173789, 226.525141043403, 193.271057301904, 150.636859160072, 100.293246923114, 43.7381624842223, -567.222123721818,] cyx = [ -250.258153865912, -257.227741725991, -248.537158173789, -226.525141043403, -193.271057301904, -150.636859160072, -100.293246923114, -43.7381624842223, 567.222123721818,] -tag = "Seal 6" -scale_factor = 0.3 +cyy = [ 2178.21606571578, 2209.14806245493, 2238.23710142438, 2264.02667383226, 2285.44579131069, 2301.73368540227, 2312.38047214785, 2317.07943041658, 2101.22864360535,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 205852.667541406, 242366.978579705, 287218.2673746, 341497.431815182, 405944.815928242, 481042.985669013, 567080.222997083, 664196.067389568, 2018342.16604649,] +kxy = [ 1147712.75186238, 1495785.8148233, 1859450.35261072, 2235861.74214649, 2622603.49661036, 3017591.3675152, 3419008.72231515, 3825260.09699669, 7510461.330822,] +kyx = [ -1147712.75186238, -1495785.8148233, -1859450.35261072, -2235861.74214649, -2622603.49661036, -3017591.3675152, -3419008.72231515, -3825260.09699669, -7510461.330822,] +kyy = [ 205852.667541406, 242366.978579705, 287218.2673746, 341497.431815182, 405944.815928242, 481042.985669013, 567080.222997083, 664196.067389568, 2018342.16604649,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 27 +scale_factor = 0.3 +tag = "Seal 6" ["SealElement_Seal 11"] -n = 28 -kxx = [ 162079.699898803, 175413.041171466, 191782.836082965, 211515.373531839, 234827.564468616, 261855.220747408, 292672.259417268, 327304.284853313, 800601.079718764,] +color = "#77ACA2" cxx = [ 805.360714967088, 810.807324312486, 814.773343900831, 816.814170445135, 816.638103264431, 814.07641475685, 809.059159293008, 801.595062580611, 646.55136163657,] -kyy = [ 162079.699898803, 175413.041171466, 191782.836082965, 211515.373531839, 234827.564468616, 261855.220747408, 292672.259417268, 327304.284853313, 800601.079718764,] -kxy = [ 406978.422739746, 529155.447676398, 656706.644009378, 788702.816695279, 924345.338451978, 1062937.9131192, 1203867.36017507, 1346589.781951, 2646350.0643761,] -kyx = [ -406978.422739746, -529155.447676398, -656706.644009378, -788702.816695279, -924345.338451978, -1062937.9131192, -1203867.36017507, -1346589.781951, -2646350.0643761,] -cyy = [ 805.360714967088, 810.807324312486, 814.773343900831, 816.814170445135, 816.638103264431, 814.07641475685, 809.059159293008, 801.595062580611, 646.55136163657,] cxy = [ 63.6178915228003, 62.1369490163509, 55.9666789064099, 45.9704212310253, 32.9255972926375, 17.5307496744211, 0.409583747581219, -17.8859321380999, -175.328107698497,] cyx = [ -63.6178915228003, -62.1369490163509, -55.9666789064099, -45.9704212310253, -32.9255972926375, -17.5307496744211, -0.409583747581219, 17.8859321380999, 175.328107698497,] -tag = "Seal 11" -scale_factor = 0.3 +cyy = [ 805.360714967088, 810.807324312486, 814.773343900831, 816.814170445135, 816.638103264431, 814.07641475685, 809.059159293008, 801.595062580611, 646.55136163657,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 162079.699898803, 175413.041171466, 191782.836082965, 211515.373531839, 234827.564468616, 261855.220747408, 292672.259417268, 327304.284853313, 800601.079718764,] +kxy = [ 406978.422739746, 529155.447676398, 656706.644009378, 788702.816695279, 924345.338451978, 1062937.9131192, 1203867.36017507, 1346589.781951, 2646350.0643761,] +kyx = [ -406978.422739746, -529155.447676398, -656706.644009378, -788702.816695279, -924345.338451978, -1062937.9131192, -1203867.36017507, -1346589.781951, -2646350.0643761,] +kyy = [ 162079.699898803, 175413.041171466, 191782.836082965, 211515.373531839, 234827.564468616, 261855.220747408, 292672.259417268, 327304.284853313, 800601.079718764,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 28 +scale_factor = 0.3 +tag = "Seal 11" ["SealElement_Seal 5"] -n = 30 -kxx = [ 152572.564780079, 185205.802529499, 225423.727870828, 274388.567172405, 332925.027240472, 401604.961161511, 480807.601610557, 570761.855747787, 1858564.83662114,] +color = "#77ACA2" cxx = [ 2114.3239242484, 2151.86018396449, 2189.00202211794, 2224.19825749469, 2256.25109134112, 2284.25181009551, 2307.52812156361, 2325.60282589679, 2236.14986468286,] -kyy = [ 152572.564780079, 185205.802529499, 225423.727870828, 274388.567172405, 332925.027240472, 401604.961161511, 480807.601610557, 570761.855747787, 1858564.83662114,] -kxy = [ 1098257.30952438, 1429977.12678861, 1776691.37706298, 2135830.7407142, 2505191.59642991, 2882850.96447124, 3267117.0862745, 3656488.87697799, 7208606.38767389,] -kyx = [ -1098257.30952438, -1429977.12678861, -1776691.37706298, -2135830.7407142, -2505191.59642991, -2882850.96447124, -3267117.0862745, -3656488.87697799, -7208606.38767389,] -cyy = [ 2114.3239242484, 2151.86018396449, 2189.00202211794, 2224.19825749469, 2256.25109134112, 2284.25181009551, 2307.52812156361, 2325.60282589679, 2236.14986468286,] cxy = [ 276.125157962378, 291.232201189786, 290.488133219166, 275.939934277962, 249.425082886449, 212.610147360682, 167.009160238909, 113.999361057078, -525.407830501088,] cyx = [ -276.125157962378, -291.232201189786, -290.488133219166, -275.939934277962, -249.425082886449, -212.610147360682, -167.009160238909, -113.999361057078, 525.407830501088,] -tag = "Seal 5" -scale_factor = 0.3 +cyy = [ 2114.3239242484, 2151.86018396449, 2189.00202211794, 2224.19825749469, 2256.25109134112, 2284.25181009551, 2307.52812156361, 2325.60282589679, 2236.14986468286,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 152572.564780079, 185205.802529499, 225423.727870828, 274388.567172405, 332925.027240472, 401604.961161511, 480807.601610557, 570761.855747787, 1858564.83662114,] +kxy = [ 1098257.30952438, 1429977.12678861, 1776691.37706298, 2135830.7407142, 2505191.59642991, 2882850.96447124, 3267117.0862745, 3656488.87697799, 7208606.38767389,] +kyx = [ -1098257.30952438, -1429977.12678861, -1776691.37706298, -2135830.7407142, -2505191.59642991, -2882850.96447124, -3267117.0862745, -3656488.87697799, -7208606.38767389,] +kyy = [ 152572.564780079, 185205.802529499, 225423.727870828, 274388.567172405, 332925.027240472, 401604.961161511, 480807.601610557, 570761.855747787, 1858564.83662114,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 30 +scale_factor = 0.3 +tag = "Seal 5" ["SealElement_Seal 10"] -n = 31 -kxx = [ 140049.817601769, 152063.602437156, 166813.832185813, 184639.367211113, 205775.545611855, 230379.77415706, 258549.549695261, 290334.891898862, 732939.091902253,] +color = "#77ACA2" cxx = [ 780.119253662987, 787.684355944009, 794.242332296682, 799.312347070576, 802.55627409239, 803.753118817436, 802.777721491268, 799.582973527294, 685.153719729093,] -kyy = [ 140049.817601769, 152063.602437156, 166813.832185813, 184639.367211113, 205775.545611855, 230379.77415706, 258549.549695261, 290334.891898862, 732939.091902253,] -kxy = [ 388401.623689309, 504334.860616662, 625326.20214955, 750542.069249618, 879260.768917699, 1010847.15033575, 1144738.0717901, 1280430.08808057, 2520968.98404806,] -kyx = [ -388401.623689309, -504334.860616662, -625326.20214955, -750542.069249618, -879260.768917699, -1010847.15033575, -1144738.0717901, -1280430.08808057, -2520968.98404806,] -cyy = [ 780.119253662987, 787.684355944009, 794.242332296682, 799.312347070576, 802.55627409239, 803.753118817436, 802.777721491268, 799.582973527294, 685.153719729093,] cxy = [ 71.9405192865185, 73.2172125105903, 69.7772091351367, 62.3870346967872, 51.7470502670171, 38.4965142422057, 23.2144639309886, 6.42115937619801, -153.589719559604,] cyx = [ -71.9405192865185, -73.2172125105903, -69.7772091351367, -62.3870346967872, -51.7470502670171, -38.4965142422057, -23.2144639309886, -6.42115937619801, 153.589719559604,] -tag = "Seal 10" -scale_factor = 0.3 +cyy = [ 780.119253662987, 787.684355944009, 794.242332296682, 799.312347070576, 802.55627409239, 803.753118817436, 802.777721491268, 799.582973527294, 685.153719729093,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 140049.817601769, 152063.602437156, 166813.832185813, 184639.367211113, 205775.545611855, 230379.77415706, 258549.549695261, 290334.891898862, 732939.091902253,] +kxy = [ 388401.623689309, 504334.860616662, 625326.20214955, 750542.069249618, 879260.768917699, 1010847.15033575, 1144738.0717901, 1280430.08808057, 2520968.98404806,] +kyx = [ -388401.623689309, -504334.860616662, -625326.20214955, -750542.069249618, -879260.768917699, -1010847.15033575, -1144738.0717901, -1280430.08808057, -2520968.98404806,] +kyy = [ 140049.817601769, 152063.602437156, 166813.832185813, 184639.367211113, 205775.545611855, 230379.77415706, 258549.549695261, 290334.891898862, 732939.091902253,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 31 +scale_factor = 0.3 +tag = "Seal 10" ["SealElement_Seal 4"] -n = 33 -kxx = [ 99565.3280288305, 128280.786974181, 163838.557867115, 207478.594722917, 260118.020975725, 322429.13160572, 394893.509217979, 477841.629547027, 1705205.47349929,] +color = "#77ACA2" cxx = [ 2042.80354037266, 2087.34323361495, 2133.05245009602, 2178.28290613318, 2221.70220592325, 2262.23898170276, 2299.0394215401, 2331.43213723079, 2373.99452038876,] -kyy = [ 99565.3280288305, 128280.786974181, 163838.557867115, 207478.594722917, 260118.020975725, 322429.13160572, 394893.509217979, 477841.629547027, 1705205.47349929,] -kxy = [ 1045693.89578556, 1360157.4064092, 1689000.07378138, 2029942.27233339, 2381001.43932843, 2740426.4413257, 3106654.74733322, 3478282.16261192, 6889822.23965831,] -kyx = [ -1045693.89578556, -1360157.4064092, -1689000.07378138, -2029942.27233339, -2381001.43932843, -2740426.4413257, -3106654.74733322, -3478282.16261192, -6889822.23965831,] -cyy = [ 2042.80354037266, 2087.34323361495, 2133.05245009602, 2178.28290613318, 2221.70220592325, 2262.23898170276, 2299.0394215401, 2331.43213723079, 2373.99452038876,] cxy = [ 300.719623259512, 323.676427884606, 330.553298935302, 323.075231492631, 302.810062114474, 271.199333765612, 229.5757085895, 179.173983835812, -506.196065119599,] cyx = [ -300.719623259512, -323.676427884606, -330.553298935302, -323.075231492631, -302.810062114474, -271.199333765612, -229.5757085895, -179.173983835812, 506.196065119599,] -tag = "Seal 4" -scale_factor = 0.3 +cyy = [ 2042.80354037266, 2087.34323361495, 2133.05245009602, 2178.28290613318, 2221.70220592325, 2262.23898170276, 2299.0394215401, 2331.43213723079, 2373.99452038876,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 99565.3280288305, 128280.786974181, 163838.557867115, 207478.594722917, 260118.020975725, 322429.13160572, 394893.509217979, 477841.629547027, 1705205.47349929,] +kxy = [ 1045693.89578556, 1360157.4064092, 1689000.07378138, 2029942.27233339, 2381001.43932843, 2740426.4413257, 3106654.74733322, 3478282.16261192, 6889822.23965831,] +kyx = [ -1045693.89578556, -1360157.4064092, -1689000.07378138, -2029942.27233339, -2381001.43932843, -2740426.4413257, -3106654.74733322, -3478282.16261192, -6889822.23965831,] +kyy = [ 99565.3280288305, 128280.786974181, 163838.557867115, 207478.594722917, 260118.020975725, 322429.13160572, 394893.509217979, 477841.629547027, 1705205.47349929,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 33 +scale_factor = 0.3 +tag = "Seal 4" ["SealElement_Seal 9"] -n = 34 -kxx = [ 117358.92657379, 128015.751147855, 141102.498057583, 156969.989754583, 175871.907235927, 197988.188305016, 223441.071331206, 252306.609321979, 663772.402239837,] +color = "#77ACA2" cxx = [ 750.949959062333, 760.710326884617, 769.964578233571, 778.19629293504, 785.019902997508, 790.15932800096, 793.430153680943, 794.724300760962, 722.544808720561,] -kyy = [ 117358.92657379, 128015.751147855, 141102.498057583, 156969.989754583, 175871.907235927, 197988.188305016, 223441.071331206, 252306.609321979, 663772.402239837,] -kxy = [ 368248.874078639, 477487.487203766, 591452.926163509, 709411.473344204, 830721.103799336, 954812.05503821, 1081173.83156822, 1209345.94547456, 2386511.8788015,] -kyx = [ -368248.874078639, -477487.487203766, -591452.926163509, -709411.473344204, -830721.103799336, -954812.05503821, -1081173.83156822, -1209345.94547456, -2386511.8788015,] -cyy = [ 750.949959062333, 760.710326884617, 769.964578233571, 778.19629293504, 785.019902997508, 790.15932800096, 793.430153680943, 794.724300760962, 722.544808720561,] cxy = [ 79.8543326386884, 83.81589186923, 83.0331567785093, 78.1681935600569, 69.837391650402, 58.613348963646, 45.0245327033877, 29.554474250066, -136.376148153058,] cyx = [ -79.8543326386884, -83.81589186923, -83.0331567785093, -78.1681935600569, -69.837391650402, -58.613348963646, -45.0245327033877, -29.554474250066, 136.376148153058,] -tag = "Seal 9" -scale_factor = 0.3 +cyy = [ 750.949959062333, 760.710326884617, 769.964578233571, 778.19629293504, 785.019902997508, 790.15932800096, 793.430153680943, 794.724300760962, 722.544808720561,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 117358.92657379, 128015.751147855, 141102.498057583, 156969.989754583, 175871.907235927, 197988.188305016, 223441.071331206, 252306.609321979, 663772.402239837,] +kxy = [ 368248.874078639, 477487.487203766, 591452.926163509, 709411.473344204, 830721.103799336, 954812.05503821, 1081173.83156822, 1209345.94547456, 2386511.8788015,] +kyx = [ -368248.874078639, -477487.487203766, -591452.926163509, -709411.473344204, -830721.103799336, -954812.05503821, -1081173.83156822, -1209345.94547456, -2386511.8788015,] +kyy = [ 117358.92657379, 128015.751147855, 141102.498057583, 156969.989754583, 175871.907235927, 197988.188305016, 223441.071331206, 252306.609321979, 663772.402239837,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 34 +scale_factor = 0.3 +tag = "Seal 9" ["SealElement_Seal 3"] -n = 36 -kxx = [ 42736.7276429811, 67214.3361587494, 97775.6346026271, 135757.803441503, 182192.939775206, 237877.364149987, 303419.845206835, 379277.183402673, 1553300.56707975,] +color = "#77ACA2" cxx = [ 1963.22827166158, 2015.78518072991, 2071.30777883873, 2128.0501207825, 2184.53471897006, 2239.50807488773, 2291.90587538764, 2340.82530827392, 2532.59539821632,] -kyy = [ 42736.7276429811, 67214.3361587494, 97775.6346026271, 135757.803441503, 182192.939775206, 237877.364149987, 303419.845206835, 379277.183402673, 1553300.56707975,] -kxy = [ 990798.147638428, 1287520.08475897, 1598073.52054941, 1920481.53213523, 2252993.8192709, 2594035.77027586, 2942176.31364923, 3296105.80753795, 6569742.52112397,] -kyx = [ -990798.147638428, -1287520.08475897, -1598073.52054941, -1920481.53213523, -2252993.8192709, -2594035.77027586, -2942176.31364923, -3296105.80753795, -6569742.52112397,] -cyy = [ 1963.22827166158, 2015.78518072991, 2071.30777883873, 2128.0501207825, 2184.53471897006, 2239.50807488773, 2291.90587538764, 2340.82530827392, 2532.59539821632,] cxy = [ 327.498095371777, 358.733673950888, 373.552265248427, 373.313275236128, 359.267683770068, 332.586462550931, 294.376327892065, 245.689271656646, -511.811286666433,] cyx = [ -327.498095371777, -358.733673950888, -373.552265248427, -373.313275236128, -359.267683770068, -332.586462550931, -294.376327892065, -245.689271656646, 511.811286666433,] -tag = "Seal 3" -scale_factor = 0.3 +cyy = [ 1963.22827166158, 2015.78518072991, 2071.30777883873, 2128.0501207825, 2184.53471897006, 2239.50807488773, 2291.90587538764, 2340.82530827392, 2532.59539821632,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167, 2094.395102394,] +kxx = [ 42736.7276429811, 67214.3361587494, 97775.6346026271, 135757.803441503, 182192.939775206, 237877.364149987, 303419.845206835, 379277.183402673, 1553300.56707975,] +kxy = [ 990798.147638428, 1287520.08475897, 1598073.52054941, 1920481.53213523, 2252993.8192709, 2594035.77027586, 2942176.31364923, 3296105.80753795, 6569742.52112397,] +kyx = [ -990798.147638428, -1287520.08475897, -1598073.52054941, -1920481.53213523, -2252993.8192709, -2594035.77027586, -2942176.31364923, -3296105.80753795, -6569742.52112397,] +kyy = [ 42736.7276429811, 67214.3361587494, 97775.6346026271, 135757.803441503, 182192.939775206, 237877.364149987, 303419.845206835, 379277.183402673, 1553300.56707975,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 36 +scale_factor = 0.3 +tag = "Seal 3" ["BearingElement_Bearing 1"] -n = 48 -kxx = [ 13798100.0, 29951900.0, 53565699.99999999, 85144200.0, 120733000.0, 159519000.0, 197885000.0, 235239999.99999997, 271250000.0,] +color = "#355d7a" cxx = [ 102506.0, 127450.0, 144989.0, 153563.0, 155122.0, 150835.0, 145086.0, 141871.0, 140702.0,] -kyy = [ 13798100.0, 29951900.0, 53565699.99999999, 85144200.0, 120733000.0, 159519000.0, 197885000.0, 235239999.99999997, 271250000.0,] -kxy = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] -kyx = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] -cyy = [ 102506.0, 127450.0, 144989.0, 153563.0, 155122.0, 150835.0, 145086.0, 141871.0, 140702.0,] cxy = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] cyx = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] -tag = "Bearing 1" -scale_factor = 0.5 +cyy = [ 102506.0, 127450.0, 144989.0, 153563.0, 155122.0, 150835.0, 145086.0, 141871.0, 140702.0,] +czz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] frequency = [ 314.1592653591, 418.8790204788, 523.5987755985, 628.3185307182, 733.0382858378999, 837.7580409576, 942.4777960773, 1047.197551197, 1151.9173063167,] +kxx = [ 13798100.0, 29951900.0, 53565699.99999999, 85144200.0, 120733000.0, 159519000.0, 197885000.0, 235239999.99999997, 271250000.0,] +kxy = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] +kyx = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,] +kyy = [ 13798100.0, 29951900.0, 53565699.99999999, 85144200.0, 120733000.0, 159519000.0, 197885000.0, 235239999.99999997, 271250000.0,] +kzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mxy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myx = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +myy = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +mzz = [ 0, 0, 0, 0, 0, 0, 0, 0, 0,] +n = 48 +scale_factor = 0.5 +tag = "Bearing 1" ["ShaftElement_ShaftElement 0".material] name = "shaft_mat_3"