From 9d1c9c698b2b2f790fb46eb02795be88d4be4778 Mon Sep 17 00:00:00 2001 From: caioessouza Date: Mon, 2 Dec 2024 19:35:29 -0300 Subject: [PATCH 1/4] ENH: Create a dataset of pre-registered motors. See #664 I followed the recommendation "Download and save several .eng files in the repo so we can install it along with the rocketpy package itself". The website thrustcurve.org was very useful to search for some .eng files. I mainly focused in some of the main brands on the market: Cesaroni, Aero Tech, Animal Motors and Loki. And also focused on classes K to M, because this is the main range of total impulse that I'm used to seeing in rocketry. I tried to pick motors with a difference of about 300~600Ns in total impulse. Some more improvements than can also be made following this issue are expanding the dataset for whole SolidMotor objects, more than only thrust curves. I think this would be what the recommendation "Save .json files with all the information we may find available on internet" could mean. I decided to go for the simple for now, but having the thrust curves is a good first step to implementing that in the future, which I would totally be able to do! --- .../aerotech/AeroTech_HP-L1000W.eng | 26 ++ .../aerotech/AeroTech_K1000T.eng | 36 +++ .../aerotech/AeroTech_K400C.eng | 25 ++ .../aerotech/AeroTech_K480W.eng | 44 +++ .../aerotech/AeroTech_K828FJ.eng | 30 ++ .../aerotech/AeroTech_K990DM.eng | 34 +++ .../aerotech/AeroTech_L1040DM.eng | 29 ++ .../aerotech/AeroTech_L1940X.eng | 22 ++ .../aerotech/AeroTech_L2200G.eng | 39 +++ .../aerotech/AeroTech_L2775ST-PS.eng | 151 ++++++++++ .../aerotech/AeroTech_M1075DM.eng | 24 ++ .../aerotech/AeroTech_M1305M.eng | 31 +++ .../aerotech/AeroTech_M1340W.eng | 28 ++ .../aerotech/AeroTech_M1845NT.eng | 17 ++ .../aerotech/AeroTech_M1939W.eng | 30 ++ .../aerotech/AeroTech_M2100G.eng | 50 ++++ .../aerotech/AeroTech_M650W.eng | 25 ++ .../aerotech/AeroTech_M750W.eng | 24 ++ .../animal_motor/AMW_1791K710-P.eng | 17 ++ .../animal_motor/AMW_2245K1075-P.eng | 41 +++ .../animal_motor/AMW_2730L1276-P.eng | 24 ++ .../animal_motor/AMW_4701L1290-P.eng | 21 ++ .../animal_motor/AMW_6774M2050-P.eng | 16 ++ .../animal_motor/AMW_8212M1630-P.eng | 19 ++ .../animal_motor/AMW_K475.eng | 37 +++ .../cesaroni/Cesaroni_1281K360-13A.eng | 13 + .../cesaroni/Cesaroni_1597K400-14A.eng | 12 + .../cesaroni/Cesaroni_1990K490-16A.eng | 19 ++ .../cesaroni/Cesaroni_2285K260-P.eng | 18 ++ .../cesaroni/Cesaroni_2546K300-P.eng | 21 ++ .../cesaroni/Cesaroni_2772L640-P.eng | 16 ++ .../cesaroni/Cesaroni_3147L935-P.eng | 11 + .../cesaroni/Cesaroni_3618L995-P.eng | 14 + .../cesaroni/Cesaroni_3683L851-P.eng | 13 + .../cesaroni/Cesaroni_4263L1350-P.eng | 18 ++ .../cesaroni/Cesaroni_4895L1395-P.eng | 14 + .../cesaroni/Cesaroni_4937L395-P.eng | 16 ++ .../cesaroni/Cesaroni_5472M2250-P.eng | 19 ++ .../cesaroni/Cesaroni_6118M3100-P.eng | 17 ++ .../cesaroni/Cesaroni_6438M1300-P.eng | 19 ++ .../cesaroni/Cesaroni_7388M2045-P.eng | 18 ++ .../cesaroni/Cesaroni_7545M1590-P.eng | 28 ++ .../cesaroni/Cesaroni_7579M1520-P.eng | 13 + .../cesaroni/Cesaroni_8088M1790-P.eng | 15 + .../cesaroni/Cesaroni_8634M6400-P.eng | 15 + .../cesaroni/Cesaroni_9977M2245-P.eng | 13 + .../cesaroni/Cesaroni_M1670.eng | 16 ++ .../cesaroni/Cesaroni_M1670_shifted.eng | 17 ++ .../loki/Loki_K1127-LB.eng | 37 +++ .../solid_thrust_curves/loki/Loki_K350-LW.eng | 24 ++ .../solid_thrust_curves/loki/Loki_K830-SF.eng | 8 + .../solid_thrust_curves/loki/Loki_K960-LW.eng | 26 ++ .../solid_thrust_curves/loki/Loki_L2050LW.eng | 31 +++ .../solid_thrust_curves/loki/Loki_L780-SF.eng | 10 + .../solid_thrust_curves/loki/Loki_L840CT.eng | 25 ++ .../solid_thrust_curves/loki/Loki_L930-LW.eng | 24 ++ .../solid_thrust_curves/loki/Loki_M1378LR.eng | 48 ++++ .../loki/Loki_M1882-LW.eng | 17 ++ .../solid_thrust_curves/loki/Loki_M1969SF.eng | 28 ++ .../loki/Loki_M3000-LW.eng | 27 ++ .../solid_thrust_curves/loki/Loki_M3464LB.eng | 26 ++ .../projeto_jupiter/keron_thrust_curve.csv | 239 ++++++++++++++++ .../projeto_jupiter/mandioca_thrust_curve.csv | 262 ++++++++++++++++++ 63 files changed, 2047 insertions(+) create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_HP-L1000W.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_K1000T.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_K400C.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_K480W.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_K828FJ.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_K990DM.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_L1040DM.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_L1940X.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_L2200G.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_L2775ST-PS.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_M1075DM.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_M1305M.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_M1340W.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_M1845NT.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_M1939W.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_M2100G.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_M650W.eng create mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_M750W.eng create mode 100644 data/motors/solid_thrust_curves/animal_motor/AMW_1791K710-P.eng create mode 100644 data/motors/solid_thrust_curves/animal_motor/AMW_2245K1075-P.eng create mode 100644 data/motors/solid_thrust_curves/animal_motor/AMW_2730L1276-P.eng create mode 100644 data/motors/solid_thrust_curves/animal_motor/AMW_4701L1290-P.eng create mode 100644 data/motors/solid_thrust_curves/animal_motor/AMW_6774M2050-P.eng create mode 100644 data/motors/solid_thrust_curves/animal_motor/AMW_8212M1630-P.eng create mode 100644 data/motors/solid_thrust_curves/animal_motor/AMW_K475.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_1281K360-13A.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_1597K400-14A.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_1990K490-16A.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_2285K260-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_2546K300-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_2772L640-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_3147L935-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_3618L995-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_3683L851-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_4263L1350-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_4895L1395-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_4937L395-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_5472M2250-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_6118M3100-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_6438M1300-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_7388M2045-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_7545M1590-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_7579M1520-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_8088M1790-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_8634M6400-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_9977M2245-P.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670.eng create mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670_shifted.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_K1127-LB.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_K350-LW.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_K830-SF.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_K960-LW.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_L2050LW.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_L780-SF.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_L840CT.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_L930-LW.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_M1378LR.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_M1882-LW.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_M1969SF.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_M3000-LW.eng create mode 100644 data/motors/solid_thrust_curves/loki/Loki_M3464LB.eng create mode 100644 data/motors/solid_thrust_curves/projeto_jupiter/keron_thrust_curve.csv create mode 100644 data/motors/solid_thrust_curves/projeto_jupiter/mandioca_thrust_curve.csv diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_HP-L1000W.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_HP-L1000W.eng new file mode 100644 index 000000000..dda619657 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_HP-L1000W.eng @@ -0,0 +1,26 @@ +; per AT announcement 5/8/14 +L1000 54 635 18 1.4000000000000001 2.194 AT + 0.004 10.664 + 0.011 1268.961 + 0.04 1322.279 + 0.195 1226.307 + 0.249 1268.961 + 0.296 1242.303 + 0.372 1252.966 + 0.416 1215.644 + 0.6 1226.307 + 0.788 1215.644 + 1.066 1183.653 + 1.261 1167.658 + 1.507 1125.004 + 1.746 1087.681 + 1.865 1050.359 + 1.995 1045.027 + 2.093 911.733 + 2.158 746.448 + 2.263 554.504 + 2.389 405.215 + 2.577 191.944 + 2.693 85.308 + 2.761 42.654 + 3.0 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K1000T.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_K1000T.eng new file mode 100644 index 000000000..96df8f4f3 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_K1000T.eng @@ -0,0 +1,36 @@ +; Based on AT Instruction Sheet by C. Kobel 3/17/2010 +K1000T-P 75 396 P 1.182 2.575 AT + 0.0040 895.149 + 0.015 1119.762 + 0.025 1093.337 + 0.095 1096.640 + 0.200 1109.853 + 0.300 1116.459 + 0.400 1123.065 + 0.500 1132.975 + 0.600 1139.581 + 0.700 1136.278 + 0.800 1136.278 + 0.900 1136.278 + 1.000 1139.581 + 1.100 1132.975 + 1.200 1129.672 + 1.300 1126.369 + 1.400 1119.762 + 1.500 1109.853 + 1.600 1096.640 + 1.700 1063.609 + 1.800 1017.365 + 1.900 971.121 + 2.000 914.968 + 2.100 868.724 + 2.180 865.421 + 2.200 878.634 + 2.218 858.815 + 2.269 670.536 + 2.300 578.048 + 2.332 445.923 + 2.356 336.920 + 2.389 224.613 + 2.436 105.7 + 2.500 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K400C.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_K400C.eng new file mode 100644 index 000000000..f651455d0 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_K400C.eng @@ -0,0 +1,25 @@ +; Aerotech K400C DMS +K400C 54 359 14 0.493 1.194 AT + 0.008 376.374 + 0.025 526.181 + 0.034 548.466 + 0.063 500.182 + 0.178 527.419 + 0.394 522.467 + 0.69 502.658 + 1.003 487.801 + 1.494 446.944 + 2.002 402.374 + 2.243 377.612 + 2.501 363.994 + 2.658 354.089 + 2.772 337.994 + 2.844 304.566 + 2.882 268.662 + 2.929 177.044 + 2.963 116.379 + 3.001 99.046 + 3.064 94.094 + 3.123 61.904 + 3.208 18.571 + 3.259 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K480W.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_K480W.eng new file mode 100644 index 000000000..40034b3fd --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_K480W.eng @@ -0,0 +1,44 @@ +; From AT Instruction Sheet by C. Kobel 3/12/10 +K480W-P 54 568 P 1.232 2.059 AT + 0.030 535.684 + 0.045 860.341 + 0.057 915.996 + 0.098 830.194 + 0.159 832.513 + 0.246 795.409 + 0.307 811.642 + 0.398 793.090 + 0.492 809.323 + 0.557 823.237 + 0.621 811.642 + 0.689 779.176 + 0.735 795.409 + 0.845 767.581 + 0.989 718.883 + 1.091 707.288 + 1.250 684.098 + 1.307 667.865 + 1.500 653.952 + 1.606 656.271 + 1.742 651.633 + 1.909 628.443 + 2.000 605.253 + 2.250 586.701 + 2.500 565.830 + 2.750 547.279 + 2.886 544.960 + 3.000 524.089 + 3.064 491.623 + 3.144 417.416 + 3.250 394.226 + 3.292 338.571 + 3.451 271.320 + 3.500 231.898 + 3.625 178.561 + 3.700 143.777 + 3.871 132.182 + 4.000 88.121 + 4.133 41.742 + 4.246 23.190 + 4.500 18.552 + 4.800 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K828FJ.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_K828FJ.eng new file mode 100644 index 000000000..140eacca5 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_K828FJ.eng @@ -0,0 +1,30 @@ +; +K828FJ 54.0 579.00 6-10-14-18 1.45000 2.25500 AT + 0.01 1112.06 + 0.02 1238.60 + 0.04 1303.79 + 0.06 1135.06 + 0.08 1077.54 + 0.13 1031.53 + 0.20 1016.19 + 0.50 993.18 + 0.65 1004.68 + 1.00 985.51 + 1.08 974.01 + 1.19 974.01 + 1.42 954.83 + 1.51 935.66 + 1.69 912.65 + 1.75 885.81 + 1.83 893.48 + 1.89 843.63 + 1.95 774.60 + 2.00 667.23 + 2.15 444.82 + 2.20 364.29 + 2.23 260.76 + 2.27 184.06 + 2.33 111.21 + 2.39 49.85 + 2.50 0.00 +; \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K990DM.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_K990DM.eng new file mode 100644 index 000000000..095eb4a5c --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_K990DM.eng @@ -0,0 +1,34 @@ +; Aerotech K990DM 54/2800 +K990DM 54 598 14 1.224 2.109 AT + 0.016 35.558 + 0.024 223.805 + 0.028 868.03 + 0.036 1068.828 + 0.044 895.222 + 0.048 863.847 + 0.06 840.839 + 0.228 966.337 + 0.286 953.788 + 0.369 964.246 + 0.407 993.529 + 0.423 976.796 + 0.498 989.345 + 0.694 1024.903 + 0.865 1043.728 + 0.962 1054.186 + 1.117 1054.186 + 1.282 1029.087 + 1.51 983.071 + 1.589 960.063 + 1.688 953.788 + 1.732 968.429 + 1.748 1001.895 + 1.778 957.971 + 1.802 891.038 + 1.857 671.416 + 1.913 447.611 + 1.97 223.805 + 2.006 129.682 + 2.063 46.016 + 2.097 14.641 + 2.137 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_L1040DM.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_L1040DM.eng new file mode 100644 index 000000000..79993221e --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_L1040DM.eng @@ -0,0 +1,29 @@ +; L1040 Dark Matter +L1040DM-P 75 681 P 2.602 4.7170000000000005 AT + 0.018 1126.167 + 0.042 1036.413 + 0.053 1002.543 + 0.116 988.995 + 0.504 1049.961 + 0.794 1095.685 + 1.002 1146.489 + 1.252 1192.213 + 1.499 1237.937 + 1.753 1261.646 + 1.912 1268.42 + 2.095 1254.872 + 2.511 1134.635 + 2.772 1056.734 + 3.012 966.98 + 3.153 933.11 + 3.217 863.677 + 3.291 817.953 + 3.34 758.681 + 3.488 438.613 + 3.552 284.505 + 3.598 220.153 + 3.657 167.655 + 3.746 118.544 + 3.88 42.337 + 3.996 6.774 + 4.127 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_L1940X.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_L1940X.eng new file mode 100644 index 000000000..5e25c985b --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_L1940X.eng @@ -0,0 +1,22 @@ +; from TMT document and posted thrust curve +L1940X 75 560.4 P 1.8234317999999998 3.855515 AT + 0.02 48.137 + 0.04 2107.333 + 0.055 2289.184 + 0.073 2150.122 + 0.156 2101.985 + 0.397 2150.122 + 0.691 2155.47 + 0.982 2118.03 + 1.41 2000.362 + 1.696 1898.739 + 1.935 1839.905 + 2.06 1818.511 + 2.103 1652.705 + 2.116 1374.58 + 2.133 935.998 + 2.163 534.856 + 2.214 240.685 + 2.244 112.32 + 2.296 5.349 + 2.309 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_L2200G.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_L2200G.eng new file mode 100644 index 000000000..c3021f949 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_L2200G.eng @@ -0,0 +1,39 @@ +; Curvefit of Aerotech Instructions by C. Kobel 11/19/08 +L2200G 75 665 0-6-10-14-18 2.516 4.751 AT + 0.011 1195.177 + 0.024 2029.903 + 0.037 2380.868 + 0.050 2542.122 + 0.100 2570.578 + 0.150 2561.093 + 0.200 2523.151 + 0.250 2485.208 + 0.300 2523.151 + 0.350 2570.578 + 0.400 2674.919 + 0.500 2912.057 + 0.600 3073.311 + 0.700 3073.311 + 0.800 3101.768 + 0.900 3092.282 + 1.000 3092.282 + 1.100 2959.485 + 1.186 2807.716 + 1.227 2437.781 + 1.270 2257.556 + 1.300 2162.701 + 1.400 1991.961 + 1.500 1878.135 + 1.600 1792.765 + 1.700 1688.424 + 1.800 1612.54 + 1.900 1584.083 + 2.000 1536.656 + 2.048 1498.714 + 2.084 1403.858 + 2.102 1166.72 + 2.134 796.784 + 2.186 455.305 + 2.237 237.138 + 2.300 94.855 + 2.400 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_L2775ST-PS.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_L2775ST-PS.eng new file mode 100644 index 000000000..ebd57c388 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_L2775ST-PS.eng @@ -0,0 +1,151 @@ +; AT L2775ST 75-3840 +; from TMT certification document +; created by John Junghans 2024-04-22 +L2775ST 75 558.2 P 1.418 3.479 AT +0.01064 3.54001 +0.02242 72.44425 +0.02606 344.23136 +0.02793 580.45024 +0.02933 832.91856 +0.03027 1025.50464 +0.03120 1215.68340 +0.03213 1404.65850 +0.03307 1592.42994 +0.03400 1778.99771 +0.03500 1923.43727 +0.03634 2129.56457 +0.03821 2348.33032 +0.04008 2488.85798 +0.04391 2604.83092 +0.05082 2637.24199 +0.06110 2576.86217 +0.07215 2544.82832 +0.08165 2539.27505 +0.09193 2553.55487 +0.10221 2566.19333 +0.11249 2572.26636 +0.12277 2591.63439 +0.13304 2603.12390 +0.14332 2603.12390 +0.15360 2602.79563 +0.16388 2618.88095 +0.17415 2647.76886 +0.18443 2663.36177 +0.19471 2672.88165 +0.20499 2686.66906 +0.21527 2691.92141 +0.22554 2696.35308 +0.23582 2705.38055 +0.24610 2725.07686 +0.25638 2746.08625 +0.26665 2745.42970 +0.27693 2744.77316 +0.28721 2757.73989 +0.29749 2774.15348 +0.30777 2784.49404 +0.31804 2795.49114 +0.32832 2808.95028 +0.33860 2813.54609 +0.34888 2810.75578 +0.35915 2810.91992 +0.36943 2825.69214 +0.37971 2841.44919 +0.38999 2838.16647 +0.40027 2843.91122 +0.41054 2841.61332 +0.42082 2843.58295 +0.43110 2848.34289 +0.44138 2854.90833 +0.45165 2864.75648 +0.46193 2870.66537 +0.47221 2872.79914 +0.48249 2878.05149 +0.49277 2885.27346 +0.50304 2895.61402 +0.51332 2904.47736 +0.52360 2913.17656 +0.53388 2919.90613 +0.54415 2920.23440 +0.55443 2919.57786 +0.56471 2927.45638 +0.57499 2939.93071 +0.58527 2947.15269 +0.59554 2951.91263 +0.60582 2956.50843 +0.61610 2958.47806 +0.62638 2957.82152 +0.63665 2963.73041 +0.64693 2973.08615 +0.65721 2977.35369 +0.66749 2976.69714 +0.67777 2980.30813 +0.68804 2979.32332 +0.69832 2977.84609 +0.70860 2979.32332 +0.71888 2987.53011 +0.72915 2991.79764 +0.73943 2988.67906 +0.74971 2989.49974 +0.75999 2997.37826 +0.77027 3003.61543 +0.78054 3004.76438 +0.79082 3006.07746 +0.80110 3007.88296 +0.81138 3009.52432 +0.82165 3003.94370 +0.83193 3006.24160 +0.84221 3013.62771 +0.85249 3015.92562 +0.86277 3019.20833 +0.87304 3015.76148 +0.88332 3017.40284 +0.89360 3017.40284 +0.90388 3017.07457 +0.91415 3020.68556 +0.92443 3023.96827 +0.93471 3021.67037 +0.94499 3021.99864 +0.95527 3027.41513 +0.96554 3030.69784 +0.97582 3033.98056 +0.98610 3041.36668 +0.99638 3046.29075 +1.00665 3048.58865 +1.01693 3047.60384 +1.02721 3056.63131 +1.03749 3068.77737 +1.04777 3076.32762 +1.05804 3081.74410 +1.06832 3069.76218 +1.07533 3028.39994 +1.08127 2938.89900 +1.08645 2838.10081 +1.09028 2736.81257 +1.09308 2631.19114 +1.09588 2509.77163 +1.09775 2424.91339 +1.09962 2334.18728 +1.10149 2233.53096 +1.10345 2137.93002 +1.10523 2030.41282 +1.10640 1933.36749 +1.10896 1827.74606 +1.11083 1735.66584 +1.11270 1649.90485 +1.11457 1567.75484 +1.11831 1444.68030 +1.12205 1345.67901 +1.12569 1255.40428 +1.12952 1162.42131 +1.13326 1078.01444 +1.13699 990.89933 +1.14073 900.62460 +1.14354 809.74804 +1.14727 701.41837 +1.15101 585.56580 +1.15475 469.41232 +1.15858 362.76777 +1.16316 260.57678 +1.16816 173.39719 +1.17717 79.42549 +1.18944 14.35612 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1075DM.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1075DM.eng new file mode 100644 index 000000000..30d03e3c6 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1075DM.eng @@ -0,0 +1,24 @@ +; M1075 Dark Matter +M1075DM 98 597 P 3.846 6.971 AT + 0.02 927.501 + 0.112 988.073 + 0.26 1033.501 + 0.53 1080.823 + 0.897 1124.359 + 1.509 1198.18 + 1.998 1239.823 + 2.355 1260.644 + 2.503 1264.43 + 2.773 1237.93 + 2.997 1222.787 + 3.502 1162.216 + 4.001 1063.787 + 4.501 906.68 + 4.741 834.751 + 4.878 742.001 + 4.96 664.394 + 5.062 448.608 + 5.164 223.357 + 5.26 79.5 + 5.352 30.286 + 5.5 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1305M.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1305M.eng new file mode 100644 index 000000000..4e4b71b8b --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1305M.eng @@ -0,0 +1,31 @@ +; M1305 Metalstorm +M1305M 98 597 P 4.08 7.098 AT + 0.016 1288.076 + 0.043 1462.78 + 0.08 1370.986 + 0.407 1622.679 + 0.535 1640.446 + 0.787 1705.59 + 0.985 1693.745 + 1.13 1717.434 + 1.328 1693.745 + 1.349 1927.672 + 1.397 1726.317 + 1.751 1711.512 + 2.018 1687.823 + 2.275 1690.784 + 2.297 1892.139 + 2.318 1678.94 + 2.929 1412.441 + 3.748 1113.371 + 4.24 906.095 + 4.503 802.456 + 4.717 663.285 + 4.813 538.919 + 4.92 387.903 + 5.027 245.771 + 5.166 145.094 + 5.263 79.95 + 5.386 32.572 + 5.498 23.689 + 5.707 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1340W.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1340W.eng new file mode 100644 index 000000000..9f8f2eb8f --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1340W.eng @@ -0,0 +1,28 @@ +; 98 White Lightning DMS +M1340W 98 557 P 4.0360000000000005 6.998 AT + 0.016 42.431 + 0.027 1053.712 + 0.043 862.771 + 0.076 1329.516 + 0.098 1403.771 + 0.152 1424.986 + 0.986 1729.078 + 1.154 1810.404 + 1.518 1874.051 + 1.642 1842.228 + 2.0 1888.195 + 2.558 1891.731 + 2.775 1782.117 + 2.818 1707.862 + 2.894 1615.927 + 2.997 1520.457 + 4.0 1011.281 + 4.509 763.764 + 4.862 608.183 + 4.981 583.431 + 5.062 526.856 + 5.149 438.457 + 5.322 226.301 + 5.458 99.006 + 5.577 28.288 + 5.642 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1845NT.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1845NT.eng new file mode 100644 index 000000000..f56d8fdbd --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1845NT.eng @@ -0,0 +1,17 @@ +M1845 98 597 P 3.7720000000000002 6.682 AT + 0.024 2261.638 + 0.067 2115.94 + 1.032 2268.261 + 1.354 2433.828 + 2.253 2288.129 + 2.406 2149.053 + 2.578 1821.232 + 3.065 1579.504 + 3.583 1410.627 + 3.838 1364.268 + 3.913 1218.569 + 3.995 685.445 + 4.109 400.671 + 4.352 248.35 + 4.498 33.113 + 4.729 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1939W.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1939W.eng new file mode 100644 index 000000000..947d235c0 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_M1939W.eng @@ -0,0 +1,30 @@ +; AeroTech M1939W +; converted from TMT test stand data 1998 (www.tripoli.org) +; provided by ThrustCurve.org (www.thrustcurve.org) +M1939W 98 732 0 5.656 8.98822 AT + 0.134 1905.185 + 0.406 2021.155 + 0.679 2095.900 + 0.952 2158.087 + 1.225 2198.211 + 1.498 2219.694 + 1.770 2228.643 + 2.042 2229.881 + 2.315 2225.641 + 2.587 2211.713 + 2.860 2164.724 + 3.133 2047.014 + 3.405 1916.238 + 3.677 1805.664 + 3.950 1658.489 + 4.223 1497.704 + 4.496 1339.452 + 4.769 1213.061 + 5.041 1102.130 + 5.313 966.508 + 5.585 670.253 + 5.858 443.975 + 6.131 155.355 + 6.404 41.358 + 6.677 5.775 + 6.950 0.000 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M2100G.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_M2100G.eng new file mode 100644 index 000000000..a8685e8c4 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_M2100G.eng @@ -0,0 +1,50 @@ +; Entered by Tim Van Milligan for RockSim Users. Used John Coker's ThrustCurve +; Tracer software and TRA cert paperwork dated 10-14-08. +M2100G 98 597 4 4.03 7.03 Aerotech + 0.014 72.789 + 0.017 1148.45 + 0.021 1552.833 + 0.038 1593.272 + 0.042 1908.691 + 0.052 2062.357 + 0.077 2151.321 + 0.115 2207.935 + 0.167 2240.285 + 0.223 2256.461 + 0.272 2256.461 + 0.31 2232.198 + 0.415 2280.724 + 0.59 2385.863 + 0.701 2410.126 + 0.876 2507.179 + 0.959 2555.705 + 1.043 2588.055 + 1.176 2677.02 + 1.263 2782.159 + 1.333 2830.685 + 1.437 2846.861 + 1.517 2879.211 + 1.608 2968.176 + 1.667 2943.913 + 1.81 2935.825 + 1.926 2895.387 + 1.999 2846.861 + 2.041 2782.159 + 2.152 2531.442 + 2.393 1949.129 + 2.484 1787.376 + 2.56 1674.148 + 2.738 1504.307 + 2.836 1439.606 + 2.958 1366.817 + 3.091 1285.94 + 3.178 1229.326 + 3.23 1196.976 + 3.283 1180.8 + 3.401 1188.888 + 3.447 1140.362 + 3.478 1035.222 + 3.513 913.907 + 3.516 541.874 + 3.527 444.822 + 3.541 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M650W.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_M650W.eng new file mode 100644 index 000000000..794ec0f22 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_M650W.eng @@ -0,0 +1,25 @@ +; +;75-6400 case +; Greg Gardner - 10/25/07 +M650W 75 801 0 3.351 5.125 AT +0.08 1240 +0.12 1328 +0.25 1230 +0.5 1142 +1.0 1071 +1.5 1048 +2.0 1018 +2.5 982 +3.0 950 +3.5 853 +4.0 781 +5.0 595 +6.0 443 +7.0 297 +8.0 155 +9.0 88 +10.0 32 +10.5 12 +11.0 4 +11.5 0 +; \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M750W.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_M750W.eng new file mode 100644 index 000000000..a932a0556 --- /dev/null +++ b/data/motors/solid_thrust_curves/aerotech/AeroTech_M750W.eng @@ -0,0 +1,24 @@ +; +;98-10240 case +; Greg Gardner - 10/25/07 +M750W 98 732 0 5.3 8.776 AT +0.1 1032 +0.2 992 +0.3 974 +0.48 966 +1.0 1055 +1.5 1152 +2.0 1192 +2.5 1218 +4.0 1103 +6.0 818 +8.0 561 +10.0 318 +11.0 216 +12.0 125 +13.0 76 +14.0 47 +15.0 23 +15.5 9 +16.0 0 +; \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_1791K710-P.eng b/data/motors/solid_thrust_curves/animal_motor/AMW_1791K710-P.eng new file mode 100644 index 000000000..c03d69603 --- /dev/null +++ b/data/motors/solid_thrust_curves/animal_motor/AMW_1791K710-P.eng @@ -0,0 +1,17 @@ +K710-BB 54 491 0 0.902 1.812 AMW/ProX +0.01 500 +0.02 850 +0.025 910 +0.03 840 +0.06 860 +0.12 875 +0.2 875 +0.3 872 +1.1 815 +1.85 740 +1.95 720 +2.2 295 +2.37 280 +2.5 90 +2.6 20 +2.8 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_2245K1075-P.eng b/data/motors/solid_thrust_curves/animal_motor/AMW_2245K1075-P.eng new file mode 100644 index 000000000..ebbb43a5f --- /dev/null +++ b/data/motors/solid_thrust_curves/animal_motor/AMW_2245K1075-P.eng @@ -0,0 +1,41 @@ +; AMW 54-2500 Skidmark Plugged +2245-K1075-SK-P 54 728 P 1.259 2.6388 CTI + 0.0070 1574.366 + 0.012 1038.184 + 0.017 1476.101 + 0.024 1083.044 + 0.029 1365.02 + 0.034 1117.223 + 0.041 1266.756 + 0.046 1162.083 + 0.049 1226.168 + 0.069 1159.947 + 0.107 1130.04 + 0.151 1108.678 + 0.21 1100.134 + 0.274 1102.27 + 0.332 1102.27 + 0.432 1115.087 + 0.523 1119.359 + 0.611 1132.176 + 0.674 1140.721 + 0.766 1149.266 + 0.881 1159.947 + 0.979 1179.172 + 1.141 1191.989 + 1.257 1189.853 + 1.379 1191.989 + 1.504 1202.67 + 1.599 1211.215 + 1.67 1232.577 + 1.744 1249.666 + 1.772 1226.168 + 1.802 1155.674 + 1.841 993.324 + 1.888 736.983 + 1.944 455.007 + 2.002 267.023 + 2.065 128.171 + 2.11 68.358 + 2.149 34.179 + 2.198 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_2730L1276-P.eng b/data/motors/solid_thrust_curves/animal_motor/AMW_2730L1276-P.eng new file mode 100644 index 000000000..29e0e4262 --- /dev/null +++ b/data/motors/solid_thrust_curves/animal_motor/AMW_2730L1276-P.eng @@ -0,0 +1,24 @@ +; AMX/ProX 2729L1276 RR +L1276RR 54 728 P 1.475 2.96 AMW + 0.015 76.924 + 0.017 692.317 + 0.026 1495.003 + 0.037 1244.164 + 0.052 1401.357 + 0.084 1307.71 + 0.127 1307.71 + 0.181 1367.911 + 0.289 1401.357 + 0.384 1408.046 + 0.807 1421.424 + 0.993 1461.558 + 1.215 1491.659 + 1.673 1474.936 + 1.727 1384.634 + 1.798 1083.627 + 1.947 531.78 + 1.986 351.175 + 2.047 177.26 + 2.092 93.647 + 2.144 33.445 + 2.185 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_4701L1290-P.eng b/data/motors/solid_thrust_curves/animal_motor/AMW_4701L1290-P.eng new file mode 100644 index 000000000..0d813e471 --- /dev/null +++ b/data/motors/solid_thrust_curves/animal_motor/AMW_4701L1290-P.eng @@ -0,0 +1,21 @@ +; ABC-76-6000 4701L1290-SK P +L1290-SK 76 785 P 3.047 5.399 CTI + 0.022 117.623 + 0.081 786.023 + 0.11 797.226 + 0.176 1226.645 + 0.691 1357.337 + 1.231 1461.891 + 1.761 1476.828 + 2.008 1467.493 + 2.311 1417.082 + 2.835 1299.459 + 3.101 1235.98 + 3.167 1230.379 + 3.34 1321.863 + 3.373 1286.39 + 3.532 365.94 + 3.602 201.64 + 3.734 91.485 + 3.782 69.08 + 3.8 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_6774M2050-P.eng b/data/motors/solid_thrust_curves/animal_motor/AMW_6774M2050-P.eng new file mode 100644 index 000000000..4329b9301 --- /dev/null +++ b/data/motors/solid_thrust_curves/animal_motor/AMW_6774M2050-P.eng @@ -0,0 +1,16 @@ +; AMX75-7600 6774-M2050-SK P +M2050-BS 75 1039 P 4.172 7.1290000000000004 ABC + 0.038 2152.81 + 0.833 2506.091 + 1.189 2539.211 + 1.546 2500.571 + 1.775 2415.011 + 1.907 2279.77 + 2.168 2086.569 + 2.401 1973.409 + 2.616 1909.929 + 2.776 1871.288 + 2.918 1203.365 + 3.056 706.563 + 3.309 135.241 + 3.4 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_8212M1630-P.eng b/data/motors/solid_thrust_curves/animal_motor/AMW_8212M1630-P.eng new file mode 100644 index 000000000..cb1d7ce9a --- /dev/null +++ b/data/motors/solid_thrust_curves/animal_motor/AMW_8212M1630-P.eng @@ -0,0 +1,19 @@ +; AMW75-7600 8212M1630-TT/DT P +M1630-TT 75 1039 P 4.349 7.237 CTI + 0.0030 147.481 + 0.032 2040.948 + 0.078 3235.069 + 0.158 3368.278 + 0.463 3258.856 + 0.647 2992.439 + 0.949 2697.477 + 1.052 2040.948 + 1.101 1883.952 + 1.392 1907.739 + 1.786 1812.59 + 3.6 1327.33 + 3.899 875.372 + 4.595 347.294 + 4.857 195.056 + 4.891 166.511 + 4.9 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_K475.eng b/data/motors/solid_thrust_curves/animal_motor/AMW_K475.eng new file mode 100644 index 000000000..4d2da92b2 --- /dev/null +++ b/data/motors/solid_thrust_curves/animal_motor/AMW_K475.eng @@ -0,0 +1,37 @@ +; Animal Motor Works K475 RASP.ENG file made from NAR data +; File produced Feb 22, 2003 +; The total impulse, peak thrust, average thrust and burn time are +; the same as the averaged static test data on the NAR web site in +; the certification file. The curve drawn with these data points is as +; close to the certification curve as can be with such a limited +; number of points (32) allowed with wRASP up to v1.6. +K475 54 403 P 0.7286 1.4925 AW +0.022 127.831 +0.041 386.016 +0.063 548.326 +0.096 521.308 +0.134 499.129 +0.180 486.830 +0.285 486.830 +0.478 501.649 +0.731 523.727 +1.096 553.266 +1.433 577.962 +1.601 588.290 +1.756 582.704 +1.895 580.284 +1.958 575.344 +2.063 550.746 +2.209 518.788 +2.344 477.051 +2.495 417.974 +2.561 354.058 +2.582 334.399 +2.599 331.980 +2.620 297.501 +2.670 226.226 +2.707 157.370 +2.740 98.353 +2.799 49.176 +2.853 17.208 +2.940 0.000 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1281K360-13A.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1281K360-13A.eng new file mode 100644 index 000000000..686574920 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1281K360-13A.eng @@ -0,0 +1,13 @@ +; Pro54-3G White 1281-K360 +1281-K360-WH-13A 54 236 13-10-8-6-4 0.747 1.232 CTI + 0.034 289.25 + 0.077 362.318 + 0.463 387.514 + 1.106 398.6 + 1.564 405.151 + 2.063 398.6 + 2.57 383.483 + 3.101 354.759 + 3.18 343.673 + 3.417 105.319 + 3.5 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1597K400-14A.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1597K400-14A.eng new file mode 100644 index 000000000..989c3efa2 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1597K400-14A.eng @@ -0,0 +1,12 @@ +; Pro54 4G 1597 K400-GR 14A +K400-GR 54 404 14-13-12-11-10-9-8-7-6-5-4 0.969 1.5513 CTI + 0.014 359.164 + 0.102 475.4 + 1.193 444.649 + 2.807 384.994 + 3.364 370.234 + 3.599 363.469 + 3.693 329.028 + 3.859 169.742 + 3.967 57.196 + 4.017 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1990K490-16A.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1990K490-16A.eng new file mode 100644 index 000000000..94b397b48 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1990K490-16A.eng @@ -0,0 +1,19 @@ +; Pro54-5G 1990K490-GR 16A +K490-GR 54 488 16-15-14-13-12-11-10-9-8-7-6 1.2012 1.8540999999999999 CTI + 0.013 445.79 + 0.024 376.662 + 0.083 559.232 + 0.121 584.047 + 0.316 573.412 + 0.727 569.867 + 1.116 553.914 + 1.875 522.009 + 1.893 593.796 + 1.944 519.35 + 2.658 479.468 + 3.063 473.264 + 3.358 444.018 + 3.618 448.449 + 3.894 240.177 + 4.055 31.019 + 4.066 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2285K260-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2285K260-P.eng new file mode 100644 index 000000000..965b03931 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2285K260-P.eng @@ -0,0 +1,18 @@ +; Pro54 6G 2285 K260-CL P +; Longburn +K260-CL 54 572 P 1.2413 2.0475 CTI + 0.042 325.731 + 0.101 430.409 + 0.422 422.807 + 0.773 426.901 + 1.178 429.825 + 1.517 425.731 + 2.011 413.45 + 3.195 356.725 + 4.51 289.474 + 6.015 174.269 + 6.997 91.228 + 7.366 66.667 + 7.902 43.275 + 8.479 25.731 + 8.687 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2546K300-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2546K300-P.eng new file mode 100644 index 000000000..1e8a6d491 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2546K300-P.eng @@ -0,0 +1,21 @@ +;Pro54 6GXL 2546 K300-CL P +;Longburn +;Uses a new threaded forward closure +K300-CL 54 649 0 1.3776 2.27 CTI +0.036 495.273 +0.132 543.273 +0.265 506.909 +0.734 493.091 +1.258 489.455 +1.811 482.909 +2.467 453.818 +3.737 375.273 +4.705 299.636 +6.047 165.091 +6.474 120.727 +6.829 90.182 +7.323 63.273 +7.72 46.545 +8.309 30.545 +8.37 0 +; \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2772L640-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2772L640-P.eng new file mode 100644 index 000000000..7647c61d9 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2772L640-P.eng @@ -0,0 +1,16 @@ +L640-DT 54 649 P 1.293 2.244 CTI +0.02 1200 +0.034 1540 +0.07 1300 +0.15 1460 +0.35 1510 +0.65 1540 +0.7 1510 +0.79 800 +0.86 570.25 +3.26 518 +3.55 330 +3.65 318 +4.15 102 +4.5 30 +5 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3147L935-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3147L935-P.eng new file mode 100644 index 000000000..bbbfb1449 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3147L935-P.eng @@ -0,0 +1,11 @@ +; Pro54-6GXL 3147L935-IM P +L935-IM 54 649 P 1.7347000000000001 2.5420000000000003 CTI + 0.012 1582.739 + 0.052 1365.5 + 0.159 1278.04 + 2.198 990.27 + 2.514 719.427 + 3.021 239.809 + 3.104 160.813 + 3.273 107.209 + 3.3 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3618L995-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3618L995-P.eng new file mode 100644 index 000000000..f141c7c9d --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3618L995-P.eng @@ -0,0 +1,14 @@ +L995-RL 75 486 0 1.996 3.591 CTI +0.02 50 +0.05 200 +0.09 1110 +0.14 1250 +0.25 1211 +0.9 1220 +1.2 1280 +1.4 1245 +2.4 940 +3.1 745 +3.32 740 +3.6 110 +3.8 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3683L851-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3683L851-P.eng new file mode 100644 index 000000000..fe352ad2b --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3683L851-P.eng @@ -0,0 +1,13 @@ +; Pro75-3G White 3683-L851 +3683-L851-WH-P 75 486 P 2.195 3.789 CTI + 0.059 971.271 + 0.102 855.249 + 0.485 838.674 + 1.353 911.602 + 1.824 980.11 + 3.107 883.978 + 3.68 816.575 + 4.031 732.597 + 4.128 579.006 + 4.256 246.409 + 4.339 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4263L1350-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4263L1350-P.eng new file mode 100644 index 000000000..37b61ded0 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4263L1350-P.eng @@ -0,0 +1,18 @@ +; C-Star 75mm 3G +; 4263-L1350-CS-P +4263-L1350-CS-P 75 486 P 2.0245 3.5707 CTI + 0.016 1421.724 + 0.034 1345.218 + 0.049 1502.479 + 0.081 1415.348 + 0.21 1432.349 + 0.453 1432.349 + 0.809 1462.102 + 1.07 1534.357 + 1.28 1540.732 + 2.661 1283.589 + 2.843 1277.214 + 2.932 1115.702 + 3.037 488.784 + 3.163 82.881 + 3.284 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4895L1395-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4895L1395-P.eng new file mode 100644 index 000000000..3a5e47ead --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4895L1395-P.eng @@ -0,0 +1,14 @@ +L1395-BS 75 621 0 2.475 4.323 CTI +0.02 100 +0.04 1400 +0.1 1800 +0.2 1500 +0.4 1540 +0.8 1591 +1.1 1641 +2.4 1481 +2.8 1446 +3 1500 +3.18 830 +3.35 100 +3.45 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4937L395-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4937L395-P.eng new file mode 100644 index 000000000..558b8310f --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4937L395-P.eng @@ -0,0 +1,16 @@ +; CTI L395 long burn Mellow Propellant +; Not many data points. +; Made from the data in the Rocksim file below +L395 75 757 P 2.218 5.706 CTI +0.04 484.229 +0.129 484.229 +0.209 578.734 +0.547 553.644 +2.043 511.828 +7.329 439.068 +8.632 424.014 +9.573 297.73 +11.399 100.358 +12.445 30.108 +12.501 0 +; \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_5472M2250-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_5472M2250-P.eng new file mode 100644 index 000000000..215dadd51 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_5472M2250-P.eng @@ -0,0 +1,19 @@ +; Pro75-4G 5472M2250-CS P +M2250-CS 75 621 P 2.628 4.415 CTI + 0.016 2542.114 + 0.051 2390.798 + 0.139 2582.466 + 0.259 2599.278 + 0.877 2663.168 + 1.388 2555.565 + 1.823 2458.05 + 1.86 2303.371 + 1.891 1926.761 + 1.997 1452.637 + 2.195 1452.637 + 2.244 1207.168 + 2.276 645.616 + 2.336 517.838 + 2.414 144.591 + 2.456 40.351 + 2.497 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_6118M3100-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_6118M3100-P.eng new file mode 100644 index 000000000..421684f72 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_6118M3100-P.eng @@ -0,0 +1,17 @@ +; Pro75-5G 6118M3100-WT P +M3100-WT 75 757 P 2.95 5.018 CTI + 0.02 3118.031 + 0.057 2976.886 + 0.148 3186.465 + 0.496 3391.768 + 0.817 3665.504 + 0.936 3532.913 + 1.173 3357.551 + 1.501 3199.297 + 1.717 3139.417 + 1.78 2412.304 + 1.812 2130.013 + 1.832 2031.639 + 1.937 346.448 + 1.985 81.266 + 2.0 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_6438M1300-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_6438M1300-P.eng new file mode 100644 index 000000000..070293f54 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_6438M1300-P.eng @@ -0,0 +1,19 @@ +; Pro75-5G 6438M1300-IM/DT P +M1300-IM 75 757 P 3.595 5.657 CTI + 0.0090 394.105 + 0.057 934.778 + 0.086 2146.406 + 0.154 2615.423 + 0.314 2827.132 + 0.671 2758.734 + 0.97 2752.22 + 1.082 1172.543 + 1.187 1120.43 + 2.14 1172.543 + 2.7 1139.973 + 3.884 915.235 + 4.372 771.924 + 4.6 400.619 + 4.697 335.478 + 4.9 120.511 + 4.901 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7388M2045-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7388M2045-P.eng new file mode 100644 index 000000000..cab7c1a1e --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7388M2045-P.eng @@ -0,0 +1,18 @@ +; Pro75-6G 7388-M2045-BS P +M2045-BS 75 893 P 3.739 6.071 CTI + 0.0040 556.851 + 0.019 1690.324 + 0.063 2359.204 + 0.153 2339.434 + 0.182 2570.083 + 0.247 2471.233 + 0.616 2497.593 + 1.028 2547.018 + 2.111 2316.369 + 2.551 2273.535 + 2.635 2253.765 + 2.796 1696.914 + 3.009 1472.855 + 3.349 247.123 + 3.541 108.734 + 3.587 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7545M1590-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7545M1590-P.eng new file mode 100644 index 000000000..a989fc005 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7545M1590-P.eng @@ -0,0 +1,28 @@ +M1590 75 893 P 3.59 6.0760000000000005 CTI + 0.053 2045.469 + 0.119 2130.875 + 0.133 2220.551 + 0.226 2305.957 + 0.363 2241.903 + 0.438 2177.849 + 0.571 2130.875 + 0.748 2092.443 + 0.973 2088.172 + 1.225 2100.983 + 1.433 2079.632 + 1.597 2032.659 + 1.995 1883.198 + 2.411 1759.36 + 3.362 1567.197 + 3.491 1533.035 + 3.721 1076.113 + 3.769 1012.059 + 3.871 973.626 + 3.946 896.761 + 4.074 687.517 + 4.132 640.544 + 4.203 619.192 + 4.504 294.65 + 4.641 226.325 + 4.716 170.812 + 4.8 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7579M1520-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7579M1520-P.eng new file mode 100644 index 000000000..6b1ff8ef2 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7579M1520-P.eng @@ -0,0 +1,13 @@ +; Pro98-3G 7579M1520-BS P +M1520-BS 98 548 P 3.737 6.718 CTI + 0.04 1427.795 + 0.082 1706.389 + 0.176 1620.489 + 0.748 1734.249 + 1.652 1827.113 + 2.676 1715.676 + 3.89 1423.152 + 4.399 1404.579 + 4.616 661.661 + 4.877 69.649 + 4.897 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_8088M1790-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_8088M1790-P.eng new file mode 100644 index 000000000..e47847fc7 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_8088M1790-P.eng @@ -0,0 +1,15 @@ +; Pro98-4G 8088M1790-SK P +M1790-SK 98 702 P 4.817 8.298 CTI + 0.059 1791.514 + 0.199 1596.375 + 0.6 1782.109 + 1.215 1913.769 + 1.973 2021.918 + 2.742 1970.195 + 3.387 1833.833 + 3.812 1652.801 + 4.28 1556.407 + 4.385 1295.438 + 4.476 355.011 + 4.541 91.692 + 4.597 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_8634M6400-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_8634M6400-P.eng new file mode 100644 index 000000000..89b8ab1ef --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_8634M6400-P.eng @@ -0,0 +1,15 @@ +; CTI Pro-98 4G +; 8634 M6400-VM P +8634-M6400-VM-P 98 702 P 4.308 7.9190000000000005 CTI + 0.011 6079.636 + 0.135 6598.407 + 0.354 7080.774 + 0.503 7244.596 + 0.713 7162.685 + 0.954 6707.622 + 1.183 5688.282 + 1.233 5460.751 + 1.26 4914.676 + 1.288 3394.767 + 1.331 800.91 + 1.383 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_9977M2245-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_9977M2245-P.eng new file mode 100644 index 000000000..d53f3ae9e --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_9977M2245-P.eng @@ -0,0 +1,13 @@ +; Imax Pro75 6GXL +; 9977 M2245-IM-P +9977-M2245-IM-P 75 1025 P 5.309 8.182 CTI + 0.043 3045.655 + 0.136 2629.813 + 1.393 3003.3 + 2.168 3007.151 + 2.708 2972.497 + 2.837 2883.938 + 3.152 1955.996 + 3.397 1409.241 + 3.878 562.156 + 4.371 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670.eng new file mode 100644 index 000000000..bf6a12073 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670.eng @@ -0,0 +1,16 @@ +M1670-BS 75 757 0 3.101 5.231 CTI +0.055 100 +0.092 1500 +0.1 2000 +0.15 2200 +0.2 1800 +0.5 1950 +1 2034 +1.5 2000 +2 1900 +2.5 1760 +2.9 1700 +3 1650 +3.3 530 +3.4 350 +3.9 0 diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670_shifted.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670_shifted.eng new file mode 100644 index 000000000..6846204b8 --- /dev/null +++ b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670_shifted.eng @@ -0,0 +1,17 @@ +M1670-BS 75 757 0 3.101 5.231 CTI +0.155 100 +0.192 1500 +0.2 2000 +0.25 2200 +0.3 1800 +0.6 1950 +1.1 2034 +1.6 2000 +2.1 1900 +2.6 1760 +3 1700 +3.1 1650 +3.4 530 +3.5 350 +4.0 0; this is a comment +; this is a last line comment diff --git a/data/motors/solid_thrust_curves/loki/Loki_K1127-LB.eng b/data/motors/solid_thrust_curves/loki/Loki_K1127-LB.eng new file mode 100644 index 000000000..5db59403e --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_K1127-LB.eng @@ -0,0 +1,37 @@ +K1127LB 38 625.5 P 0.624 1.172 Loki + 0.009 77.978 + 0.021 1002.962 + 0.033 1368.654 + 0.045 1210.008 + 0.058 1365.965 + 0.067 1263.786 + 0.08 1360.587 + 0.092 1255.719 + 0.105 1331.009 + 0.117 1242.275 + 0.13 1312.186 + 0.142 1261.097 + 0.155 1304.12 + 0.167 1261.097 + 0.218 1290.675 + 0.395 1325.631 + 0.542 1368.654 + 0.689 1392.854 + 0.726 1382.098 + 0.755 1344.453 + 0.814 1110.518 + 0.867 949.184 + 0.874 1099.763 + 0.883 962.629 + 0.908 847.006 + 0.989 548.537 + 0.997 363.002 + 1.003 715.249 + 1.014 494.759 + 1.048 406.025 + 1.091 352.247 + 1.152 228.557 + 1.198 158.645 + 1.244 69.912 + 1.286 32.267 + 1.37 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_K350-LW.eng b/data/motors/solid_thrust_curves/loki/Loki_K350-LW.eng new file mode 100644 index 000000000..74b5950e9 --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_K350-LW.eng @@ -0,0 +1,24 @@ +; +; +K350 54 702 0 1.4 2.54012 Loki +0.025 1329 +0.0375 1061 +0.1 1006 +0.15 891 +0.2 768 +0.4 571 +0.5 542 +0.75 486 +1 486 +1.25 477 +1.5 481 +2.5058 460 +3.00464 427 +3.5 375 +4 333 +4.5 297 +5 249 +5.5 210 +6 164 +6.5 98 +7 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_K830-SF.eng b/data/motors/solid_thrust_curves/loki/Loki_K830-SF.eng new file mode 100644 index 000000000..2a1c71d3a --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_K830-SF.eng @@ -0,0 +1,8 @@ +K830-SF 54 726 0 1.4 2.4 Loki +0.02 670.185 +0.5 775.726 +1 886.544 +1.5 986.807 +2 1092.35 +2.5 1187.34 +2.7 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_K960-LW.eng b/data/motors/solid_thrust_curves/loki/Loki_K960-LW.eng new file mode 100644 index 000000000..dfaf2a7de --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_K960-LW.eng @@ -0,0 +1,26 @@ +; +; +K960 54 498 0 0.929864 1.74633 Loki +0.03 1210 +0.05 1512 +0.075 1535 +0.1 1502 +0.125 1437 +0.2 1237 +0.3 1175 +0.5 1139 +0.6 1130 +0.7 1156 +0.8 1182 +0.9 1192 +1 1166 +1.1 1139 +1.2 1101 +1.3 1091 +1.4 1026 +1.5 839 +1.6 790 +1.7 575 +1.8 284 +1.9 150 +2 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_L2050LW.eng b/data/motors/solid_thrust_curves/loki/Loki_L2050LW.eng new file mode 100644 index 000000000..7c5f42283 --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_L2050LW.eng @@ -0,0 +1,31 @@ +; 54-4000 Loki White +L2050LW 54 1113.8 P 2.388 4.056 Loki + 0.027 366.324 + 0.028 137.372 + 0.043 2237.193 + 0.053 2701.64 + 0.074 2786.679 + 0.133 2682.015 + 0.218 2610.059 + 0.324 2708.181 + 0.495 2858.636 + 0.691 3061.422 + 0.87 3172.628 + 0.968 3329.624 + 1.066 3251.126 + 1.125 3139.92 + 1.157 2858.636 + 1.181 2701.64 + 1.213 2616.6 + 1.306 2479.229 + 1.338 2171.778 + 1.41 1962.45 + 1.503 1870.869 + 1.614 1426.047 + 1.753 1020.474 + 1.859 870.02 + 1.997 627.984 + 2.0 667.233 + 2.125 431.739 + 2.316 235.494 + 2.521 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_L780-SF.eng b/data/motors/solid_thrust_curves/loki/Loki_L780-SF.eng new file mode 100644 index 000000000..86146274e --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_L780-SF.eng @@ -0,0 +1,10 @@ +L780-SF 76 498 0 1.8 3.5 Loki +0.02 506.596 +0.5 696.57 +1 844.327 +1.5 897.098 +2 934.037 +2.5 918.206 +3 865.435 +3.5 802.111 +3.8 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_L840CT.eng b/data/motors/solid_thrust_curves/loki/Loki_L840CT.eng new file mode 100644 index 000000000..40d7382ae --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_L840CT.eng @@ -0,0 +1,25 @@ +L840CT 75 498 P 2.074 3.748 Loki + 0.021 889.644 + 0.046 1182.485 + 0.077 1082.4 + 0.139 978.608 + 0.303 971.195 + 0.662 1015.677 + 1.011 1108.348 + 1.33 1149.124 + 1.689 1189.899 + 1.971 1163.951 + 2.089 1145.417 + 2.3 1034.211 + 2.633 893.351 + 2.823 822.921 + 3.455 656.112 + 3.737 596.803 + 3.891 585.682 + 3.984 385.512 + 4.112 355.858 + 4.215 203.877 + 4.292 140.86 + 4.384 103.792 + 4.589 63.016 + 4.8 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_L930-LW.eng b/data/motors/solid_thrust_curves/loki/Loki_L930-LW.eng new file mode 100644 index 000000000..ad9e17edf --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_L930-LW.eng @@ -0,0 +1,24 @@ +; +; +L930 76 498 0 1.81437 3.53802 Loki +0.025 532 +0.05 1123 +0.075 1123 +0.125 1094 +0.2 930 +0.5 881 +0.6 878 +0.75 898 +1 921 +1.25 940 +1.5 1012 +1.75 1081 +2 1100 +2.25 1120 +2.5 1051 +2.75 980 +3 934 +3.25 826 +3.5 722 +3.75 280 +4 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_M1378LR.eng b/data/motors/solid_thrust_curves/loki/Loki_M1378LR.eng new file mode 100644 index 000000000..aea57975d --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_M1378LR.eng @@ -0,0 +1,48 @@ +; Loki M1378LR, 54/4000 +M1378LR 54 1108 P 2.6 4.331 Loki + 0.033 880.425 + 0.034 1332.161 + 0.035 1783.898 + 0.049 2217.196 + 0.05 2318.606 + 0.065 2240.243 + 0.175 2254.072 + 0.252 2166.491 + 0.386 2097.347 + 0.512 2051.252 + 0.776 2046.642 + 0.939 2065.08 + 0.991 2069.69 + 1.503 2175.71 + 1.568 2207.977 + 1.702 1908.356 + 1.719 1866.87 + 1.788 1857.65 + 1.824 1829.993 + 1.877 1742.412 + 1.902 1747.021 + 1.946 1608.734 + 2.015 1493.496 + 2.076 1447.4 + 2.137 1442.791 + 2.194 1438.181 + 2.239 1405.914 + 2.288 1336.771 + 2.393 1143.169 + 2.499 981.835 + 2.58 871.206 + 2.706 742.138 + 2.775 719.09 + 2.856 686.824 + 3.007 562.366 + 3.202 401.031 + 3.405 267.354 + 3.466 235.087 + 3.527 230.478 + 3.608 184.382 + 3.681 175.163 + 3.783 170.554 + 3.868 129.068 + 3.953 96.801 + 4.022 73.753 + 4.079 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_M1882-LW.eng b/data/motors/solid_thrust_curves/loki/Loki_M1882-LW.eng new file mode 100644 index 000000000..d40135a02 --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_M1882-LW.eng @@ -0,0 +1,17 @@ +; +; +M1882 75 785 0 3.12979 5.53383 Loki +0.01 4.8 +0.0174014 2579.22 +0.0696056 2392.32 +0.232019 2298.87 +0.50464 2261.49 +0.771462 2298.87 +0.986079 2411.01 +1.1891 2579.22 +1.49652 2597.91 +1.72854 2485.77 +2.00116 2354.94 +2.5 1644.72 +2.99884 242.97 +3.25 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_M1969SF.eng b/data/motors/solid_thrust_curves/loki/Loki_M1969SF.eng new file mode 100644 index 000000000..5b8a46047 --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_M1969SF.eng @@ -0,0 +1,28 @@ +M1969SF 75 1038 P 4.266 7.189 Loki + 0.036 263.323 + 0.044 1504.064 + 0.075 2204.77 + 0.087 2356.515 + 0.186 2204.77 + 0.23 2280.643 + 0.274 2240.475 + 0.503 2347.589 + 1.003 2432.388 + 1.058 2454.703 + 1.495 2307.421 + 2.002 2236.012 + 2.315 2186.918 + 2.501 2182.454 + 2.628 2169.065 + 2.815 2244.938 + 2.882 2191.381 + 3.045 1338.929 + 3.096 1142.553 + 3.164 1044.365 + 3.267 964.029 + 3.378 807.821 + 3.5 504.33 + 3.639 267.786 + 3.77 102.651 + 3.881 22.315 + 3.96 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_M3000-LW.eng b/data/motors/solid_thrust_curves/loki/Loki_M3000-LW.eng new file mode 100644 index 000000000..66fcb1b45 --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_M3000-LW.eng @@ -0,0 +1,27 @@ +; +M3000-LW 76 1038 P 4.064 6.857 Loki +0.083333 3234.3980 +0.166666 3626.9781 +0.333333 4104.8876 +0.5 4045.3220 +0.666667 3824.0989 +0.833333 3649.3737 +1.0 3669.9088 +1.166667 3815.3653 +1.333333 3859.8580 +1.5 3781.1602 +1.666667 3626.9781 +1.833333 3434.5774 +2.0 3093.3818 +2.166667 2643.3598 +2.333333 2052.4438 +2.416667 950.4439 +2.5 846.5966 +2.666667 764.3097 +2.833333 718.9958 +2.916667 718.7712 +3.0 542.0856 +3.166667 410.3503 +3.333333 272.3106 +3.5 0 +; \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/loki/Loki_M3464LB.eng b/data/motors/solid_thrust_curves/loki/Loki_M3464LB.eng new file mode 100644 index 000000000..03e617782 --- /dev/null +++ b/data/motors/solid_thrust_curves/loki/Loki_M3464LB.eng @@ -0,0 +1,26 @@ +M3464LB 76 1038.2 P 4.464 7.597 Loki + 0.007 4907.495 + 0.02 4008.216 + 0.047 3866.9 + 0.35 3866.9 + 0.502 3866.9 + 0.579 3892.594 + 1.239 4277.999 + 1.808 4303.693 + 1.886 4303.693 + 1.919 4188.071 + 2.0 3404.414 + 2.064 2916.234 + 2.152 2569.369 + 2.242 2569.369 + 2.283 2440.901 + 2.347 1965.567 + 2.384 1541.621 + 2.434 1104.829 + 2.485 835.045 + 2.545 719.423 + 2.596 475.333 + 2.717 205.55 + 2.862 51.387 + 2.976 0.0 +; \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/projeto_jupiter/keron_thrust_curve.csv b/data/motors/solid_thrust_curves/projeto_jupiter/keron_thrust_curve.csv new file mode 100644 index 000000000..0d4824833 --- /dev/null +++ b/data/motors/solid_thrust_curves/projeto_jupiter/keron_thrust_curve.csv @@ -0,0 +1,239 @@ +0,3.8 +0.022,4.24 +0.045,4.4 +0.066,4.36 +0.089,4.45 +0.111,3.27 +0.133,3.96 +0.155,5.39 +0.177,5.77 +0.199,7.11 +0.222,5.75 +0.243,6.36 +0.266,4.68 +0.288,7.01 +0.31,8.95 +0.332,10.7 +0.355,11.99 +0.376,16.53 +0.399,19.97 +0.421,29.57 +0.443,47.23 +0.465,64.95 +0.488,85.69 +0.509,115.33 +0.532,133.29 +0.555,152.07 +0.576,174.19 +0.599,177.25 +0.621,209.11 +0.643,257.64 +0.665,308.79 +0.688,349.76 +0.709,371.89 +0.732,397.14 +0.754,431.41 +0.776,471.36 +0.798,512.89 +0.82,541.64 +0.842,574.61 +0.865,598.73 +0.886,616.87 +0.909,634.24 +0.931,647.33 +0.953,664.37 +0.975,702.8 +0.998,667.83 +1.019,683.02 +1.042,718.29 +1.064,748.13 +1.086,757.11 +1.108,778.3 +1.13,799.31 +1.153,815.7 +1.175,831.02 +1.197,855.63 +1.219,866.8 +1.242,877 +1.263,885.99 +1.286,896.51 +1.308,912.77 +1.33,933.98 +1.352,968.37 +1.375,1008.08 +1.396,1000.84 +1.419,1007.79 +1.441,1043.51 +1.463,1024.67 +1.485,1046.53 +1.508,1068.36 +1.529,1066.32 +1.552,1058.33 +1.573,1062.38 +1.596,1065.33 +1.618,1056.14 +1.64,1047.75 +1.662,1024.83 +1.685,1003.99 +1.707,986.5 +1.729,962.47 +1.751,940.92 +1.773,922.59 +1.796,909.34 +1.817,869 +1.84,867.52 +1.862,848.35 +1.884,829.9 +1.906,773.38 +1.929,751.69 +1.95,709.27 +1.973,988.31 +1.994,832 +2.017,726.36 +2.039,615.08 +2.061,583.97 +2.083,538.97 +2.106,507.19 +2.127,484.17 +2.15,476.66 +2.172,459.9 +2.194,434.45 +2.216,409.82 +2.238,406.57 +2.26,392.96 +2.283,378.46 +2.305,356 +2.327,318.1 +2.35,295.23 +2.371,274.64 +2.394,258.5 +2.416,252.18 +2.438,232.4 +2.46,209.86 +2.483,196.54 +2.504,185.79 +2.527,174.41 +2.548,159.31 +2.571,145.07 +2.593,132.37 +2.615,116.62 +2.637,101.5 +2.659,90.1 +2.681,82.67 +2.704,74.9 +2.725,71.72 +2.748,68.25 +2.77,66.96 +2.792,62.71 +2.814,60.84 +2.837,59.91 +2.859,58.43 +2.881,56.31 +2.903,56.17 +2.925,54.23 +2.948,52.31 +2.969,51.41 +2.992,51.09 +3.014,50.19 +3.036,48.11 +3.058,47 +3.081,46.79 +3.102,44.98 +3.125,43.66 +3.147,43.64 +3.169,42.73 +3.191,40.87 +3.213,39.45 +3.235,38.33 +3.258,37.66 +3.279,36.11 +3.302,35.99 +3.324,34.93 +3.346,34.76 +3.368,33.6 +3.391,33.06 +3.412,31.75 +3.435,31.79 +3.458,32.1 +3.479,30.96 +3.502,30.12 +3.523,29.68 +3.546,30.49 +3.568,28.77 +3.59,28.18 +3.612,24.73 +3.635,24.51 +3.656,22.38 +3.679,23.89 +3.701,22.29 +3.723,22.29 +3.745,22.54 +3.768,22.46 +3.789,21.23 +3.812,22.26 +3.833,19.41 +3.856,19.37 +3.878,20.65 +3.9,18.56 +3.922,17.91 +3.945,18.5 +3.966,18.61 +3.989,14.31 +4.012,17.72 +4.033,16.02 +4.056,15.73 +4.077,17.18 +4.1,15.02 +4.122,11.43 +4.144,15.18 +4.166,14.21 +4.188,5.26 +4.21,7.55 +4.233,10.93 +4.254,8.5 +4.277,5.74 +4.299,10.15 +4.321,9.34 +4.343,10.59 +4.366,5.36 +4.387,8.44 +4.41,7.13 +4.432,10.33 +4.454,8.18 +4.476,9.18 +4.498,7.54 +4.52,8.39 +4.543,8.33 +4.564,6.81 +4.587,7.39 +4.61,7.89 +4.631,7.21 +4.654,6.18 +4.676,7.66 +4.698,6.61 +4.72,5.05 +4.743,5.78 +4.764,6.51 +4.787,5.7 +4.808,5.93 +4.831,6.63 +4.853,5.8 +4.875,5.82 +4.897,6.33 +4.92,5.76 +4.941,5.18 +4.964,6.1 +4.986,5.96 +5.008,5.45 +5.03,5.8 +5.053,6.17 +5.074,5.9 +5.097,5.64 +5.118,5.91 +5.141,5.81 +5.164,5.53 +5.185,5.68 +5.208,5.94 +5.23,5.5 +5.252,5.68 +5.274,5.89 diff --git a/data/motors/solid_thrust_curves/projeto_jupiter/mandioca_thrust_curve.csv b/data/motors/solid_thrust_curves/projeto_jupiter/mandioca_thrust_curve.csv new file mode 100644 index 000000000..bf8dfa855 --- /dev/null +++ b/data/motors/solid_thrust_curves/projeto_jupiter/mandioca_thrust_curve.csv @@ -0,0 +1,262 @@ +0,8.833374233 +0.021,11.49337423 +0.044,15.42337423 +0.066,19.28337423 +0.088,26.82337423 +0.11,44.28337423 +0.133,86.71337423 +0.154,164.4733742 +0.177,228.5733742 +0.199,264.5133742 +0.221,313.8433742 +0.243,366.7733742 +0.266,436.2733742 +0.287,495.1733742 +0.31,552.7533742 +0.331,616.6033742 +0.354,693.9433742 +0.376,756.2033742 +0.398,822.1333742 +0.42,873.4833742 +0.443,932.0733742 +0.465,967.9233742 +0.487,1020.083374 +0.51,1022.433374 +0.531,1024.803374 +0.554,1175.883374 +0.576,1213.033374 +0.598,1260.673374 +0.62,1305.063374 +0.643,1354.513374 +0.664,1389.243374 +0.687,1425.103374 +0.709,1462.843374 +0.731,1501.813374 +0.753,1538.553374 +0.776,1567.673374 +0.797,1589.763374 +0.82,1617.893374 +0.842,1658.293374 +0.864,1683.533374 +0.886,1694.973374 +0.908,1720.323374 +0.93,1738.363374 +0.953,1759.013374 +0.974,1783.513374 +0.997,1799.493374 +1.02,1814.353374 +1.041,1840.983374 +1.064,1857.333374 +1.086,1869.913374 +1.108,1879.223374 +1.13,1900.233374 +1.153,1922.843374 +1.174,1944.683374 +1.197,1951.393374 +1.218,1960.173374 +1.241,1984.423374 +1.263,1989.143374 +1.285,2008.673374 +1.307,2028.343374 +1.33,2040.393374 +1.351,2041.013374 +1.374,2038.143374 +1.396,2057.843374 +1.418,2080.603374 +1.44,2093.283374 +1.463,2098.973374 +1.484,2112.323374 +1.507,2127.623374 +1.529,2137.473374 +1.551,2150.843374 +1.574,2157.783374 +1.595,2162.123374 +1.618,2174.663374 +1.64,2183.853374 +1.662,2201.373374 +1.684,2195.873374 +1.707,2192.043374 +1.728,2191.503374 +1.751,2193.673374 +1.773,2200.313374 +1.795,2226.553374 +1.817,2233.733374 +1.84,2217.253374 +1.861,2222.273374 +1.884,2227.133374 +1.905,2227.393374 +1.928,2229.893374 +1.95,2234.733374 +1.972,2241.923374 +1.994,2256.843374 +2.017,2260.183374 +2.038,2238.693374 +2.061,2236.993374 +2.083,2233.283374 +2.105,2226.143374 +2.128,2224.083374 +2.15,2220.133374 +2.172,2217.073374 +2.194,2230.903374 +2.217,2220.353374 +2.238,2207.423374 +2.261,2207.983374 +2.282,2204.033374 +2.305,2202.523374 +2.327,2205.643374 +2.349,2204.213374 +2.371,2210.513374 +2.394,2200.713374 +2.415,2211.593374 +2.438,2229.933374 +2.46,2240.333374 +2.482,2252.603374 +2.504,2252.083374 +2.527,2262.953374 +2.548,2246.483374 +2.571,2258.103374 +2.593,2279.303374 +2.615,2281.823374 +2.637,2315.403374 +2.659,2322.603374 +2.681,2354.033374 +2.704,2398.333374 +2.726,2412.863374 +2.748,2417.593374 +2.771,2411.443374 +2.792,2397.153374 +2.815,2394.083374 +2.837,2398.543374 +2.859,2395.253374 +2.881,2381.003374 +2.904,2395.873374 +2.925,2394.453374 +2.948,2397.433374 +2.969,2413.993374 +2.992,2438.733374 +3.014,2448.333374 +3.036,2439.193374 +3.058,2445.703374 +3.081,2456.483374 +3.102,2519.983374 +3.125,2591.143374 +3.147,2602.703374 +3.169,2584.013374 +3.191,2572.683374 +3.214,2559.823374 +3.235,2586.133374 +3.258,2606.033374 +3.281,2587.533374 +3.302,2570.763374 +3.325,2587.223374 +3.346,2583.453374 +3.369,2581.913374 +3.391,2580.343374 +3.413,2562.013374 +3.435,2540.843374 +3.458,2538.213374 +3.479,2520.533374 +3.502,2522.563374 +3.524,2505.533374 +3.546,2488.943374 +3.568,2482.323374 +3.591,2477.983374 +3.612,2477.343374 +3.635,2458.543374 +3.657,2449.643374 +3.679,2438.923374 +3.701,2422.363374 +3.723,2391.533374 +3.745,2369.393374 +3.768,2352.863374 +3.789,2330.323374 +3.812,2299.213374 +3.835,2261.293374 +3.856,2227.583374 +3.879,2195.643374 +3.901,2174.833374 +3.923,2152.393374 +3.945,2124.963374 +3.968,2090.963374 +3.989,2059.423374 +4.012,2019.563374 +4.034,1970.493374 +4.056,1925.473374 +4.078,1893.403374 +4.1,1856.593374 +4.122,1817.243374 +4.145,1798.533374 +4.166,1754.993374 +4.189,1723.873374 +4.211,1687.183374 +4.233,1640.833374 +4.255,1600.973374 +4.278,1566.913374 +4.299,1542.583374 +4.322,1521.503374 +4.344,1480.203374 +4.366,1446.063374 +4.388,1416.123374 +4.41,1388.833374 +4.433,1372.493374 +4.455,1343.443374 +4.477,1316.823374 +4.499,1283.513374 +4.522,1233.703374 +4.543,1208.393374 +4.566,1170.733374 +4.588,1140.503374 +4.61,1121.533374 +4.632,1103.753374 +4.655,1075.353374 +4.676,1039.663374 +4.699,1004.243374 +4.72,959.9233742 +4.743,932.7133742 +4.765,904.9433742 +4.787,882.7033742 +4.809,855.9733742 +4.832,824.0833742 +4.853,794.2633742 +4.876,768.8433742 +4.897,731.2533742 +4.92,702.8933742 +4.942,685.4033742 +4.964,652.0133742 +4.987,625.6933742 +5.009,597.4333742 +5.031,571.8533742 +5.053,548.6833742 +5.076,518.8333742 +5.097,500.9133742 +5.12,479.2433742 +5.142,458.4833742 +5.164,437.4633742 +5.186,418.0433742 +5.209,394.8033742 +5.23,371.0233742 +5.253,348.3433742 +5.274,328.2733742 +5.297,290.1833742 +5.319,277.4333742 +5.341,255.9733742 +5.363,232.7233742 +5.386,215.1533742 +5.407,198.1633742 +5.43,179.4933742 +5.452,173.9833742 +5.474,155.8333742 +5.496,140.4333742 +5.519,123.4333742 +5.54,97.55337423 +5.563,78.83337423 +5.585,64.95337423 +5.607,51.59337423 +5.63,34.10337423 +5.651,21.98337423 +5.674,10.53337423 +5.695,-6.776625767 +5.718,-22.18662577 +5.74,-32.04662577 +5.762,-40.03662577 +5.784,-47.32662577 From 1d725e55bc3233cb05d21b19cd99c69a6e5fc12f Mon Sep 17 00:00:00 2001 From: caioessouza Date: Mon, 2 Dec 2024 20:12:18 -0300 Subject: [PATCH 2/4] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1197708a..becff0614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,7 @@ Attention: The newest changes should be on top --> ### Added +- ENH: create a dataset of pre-registered motors. See #664 [#744](https://github.com/RocketPy-Team/RocketPy/pull/744) - DOC: GENESIS Flight Example [#734](https://github.com/RocketPy-Team/RocketPy/pull/734) - DOC: Camoes Flight Example [#733](https://github.com/RocketPy-Team/RocketPy/pull/733) - ENH: Callback function for collecting additional data from Monte Carlo sims [#702](https://github.com/RocketPy-Team/RocketPy/pull/702) From 378874e520b7fbd66d37dfe4e558b5843b90e94b Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR Date: Fri, 6 Dec 2024 23:12:09 -0300 Subject: [PATCH 3/4] MNT: git rename motor eng files in data folder --- .../aerotech/AeroTech_HP-L1000W.eng | 0 .../aerotech/AeroTech_K1000T.eng | 0 .../aerotech/AeroTech_K400C.eng | 0 .../aerotech/AeroTech_K480W.eng | 0 .../aerotech/AeroTech_K990DM.eng | 0 .../aerotech/AeroTech_L1040DM.eng | 0 .../aerotech/AeroTech_L1940X.eng | 0 .../aerotech/AeroTech_L2200G.eng | 0 .../aerotech/AeroTech_L2775ST-PS.eng | 0 .../aerotech/AeroTech_M1075DM.eng | 0 .../aerotech/AeroTech_M1305M.eng | 0 .../aerotech/AeroTech_M1340W.eng | 0 .../aerotech/AeroTech_M1845NT.eng | 0 .../aerotech/AeroTech_M1939W.eng | 0 .../aerotech/AeroTech_M2100G.eng | 0 .../aerotech/AeroTech_M650W.eng | 0 .../aerotech/AeroTech_M750W.eng | 0 .../AMW_1791K710-P.eng | 0 .../AMW_2245K1075-P.eng | 0 .../AMW_2730L1276-P.eng | 0 .../AMW_4701L1290-P.eng | 0 .../AMW_6774M2050-P.eng | 0 .../AMW_8212M1630-P.eng | 0 .../AMW_K475.eng | 0 .../cesaroni/Cesaroni_1281K360-13A.eng | 0 .../cesaroni/Cesaroni_1597K400-14A.eng | 0 .../cesaroni/Cesaroni_1990K490-16A.eng | 0 .../cesaroni/Cesaroni_2285K260-P.eng | 0 .../cesaroni/Cesaroni_2546K300-P.eng | 0 .../cesaroni/Cesaroni_2772L640-P.eng | 0 .../cesaroni/Cesaroni_3147L935-P.eng | 0 .../cesaroni/Cesaroni_3683L851-P.eng | 0 .../cesaroni/Cesaroni_4263L1350-P.eng | 0 .../cesaroni/Cesaroni_4937L395-P.eng | 0 .../cesaroni/Cesaroni_5472M2250-P.eng | 0 .../cesaroni/Cesaroni_6118M3100-P.eng | 0 .../cesaroni/Cesaroni_6438M1300-P.eng | 0 .../cesaroni/Cesaroni_7388M2045-P.eng | 0 .../cesaroni/Cesaroni_7545M1590-P.eng | 0 .../cesaroni/Cesaroni_8088M1790-P.eng | 0 .../cesaroni/Cesaroni_8634M6400-P.eng | 0 .../cesaroni/Cesaroni_9977M2245-P.eng | 0 .../loki/Loki_K1127-LB.eng | 0 .../loki/Loki_K350-LW.eng | 0 .../loki/Loki_K830-SF.eng | 0 .../loki/Loki_K960-LW.eng | 0 .../loki/Loki_L2050LW.eng | 0 .../loki/Loki_L780-SF.eng | 0 .../loki/Loki_L840CT.eng | 0 .../loki/Loki_L930-LW.eng | 0 .../loki/Loki_M1378LR.eng | 0 .../loki/Loki_M1882-LW.eng | 0 .../loki/Loki_M1969SF.eng | 0 .../loki/Loki_M3000-LW.eng | 0 .../loki/Loki_M3464LB.eng | 0 .../aerotech/AeroTech_K828FJ.eng | 30 -- .../cesaroni/Cesaroni_3618L995-P.eng | 14 - .../cesaroni/Cesaroni_4895L1395-P.eng | 14 - .../cesaroni/Cesaroni_7579M1520-P.eng | 13 - .../cesaroni/Cesaroni_M1670.eng | 16 -- .../cesaroni/Cesaroni_M1670_shifted.eng | 17 -- .../projeto_jupiter/keron_thrust_curve.csv | 239 ---------------- .../projeto_jupiter/mandioca_thrust_curve.csv | 262 ------------------ 63 files changed, 605 deletions(-) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_HP-L1000W.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_K1000T.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_K400C.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_K480W.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_K990DM.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_L1040DM.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_L1940X.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_L2200G.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_L2775ST-PS.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_M1075DM.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_M1305M.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_M1340W.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_M1845NT.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_M1939W.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_M2100G.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_M650W.eng (100%) rename data/motors/{solid_thrust_curves => }/aerotech/AeroTech_M750W.eng (100%) rename data/motors/{solid_thrust_curves/animal_motor => animal-motor}/AMW_1791K710-P.eng (100%) rename data/motors/{solid_thrust_curves/animal_motor => animal-motor}/AMW_2245K1075-P.eng (100%) rename data/motors/{solid_thrust_curves/animal_motor => animal-motor}/AMW_2730L1276-P.eng (100%) rename data/motors/{solid_thrust_curves/animal_motor => animal-motor}/AMW_4701L1290-P.eng (100%) rename data/motors/{solid_thrust_curves/animal_motor => animal-motor}/AMW_6774M2050-P.eng (100%) rename data/motors/{solid_thrust_curves/animal_motor => animal-motor}/AMW_8212M1630-P.eng (100%) rename data/motors/{solid_thrust_curves/animal_motor => animal-motor}/AMW_K475.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_1281K360-13A.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_1597K400-14A.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_1990K490-16A.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_2285K260-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_2546K300-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_2772L640-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_3147L935-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_3683L851-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_4263L1350-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_4937L395-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_5472M2250-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_6118M3100-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_6438M1300-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_7388M2045-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_7545M1590-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_8088M1790-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_8634M6400-P.eng (100%) rename data/motors/{solid_thrust_curves => }/cesaroni/Cesaroni_9977M2245-P.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_K1127-LB.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_K350-LW.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_K830-SF.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_K960-LW.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_L2050LW.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_L780-SF.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_L840CT.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_L930-LW.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_M1378LR.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_M1882-LW.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_M1969SF.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_M3000-LW.eng (100%) rename data/motors/{solid_thrust_curves => }/loki/Loki_M3464LB.eng (100%) delete mode 100644 data/motors/solid_thrust_curves/aerotech/AeroTech_K828FJ.eng delete mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_3618L995-P.eng delete mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_4895L1395-P.eng delete mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_7579M1520-P.eng delete mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670.eng delete mode 100644 data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670_shifted.eng delete mode 100644 data/motors/solid_thrust_curves/projeto_jupiter/keron_thrust_curve.csv delete mode 100644 data/motors/solid_thrust_curves/projeto_jupiter/mandioca_thrust_curve.csv diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_HP-L1000W.eng b/data/motors/aerotech/AeroTech_HP-L1000W.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_HP-L1000W.eng rename to data/motors/aerotech/AeroTech_HP-L1000W.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K1000T.eng b/data/motors/aerotech/AeroTech_K1000T.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_K1000T.eng rename to data/motors/aerotech/AeroTech_K1000T.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K400C.eng b/data/motors/aerotech/AeroTech_K400C.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_K400C.eng rename to data/motors/aerotech/AeroTech_K400C.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K480W.eng b/data/motors/aerotech/AeroTech_K480W.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_K480W.eng rename to data/motors/aerotech/AeroTech_K480W.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K990DM.eng b/data/motors/aerotech/AeroTech_K990DM.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_K990DM.eng rename to data/motors/aerotech/AeroTech_K990DM.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_L1040DM.eng b/data/motors/aerotech/AeroTech_L1040DM.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_L1040DM.eng rename to data/motors/aerotech/AeroTech_L1040DM.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_L1940X.eng b/data/motors/aerotech/AeroTech_L1940X.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_L1940X.eng rename to data/motors/aerotech/AeroTech_L1940X.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_L2200G.eng b/data/motors/aerotech/AeroTech_L2200G.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_L2200G.eng rename to data/motors/aerotech/AeroTech_L2200G.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_L2775ST-PS.eng b/data/motors/aerotech/AeroTech_L2775ST-PS.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_L2775ST-PS.eng rename to data/motors/aerotech/AeroTech_L2775ST-PS.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1075DM.eng b/data/motors/aerotech/AeroTech_M1075DM.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_M1075DM.eng rename to data/motors/aerotech/AeroTech_M1075DM.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1305M.eng b/data/motors/aerotech/AeroTech_M1305M.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_M1305M.eng rename to data/motors/aerotech/AeroTech_M1305M.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1340W.eng b/data/motors/aerotech/AeroTech_M1340W.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_M1340W.eng rename to data/motors/aerotech/AeroTech_M1340W.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1845NT.eng b/data/motors/aerotech/AeroTech_M1845NT.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_M1845NT.eng rename to data/motors/aerotech/AeroTech_M1845NT.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M1939W.eng b/data/motors/aerotech/AeroTech_M1939W.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_M1939W.eng rename to data/motors/aerotech/AeroTech_M1939W.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M2100G.eng b/data/motors/aerotech/AeroTech_M2100G.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_M2100G.eng rename to data/motors/aerotech/AeroTech_M2100G.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M650W.eng b/data/motors/aerotech/AeroTech_M650W.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_M650W.eng rename to data/motors/aerotech/AeroTech_M650W.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_M750W.eng b/data/motors/aerotech/AeroTech_M750W.eng similarity index 100% rename from data/motors/solid_thrust_curves/aerotech/AeroTech_M750W.eng rename to data/motors/aerotech/AeroTech_M750W.eng diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_1791K710-P.eng b/data/motors/animal-motor/AMW_1791K710-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/animal_motor/AMW_1791K710-P.eng rename to data/motors/animal-motor/AMW_1791K710-P.eng diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_2245K1075-P.eng b/data/motors/animal-motor/AMW_2245K1075-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/animal_motor/AMW_2245K1075-P.eng rename to data/motors/animal-motor/AMW_2245K1075-P.eng diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_2730L1276-P.eng b/data/motors/animal-motor/AMW_2730L1276-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/animal_motor/AMW_2730L1276-P.eng rename to data/motors/animal-motor/AMW_2730L1276-P.eng diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_4701L1290-P.eng b/data/motors/animal-motor/AMW_4701L1290-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/animal_motor/AMW_4701L1290-P.eng rename to data/motors/animal-motor/AMW_4701L1290-P.eng diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_6774M2050-P.eng b/data/motors/animal-motor/AMW_6774M2050-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/animal_motor/AMW_6774M2050-P.eng rename to data/motors/animal-motor/AMW_6774M2050-P.eng diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_8212M1630-P.eng b/data/motors/animal-motor/AMW_8212M1630-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/animal_motor/AMW_8212M1630-P.eng rename to data/motors/animal-motor/AMW_8212M1630-P.eng diff --git a/data/motors/solid_thrust_curves/animal_motor/AMW_K475.eng b/data/motors/animal-motor/AMW_K475.eng similarity index 100% rename from data/motors/solid_thrust_curves/animal_motor/AMW_K475.eng rename to data/motors/animal-motor/AMW_K475.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1281K360-13A.eng b/data/motors/cesaroni/Cesaroni_1281K360-13A.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_1281K360-13A.eng rename to data/motors/cesaroni/Cesaroni_1281K360-13A.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1597K400-14A.eng b/data/motors/cesaroni/Cesaroni_1597K400-14A.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_1597K400-14A.eng rename to data/motors/cesaroni/Cesaroni_1597K400-14A.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_1990K490-16A.eng b/data/motors/cesaroni/Cesaroni_1990K490-16A.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_1990K490-16A.eng rename to data/motors/cesaroni/Cesaroni_1990K490-16A.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2285K260-P.eng b/data/motors/cesaroni/Cesaroni_2285K260-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_2285K260-P.eng rename to data/motors/cesaroni/Cesaroni_2285K260-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2546K300-P.eng b/data/motors/cesaroni/Cesaroni_2546K300-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_2546K300-P.eng rename to data/motors/cesaroni/Cesaroni_2546K300-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_2772L640-P.eng b/data/motors/cesaroni/Cesaroni_2772L640-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_2772L640-P.eng rename to data/motors/cesaroni/Cesaroni_2772L640-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3147L935-P.eng b/data/motors/cesaroni/Cesaroni_3147L935-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_3147L935-P.eng rename to data/motors/cesaroni/Cesaroni_3147L935-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3683L851-P.eng b/data/motors/cesaroni/Cesaroni_3683L851-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_3683L851-P.eng rename to data/motors/cesaroni/Cesaroni_3683L851-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4263L1350-P.eng b/data/motors/cesaroni/Cesaroni_4263L1350-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_4263L1350-P.eng rename to data/motors/cesaroni/Cesaroni_4263L1350-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4937L395-P.eng b/data/motors/cesaroni/Cesaroni_4937L395-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_4937L395-P.eng rename to data/motors/cesaroni/Cesaroni_4937L395-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_5472M2250-P.eng b/data/motors/cesaroni/Cesaroni_5472M2250-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_5472M2250-P.eng rename to data/motors/cesaroni/Cesaroni_5472M2250-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_6118M3100-P.eng b/data/motors/cesaroni/Cesaroni_6118M3100-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_6118M3100-P.eng rename to data/motors/cesaroni/Cesaroni_6118M3100-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_6438M1300-P.eng b/data/motors/cesaroni/Cesaroni_6438M1300-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_6438M1300-P.eng rename to data/motors/cesaroni/Cesaroni_6438M1300-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7388M2045-P.eng b/data/motors/cesaroni/Cesaroni_7388M2045-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_7388M2045-P.eng rename to data/motors/cesaroni/Cesaroni_7388M2045-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7545M1590-P.eng b/data/motors/cesaroni/Cesaroni_7545M1590-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_7545M1590-P.eng rename to data/motors/cesaroni/Cesaroni_7545M1590-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_8088M1790-P.eng b/data/motors/cesaroni/Cesaroni_8088M1790-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_8088M1790-P.eng rename to data/motors/cesaroni/Cesaroni_8088M1790-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_8634M6400-P.eng b/data/motors/cesaroni/Cesaroni_8634M6400-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_8634M6400-P.eng rename to data/motors/cesaroni/Cesaroni_8634M6400-P.eng diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_9977M2245-P.eng b/data/motors/cesaroni/Cesaroni_9977M2245-P.eng similarity index 100% rename from data/motors/solid_thrust_curves/cesaroni/Cesaroni_9977M2245-P.eng rename to data/motors/cesaroni/Cesaroni_9977M2245-P.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_K1127-LB.eng b/data/motors/loki/Loki_K1127-LB.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_K1127-LB.eng rename to data/motors/loki/Loki_K1127-LB.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_K350-LW.eng b/data/motors/loki/Loki_K350-LW.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_K350-LW.eng rename to data/motors/loki/Loki_K350-LW.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_K830-SF.eng b/data/motors/loki/Loki_K830-SF.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_K830-SF.eng rename to data/motors/loki/Loki_K830-SF.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_K960-LW.eng b/data/motors/loki/Loki_K960-LW.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_K960-LW.eng rename to data/motors/loki/Loki_K960-LW.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_L2050LW.eng b/data/motors/loki/Loki_L2050LW.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_L2050LW.eng rename to data/motors/loki/Loki_L2050LW.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_L780-SF.eng b/data/motors/loki/Loki_L780-SF.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_L780-SF.eng rename to data/motors/loki/Loki_L780-SF.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_L840CT.eng b/data/motors/loki/Loki_L840CT.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_L840CT.eng rename to data/motors/loki/Loki_L840CT.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_L930-LW.eng b/data/motors/loki/Loki_L930-LW.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_L930-LW.eng rename to data/motors/loki/Loki_L930-LW.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_M1378LR.eng b/data/motors/loki/Loki_M1378LR.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_M1378LR.eng rename to data/motors/loki/Loki_M1378LR.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_M1882-LW.eng b/data/motors/loki/Loki_M1882-LW.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_M1882-LW.eng rename to data/motors/loki/Loki_M1882-LW.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_M1969SF.eng b/data/motors/loki/Loki_M1969SF.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_M1969SF.eng rename to data/motors/loki/Loki_M1969SF.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_M3000-LW.eng b/data/motors/loki/Loki_M3000-LW.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_M3000-LW.eng rename to data/motors/loki/Loki_M3000-LW.eng diff --git a/data/motors/solid_thrust_curves/loki/Loki_M3464LB.eng b/data/motors/loki/Loki_M3464LB.eng similarity index 100% rename from data/motors/solid_thrust_curves/loki/Loki_M3464LB.eng rename to data/motors/loki/Loki_M3464LB.eng diff --git a/data/motors/solid_thrust_curves/aerotech/AeroTech_K828FJ.eng b/data/motors/solid_thrust_curves/aerotech/AeroTech_K828FJ.eng deleted file mode 100644 index 140eacca5..000000000 --- a/data/motors/solid_thrust_curves/aerotech/AeroTech_K828FJ.eng +++ /dev/null @@ -1,30 +0,0 @@ -; -K828FJ 54.0 579.00 6-10-14-18 1.45000 2.25500 AT - 0.01 1112.06 - 0.02 1238.60 - 0.04 1303.79 - 0.06 1135.06 - 0.08 1077.54 - 0.13 1031.53 - 0.20 1016.19 - 0.50 993.18 - 0.65 1004.68 - 1.00 985.51 - 1.08 974.01 - 1.19 974.01 - 1.42 954.83 - 1.51 935.66 - 1.69 912.65 - 1.75 885.81 - 1.83 893.48 - 1.89 843.63 - 1.95 774.60 - 2.00 667.23 - 2.15 444.82 - 2.20 364.29 - 2.23 260.76 - 2.27 184.06 - 2.33 111.21 - 2.39 49.85 - 2.50 0.00 -; \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3618L995-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3618L995-P.eng deleted file mode 100644 index f141c7c9d..000000000 --- a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_3618L995-P.eng +++ /dev/null @@ -1,14 +0,0 @@ -L995-RL 75 486 0 1.996 3.591 CTI -0.02 50 -0.05 200 -0.09 1110 -0.14 1250 -0.25 1211 -0.9 1220 -1.2 1280 -1.4 1245 -2.4 940 -3.1 745 -3.32 740 -3.6 110 -3.8 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4895L1395-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4895L1395-P.eng deleted file mode 100644 index 3a5e47ead..000000000 --- a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_4895L1395-P.eng +++ /dev/null @@ -1,14 +0,0 @@ -L1395-BS 75 621 0 2.475 4.323 CTI -0.02 100 -0.04 1400 -0.1 1800 -0.2 1500 -0.4 1540 -0.8 1591 -1.1 1641 -2.4 1481 -2.8 1446 -3 1500 -3.18 830 -3.35 100 -3.45 0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7579M1520-P.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7579M1520-P.eng deleted file mode 100644 index 6b1ff8ef2..000000000 --- a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_7579M1520-P.eng +++ /dev/null @@ -1,13 +0,0 @@ -; Pro98-3G 7579M1520-BS P -M1520-BS 98 548 P 3.737 6.718 CTI - 0.04 1427.795 - 0.082 1706.389 - 0.176 1620.489 - 0.748 1734.249 - 1.652 1827.113 - 2.676 1715.676 - 3.89 1423.152 - 4.399 1404.579 - 4.616 661.661 - 4.877 69.649 - 4.897 0.0 \ No newline at end of file diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670.eng deleted file mode 100644 index bf6a12073..000000000 --- a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670.eng +++ /dev/null @@ -1,16 +0,0 @@ -M1670-BS 75 757 0 3.101 5.231 CTI -0.055 100 -0.092 1500 -0.1 2000 -0.15 2200 -0.2 1800 -0.5 1950 -1 2034 -1.5 2000 -2 1900 -2.5 1760 -2.9 1700 -3 1650 -3.3 530 -3.4 350 -3.9 0 diff --git a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670_shifted.eng b/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670_shifted.eng deleted file mode 100644 index 6846204b8..000000000 --- a/data/motors/solid_thrust_curves/cesaroni/Cesaroni_M1670_shifted.eng +++ /dev/null @@ -1,17 +0,0 @@ -M1670-BS 75 757 0 3.101 5.231 CTI -0.155 100 -0.192 1500 -0.2 2000 -0.25 2200 -0.3 1800 -0.6 1950 -1.1 2034 -1.6 2000 -2.1 1900 -2.6 1760 -3 1700 -3.1 1650 -3.4 530 -3.5 350 -4.0 0; this is a comment -; this is a last line comment diff --git a/data/motors/solid_thrust_curves/projeto_jupiter/keron_thrust_curve.csv b/data/motors/solid_thrust_curves/projeto_jupiter/keron_thrust_curve.csv deleted file mode 100644 index 0d4824833..000000000 --- a/data/motors/solid_thrust_curves/projeto_jupiter/keron_thrust_curve.csv +++ /dev/null @@ -1,239 +0,0 @@ -0,3.8 -0.022,4.24 -0.045,4.4 -0.066,4.36 -0.089,4.45 -0.111,3.27 -0.133,3.96 -0.155,5.39 -0.177,5.77 -0.199,7.11 -0.222,5.75 -0.243,6.36 -0.266,4.68 -0.288,7.01 -0.31,8.95 -0.332,10.7 -0.355,11.99 -0.376,16.53 -0.399,19.97 -0.421,29.57 -0.443,47.23 -0.465,64.95 -0.488,85.69 -0.509,115.33 -0.532,133.29 -0.555,152.07 -0.576,174.19 -0.599,177.25 -0.621,209.11 -0.643,257.64 -0.665,308.79 -0.688,349.76 -0.709,371.89 -0.732,397.14 -0.754,431.41 -0.776,471.36 -0.798,512.89 -0.82,541.64 -0.842,574.61 -0.865,598.73 -0.886,616.87 -0.909,634.24 -0.931,647.33 -0.953,664.37 -0.975,702.8 -0.998,667.83 -1.019,683.02 -1.042,718.29 -1.064,748.13 -1.086,757.11 -1.108,778.3 -1.13,799.31 -1.153,815.7 -1.175,831.02 -1.197,855.63 -1.219,866.8 -1.242,877 -1.263,885.99 -1.286,896.51 -1.308,912.77 -1.33,933.98 -1.352,968.37 -1.375,1008.08 -1.396,1000.84 -1.419,1007.79 -1.441,1043.51 -1.463,1024.67 -1.485,1046.53 -1.508,1068.36 -1.529,1066.32 -1.552,1058.33 -1.573,1062.38 -1.596,1065.33 -1.618,1056.14 -1.64,1047.75 -1.662,1024.83 -1.685,1003.99 -1.707,986.5 -1.729,962.47 -1.751,940.92 -1.773,922.59 -1.796,909.34 -1.817,869 -1.84,867.52 -1.862,848.35 -1.884,829.9 -1.906,773.38 -1.929,751.69 -1.95,709.27 -1.973,988.31 -1.994,832 -2.017,726.36 -2.039,615.08 -2.061,583.97 -2.083,538.97 -2.106,507.19 -2.127,484.17 -2.15,476.66 -2.172,459.9 -2.194,434.45 -2.216,409.82 -2.238,406.57 -2.26,392.96 -2.283,378.46 -2.305,356 -2.327,318.1 -2.35,295.23 -2.371,274.64 -2.394,258.5 -2.416,252.18 -2.438,232.4 -2.46,209.86 -2.483,196.54 -2.504,185.79 -2.527,174.41 -2.548,159.31 -2.571,145.07 -2.593,132.37 -2.615,116.62 -2.637,101.5 -2.659,90.1 -2.681,82.67 -2.704,74.9 -2.725,71.72 -2.748,68.25 -2.77,66.96 -2.792,62.71 -2.814,60.84 -2.837,59.91 -2.859,58.43 -2.881,56.31 -2.903,56.17 -2.925,54.23 -2.948,52.31 -2.969,51.41 -2.992,51.09 -3.014,50.19 -3.036,48.11 -3.058,47 -3.081,46.79 -3.102,44.98 -3.125,43.66 -3.147,43.64 -3.169,42.73 -3.191,40.87 -3.213,39.45 -3.235,38.33 -3.258,37.66 -3.279,36.11 -3.302,35.99 -3.324,34.93 -3.346,34.76 -3.368,33.6 -3.391,33.06 -3.412,31.75 -3.435,31.79 -3.458,32.1 -3.479,30.96 -3.502,30.12 -3.523,29.68 -3.546,30.49 -3.568,28.77 -3.59,28.18 -3.612,24.73 -3.635,24.51 -3.656,22.38 -3.679,23.89 -3.701,22.29 -3.723,22.29 -3.745,22.54 -3.768,22.46 -3.789,21.23 -3.812,22.26 -3.833,19.41 -3.856,19.37 -3.878,20.65 -3.9,18.56 -3.922,17.91 -3.945,18.5 -3.966,18.61 -3.989,14.31 -4.012,17.72 -4.033,16.02 -4.056,15.73 -4.077,17.18 -4.1,15.02 -4.122,11.43 -4.144,15.18 -4.166,14.21 -4.188,5.26 -4.21,7.55 -4.233,10.93 -4.254,8.5 -4.277,5.74 -4.299,10.15 -4.321,9.34 -4.343,10.59 -4.366,5.36 -4.387,8.44 -4.41,7.13 -4.432,10.33 -4.454,8.18 -4.476,9.18 -4.498,7.54 -4.52,8.39 -4.543,8.33 -4.564,6.81 -4.587,7.39 -4.61,7.89 -4.631,7.21 -4.654,6.18 -4.676,7.66 -4.698,6.61 -4.72,5.05 -4.743,5.78 -4.764,6.51 -4.787,5.7 -4.808,5.93 -4.831,6.63 -4.853,5.8 -4.875,5.82 -4.897,6.33 -4.92,5.76 -4.941,5.18 -4.964,6.1 -4.986,5.96 -5.008,5.45 -5.03,5.8 -5.053,6.17 -5.074,5.9 -5.097,5.64 -5.118,5.91 -5.141,5.81 -5.164,5.53 -5.185,5.68 -5.208,5.94 -5.23,5.5 -5.252,5.68 -5.274,5.89 diff --git a/data/motors/solid_thrust_curves/projeto_jupiter/mandioca_thrust_curve.csv b/data/motors/solid_thrust_curves/projeto_jupiter/mandioca_thrust_curve.csv deleted file mode 100644 index bf8dfa855..000000000 --- a/data/motors/solid_thrust_curves/projeto_jupiter/mandioca_thrust_curve.csv +++ /dev/null @@ -1,262 +0,0 @@ -0,8.833374233 -0.021,11.49337423 -0.044,15.42337423 -0.066,19.28337423 -0.088,26.82337423 -0.11,44.28337423 -0.133,86.71337423 -0.154,164.4733742 -0.177,228.5733742 -0.199,264.5133742 -0.221,313.8433742 -0.243,366.7733742 -0.266,436.2733742 -0.287,495.1733742 -0.31,552.7533742 -0.331,616.6033742 -0.354,693.9433742 -0.376,756.2033742 -0.398,822.1333742 -0.42,873.4833742 -0.443,932.0733742 -0.465,967.9233742 -0.487,1020.083374 -0.51,1022.433374 -0.531,1024.803374 -0.554,1175.883374 -0.576,1213.033374 -0.598,1260.673374 -0.62,1305.063374 -0.643,1354.513374 -0.664,1389.243374 -0.687,1425.103374 -0.709,1462.843374 -0.731,1501.813374 -0.753,1538.553374 -0.776,1567.673374 -0.797,1589.763374 -0.82,1617.893374 -0.842,1658.293374 -0.864,1683.533374 -0.886,1694.973374 -0.908,1720.323374 -0.93,1738.363374 -0.953,1759.013374 -0.974,1783.513374 -0.997,1799.493374 -1.02,1814.353374 -1.041,1840.983374 -1.064,1857.333374 -1.086,1869.913374 -1.108,1879.223374 -1.13,1900.233374 -1.153,1922.843374 -1.174,1944.683374 -1.197,1951.393374 -1.218,1960.173374 -1.241,1984.423374 -1.263,1989.143374 -1.285,2008.673374 -1.307,2028.343374 -1.33,2040.393374 -1.351,2041.013374 -1.374,2038.143374 -1.396,2057.843374 -1.418,2080.603374 -1.44,2093.283374 -1.463,2098.973374 -1.484,2112.323374 -1.507,2127.623374 -1.529,2137.473374 -1.551,2150.843374 -1.574,2157.783374 -1.595,2162.123374 -1.618,2174.663374 -1.64,2183.853374 -1.662,2201.373374 -1.684,2195.873374 -1.707,2192.043374 -1.728,2191.503374 -1.751,2193.673374 -1.773,2200.313374 -1.795,2226.553374 -1.817,2233.733374 -1.84,2217.253374 -1.861,2222.273374 -1.884,2227.133374 -1.905,2227.393374 -1.928,2229.893374 -1.95,2234.733374 -1.972,2241.923374 -1.994,2256.843374 -2.017,2260.183374 -2.038,2238.693374 -2.061,2236.993374 -2.083,2233.283374 -2.105,2226.143374 -2.128,2224.083374 -2.15,2220.133374 -2.172,2217.073374 -2.194,2230.903374 -2.217,2220.353374 -2.238,2207.423374 -2.261,2207.983374 -2.282,2204.033374 -2.305,2202.523374 -2.327,2205.643374 -2.349,2204.213374 -2.371,2210.513374 -2.394,2200.713374 -2.415,2211.593374 -2.438,2229.933374 -2.46,2240.333374 -2.482,2252.603374 -2.504,2252.083374 -2.527,2262.953374 -2.548,2246.483374 -2.571,2258.103374 -2.593,2279.303374 -2.615,2281.823374 -2.637,2315.403374 -2.659,2322.603374 -2.681,2354.033374 -2.704,2398.333374 -2.726,2412.863374 -2.748,2417.593374 -2.771,2411.443374 -2.792,2397.153374 -2.815,2394.083374 -2.837,2398.543374 -2.859,2395.253374 -2.881,2381.003374 -2.904,2395.873374 -2.925,2394.453374 -2.948,2397.433374 -2.969,2413.993374 -2.992,2438.733374 -3.014,2448.333374 -3.036,2439.193374 -3.058,2445.703374 -3.081,2456.483374 -3.102,2519.983374 -3.125,2591.143374 -3.147,2602.703374 -3.169,2584.013374 -3.191,2572.683374 -3.214,2559.823374 -3.235,2586.133374 -3.258,2606.033374 -3.281,2587.533374 -3.302,2570.763374 -3.325,2587.223374 -3.346,2583.453374 -3.369,2581.913374 -3.391,2580.343374 -3.413,2562.013374 -3.435,2540.843374 -3.458,2538.213374 -3.479,2520.533374 -3.502,2522.563374 -3.524,2505.533374 -3.546,2488.943374 -3.568,2482.323374 -3.591,2477.983374 -3.612,2477.343374 -3.635,2458.543374 -3.657,2449.643374 -3.679,2438.923374 -3.701,2422.363374 -3.723,2391.533374 -3.745,2369.393374 -3.768,2352.863374 -3.789,2330.323374 -3.812,2299.213374 -3.835,2261.293374 -3.856,2227.583374 -3.879,2195.643374 -3.901,2174.833374 -3.923,2152.393374 -3.945,2124.963374 -3.968,2090.963374 -3.989,2059.423374 -4.012,2019.563374 -4.034,1970.493374 -4.056,1925.473374 -4.078,1893.403374 -4.1,1856.593374 -4.122,1817.243374 -4.145,1798.533374 -4.166,1754.993374 -4.189,1723.873374 -4.211,1687.183374 -4.233,1640.833374 -4.255,1600.973374 -4.278,1566.913374 -4.299,1542.583374 -4.322,1521.503374 -4.344,1480.203374 -4.366,1446.063374 -4.388,1416.123374 -4.41,1388.833374 -4.433,1372.493374 -4.455,1343.443374 -4.477,1316.823374 -4.499,1283.513374 -4.522,1233.703374 -4.543,1208.393374 -4.566,1170.733374 -4.588,1140.503374 -4.61,1121.533374 -4.632,1103.753374 -4.655,1075.353374 -4.676,1039.663374 -4.699,1004.243374 -4.72,959.9233742 -4.743,932.7133742 -4.765,904.9433742 -4.787,882.7033742 -4.809,855.9733742 -4.832,824.0833742 -4.853,794.2633742 -4.876,768.8433742 -4.897,731.2533742 -4.92,702.8933742 -4.942,685.4033742 -4.964,652.0133742 -4.987,625.6933742 -5.009,597.4333742 -5.031,571.8533742 -5.053,548.6833742 -5.076,518.8333742 -5.097,500.9133742 -5.12,479.2433742 -5.142,458.4833742 -5.164,437.4633742 -5.186,418.0433742 -5.209,394.8033742 -5.23,371.0233742 -5.253,348.3433742 -5.274,328.2733742 -5.297,290.1833742 -5.319,277.4333742 -5.341,255.9733742 -5.363,232.7233742 -5.386,215.1533742 -5.407,198.1633742 -5.43,179.4933742 -5.452,173.9833742 -5.474,155.8333742 -5.496,140.4333742 -5.519,123.4333742 -5.54,97.55337423 -5.563,78.83337423 -5.585,64.95337423 -5.607,51.59337423 -5.63,34.10337423 -5.651,21.98337423 -5.674,10.53337423 -5.695,-6.776625767 -5.718,-22.18662577 -5.74,-32.04662577 -5.762,-40.03662577 -5.784,-47.32662577 From 005e519982febd9a102beed527cf2b2ad4328338 Mon Sep 17 00:00:00 2001 From: caioessouza Date: Mon, 2 Dec 2024 19:35:29 -0300 Subject: [PATCH 4/4] ENH: Create a dataset of pre-registered motors. See #664 I followed the recommendation "Download and save several .eng files in the repo so we can install it along with the rocketpy package itself". The website thrustcurve.org was very useful to search for some .eng files. I mainly focused in some of the main brands on the market: Cesaroni, Aero Tech, Animal Motors and Loki. And also focused on classes K to M, because this is the main range of total impulse that I'm used to seeing in rocketry. I tried to pick motors with a difference of about 300~600Ns in total impulse. Some more improvements than can also be made following this issue are expanding the dataset for whole SolidMotor objects, more than only thrust curves. I think this would be what the recommendation "Save .json files with all the information we may find available on internet" could mean. I decided to go for the simple for now, but having the thrust curves is a good first step to implementing that in the future, which I would totally be able to do! Update CHANGELOG.md MNT: git rename motor eng files in data folder --- CHANGELOG.md | 1 + data/motors/aerotech/AeroTech_HP-L1000W.eng | 26 +++ data/motors/aerotech/AeroTech_K1000T.eng | 36 +++++ data/motors/aerotech/AeroTech_K400C.eng | 25 +++ data/motors/aerotech/AeroTech_K480W.eng | 44 +++++ data/motors/aerotech/AeroTech_K990DM.eng | 34 ++++ data/motors/aerotech/AeroTech_L1040DM.eng | 29 ++++ data/motors/aerotech/AeroTech_L1940X.eng | 22 +++ data/motors/aerotech/AeroTech_L2200G.eng | 39 +++++ data/motors/aerotech/AeroTech_L2775ST-PS.eng | 151 ++++++++++++++++++ data/motors/aerotech/AeroTech_M1075DM.eng | 24 +++ data/motors/aerotech/AeroTech_M1305M.eng | 31 ++++ data/motors/aerotech/AeroTech_M1340W.eng | 28 ++++ data/motors/aerotech/AeroTech_M1845NT.eng | 17 ++ data/motors/aerotech/AeroTech_M1939W.eng | 30 ++++ data/motors/aerotech/AeroTech_M2100G.eng | 50 ++++++ data/motors/aerotech/AeroTech_M650W.eng | 25 +++ data/motors/aerotech/AeroTech_M750W.eng | 24 +++ data/motors/animal-motor/AMW_1791K710-P.eng | 17 ++ data/motors/animal-motor/AMW_2245K1075-P.eng | 41 +++++ data/motors/animal-motor/AMW_2730L1276-P.eng | 24 +++ data/motors/animal-motor/AMW_4701L1290-P.eng | 21 +++ data/motors/animal-motor/AMW_6774M2050-P.eng | 16 ++ data/motors/animal-motor/AMW_8212M1630-P.eng | 19 +++ data/motors/animal-motor/AMW_K475.eng | 37 +++++ .../motors/cesaroni/Cesaroni_1281K360-13A.eng | 13 ++ .../motors/cesaroni/Cesaroni_1597K400-14A.eng | 12 ++ .../motors/cesaroni/Cesaroni_1990K490-16A.eng | 19 +++ data/motors/cesaroni/Cesaroni_2285K260-P.eng | 18 +++ data/motors/cesaroni/Cesaroni_2546K300-P.eng | 21 +++ data/motors/cesaroni/Cesaroni_2772L640-P.eng | 16 ++ data/motors/cesaroni/Cesaroni_3147L935-P.eng | 11 ++ data/motors/cesaroni/Cesaroni_3683L851-P.eng | 13 ++ data/motors/cesaroni/Cesaroni_4263L1350-P.eng | 18 +++ data/motors/cesaroni/Cesaroni_4937L395-P.eng | 16 ++ data/motors/cesaroni/Cesaroni_5472M2250-P.eng | 19 +++ data/motors/cesaroni/Cesaroni_6118M3100-P.eng | 17 ++ data/motors/cesaroni/Cesaroni_6438M1300-P.eng | 19 +++ data/motors/cesaroni/Cesaroni_7388M2045-P.eng | 18 +++ data/motors/cesaroni/Cesaroni_7545M1590-P.eng | 28 ++++ data/motors/cesaroni/Cesaroni_8088M1790-P.eng | 15 ++ data/motors/cesaroni/Cesaroni_8634M6400-P.eng | 15 ++ data/motors/cesaroni/Cesaroni_9977M2245-P.eng | 13 ++ data/motors/loki/Loki_K1127-LB.eng | 37 +++++ data/motors/loki/Loki_K350-LW.eng | 24 +++ data/motors/loki/Loki_K830-SF.eng | 8 + data/motors/loki/Loki_K960-LW.eng | 26 +++ data/motors/loki/Loki_L2050LW.eng | 31 ++++ data/motors/loki/Loki_L780-SF.eng | 10 ++ data/motors/loki/Loki_L840CT.eng | 25 +++ data/motors/loki/Loki_L930-LW.eng | 24 +++ data/motors/loki/Loki_M1378LR.eng | 48 ++++++ data/motors/loki/Loki_M1882-LW.eng | 17 ++ data/motors/loki/Loki_M1969SF.eng | 28 ++++ data/motors/loki/Loki_M3000-LW.eng | 27 ++++ data/motors/loki/Loki_M3464LB.eng | 26 +++ 56 files changed, 1443 insertions(+) create mode 100644 data/motors/aerotech/AeroTech_HP-L1000W.eng create mode 100644 data/motors/aerotech/AeroTech_K1000T.eng create mode 100644 data/motors/aerotech/AeroTech_K400C.eng create mode 100644 data/motors/aerotech/AeroTech_K480W.eng create mode 100644 data/motors/aerotech/AeroTech_K990DM.eng create mode 100644 data/motors/aerotech/AeroTech_L1040DM.eng create mode 100644 data/motors/aerotech/AeroTech_L1940X.eng create mode 100644 data/motors/aerotech/AeroTech_L2200G.eng create mode 100644 data/motors/aerotech/AeroTech_L2775ST-PS.eng create mode 100644 data/motors/aerotech/AeroTech_M1075DM.eng create mode 100644 data/motors/aerotech/AeroTech_M1305M.eng create mode 100644 data/motors/aerotech/AeroTech_M1340W.eng create mode 100644 data/motors/aerotech/AeroTech_M1845NT.eng create mode 100644 data/motors/aerotech/AeroTech_M1939W.eng create mode 100644 data/motors/aerotech/AeroTech_M2100G.eng create mode 100644 data/motors/aerotech/AeroTech_M650W.eng create mode 100644 data/motors/aerotech/AeroTech_M750W.eng create mode 100644 data/motors/animal-motor/AMW_1791K710-P.eng create mode 100644 data/motors/animal-motor/AMW_2245K1075-P.eng create mode 100644 data/motors/animal-motor/AMW_2730L1276-P.eng create mode 100644 data/motors/animal-motor/AMW_4701L1290-P.eng create mode 100644 data/motors/animal-motor/AMW_6774M2050-P.eng create mode 100644 data/motors/animal-motor/AMW_8212M1630-P.eng create mode 100644 data/motors/animal-motor/AMW_K475.eng create mode 100644 data/motors/cesaroni/Cesaroni_1281K360-13A.eng create mode 100644 data/motors/cesaroni/Cesaroni_1597K400-14A.eng create mode 100644 data/motors/cesaroni/Cesaroni_1990K490-16A.eng create mode 100644 data/motors/cesaroni/Cesaroni_2285K260-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_2546K300-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_2772L640-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_3147L935-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_3683L851-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_4263L1350-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_4937L395-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_5472M2250-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_6118M3100-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_6438M1300-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_7388M2045-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_7545M1590-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_8088M1790-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_8634M6400-P.eng create mode 100644 data/motors/cesaroni/Cesaroni_9977M2245-P.eng create mode 100644 data/motors/loki/Loki_K1127-LB.eng create mode 100644 data/motors/loki/Loki_K350-LW.eng create mode 100644 data/motors/loki/Loki_K830-SF.eng create mode 100644 data/motors/loki/Loki_K960-LW.eng create mode 100644 data/motors/loki/Loki_L2050LW.eng create mode 100644 data/motors/loki/Loki_L780-SF.eng create mode 100644 data/motors/loki/Loki_L840CT.eng create mode 100644 data/motors/loki/Loki_L930-LW.eng create mode 100644 data/motors/loki/Loki_M1378LR.eng create mode 100644 data/motors/loki/Loki_M1882-LW.eng create mode 100644 data/motors/loki/Loki_M1969SF.eng create mode 100644 data/motors/loki/Loki_M3000-LW.eng create mode 100644 data/motors/loki/Loki_M3464LB.eng diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d1a988ae..ab45777d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,7 @@ Attention: The newest changes should be on top --> ### Added +- ENH: create a dataset of pre-registered motors. See #664 [#744](https://github.com/RocketPy-Team/RocketPy/pull/744) - DOC: add Defiance flight example [#742](https://github.com/RocketPy-Team/RocketPy/pull/742) - ENH: Allow for Alternative and Custom ODE Solvers. [#748](https://github.com/RocketPy-Team/RocketPy/pull/748) diff --git a/data/motors/aerotech/AeroTech_HP-L1000W.eng b/data/motors/aerotech/AeroTech_HP-L1000W.eng new file mode 100644 index 000000000..dda619657 --- /dev/null +++ b/data/motors/aerotech/AeroTech_HP-L1000W.eng @@ -0,0 +1,26 @@ +; per AT announcement 5/8/14 +L1000 54 635 18 1.4000000000000001 2.194 AT + 0.004 10.664 + 0.011 1268.961 + 0.04 1322.279 + 0.195 1226.307 + 0.249 1268.961 + 0.296 1242.303 + 0.372 1252.966 + 0.416 1215.644 + 0.6 1226.307 + 0.788 1215.644 + 1.066 1183.653 + 1.261 1167.658 + 1.507 1125.004 + 1.746 1087.681 + 1.865 1050.359 + 1.995 1045.027 + 2.093 911.733 + 2.158 746.448 + 2.263 554.504 + 2.389 405.215 + 2.577 191.944 + 2.693 85.308 + 2.761 42.654 + 3.0 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_K1000T.eng b/data/motors/aerotech/AeroTech_K1000T.eng new file mode 100644 index 000000000..96df8f4f3 --- /dev/null +++ b/data/motors/aerotech/AeroTech_K1000T.eng @@ -0,0 +1,36 @@ +; Based on AT Instruction Sheet by C. Kobel 3/17/2010 +K1000T-P 75 396 P 1.182 2.575 AT + 0.0040 895.149 + 0.015 1119.762 + 0.025 1093.337 + 0.095 1096.640 + 0.200 1109.853 + 0.300 1116.459 + 0.400 1123.065 + 0.500 1132.975 + 0.600 1139.581 + 0.700 1136.278 + 0.800 1136.278 + 0.900 1136.278 + 1.000 1139.581 + 1.100 1132.975 + 1.200 1129.672 + 1.300 1126.369 + 1.400 1119.762 + 1.500 1109.853 + 1.600 1096.640 + 1.700 1063.609 + 1.800 1017.365 + 1.900 971.121 + 2.000 914.968 + 2.100 868.724 + 2.180 865.421 + 2.200 878.634 + 2.218 858.815 + 2.269 670.536 + 2.300 578.048 + 2.332 445.923 + 2.356 336.920 + 2.389 224.613 + 2.436 105.7 + 2.500 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_K400C.eng b/data/motors/aerotech/AeroTech_K400C.eng new file mode 100644 index 000000000..f651455d0 --- /dev/null +++ b/data/motors/aerotech/AeroTech_K400C.eng @@ -0,0 +1,25 @@ +; Aerotech K400C DMS +K400C 54 359 14 0.493 1.194 AT + 0.008 376.374 + 0.025 526.181 + 0.034 548.466 + 0.063 500.182 + 0.178 527.419 + 0.394 522.467 + 0.69 502.658 + 1.003 487.801 + 1.494 446.944 + 2.002 402.374 + 2.243 377.612 + 2.501 363.994 + 2.658 354.089 + 2.772 337.994 + 2.844 304.566 + 2.882 268.662 + 2.929 177.044 + 2.963 116.379 + 3.001 99.046 + 3.064 94.094 + 3.123 61.904 + 3.208 18.571 + 3.259 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_K480W.eng b/data/motors/aerotech/AeroTech_K480W.eng new file mode 100644 index 000000000..40034b3fd --- /dev/null +++ b/data/motors/aerotech/AeroTech_K480W.eng @@ -0,0 +1,44 @@ +; From AT Instruction Sheet by C. Kobel 3/12/10 +K480W-P 54 568 P 1.232 2.059 AT + 0.030 535.684 + 0.045 860.341 + 0.057 915.996 + 0.098 830.194 + 0.159 832.513 + 0.246 795.409 + 0.307 811.642 + 0.398 793.090 + 0.492 809.323 + 0.557 823.237 + 0.621 811.642 + 0.689 779.176 + 0.735 795.409 + 0.845 767.581 + 0.989 718.883 + 1.091 707.288 + 1.250 684.098 + 1.307 667.865 + 1.500 653.952 + 1.606 656.271 + 1.742 651.633 + 1.909 628.443 + 2.000 605.253 + 2.250 586.701 + 2.500 565.830 + 2.750 547.279 + 2.886 544.960 + 3.000 524.089 + 3.064 491.623 + 3.144 417.416 + 3.250 394.226 + 3.292 338.571 + 3.451 271.320 + 3.500 231.898 + 3.625 178.561 + 3.700 143.777 + 3.871 132.182 + 4.000 88.121 + 4.133 41.742 + 4.246 23.190 + 4.500 18.552 + 4.800 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_K990DM.eng b/data/motors/aerotech/AeroTech_K990DM.eng new file mode 100644 index 000000000..095eb4a5c --- /dev/null +++ b/data/motors/aerotech/AeroTech_K990DM.eng @@ -0,0 +1,34 @@ +; Aerotech K990DM 54/2800 +K990DM 54 598 14 1.224 2.109 AT + 0.016 35.558 + 0.024 223.805 + 0.028 868.03 + 0.036 1068.828 + 0.044 895.222 + 0.048 863.847 + 0.06 840.839 + 0.228 966.337 + 0.286 953.788 + 0.369 964.246 + 0.407 993.529 + 0.423 976.796 + 0.498 989.345 + 0.694 1024.903 + 0.865 1043.728 + 0.962 1054.186 + 1.117 1054.186 + 1.282 1029.087 + 1.51 983.071 + 1.589 960.063 + 1.688 953.788 + 1.732 968.429 + 1.748 1001.895 + 1.778 957.971 + 1.802 891.038 + 1.857 671.416 + 1.913 447.611 + 1.97 223.805 + 2.006 129.682 + 2.063 46.016 + 2.097 14.641 + 2.137 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_L1040DM.eng b/data/motors/aerotech/AeroTech_L1040DM.eng new file mode 100644 index 000000000..79993221e --- /dev/null +++ b/data/motors/aerotech/AeroTech_L1040DM.eng @@ -0,0 +1,29 @@ +; L1040 Dark Matter +L1040DM-P 75 681 P 2.602 4.7170000000000005 AT + 0.018 1126.167 + 0.042 1036.413 + 0.053 1002.543 + 0.116 988.995 + 0.504 1049.961 + 0.794 1095.685 + 1.002 1146.489 + 1.252 1192.213 + 1.499 1237.937 + 1.753 1261.646 + 1.912 1268.42 + 2.095 1254.872 + 2.511 1134.635 + 2.772 1056.734 + 3.012 966.98 + 3.153 933.11 + 3.217 863.677 + 3.291 817.953 + 3.34 758.681 + 3.488 438.613 + 3.552 284.505 + 3.598 220.153 + 3.657 167.655 + 3.746 118.544 + 3.88 42.337 + 3.996 6.774 + 4.127 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_L1940X.eng b/data/motors/aerotech/AeroTech_L1940X.eng new file mode 100644 index 000000000..5e25c985b --- /dev/null +++ b/data/motors/aerotech/AeroTech_L1940X.eng @@ -0,0 +1,22 @@ +; from TMT document and posted thrust curve +L1940X 75 560.4 P 1.8234317999999998 3.855515 AT + 0.02 48.137 + 0.04 2107.333 + 0.055 2289.184 + 0.073 2150.122 + 0.156 2101.985 + 0.397 2150.122 + 0.691 2155.47 + 0.982 2118.03 + 1.41 2000.362 + 1.696 1898.739 + 1.935 1839.905 + 2.06 1818.511 + 2.103 1652.705 + 2.116 1374.58 + 2.133 935.998 + 2.163 534.856 + 2.214 240.685 + 2.244 112.32 + 2.296 5.349 + 2.309 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_L2200G.eng b/data/motors/aerotech/AeroTech_L2200G.eng new file mode 100644 index 000000000..c3021f949 --- /dev/null +++ b/data/motors/aerotech/AeroTech_L2200G.eng @@ -0,0 +1,39 @@ +; Curvefit of Aerotech Instructions by C. Kobel 11/19/08 +L2200G 75 665 0-6-10-14-18 2.516 4.751 AT + 0.011 1195.177 + 0.024 2029.903 + 0.037 2380.868 + 0.050 2542.122 + 0.100 2570.578 + 0.150 2561.093 + 0.200 2523.151 + 0.250 2485.208 + 0.300 2523.151 + 0.350 2570.578 + 0.400 2674.919 + 0.500 2912.057 + 0.600 3073.311 + 0.700 3073.311 + 0.800 3101.768 + 0.900 3092.282 + 1.000 3092.282 + 1.100 2959.485 + 1.186 2807.716 + 1.227 2437.781 + 1.270 2257.556 + 1.300 2162.701 + 1.400 1991.961 + 1.500 1878.135 + 1.600 1792.765 + 1.700 1688.424 + 1.800 1612.54 + 1.900 1584.083 + 2.000 1536.656 + 2.048 1498.714 + 2.084 1403.858 + 2.102 1166.72 + 2.134 796.784 + 2.186 455.305 + 2.237 237.138 + 2.300 94.855 + 2.400 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_L2775ST-PS.eng b/data/motors/aerotech/AeroTech_L2775ST-PS.eng new file mode 100644 index 000000000..ebd57c388 --- /dev/null +++ b/data/motors/aerotech/AeroTech_L2775ST-PS.eng @@ -0,0 +1,151 @@ +; AT L2775ST 75-3840 +; from TMT certification document +; created by John Junghans 2024-04-22 +L2775ST 75 558.2 P 1.418 3.479 AT +0.01064 3.54001 +0.02242 72.44425 +0.02606 344.23136 +0.02793 580.45024 +0.02933 832.91856 +0.03027 1025.50464 +0.03120 1215.68340 +0.03213 1404.65850 +0.03307 1592.42994 +0.03400 1778.99771 +0.03500 1923.43727 +0.03634 2129.56457 +0.03821 2348.33032 +0.04008 2488.85798 +0.04391 2604.83092 +0.05082 2637.24199 +0.06110 2576.86217 +0.07215 2544.82832 +0.08165 2539.27505 +0.09193 2553.55487 +0.10221 2566.19333 +0.11249 2572.26636 +0.12277 2591.63439 +0.13304 2603.12390 +0.14332 2603.12390 +0.15360 2602.79563 +0.16388 2618.88095 +0.17415 2647.76886 +0.18443 2663.36177 +0.19471 2672.88165 +0.20499 2686.66906 +0.21527 2691.92141 +0.22554 2696.35308 +0.23582 2705.38055 +0.24610 2725.07686 +0.25638 2746.08625 +0.26665 2745.42970 +0.27693 2744.77316 +0.28721 2757.73989 +0.29749 2774.15348 +0.30777 2784.49404 +0.31804 2795.49114 +0.32832 2808.95028 +0.33860 2813.54609 +0.34888 2810.75578 +0.35915 2810.91992 +0.36943 2825.69214 +0.37971 2841.44919 +0.38999 2838.16647 +0.40027 2843.91122 +0.41054 2841.61332 +0.42082 2843.58295 +0.43110 2848.34289 +0.44138 2854.90833 +0.45165 2864.75648 +0.46193 2870.66537 +0.47221 2872.79914 +0.48249 2878.05149 +0.49277 2885.27346 +0.50304 2895.61402 +0.51332 2904.47736 +0.52360 2913.17656 +0.53388 2919.90613 +0.54415 2920.23440 +0.55443 2919.57786 +0.56471 2927.45638 +0.57499 2939.93071 +0.58527 2947.15269 +0.59554 2951.91263 +0.60582 2956.50843 +0.61610 2958.47806 +0.62638 2957.82152 +0.63665 2963.73041 +0.64693 2973.08615 +0.65721 2977.35369 +0.66749 2976.69714 +0.67777 2980.30813 +0.68804 2979.32332 +0.69832 2977.84609 +0.70860 2979.32332 +0.71888 2987.53011 +0.72915 2991.79764 +0.73943 2988.67906 +0.74971 2989.49974 +0.75999 2997.37826 +0.77027 3003.61543 +0.78054 3004.76438 +0.79082 3006.07746 +0.80110 3007.88296 +0.81138 3009.52432 +0.82165 3003.94370 +0.83193 3006.24160 +0.84221 3013.62771 +0.85249 3015.92562 +0.86277 3019.20833 +0.87304 3015.76148 +0.88332 3017.40284 +0.89360 3017.40284 +0.90388 3017.07457 +0.91415 3020.68556 +0.92443 3023.96827 +0.93471 3021.67037 +0.94499 3021.99864 +0.95527 3027.41513 +0.96554 3030.69784 +0.97582 3033.98056 +0.98610 3041.36668 +0.99638 3046.29075 +1.00665 3048.58865 +1.01693 3047.60384 +1.02721 3056.63131 +1.03749 3068.77737 +1.04777 3076.32762 +1.05804 3081.74410 +1.06832 3069.76218 +1.07533 3028.39994 +1.08127 2938.89900 +1.08645 2838.10081 +1.09028 2736.81257 +1.09308 2631.19114 +1.09588 2509.77163 +1.09775 2424.91339 +1.09962 2334.18728 +1.10149 2233.53096 +1.10345 2137.93002 +1.10523 2030.41282 +1.10640 1933.36749 +1.10896 1827.74606 +1.11083 1735.66584 +1.11270 1649.90485 +1.11457 1567.75484 +1.11831 1444.68030 +1.12205 1345.67901 +1.12569 1255.40428 +1.12952 1162.42131 +1.13326 1078.01444 +1.13699 990.89933 +1.14073 900.62460 +1.14354 809.74804 +1.14727 701.41837 +1.15101 585.56580 +1.15475 469.41232 +1.15858 362.76777 +1.16316 260.57678 +1.16816 173.39719 +1.17717 79.42549 +1.18944 14.35612 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_M1075DM.eng b/data/motors/aerotech/AeroTech_M1075DM.eng new file mode 100644 index 000000000..30d03e3c6 --- /dev/null +++ b/data/motors/aerotech/AeroTech_M1075DM.eng @@ -0,0 +1,24 @@ +; M1075 Dark Matter +M1075DM 98 597 P 3.846 6.971 AT + 0.02 927.501 + 0.112 988.073 + 0.26 1033.501 + 0.53 1080.823 + 0.897 1124.359 + 1.509 1198.18 + 1.998 1239.823 + 2.355 1260.644 + 2.503 1264.43 + 2.773 1237.93 + 2.997 1222.787 + 3.502 1162.216 + 4.001 1063.787 + 4.501 906.68 + 4.741 834.751 + 4.878 742.001 + 4.96 664.394 + 5.062 448.608 + 5.164 223.357 + 5.26 79.5 + 5.352 30.286 + 5.5 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_M1305M.eng b/data/motors/aerotech/AeroTech_M1305M.eng new file mode 100644 index 000000000..4e4b71b8b --- /dev/null +++ b/data/motors/aerotech/AeroTech_M1305M.eng @@ -0,0 +1,31 @@ +; M1305 Metalstorm +M1305M 98 597 P 4.08 7.098 AT + 0.016 1288.076 + 0.043 1462.78 + 0.08 1370.986 + 0.407 1622.679 + 0.535 1640.446 + 0.787 1705.59 + 0.985 1693.745 + 1.13 1717.434 + 1.328 1693.745 + 1.349 1927.672 + 1.397 1726.317 + 1.751 1711.512 + 2.018 1687.823 + 2.275 1690.784 + 2.297 1892.139 + 2.318 1678.94 + 2.929 1412.441 + 3.748 1113.371 + 4.24 906.095 + 4.503 802.456 + 4.717 663.285 + 4.813 538.919 + 4.92 387.903 + 5.027 245.771 + 5.166 145.094 + 5.263 79.95 + 5.386 32.572 + 5.498 23.689 + 5.707 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_M1340W.eng b/data/motors/aerotech/AeroTech_M1340W.eng new file mode 100644 index 000000000..9f8f2eb8f --- /dev/null +++ b/data/motors/aerotech/AeroTech_M1340W.eng @@ -0,0 +1,28 @@ +; 98 White Lightning DMS +M1340W 98 557 P 4.0360000000000005 6.998 AT + 0.016 42.431 + 0.027 1053.712 + 0.043 862.771 + 0.076 1329.516 + 0.098 1403.771 + 0.152 1424.986 + 0.986 1729.078 + 1.154 1810.404 + 1.518 1874.051 + 1.642 1842.228 + 2.0 1888.195 + 2.558 1891.731 + 2.775 1782.117 + 2.818 1707.862 + 2.894 1615.927 + 2.997 1520.457 + 4.0 1011.281 + 4.509 763.764 + 4.862 608.183 + 4.981 583.431 + 5.062 526.856 + 5.149 438.457 + 5.322 226.301 + 5.458 99.006 + 5.577 28.288 + 5.642 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_M1845NT.eng b/data/motors/aerotech/AeroTech_M1845NT.eng new file mode 100644 index 000000000..f56d8fdbd --- /dev/null +++ b/data/motors/aerotech/AeroTech_M1845NT.eng @@ -0,0 +1,17 @@ +M1845 98 597 P 3.7720000000000002 6.682 AT + 0.024 2261.638 + 0.067 2115.94 + 1.032 2268.261 + 1.354 2433.828 + 2.253 2288.129 + 2.406 2149.053 + 2.578 1821.232 + 3.065 1579.504 + 3.583 1410.627 + 3.838 1364.268 + 3.913 1218.569 + 3.995 685.445 + 4.109 400.671 + 4.352 248.35 + 4.498 33.113 + 4.729 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_M1939W.eng b/data/motors/aerotech/AeroTech_M1939W.eng new file mode 100644 index 000000000..947d235c0 --- /dev/null +++ b/data/motors/aerotech/AeroTech_M1939W.eng @@ -0,0 +1,30 @@ +; AeroTech M1939W +; converted from TMT test stand data 1998 (www.tripoli.org) +; provided by ThrustCurve.org (www.thrustcurve.org) +M1939W 98 732 0 5.656 8.98822 AT + 0.134 1905.185 + 0.406 2021.155 + 0.679 2095.900 + 0.952 2158.087 + 1.225 2198.211 + 1.498 2219.694 + 1.770 2228.643 + 2.042 2229.881 + 2.315 2225.641 + 2.587 2211.713 + 2.860 2164.724 + 3.133 2047.014 + 3.405 1916.238 + 3.677 1805.664 + 3.950 1658.489 + 4.223 1497.704 + 4.496 1339.452 + 4.769 1213.061 + 5.041 1102.130 + 5.313 966.508 + 5.585 670.253 + 5.858 443.975 + 6.131 155.355 + 6.404 41.358 + 6.677 5.775 + 6.950 0.000 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_M2100G.eng b/data/motors/aerotech/AeroTech_M2100G.eng new file mode 100644 index 000000000..a8685e8c4 --- /dev/null +++ b/data/motors/aerotech/AeroTech_M2100G.eng @@ -0,0 +1,50 @@ +; Entered by Tim Van Milligan for RockSim Users. Used John Coker's ThrustCurve +; Tracer software and TRA cert paperwork dated 10-14-08. +M2100G 98 597 4 4.03 7.03 Aerotech + 0.014 72.789 + 0.017 1148.45 + 0.021 1552.833 + 0.038 1593.272 + 0.042 1908.691 + 0.052 2062.357 + 0.077 2151.321 + 0.115 2207.935 + 0.167 2240.285 + 0.223 2256.461 + 0.272 2256.461 + 0.31 2232.198 + 0.415 2280.724 + 0.59 2385.863 + 0.701 2410.126 + 0.876 2507.179 + 0.959 2555.705 + 1.043 2588.055 + 1.176 2677.02 + 1.263 2782.159 + 1.333 2830.685 + 1.437 2846.861 + 1.517 2879.211 + 1.608 2968.176 + 1.667 2943.913 + 1.81 2935.825 + 1.926 2895.387 + 1.999 2846.861 + 2.041 2782.159 + 2.152 2531.442 + 2.393 1949.129 + 2.484 1787.376 + 2.56 1674.148 + 2.738 1504.307 + 2.836 1439.606 + 2.958 1366.817 + 3.091 1285.94 + 3.178 1229.326 + 3.23 1196.976 + 3.283 1180.8 + 3.401 1188.888 + 3.447 1140.362 + 3.478 1035.222 + 3.513 913.907 + 3.516 541.874 + 3.527 444.822 + 3.541 0.0 \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_M650W.eng b/data/motors/aerotech/AeroTech_M650W.eng new file mode 100644 index 000000000..794ec0f22 --- /dev/null +++ b/data/motors/aerotech/AeroTech_M650W.eng @@ -0,0 +1,25 @@ +; +;75-6400 case +; Greg Gardner - 10/25/07 +M650W 75 801 0 3.351 5.125 AT +0.08 1240 +0.12 1328 +0.25 1230 +0.5 1142 +1.0 1071 +1.5 1048 +2.0 1018 +2.5 982 +3.0 950 +3.5 853 +4.0 781 +5.0 595 +6.0 443 +7.0 297 +8.0 155 +9.0 88 +10.0 32 +10.5 12 +11.0 4 +11.5 0 +; \ No newline at end of file diff --git a/data/motors/aerotech/AeroTech_M750W.eng b/data/motors/aerotech/AeroTech_M750W.eng new file mode 100644 index 000000000..a932a0556 --- /dev/null +++ b/data/motors/aerotech/AeroTech_M750W.eng @@ -0,0 +1,24 @@ +; +;98-10240 case +; Greg Gardner - 10/25/07 +M750W 98 732 0 5.3 8.776 AT +0.1 1032 +0.2 992 +0.3 974 +0.48 966 +1.0 1055 +1.5 1152 +2.0 1192 +2.5 1218 +4.0 1103 +6.0 818 +8.0 561 +10.0 318 +11.0 216 +12.0 125 +13.0 76 +14.0 47 +15.0 23 +15.5 9 +16.0 0 +; \ No newline at end of file diff --git a/data/motors/animal-motor/AMW_1791K710-P.eng b/data/motors/animal-motor/AMW_1791K710-P.eng new file mode 100644 index 000000000..c03d69603 --- /dev/null +++ b/data/motors/animal-motor/AMW_1791K710-P.eng @@ -0,0 +1,17 @@ +K710-BB 54 491 0 0.902 1.812 AMW/ProX +0.01 500 +0.02 850 +0.025 910 +0.03 840 +0.06 860 +0.12 875 +0.2 875 +0.3 872 +1.1 815 +1.85 740 +1.95 720 +2.2 295 +2.37 280 +2.5 90 +2.6 20 +2.8 0 \ No newline at end of file diff --git a/data/motors/animal-motor/AMW_2245K1075-P.eng b/data/motors/animal-motor/AMW_2245K1075-P.eng new file mode 100644 index 000000000..ebbb43a5f --- /dev/null +++ b/data/motors/animal-motor/AMW_2245K1075-P.eng @@ -0,0 +1,41 @@ +; AMW 54-2500 Skidmark Plugged +2245-K1075-SK-P 54 728 P 1.259 2.6388 CTI + 0.0070 1574.366 + 0.012 1038.184 + 0.017 1476.101 + 0.024 1083.044 + 0.029 1365.02 + 0.034 1117.223 + 0.041 1266.756 + 0.046 1162.083 + 0.049 1226.168 + 0.069 1159.947 + 0.107 1130.04 + 0.151 1108.678 + 0.21 1100.134 + 0.274 1102.27 + 0.332 1102.27 + 0.432 1115.087 + 0.523 1119.359 + 0.611 1132.176 + 0.674 1140.721 + 0.766 1149.266 + 0.881 1159.947 + 0.979 1179.172 + 1.141 1191.989 + 1.257 1189.853 + 1.379 1191.989 + 1.504 1202.67 + 1.599 1211.215 + 1.67 1232.577 + 1.744 1249.666 + 1.772 1226.168 + 1.802 1155.674 + 1.841 993.324 + 1.888 736.983 + 1.944 455.007 + 2.002 267.023 + 2.065 128.171 + 2.11 68.358 + 2.149 34.179 + 2.198 0.0 \ No newline at end of file diff --git a/data/motors/animal-motor/AMW_2730L1276-P.eng b/data/motors/animal-motor/AMW_2730L1276-P.eng new file mode 100644 index 000000000..29e0e4262 --- /dev/null +++ b/data/motors/animal-motor/AMW_2730L1276-P.eng @@ -0,0 +1,24 @@ +; AMX/ProX 2729L1276 RR +L1276RR 54 728 P 1.475 2.96 AMW + 0.015 76.924 + 0.017 692.317 + 0.026 1495.003 + 0.037 1244.164 + 0.052 1401.357 + 0.084 1307.71 + 0.127 1307.71 + 0.181 1367.911 + 0.289 1401.357 + 0.384 1408.046 + 0.807 1421.424 + 0.993 1461.558 + 1.215 1491.659 + 1.673 1474.936 + 1.727 1384.634 + 1.798 1083.627 + 1.947 531.78 + 1.986 351.175 + 2.047 177.26 + 2.092 93.647 + 2.144 33.445 + 2.185 0.0 \ No newline at end of file diff --git a/data/motors/animal-motor/AMW_4701L1290-P.eng b/data/motors/animal-motor/AMW_4701L1290-P.eng new file mode 100644 index 000000000..0d813e471 --- /dev/null +++ b/data/motors/animal-motor/AMW_4701L1290-P.eng @@ -0,0 +1,21 @@ +; ABC-76-6000 4701L1290-SK P +L1290-SK 76 785 P 3.047 5.399 CTI + 0.022 117.623 + 0.081 786.023 + 0.11 797.226 + 0.176 1226.645 + 0.691 1357.337 + 1.231 1461.891 + 1.761 1476.828 + 2.008 1467.493 + 2.311 1417.082 + 2.835 1299.459 + 3.101 1235.98 + 3.167 1230.379 + 3.34 1321.863 + 3.373 1286.39 + 3.532 365.94 + 3.602 201.64 + 3.734 91.485 + 3.782 69.08 + 3.8 0.0 \ No newline at end of file diff --git a/data/motors/animal-motor/AMW_6774M2050-P.eng b/data/motors/animal-motor/AMW_6774M2050-P.eng new file mode 100644 index 000000000..4329b9301 --- /dev/null +++ b/data/motors/animal-motor/AMW_6774M2050-P.eng @@ -0,0 +1,16 @@ +; AMX75-7600 6774-M2050-SK P +M2050-BS 75 1039 P 4.172 7.1290000000000004 ABC + 0.038 2152.81 + 0.833 2506.091 + 1.189 2539.211 + 1.546 2500.571 + 1.775 2415.011 + 1.907 2279.77 + 2.168 2086.569 + 2.401 1973.409 + 2.616 1909.929 + 2.776 1871.288 + 2.918 1203.365 + 3.056 706.563 + 3.309 135.241 + 3.4 0.0 \ No newline at end of file diff --git a/data/motors/animal-motor/AMW_8212M1630-P.eng b/data/motors/animal-motor/AMW_8212M1630-P.eng new file mode 100644 index 000000000..cb1d7ce9a --- /dev/null +++ b/data/motors/animal-motor/AMW_8212M1630-P.eng @@ -0,0 +1,19 @@ +; AMW75-7600 8212M1630-TT/DT P +M1630-TT 75 1039 P 4.349 7.237 CTI + 0.0030 147.481 + 0.032 2040.948 + 0.078 3235.069 + 0.158 3368.278 + 0.463 3258.856 + 0.647 2992.439 + 0.949 2697.477 + 1.052 2040.948 + 1.101 1883.952 + 1.392 1907.739 + 1.786 1812.59 + 3.6 1327.33 + 3.899 875.372 + 4.595 347.294 + 4.857 195.056 + 4.891 166.511 + 4.9 0.0 \ No newline at end of file diff --git a/data/motors/animal-motor/AMW_K475.eng b/data/motors/animal-motor/AMW_K475.eng new file mode 100644 index 000000000..4d2da92b2 --- /dev/null +++ b/data/motors/animal-motor/AMW_K475.eng @@ -0,0 +1,37 @@ +; Animal Motor Works K475 RASP.ENG file made from NAR data +; File produced Feb 22, 2003 +; The total impulse, peak thrust, average thrust and burn time are +; the same as the averaged static test data on the NAR web site in +; the certification file. The curve drawn with these data points is as +; close to the certification curve as can be with such a limited +; number of points (32) allowed with wRASP up to v1.6. +K475 54 403 P 0.7286 1.4925 AW +0.022 127.831 +0.041 386.016 +0.063 548.326 +0.096 521.308 +0.134 499.129 +0.180 486.830 +0.285 486.830 +0.478 501.649 +0.731 523.727 +1.096 553.266 +1.433 577.962 +1.601 588.290 +1.756 582.704 +1.895 580.284 +1.958 575.344 +2.063 550.746 +2.209 518.788 +2.344 477.051 +2.495 417.974 +2.561 354.058 +2.582 334.399 +2.599 331.980 +2.620 297.501 +2.670 226.226 +2.707 157.370 +2.740 98.353 +2.799 49.176 +2.853 17.208 +2.940 0.000 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_1281K360-13A.eng b/data/motors/cesaroni/Cesaroni_1281K360-13A.eng new file mode 100644 index 000000000..686574920 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_1281K360-13A.eng @@ -0,0 +1,13 @@ +; Pro54-3G White 1281-K360 +1281-K360-WH-13A 54 236 13-10-8-6-4 0.747 1.232 CTI + 0.034 289.25 + 0.077 362.318 + 0.463 387.514 + 1.106 398.6 + 1.564 405.151 + 2.063 398.6 + 2.57 383.483 + 3.101 354.759 + 3.18 343.673 + 3.417 105.319 + 3.5 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_1597K400-14A.eng b/data/motors/cesaroni/Cesaroni_1597K400-14A.eng new file mode 100644 index 000000000..989c3efa2 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_1597K400-14A.eng @@ -0,0 +1,12 @@ +; Pro54 4G 1597 K400-GR 14A +K400-GR 54 404 14-13-12-11-10-9-8-7-6-5-4 0.969 1.5513 CTI + 0.014 359.164 + 0.102 475.4 + 1.193 444.649 + 2.807 384.994 + 3.364 370.234 + 3.599 363.469 + 3.693 329.028 + 3.859 169.742 + 3.967 57.196 + 4.017 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_1990K490-16A.eng b/data/motors/cesaroni/Cesaroni_1990K490-16A.eng new file mode 100644 index 000000000..94b397b48 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_1990K490-16A.eng @@ -0,0 +1,19 @@ +; Pro54-5G 1990K490-GR 16A +K490-GR 54 488 16-15-14-13-12-11-10-9-8-7-6 1.2012 1.8540999999999999 CTI + 0.013 445.79 + 0.024 376.662 + 0.083 559.232 + 0.121 584.047 + 0.316 573.412 + 0.727 569.867 + 1.116 553.914 + 1.875 522.009 + 1.893 593.796 + 1.944 519.35 + 2.658 479.468 + 3.063 473.264 + 3.358 444.018 + 3.618 448.449 + 3.894 240.177 + 4.055 31.019 + 4.066 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_2285K260-P.eng b/data/motors/cesaroni/Cesaroni_2285K260-P.eng new file mode 100644 index 000000000..965b03931 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_2285K260-P.eng @@ -0,0 +1,18 @@ +; Pro54 6G 2285 K260-CL P +; Longburn +K260-CL 54 572 P 1.2413 2.0475 CTI + 0.042 325.731 + 0.101 430.409 + 0.422 422.807 + 0.773 426.901 + 1.178 429.825 + 1.517 425.731 + 2.011 413.45 + 3.195 356.725 + 4.51 289.474 + 6.015 174.269 + 6.997 91.228 + 7.366 66.667 + 7.902 43.275 + 8.479 25.731 + 8.687 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_2546K300-P.eng b/data/motors/cesaroni/Cesaroni_2546K300-P.eng new file mode 100644 index 000000000..1e8a6d491 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_2546K300-P.eng @@ -0,0 +1,21 @@ +;Pro54 6GXL 2546 K300-CL P +;Longburn +;Uses a new threaded forward closure +K300-CL 54 649 0 1.3776 2.27 CTI +0.036 495.273 +0.132 543.273 +0.265 506.909 +0.734 493.091 +1.258 489.455 +1.811 482.909 +2.467 453.818 +3.737 375.273 +4.705 299.636 +6.047 165.091 +6.474 120.727 +6.829 90.182 +7.323 63.273 +7.72 46.545 +8.309 30.545 +8.37 0 +; \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_2772L640-P.eng b/data/motors/cesaroni/Cesaroni_2772L640-P.eng new file mode 100644 index 000000000..7647c61d9 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_2772L640-P.eng @@ -0,0 +1,16 @@ +L640-DT 54 649 P 1.293 2.244 CTI +0.02 1200 +0.034 1540 +0.07 1300 +0.15 1460 +0.35 1510 +0.65 1540 +0.7 1510 +0.79 800 +0.86 570.25 +3.26 518 +3.55 330 +3.65 318 +4.15 102 +4.5 30 +5 0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_3147L935-P.eng b/data/motors/cesaroni/Cesaroni_3147L935-P.eng new file mode 100644 index 000000000..bbbfb1449 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_3147L935-P.eng @@ -0,0 +1,11 @@ +; Pro54-6GXL 3147L935-IM P +L935-IM 54 649 P 1.7347000000000001 2.5420000000000003 CTI + 0.012 1582.739 + 0.052 1365.5 + 0.159 1278.04 + 2.198 990.27 + 2.514 719.427 + 3.021 239.809 + 3.104 160.813 + 3.273 107.209 + 3.3 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_3683L851-P.eng b/data/motors/cesaroni/Cesaroni_3683L851-P.eng new file mode 100644 index 000000000..fe352ad2b --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_3683L851-P.eng @@ -0,0 +1,13 @@ +; Pro75-3G White 3683-L851 +3683-L851-WH-P 75 486 P 2.195 3.789 CTI + 0.059 971.271 + 0.102 855.249 + 0.485 838.674 + 1.353 911.602 + 1.824 980.11 + 3.107 883.978 + 3.68 816.575 + 4.031 732.597 + 4.128 579.006 + 4.256 246.409 + 4.339 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_4263L1350-P.eng b/data/motors/cesaroni/Cesaroni_4263L1350-P.eng new file mode 100644 index 000000000..37b61ded0 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_4263L1350-P.eng @@ -0,0 +1,18 @@ +; C-Star 75mm 3G +; 4263-L1350-CS-P +4263-L1350-CS-P 75 486 P 2.0245 3.5707 CTI + 0.016 1421.724 + 0.034 1345.218 + 0.049 1502.479 + 0.081 1415.348 + 0.21 1432.349 + 0.453 1432.349 + 0.809 1462.102 + 1.07 1534.357 + 1.28 1540.732 + 2.661 1283.589 + 2.843 1277.214 + 2.932 1115.702 + 3.037 488.784 + 3.163 82.881 + 3.284 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_4937L395-P.eng b/data/motors/cesaroni/Cesaroni_4937L395-P.eng new file mode 100644 index 000000000..558b8310f --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_4937L395-P.eng @@ -0,0 +1,16 @@ +; CTI L395 long burn Mellow Propellant +; Not many data points. +; Made from the data in the Rocksim file below +L395 75 757 P 2.218 5.706 CTI +0.04 484.229 +0.129 484.229 +0.209 578.734 +0.547 553.644 +2.043 511.828 +7.329 439.068 +8.632 424.014 +9.573 297.73 +11.399 100.358 +12.445 30.108 +12.501 0 +; \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_5472M2250-P.eng b/data/motors/cesaroni/Cesaroni_5472M2250-P.eng new file mode 100644 index 000000000..215dadd51 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_5472M2250-P.eng @@ -0,0 +1,19 @@ +; Pro75-4G 5472M2250-CS P +M2250-CS 75 621 P 2.628 4.415 CTI + 0.016 2542.114 + 0.051 2390.798 + 0.139 2582.466 + 0.259 2599.278 + 0.877 2663.168 + 1.388 2555.565 + 1.823 2458.05 + 1.86 2303.371 + 1.891 1926.761 + 1.997 1452.637 + 2.195 1452.637 + 2.244 1207.168 + 2.276 645.616 + 2.336 517.838 + 2.414 144.591 + 2.456 40.351 + 2.497 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_6118M3100-P.eng b/data/motors/cesaroni/Cesaroni_6118M3100-P.eng new file mode 100644 index 000000000..421684f72 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_6118M3100-P.eng @@ -0,0 +1,17 @@ +; Pro75-5G 6118M3100-WT P +M3100-WT 75 757 P 2.95 5.018 CTI + 0.02 3118.031 + 0.057 2976.886 + 0.148 3186.465 + 0.496 3391.768 + 0.817 3665.504 + 0.936 3532.913 + 1.173 3357.551 + 1.501 3199.297 + 1.717 3139.417 + 1.78 2412.304 + 1.812 2130.013 + 1.832 2031.639 + 1.937 346.448 + 1.985 81.266 + 2.0 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_6438M1300-P.eng b/data/motors/cesaroni/Cesaroni_6438M1300-P.eng new file mode 100644 index 000000000..070293f54 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_6438M1300-P.eng @@ -0,0 +1,19 @@ +; Pro75-5G 6438M1300-IM/DT P +M1300-IM 75 757 P 3.595 5.657 CTI + 0.0090 394.105 + 0.057 934.778 + 0.086 2146.406 + 0.154 2615.423 + 0.314 2827.132 + 0.671 2758.734 + 0.97 2752.22 + 1.082 1172.543 + 1.187 1120.43 + 2.14 1172.543 + 2.7 1139.973 + 3.884 915.235 + 4.372 771.924 + 4.6 400.619 + 4.697 335.478 + 4.9 120.511 + 4.901 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_7388M2045-P.eng b/data/motors/cesaroni/Cesaroni_7388M2045-P.eng new file mode 100644 index 000000000..cab7c1a1e --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_7388M2045-P.eng @@ -0,0 +1,18 @@ +; Pro75-6G 7388-M2045-BS P +M2045-BS 75 893 P 3.739 6.071 CTI + 0.0040 556.851 + 0.019 1690.324 + 0.063 2359.204 + 0.153 2339.434 + 0.182 2570.083 + 0.247 2471.233 + 0.616 2497.593 + 1.028 2547.018 + 2.111 2316.369 + 2.551 2273.535 + 2.635 2253.765 + 2.796 1696.914 + 3.009 1472.855 + 3.349 247.123 + 3.541 108.734 + 3.587 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_7545M1590-P.eng b/data/motors/cesaroni/Cesaroni_7545M1590-P.eng new file mode 100644 index 000000000..a989fc005 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_7545M1590-P.eng @@ -0,0 +1,28 @@ +M1590 75 893 P 3.59 6.0760000000000005 CTI + 0.053 2045.469 + 0.119 2130.875 + 0.133 2220.551 + 0.226 2305.957 + 0.363 2241.903 + 0.438 2177.849 + 0.571 2130.875 + 0.748 2092.443 + 0.973 2088.172 + 1.225 2100.983 + 1.433 2079.632 + 1.597 2032.659 + 1.995 1883.198 + 2.411 1759.36 + 3.362 1567.197 + 3.491 1533.035 + 3.721 1076.113 + 3.769 1012.059 + 3.871 973.626 + 3.946 896.761 + 4.074 687.517 + 4.132 640.544 + 4.203 619.192 + 4.504 294.65 + 4.641 226.325 + 4.716 170.812 + 4.8 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_8088M1790-P.eng b/data/motors/cesaroni/Cesaroni_8088M1790-P.eng new file mode 100644 index 000000000..e47847fc7 --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_8088M1790-P.eng @@ -0,0 +1,15 @@ +; Pro98-4G 8088M1790-SK P +M1790-SK 98 702 P 4.817 8.298 CTI + 0.059 1791.514 + 0.199 1596.375 + 0.6 1782.109 + 1.215 1913.769 + 1.973 2021.918 + 2.742 1970.195 + 3.387 1833.833 + 3.812 1652.801 + 4.28 1556.407 + 4.385 1295.438 + 4.476 355.011 + 4.541 91.692 + 4.597 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_8634M6400-P.eng b/data/motors/cesaroni/Cesaroni_8634M6400-P.eng new file mode 100644 index 000000000..89b8ab1ef --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_8634M6400-P.eng @@ -0,0 +1,15 @@ +; CTI Pro-98 4G +; 8634 M6400-VM P +8634-M6400-VM-P 98 702 P 4.308 7.9190000000000005 CTI + 0.011 6079.636 + 0.135 6598.407 + 0.354 7080.774 + 0.503 7244.596 + 0.713 7162.685 + 0.954 6707.622 + 1.183 5688.282 + 1.233 5460.751 + 1.26 4914.676 + 1.288 3394.767 + 1.331 800.91 + 1.383 0.0 \ No newline at end of file diff --git a/data/motors/cesaroni/Cesaroni_9977M2245-P.eng b/data/motors/cesaroni/Cesaroni_9977M2245-P.eng new file mode 100644 index 000000000..d53f3ae9e --- /dev/null +++ b/data/motors/cesaroni/Cesaroni_9977M2245-P.eng @@ -0,0 +1,13 @@ +; Imax Pro75 6GXL +; 9977 M2245-IM-P +9977-M2245-IM-P 75 1025 P 5.309 8.182 CTI + 0.043 3045.655 + 0.136 2629.813 + 1.393 3003.3 + 2.168 3007.151 + 2.708 2972.497 + 2.837 2883.938 + 3.152 1955.996 + 3.397 1409.241 + 3.878 562.156 + 4.371 0.0 \ No newline at end of file diff --git a/data/motors/loki/Loki_K1127-LB.eng b/data/motors/loki/Loki_K1127-LB.eng new file mode 100644 index 000000000..5db59403e --- /dev/null +++ b/data/motors/loki/Loki_K1127-LB.eng @@ -0,0 +1,37 @@ +K1127LB 38 625.5 P 0.624 1.172 Loki + 0.009 77.978 + 0.021 1002.962 + 0.033 1368.654 + 0.045 1210.008 + 0.058 1365.965 + 0.067 1263.786 + 0.08 1360.587 + 0.092 1255.719 + 0.105 1331.009 + 0.117 1242.275 + 0.13 1312.186 + 0.142 1261.097 + 0.155 1304.12 + 0.167 1261.097 + 0.218 1290.675 + 0.395 1325.631 + 0.542 1368.654 + 0.689 1392.854 + 0.726 1382.098 + 0.755 1344.453 + 0.814 1110.518 + 0.867 949.184 + 0.874 1099.763 + 0.883 962.629 + 0.908 847.006 + 0.989 548.537 + 0.997 363.002 + 1.003 715.249 + 1.014 494.759 + 1.048 406.025 + 1.091 352.247 + 1.152 228.557 + 1.198 158.645 + 1.244 69.912 + 1.286 32.267 + 1.37 0.0 \ No newline at end of file diff --git a/data/motors/loki/Loki_K350-LW.eng b/data/motors/loki/Loki_K350-LW.eng new file mode 100644 index 000000000..74b5950e9 --- /dev/null +++ b/data/motors/loki/Loki_K350-LW.eng @@ -0,0 +1,24 @@ +; +; +K350 54 702 0 1.4 2.54012 Loki +0.025 1329 +0.0375 1061 +0.1 1006 +0.15 891 +0.2 768 +0.4 571 +0.5 542 +0.75 486 +1 486 +1.25 477 +1.5 481 +2.5058 460 +3.00464 427 +3.5 375 +4 333 +4.5 297 +5 249 +5.5 210 +6 164 +6.5 98 +7 0 \ No newline at end of file diff --git a/data/motors/loki/Loki_K830-SF.eng b/data/motors/loki/Loki_K830-SF.eng new file mode 100644 index 000000000..2a1c71d3a --- /dev/null +++ b/data/motors/loki/Loki_K830-SF.eng @@ -0,0 +1,8 @@ +K830-SF 54 726 0 1.4 2.4 Loki +0.02 670.185 +0.5 775.726 +1 886.544 +1.5 986.807 +2 1092.35 +2.5 1187.34 +2.7 0 \ No newline at end of file diff --git a/data/motors/loki/Loki_K960-LW.eng b/data/motors/loki/Loki_K960-LW.eng new file mode 100644 index 000000000..dfaf2a7de --- /dev/null +++ b/data/motors/loki/Loki_K960-LW.eng @@ -0,0 +1,26 @@ +; +; +K960 54 498 0 0.929864 1.74633 Loki +0.03 1210 +0.05 1512 +0.075 1535 +0.1 1502 +0.125 1437 +0.2 1237 +0.3 1175 +0.5 1139 +0.6 1130 +0.7 1156 +0.8 1182 +0.9 1192 +1 1166 +1.1 1139 +1.2 1101 +1.3 1091 +1.4 1026 +1.5 839 +1.6 790 +1.7 575 +1.8 284 +1.9 150 +2 0 \ No newline at end of file diff --git a/data/motors/loki/Loki_L2050LW.eng b/data/motors/loki/Loki_L2050LW.eng new file mode 100644 index 000000000..7c5f42283 --- /dev/null +++ b/data/motors/loki/Loki_L2050LW.eng @@ -0,0 +1,31 @@ +; 54-4000 Loki White +L2050LW 54 1113.8 P 2.388 4.056 Loki + 0.027 366.324 + 0.028 137.372 + 0.043 2237.193 + 0.053 2701.64 + 0.074 2786.679 + 0.133 2682.015 + 0.218 2610.059 + 0.324 2708.181 + 0.495 2858.636 + 0.691 3061.422 + 0.87 3172.628 + 0.968 3329.624 + 1.066 3251.126 + 1.125 3139.92 + 1.157 2858.636 + 1.181 2701.64 + 1.213 2616.6 + 1.306 2479.229 + 1.338 2171.778 + 1.41 1962.45 + 1.503 1870.869 + 1.614 1426.047 + 1.753 1020.474 + 1.859 870.02 + 1.997 627.984 + 2.0 667.233 + 2.125 431.739 + 2.316 235.494 + 2.521 0.0 \ No newline at end of file diff --git a/data/motors/loki/Loki_L780-SF.eng b/data/motors/loki/Loki_L780-SF.eng new file mode 100644 index 000000000..86146274e --- /dev/null +++ b/data/motors/loki/Loki_L780-SF.eng @@ -0,0 +1,10 @@ +L780-SF 76 498 0 1.8 3.5 Loki +0.02 506.596 +0.5 696.57 +1 844.327 +1.5 897.098 +2 934.037 +2.5 918.206 +3 865.435 +3.5 802.111 +3.8 0 \ No newline at end of file diff --git a/data/motors/loki/Loki_L840CT.eng b/data/motors/loki/Loki_L840CT.eng new file mode 100644 index 000000000..40d7382ae --- /dev/null +++ b/data/motors/loki/Loki_L840CT.eng @@ -0,0 +1,25 @@ +L840CT 75 498 P 2.074 3.748 Loki + 0.021 889.644 + 0.046 1182.485 + 0.077 1082.4 + 0.139 978.608 + 0.303 971.195 + 0.662 1015.677 + 1.011 1108.348 + 1.33 1149.124 + 1.689 1189.899 + 1.971 1163.951 + 2.089 1145.417 + 2.3 1034.211 + 2.633 893.351 + 2.823 822.921 + 3.455 656.112 + 3.737 596.803 + 3.891 585.682 + 3.984 385.512 + 4.112 355.858 + 4.215 203.877 + 4.292 140.86 + 4.384 103.792 + 4.589 63.016 + 4.8 0.0 \ No newline at end of file diff --git a/data/motors/loki/Loki_L930-LW.eng b/data/motors/loki/Loki_L930-LW.eng new file mode 100644 index 000000000..ad9e17edf --- /dev/null +++ b/data/motors/loki/Loki_L930-LW.eng @@ -0,0 +1,24 @@ +; +; +L930 76 498 0 1.81437 3.53802 Loki +0.025 532 +0.05 1123 +0.075 1123 +0.125 1094 +0.2 930 +0.5 881 +0.6 878 +0.75 898 +1 921 +1.25 940 +1.5 1012 +1.75 1081 +2 1100 +2.25 1120 +2.5 1051 +2.75 980 +3 934 +3.25 826 +3.5 722 +3.75 280 +4 0 \ No newline at end of file diff --git a/data/motors/loki/Loki_M1378LR.eng b/data/motors/loki/Loki_M1378LR.eng new file mode 100644 index 000000000..aea57975d --- /dev/null +++ b/data/motors/loki/Loki_M1378LR.eng @@ -0,0 +1,48 @@ +; Loki M1378LR, 54/4000 +M1378LR 54 1108 P 2.6 4.331 Loki + 0.033 880.425 + 0.034 1332.161 + 0.035 1783.898 + 0.049 2217.196 + 0.05 2318.606 + 0.065 2240.243 + 0.175 2254.072 + 0.252 2166.491 + 0.386 2097.347 + 0.512 2051.252 + 0.776 2046.642 + 0.939 2065.08 + 0.991 2069.69 + 1.503 2175.71 + 1.568 2207.977 + 1.702 1908.356 + 1.719 1866.87 + 1.788 1857.65 + 1.824 1829.993 + 1.877 1742.412 + 1.902 1747.021 + 1.946 1608.734 + 2.015 1493.496 + 2.076 1447.4 + 2.137 1442.791 + 2.194 1438.181 + 2.239 1405.914 + 2.288 1336.771 + 2.393 1143.169 + 2.499 981.835 + 2.58 871.206 + 2.706 742.138 + 2.775 719.09 + 2.856 686.824 + 3.007 562.366 + 3.202 401.031 + 3.405 267.354 + 3.466 235.087 + 3.527 230.478 + 3.608 184.382 + 3.681 175.163 + 3.783 170.554 + 3.868 129.068 + 3.953 96.801 + 4.022 73.753 + 4.079 0.0 \ No newline at end of file diff --git a/data/motors/loki/Loki_M1882-LW.eng b/data/motors/loki/Loki_M1882-LW.eng new file mode 100644 index 000000000..d40135a02 --- /dev/null +++ b/data/motors/loki/Loki_M1882-LW.eng @@ -0,0 +1,17 @@ +; +; +M1882 75 785 0 3.12979 5.53383 Loki +0.01 4.8 +0.0174014 2579.22 +0.0696056 2392.32 +0.232019 2298.87 +0.50464 2261.49 +0.771462 2298.87 +0.986079 2411.01 +1.1891 2579.22 +1.49652 2597.91 +1.72854 2485.77 +2.00116 2354.94 +2.5 1644.72 +2.99884 242.97 +3.25 0 \ No newline at end of file diff --git a/data/motors/loki/Loki_M1969SF.eng b/data/motors/loki/Loki_M1969SF.eng new file mode 100644 index 000000000..5b8a46047 --- /dev/null +++ b/data/motors/loki/Loki_M1969SF.eng @@ -0,0 +1,28 @@ +M1969SF 75 1038 P 4.266 7.189 Loki + 0.036 263.323 + 0.044 1504.064 + 0.075 2204.77 + 0.087 2356.515 + 0.186 2204.77 + 0.23 2280.643 + 0.274 2240.475 + 0.503 2347.589 + 1.003 2432.388 + 1.058 2454.703 + 1.495 2307.421 + 2.002 2236.012 + 2.315 2186.918 + 2.501 2182.454 + 2.628 2169.065 + 2.815 2244.938 + 2.882 2191.381 + 3.045 1338.929 + 3.096 1142.553 + 3.164 1044.365 + 3.267 964.029 + 3.378 807.821 + 3.5 504.33 + 3.639 267.786 + 3.77 102.651 + 3.881 22.315 + 3.96 0.0 \ No newline at end of file diff --git a/data/motors/loki/Loki_M3000-LW.eng b/data/motors/loki/Loki_M3000-LW.eng new file mode 100644 index 000000000..66fcb1b45 --- /dev/null +++ b/data/motors/loki/Loki_M3000-LW.eng @@ -0,0 +1,27 @@ +; +M3000-LW 76 1038 P 4.064 6.857 Loki +0.083333 3234.3980 +0.166666 3626.9781 +0.333333 4104.8876 +0.5 4045.3220 +0.666667 3824.0989 +0.833333 3649.3737 +1.0 3669.9088 +1.166667 3815.3653 +1.333333 3859.8580 +1.5 3781.1602 +1.666667 3626.9781 +1.833333 3434.5774 +2.0 3093.3818 +2.166667 2643.3598 +2.333333 2052.4438 +2.416667 950.4439 +2.5 846.5966 +2.666667 764.3097 +2.833333 718.9958 +2.916667 718.7712 +3.0 542.0856 +3.166667 410.3503 +3.333333 272.3106 +3.5 0 +; \ No newline at end of file diff --git a/data/motors/loki/Loki_M3464LB.eng b/data/motors/loki/Loki_M3464LB.eng new file mode 100644 index 000000000..03e617782 --- /dev/null +++ b/data/motors/loki/Loki_M3464LB.eng @@ -0,0 +1,26 @@ +M3464LB 76 1038.2 P 4.464 7.597 Loki + 0.007 4907.495 + 0.02 4008.216 + 0.047 3866.9 + 0.35 3866.9 + 0.502 3866.9 + 0.579 3892.594 + 1.239 4277.999 + 1.808 4303.693 + 1.886 4303.693 + 1.919 4188.071 + 2.0 3404.414 + 2.064 2916.234 + 2.152 2569.369 + 2.242 2569.369 + 2.283 2440.901 + 2.347 1965.567 + 2.384 1541.621 + 2.434 1104.829 + 2.485 835.045 + 2.545 719.423 + 2.596 475.333 + 2.717 205.55 + 2.862 51.387 + 2.976 0.0 +; \ No newline at end of file