{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Climbing and Gliding Caveat\n", "\n", "Since this course comprises both _aircraft performance_ and *flight mechanics*, the nomenclature can be a little confusing when trying to keep things consistent across the disciplines.\n", "\n", "Aircraft performance uses simplified models of aircraft mechanics to determine basic relationships for flight. Using these to predict climbing and gliding flight is possible, and will be completed in the following, but some explanation of the nomenclature will be described first.\n", "\n", "## Flight Mechanics Angles\n", "\n", "To describe the aircraft *attitude* a set of angles are used called *Euler angles* - these will be fully described in Module 3. The aircraft *pitch* is defined as the angle between the horizontal and the earth axis, and is given the symbol $\\theta$.\n", "\n", "To describe the aircraft *flight path* a set of angles describing the orientation of the aircraft velocity vector with respect to the earth are used. These are the *flight path angle* $\\gamma$, and the track angle, $\\tau$.\n", "\n", "To describe the *aerodynamic incidence*, the *aerodynamic angles* $\\alpha$ and $\\beta$ are used. $\\alpha$ is angle of attack, and $\\beta$ is sideslip.\n", "\n", "The angles above will be fully explored and utilised in the later modules, but an appreciation of the longitudinal angles is required here:\n", "\n", "```{figure} ../Images/FlightPath_Alpha_Theta.png\n", "---\n", "height: 300px\n", "name: GammaAlphaTheta\n", "---\n", "Relationship between longitudinal angles\n", "```\n", "## Aircraft Performance\n", "\n", "In aircraft performance, the climb or glide angle is denoted by $\\theta$ in numerous texts - for example {cite}`Anderson:1999AP` - and this angle represents the angle between the aircraft flight direction and the horizontal plane.\n", "\n", "Looking at {numref}`GammaAlphaTheta`, you will see that this *should* really be denoted by $\\gamma$. In the following, the glide or climb angle will be denoted by $\\gamma$, but you should be aware that in most texts you will see it denoted by $\\theta$.\n", "\n", "In reality, $\\gamma=\\theta$ if and only if (iff) $\\alpha=0$.\n", "\n", "The distinction is made because this course later requires us to use $\\theta$, and I don't want you getting confused about what the angles mean. \n", "\n", "Since the flight path angle, $\\gamma$, is defined as positive in a *glide* and *negative* in a climb (positive $\\gamma$ gives positive $W_e$ which is velocity _towards_ the earth), it leads to requiring a negative angle continually in the climb expressions. {cite}`Yechout:2014vg` uses a good approach and introduces\n", "\n", "$$\\bar{\\gamma}=\\left|\\gamma\\right|$$\n", "\n", "to avoid the negative expression. For the following, $\\bar{\\gamma}$ will be used." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Gliding Flight (Unpowered Descent)\n", "\n", "The parameters determine above, the lift and hence speeds for *minimum thrust* and *minimum power* are important for determination of an aircraft's glide characteristics.\n", "\n", "```{admonition} Why gliding?\n", ":class: dropdown\n", "\n", "If you've never experienced flight in a glider, I'd thoroughly recommend it (I'm a recent convert to gliding from powered flight).\n", "\n", "It will make you a more rounded aeronautical engineer, and enable you to fully understand the significance of the parameters we're talking about here.\n", "\n", "I'm *trying* to get a flying club set up for our school, so hopefully it'll happen soon...\n", "```\n", "\n", "With no thrust, the aircraft has $T=0$ but $D>0$, so there is no longer force equilibrium. The aircraft will descend at the glide angle $\\bar{\\gamma}$. In a *steady* glide, the horizontal component of weight is equal to the drag.\n", "\n", "```{figure} ../Images/GlideForces.png\n", "---\n", "height: 300px\n", "name: GlideForces\n", "---\n", "Forces on aircraft in a glide\n", "```\n", "\n", "```{admonition} What's actually happening in a glide?\n", ":class: dropdown\n", "\n", "In the preceding section, the aircraft was in equilibrium - the lift was equal to the weight, and the thrust was equal to the drag.\n", "\n", "Drag is the aerodynamic force opposing motion, and has an associated power - which is the *rate that the aircraft does work on the flow* in the direction of motion. During cruise, the *thrust power* ($T\\cdot V$) is equal to the power associated with drag.\n", "\n", "With no input power ($T=0$), in order to maintain a constant forward speed, *some power* has to be input to the aircraft to maintain horizontal equilibrium. As stated, part of the weight vector ($W\\cdot\\sin\\bar{\\gamma}$) opposes the drag.\n", "\n", "The associated power the rate of change of gravitational potential energy. **In a glide, potential energy is being exchanged for kinetic energy to maintain forward speed.**\n", "\n", "```\n", "\n", "## Glide Angle\n", "\n", "In {numref}`GlideForces`, the forces are parallel and perpendicular to the flight path as before, but you should note that this is no longer parallel with the ground. In the horizontal direction, equilibrium gives $W\\cdot\\sin\\bar{\\gamma}=D$ and in the vertical direction, equilibrium gives $L=W\\cdot\\cos\\bar{\\gamma}$. Hence the glide angle can be determined from simple trigonometry:\n", "\n", "$$\\begin{aligned}\\tan\\bar{\\gamma}&=\\frac{D}{L}\\\\\n", "&=\\frac{C_D}{C_L}\\end{aligned}$$\n", "\n", "So it can be seen that the best/shallowest glide (the smallest $\\bar{\\gamma}$) occurs at the minimum drag to lift ratio - *i.e.,* at $C_{L,md}$.\n", "\n", "The glide angle dictates the glide *distance*, which is very important to be aware of in the cockpit in a glider as this dictates the **furthest distance that can be covered along the ground**. \n", "\n", "The aircraft speed equation can be used with $L=W\\cdot\\cos\\bar{\\gamma}$ in place of $L=W$ - which shows that the speed that the shallowest glide occurs is not $V=V_{md}=\\left[\\frac{B}{A}\\right]^\\frac{1}{4}$ as $V_{md}$ as calculated previously is only valid for cruise.\n", "\n", "$$\\begin{aligned}\n", " V&=\\sqrt{\\frac{L}{\\tfrac{1}{2}\\rho\\cdot S\\cdot C_{L,md}}}\\\\\n", " &=\\sqrt{\\frac{W\\cdot\\cos\\bar{\\gamma}}{\\tfrac{1}{2}\\rho\\cdot S\\cdot C_{L,md}}}\\\\\n", " &=\\sqrt{\\frac{W}{\\tfrac{1}{2}\\rho\\cdot S\\cdot C_{L,md}}}\\cdot\\sqrt{\\cos\\bar{\\gamma}}\\\\\n", " &=V_{md}\\cdot\\sqrt{\\cos\\bar{\\gamma}}\\end{aligned}$$\n", "\n", "### Small angle assumption?\n", "\n", "The speed for minimum slide is therefore slower than the minimum drag speed in cruise. Compare the ratio of the two speeds for a range of glide angles:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "scrolled": false, "tags": [ "hide-input" ] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "type": "scatter", "x": [ 2, 2.078078078078078, 2.156156156156156, 2.234234234234234, 2.3123123123123124, 2.3903903903903903, 2.4684684684684686, 2.5465465465465464, 2.6246246246246248, 2.7027027027027026, 2.780780780780781, 2.858858858858859, 2.936936936936937, 3.015015015015015, 3.093093093093093, 3.171171171171171, 3.2492492492492495, 3.3273273273273274, 3.4054054054054053, 3.4834834834834836, 3.561561561561562, 3.6396396396396398, 3.7177177177177176, 3.795795795795796, 3.873873873873874, 3.951951951951952, 4.03003003003003, 4.108108108108109, 4.186186186186186, 4.2642642642642645, 4.342342342342342, 4.42042042042042, 4.498498498498499, 4.576576576576576, 4.654654654654655, 4.732732732732733, 4.8108108108108105, 4.888888888888889, 4.966966966966967, 5.045045045045045, 5.123123123123124, 5.201201201201201, 5.2792792792792795, 5.357357357357357, 5.435435435435435, 5.513513513513514, 5.591591591591592, 5.66966966966967, 5.747747747747748, 5.8258258258258255, 5.903903903903904, 5.981981981981982, 6.06006006006006, 6.138138138138138, 6.216216216216217, 6.2942942942942945, 6.372372372372372, 6.45045045045045, 6.528528528528529, 6.606606606606607, 6.684684684684685, 6.762762762762763, 6.840840840840841, 6.918918918918919, 6.996996996996997, 7.075075075075075, 7.153153153153153, 7.231231231231232, 7.3093093093093096, 7.387387387387387, 7.465465465465465, 7.543543543543544, 7.621621621621622, 7.6996996996997, 7.777777777777778, 7.855855855855856, 7.933933933933934, 8.012012012012011, 8.09009009009009, 8.168168168168169, 8.246246246246248, 8.324324324324325, 8.402402402402402, 8.48048048048048, 8.558558558558559, 8.636636636636638, 8.714714714714715, 8.792792792792792, 8.87087087087087, 8.94894894894895, 9.027027027027028, 9.105105105105105, 9.183183183183184, 9.26126126126126, 9.33933933933934, 9.417417417417418, 9.495495495495495, 9.573573573573574, 9.651651651651651, 9.72972972972973, 9.807807807807809, 9.885885885885887, 9.963963963963964, 10.042042042042043, 10.12012012012012, 10.198198198198199, 10.276276276276276, 10.354354354354355, 10.432432432432433, 10.51051051051051, 10.588588588588589, 10.666666666666668, 10.744744744744745, 10.822822822822824, 10.9009009009009, 10.97897897897898, 11.057057057057058, 11.135135135135135, 11.213213213213214, 11.29129129129129, 11.36936936936937, 11.447447447447448, 11.525525525525525, 11.603603603603604, 11.681681681681683, 11.75975975975976, 11.837837837837839, 11.915915915915916, 11.993993993993994, 12.072072072072073, 12.15015015015015, 12.228228228228229, 12.306306306306306, 12.384384384384385, 12.462462462462463, 12.54054054054054, 12.618618618618619, 12.696696696696698, 12.774774774774775, 12.852852852852854, 12.93093093093093, 13.00900900900901, 13.087087087087088, 13.165165165165165, 13.243243243243244, 13.32132132132132, 13.3993993993994, 13.477477477477478, 13.555555555555555, 13.633633633633634, 13.711711711711713, 13.78978978978979, 13.867867867867869, 13.945945945945946, 14.024024024024024, 14.102102102102103, 14.18018018018018, 14.258258258258259, 14.336336336336338, 14.414414414414415, 14.492492492492493, 14.57057057057057, 14.64864864864865, 14.726726726726728, 14.804804804804805, 14.882882882882884, 14.96096096096096, 15.03903903903904, 15.117117117117118, 15.195195195195195, 15.273273273273274, 15.351351351351353, 15.42942942942943, 15.507507507507508, 15.585585585585585, 15.663663663663664, 15.741741741741743, 15.81981981981982, 15.897897897897899, 15.975975975975976, 16.054054054054056, 16.132132132132135, 16.21021021021021, 16.28828828828829, 16.366366366366368, 16.444444444444443, 16.52252252252252, 16.6006006006006, 16.67867867867868, 16.756756756756758, 16.834834834834837, 16.912912912912915, 16.99099099099099, 17.06906906906907, 17.147147147147148, 17.225225225225223, 17.303303303303302, 17.38138138138138, 17.45945945945946, 17.53753753753754, 17.615615615615617, 17.693693693693696, 17.771771771771775, 17.84984984984985, 17.92792792792793, 18.006006006006007, 18.084084084084086, 18.16216216216216, 18.24024024024024, 18.31831831831832, 18.396396396396398, 18.474474474474476, 18.55255255255255, 18.63063063063063, 18.70870870870871, 18.786786786786788, 18.864864864864867, 18.942942942942942, 19.02102102102102, 19.0990990990991, 19.177177177177178, 19.255255255255257, 19.333333333333336, 19.41141141141141, 19.48948948948949, 19.56756756756757, 19.645645645645647, 19.723723723723726, 19.8018018018018, 19.87987987987988, 19.95795795795796, 20.036036036036037, 20.114114114114116, 20.19219219219219, 20.27027027027027, 20.34834834834835, 20.426426426426428, 20.504504504504506, 20.58258258258258, 20.66066066066066, 20.73873873873874, 20.816816816816818, 20.894894894894897, 20.972972972972972, 21.05105105105105, 21.12912912912913, 21.207207207207208, 21.285285285285287, 21.363363363363366, 21.44144144144144, 21.51951951951952, 21.5975975975976, 21.675675675675677, 21.753753753753756, 21.83183183183183, 21.90990990990991, 21.98798798798799, 22.066066066066067, 22.144144144144146, 22.22222222222222, 22.3003003003003, 22.37837837837838, 22.456456456456458, 22.534534534534536, 22.61261261261261, 22.69069069069069, 22.76876876876877, 22.846846846846848, 22.924924924924927, 23.003003003003005, 23.08108108108108, 23.15915915915916, 23.237237237237238, 23.315315315315317, 23.393393393393396, 23.47147147147147, 23.54954954954955, 23.62762762762763, 23.705705705705707, 23.783783783783786, 23.86186186186186, 23.93993993993994, 24.01801801801802, 24.096096096096097, 24.174174174174176, 24.25225225225225, 24.33033033033033, 24.40840840840841, 24.486486486486488, 24.564564564564566, 24.64264264264264, 24.72072072072072, 24.7987987987988, 24.876876876876878, 24.954954954954957, 25.033033033033036, 25.11111111111111, 25.18918918918919, 25.26726726726727, 25.345345345345347, 25.423423423423426, 25.5015015015015, 25.57957957957958, 25.65765765765766, 25.735735735735737, 25.813813813813816, 25.89189189189189, 25.96996996996997, 26.04804804804805, 26.126126126126128, 26.204204204204206, 26.28228228228228, 26.36036036036036, 26.43843843843844, 26.516516516516518, 26.594594594594597, 26.672672672672675, 26.75075075075075, 26.82882882882883, 26.906906906906908, 26.984984984984987, 27.063063063063066, 27.14114114114114, 27.21921921921922, 27.2972972972973, 27.375375375375377, 27.453453453453456, 27.53153153153153, 27.60960960960961, 27.68768768768769, 27.765765765765767, 27.843843843843846, 27.92192192192192, 28, 28.07807807807808, 28.156156156156158, 28.234234234234236, 28.31231231231231, 28.39039039039039, 28.46846846846847, 28.546546546546548, 28.624624624624627, 28.702702702702705, 28.78078078078078, 28.85885885885886, 28.936936936936938, 29.015015015015017, 29.093093093093096, 29.17117117117117, 29.24924924924925, 29.32732732732733, 29.405405405405407, 29.483483483483486, 29.56156156156156, 29.63963963963964, 29.71771771771772, 29.795795795795797, 29.873873873873876, 29.95195195195195, 30.03003003003003, 30.10810810810811, 30.186186186186188, 30.264264264264266, 30.342342342342345, 30.42042042042042, 30.4984984984985, 30.576576576576578, 30.654654654654657, 30.732732732732735, 30.81081081081081, 30.88888888888889, 30.966966966966968, 31.045045045045047, 31.123123123123126, 31.2012012012012, 31.27927927927928, 31.35735735735736, 31.435435435435437, 31.513513513513516, 31.59159159159159, 31.66966966966967, 31.74774774774775, 31.825825825825827, 31.903903903903906, 31.98198198198198, 32.06006006006006, 32.13813813813814, 32.21621621621622, 32.294294294294296, 32.372372372372375, 32.45045045045045, 32.528528528528525, 32.606606606606604, 32.68468468468468, 32.76276276276276, 32.84084084084084, 32.91891891891892, 32.996996996997, 33.07507507507508, 33.153153153153156, 33.231231231231234, 33.30930930930931, 33.38738738738739, 33.46546546546547, 33.54354354354355, 33.62162162162162, 33.6996996996997, 33.77777777777778, 33.85585585585586, 33.933933933933936, 34.012012012012015, 34.090090090090094, 34.16816816816817, 34.246246246246244, 34.32432432432432, 34.4024024024024, 34.48048048048048, 34.55855855855856, 34.63663663663664, 34.71471471471472, 34.792792792792795, 34.870870870870874, 34.94894894894895, 35.02702702702703, 35.1051051051051, 35.18318318318318, 35.26126126126126, 35.33933933933934, 35.41741741741742, 35.4954954954955, 35.573573573573576, 35.651651651651655, 35.72972972972973, 35.80780780780781, 35.885885885885884, 35.96396396396396, 36.04204204204204, 36.12012012012012, 36.1981981981982, 36.27627627627628, 36.354354354354356, 36.432432432432435, 36.510510510510514, 36.58858858858859, 36.66666666666667, 36.74474474474474, 36.82282282282282, 36.9009009009009, 36.97897897897898, 37.05705705705706, 37.13513513513514, 37.213213213213216, 37.291291291291294, 37.36936936936937, 37.44744744744745, 37.525525525525524, 37.6036036036036, 37.68168168168168, 37.75975975975976, 37.83783783783784, 37.91591591591592, 37.993993993993996, 38.072072072072075, 38.150150150150154, 38.22822822822823, 38.306306306306304, 38.38438438438438, 38.46246246246246, 38.54054054054054, 38.61861861861862, 38.6966966966967, 38.77477477477478, 38.852852852852855, 38.930930930930934, 39.00900900900901, 39.08708708708709, 39.16516516516516, 39.24324324324324, 39.32132132132132, 39.3993993993994, 39.47747747747748, 39.55555555555556, 39.633633633633636, 39.711711711711715, 39.78978978978979, 39.86786786786787, 39.945945945945944, 40.02402402402402, 40.1021021021021, 40.18018018018018, 40.25825825825826, 40.33633633633634, 40.414414414414416, 40.492492492492495, 40.570570570570574, 40.64864864864865, 40.72672672672673, 40.8048048048048, 40.88288288288288, 40.96096096096096, 41.03903903903904, 41.11711711711712, 41.1951951951952, 41.273273273273276, 41.351351351351354, 41.42942942942943, 41.50750750750751, 41.585585585585584, 41.66366366366366, 41.74174174174174, 41.81981981981982, 41.8978978978979, 41.97597597597598, 42.054054054054056, 42.132132132132135, 42.210210210210214, 42.28828828828829, 42.36636636636637, 42.44444444444444, 42.52252252252252, 42.6006006006006, 42.67867867867868, 42.75675675675676, 42.83483483483484, 42.912912912912915, 42.990990990990994, 43.06906906906907, 43.14714714714715, 43.22522522522522, 43.3033033033033, 43.38138138138138, 43.45945945945946, 43.53753753753754, 43.61561561561562, 43.693693693693696, 43.771771771771775, 43.84984984984985, 43.92792792792793, 44.00600600600601, 44.08408408408408, 44.16216216216216, 44.24024024024024, 44.31831831831832, 44.3963963963964, 44.474474474474476, 44.552552552552555, 44.630630630630634, 44.70870870870871, 44.78678678678679, 44.86486486486486, 44.94294294294294, 45.02102102102102, 45.0990990990991, 45.17717717717718, 45.25525525525526, 45.333333333333336, 45.411411411411414, 45.48948948948949, 45.56756756756757, 45.64564564564565, 45.72372372372372, 45.8018018018018, 45.87987987987988, 45.95795795795796, 46.03603603603604, 46.114114114114116, 46.192192192192195, 46.270270270270274, 46.34834834834835, 46.42642642642643, 46.5045045045045, 46.58258258258258, 46.66066066066066, 46.73873873873874, 46.81681681681682, 46.8948948948949, 46.972972972972975, 47.051051051051054, 47.12912912912913, 47.20720720720721, 47.28528528528528, 47.36336336336336, 47.44144144144144, 47.51951951951952, 47.5975975975976, 47.67567567567568, 47.753753753753756, 47.831831831831835, 47.90990990990991, 47.98798798798799, 48.06606606606607, 48.14414414414414, 48.22222222222222, 48.3003003003003, 48.37837837837838, 48.45645645645646, 48.53453453453454, 48.612612612612615, 48.690690690690694, 48.76876876876877, 48.84684684684685, 48.92492492492492, 49.003003003003, 49.08108108108108, 49.15915915915916, 49.23723723723724, 49.31531531531532, 49.393393393393396, 49.471471471471475, 49.54954954954955, 49.62762762762763, 49.70570570570571, 49.78378378378378, 49.86186186186186, 49.93993993993994, 50.01801801801802, 50.0960960960961, 50.174174174174176, 50.252252252252255, 50.330330330330334, 50.40840840840841, 50.48648648648649, 50.56456456456456, 50.64264264264264, 50.72072072072072, 50.7987987987988, 50.87687687687688, 50.95495495495496, 51.033033033033036, 51.111111111111114, 51.18918918918919, 51.26726726726727, 51.34534534534535, 51.42342342342342, 51.5015015015015, 51.57957957957958, 51.65765765765766, 51.73573573573574, 51.813813813813816, 51.891891891891895, 51.96996996996997, 52.04804804804805, 52.12612612612613, 52.2042042042042, 52.28228228228228, 52.36036036036036, 52.43843843843844, 52.51651651651652, 52.5945945945946, 52.672672672672675, 52.750750750750754, 52.82882882882883, 52.90690690690691, 52.98498498498499, 53.06306306306306, 53.14114114114114, 53.21921921921922, 53.2972972972973, 53.37537537537538, 53.453453453453456, 53.531531531531535, 53.60960960960961, 53.68768768768769, 53.76576576576577, 53.84384384384384, 53.92192192192192, 54, 54.07807807807808, 54.15615615615616, 54.234234234234236, 54.312312312312315, 54.390390390390394, 54.46846846846847, 54.54654654654655, 54.62462462462462, 54.7027027027027, 54.78078078078078, 54.85885885885886, 54.93693693693694, 55.01501501501502, 55.093093093093096, 55.171171171171174, 55.24924924924925, 55.32732732732733, 55.40540540540541, 55.48348348348348, 55.56156156156156, 55.63963963963964, 55.71771771771772, 55.7957957957958, 55.873873873873876, 55.951951951951955, 56.030030030030034, 56.10810810810811, 56.18618618618619, 56.26426426426426, 56.34234234234234, 56.42042042042042, 56.4984984984985, 56.57657657657658, 56.65465465465466, 56.732732732732735, 56.810810810810814, 56.88888888888889, 56.96696696696697, 57.04504504504505, 57.12312312312312, 57.2012012012012, 57.27927927927928, 57.35735735735736, 57.43543543543544, 57.513513513513516, 57.591591591591595, 57.66966966966967, 57.74774774774775, 57.82582582582583, 57.9039039039039, 57.98198198198198, 58.06006006006006, 58.13813813813814, 58.21621621621622, 58.294294294294296, 58.372372372372375, 58.450450450450454, 58.52852852852853, 58.60660660660661, 58.68468468468469, 58.76276276276276, 58.84084084084084, 58.91891891891892, 58.996996996997, 59.07507507507508, 59.153153153153156, 59.231231231231234, 59.30930930930931, 59.38738738738739, 59.46546546546547, 59.54354354354354, 59.62162162162162, 59.6996996996997, 59.77777777777778, 59.85585585585586, 59.933933933933936, 60.012012012012015, 60.090090090090094, 60.16816816816817, 60.24624624624625, 60.32432432432433, 60.4024024024024, 60.48048048048048, 60.55855855855856, 60.63663663663664, 60.71471471471472, 60.792792792792795, 60.870870870870874, 60.94894894894895, 61.02702702702703, 61.10510510510511, 61.18318318318318, 61.26126126126126, 61.33933933933934, 61.41741741741742, 61.4954954954955, 61.573573573573576, 61.651651651651655, 61.72972972972973, 61.80780780780781, 61.88588588588589, 61.96396396396396, 62.04204204204204, 62.12012012012012, 62.1981981981982, 62.27627627627628, 62.354354354354356, 62.432432432432435, 62.510510510510514, 62.58858858858859, 62.66666666666667, 62.74474474474475, 62.82282282282282, 62.9009009009009, 62.97897897897898, 63.05705705705706, 63.13513513513514, 63.213213213213216, 63.291291291291294, 63.36936936936937, 63.44744744744745, 63.52552552552553, 63.6036036036036, 63.68168168168168, 63.75975975975976, 63.83783783783784, 63.91591591591592, 63.993993993993996, 64.07207207207207, 64.15015015015015, 64.22822822822823, 64.30630630630631, 64.38438438438439, 64.46246246246247, 64.54054054054055, 64.61861861861863, 64.6966966966967, 64.77477477477478, 64.85285285285286, 64.93093093093094, 65.00900900900902, 65.0870870870871, 65.16516516516518, 65.24324324324324, 65.32132132132132, 65.3993993993994, 65.47747747747748, 65.55555555555556, 65.63363363363364, 65.71171171171171, 65.7897897897898, 65.86786786786787, 65.94594594594595, 66.02402402402403, 66.10210210210211, 66.18018018018019, 66.25825825825827, 66.33633633633634, 66.41441441441442, 66.49249249249249, 66.57057057057057, 66.64864864864865, 66.72672672672672, 66.8048048048048, 66.88288288288288, 66.96096096096096, 67.03903903903904, 67.11711711711712, 67.1951951951952, 67.27327327327328, 67.35135135135135, 67.42942942942943, 67.50750750750751, 67.58558558558559, 67.66366366366367, 67.74174174174175, 67.81981981981983, 67.8978978978979, 67.97597597597598, 68.05405405405406, 68.13213213213213, 68.2102102102102, 68.28828828828829, 68.36636636636636, 68.44444444444444, 68.52252252252252, 68.6006006006006, 68.67867867867868, 68.75675675675676, 68.83483483483484, 68.91291291291292, 68.990990990991, 69.06906906906907, 69.14714714714715, 69.22522522522523, 69.30330330330331, 69.38138138138139, 69.45945945945947, 69.53753753753755, 69.61561561561562, 69.6936936936937, 69.77177177177177, 69.84984984984985, 69.92792792792793, 70.006006006006, 70.08408408408408, 70.16216216216216, 70.24024024024024, 70.31831831831832, 70.3963963963964, 70.47447447447448, 70.55255255255256, 70.63063063063063, 70.70870870870871, 70.78678678678679, 70.86486486486487, 70.94294294294295, 71.02102102102103, 71.0990990990991, 71.17717717717719, 71.25525525525526, 71.33333333333334, 71.41141141141141, 71.48948948948949, 71.56756756756756, 71.64564564564564, 71.72372372372372, 71.8018018018018, 71.87987987987988, 71.95795795795796, 72.03603603603604, 72.11411411411412, 72.1921921921922, 72.27027027027027, 72.34834834834835, 72.42642642642643, 72.50450450450451, 72.58258258258259, 72.66066066066067, 72.73873873873875, 72.81681681681683, 72.8948948948949, 72.97297297297298, 73.05105105105105, 73.12912912912913, 73.2072072072072, 73.28528528528528, 73.36336336336336, 73.44144144144144, 73.51951951951952, 73.5975975975976, 73.67567567567568, 73.75375375375376, 73.83183183183183, 73.90990990990991, 73.98798798798799, 74.06606606606607, 74.14414414414415, 74.22222222222223, 74.30030030030031, 74.37837837837839, 74.45645645645646, 74.53453453453454, 74.61261261261261, 74.69069069069069, 74.76876876876877, 74.84684684684684, 74.92492492492492, 75.003003003003, 75.08108108108108, 75.15915915915916, 75.23723723723724, 75.31531531531532, 75.3933933933934, 75.47147147147147, 75.54954954954955, 75.62762762762763, 75.70570570570571, 75.78378378378379, 75.86186186186187, 75.93993993993995, 76.01801801801803, 76.0960960960961, 76.17417417417418, 76.25225225225225, 76.33033033033033, 76.4084084084084, 76.48648648648648, 76.56456456456456, 76.64264264264264, 76.72072072072072, 76.7987987987988, 76.87687687687688, 76.95495495495496, 77.03303303303304, 77.11111111111111, 77.1891891891892, 77.26726726726727, 77.34534534534535, 77.42342342342343, 77.50150150150151, 77.57957957957959, 77.65765765765767, 77.73573573573574, 77.81381381381382, 77.89189189189189, 77.96996996996997, 78.04804804804805, 78.12612612612612, 78.2042042042042, 78.28228228228228, 78.36036036036036, 78.43843843843844, 78.51651651651652, 78.5945945945946, 78.67267267267268, 78.75075075075075, 78.82882882882883, 78.90690690690691, 78.98498498498499, 79.06306306306307, 79.14114114114115, 79.21921921921923, 79.2972972972973, 79.37537537537538, 79.45345345345346, 79.53153153153153, 79.6096096096096, 79.68768768768768, 79.76576576576576, 79.84384384384384, 79.92192192192192, 80 ], "y": [ 26.56505117707799, 25.69750521291236, 24.881318647937267, 24.11236548496735, 23.38691529636144, 22.701591956195138, 22.053336541581807, 21.43937411612184, 20.857184073428847, 20.304473709960437, 19.779154704039108, 19.279322195260228, 18.803236180962152, 18.349304971142434, 17.916070468271748, 17.502195062735066, 17.106449957455574, 16.727704756288855, 16.364918169880912, 16.017129709862097, 15.683452257577846, 15.36306540715964, 15.055209494759799, 14.759180236363996, 14.47432390590487, 14.200032993571751, 13.935742291377064, 13.680925359319364, 13.435091330985129, 13.197782022251875, 12.96856931098035, 12.747052759287731, 12.532857453243796, 12.325632037685132, 12.125046926349302, 11.930792669735627, 11.742578465039548, 11.560130794217766, 11.383192177749324, 11.211520032989682, 11.044885627192105, 10.883073116312463, 10.725878661636598, 10.573109617088226, 10.424583780802203, 10.280128705194585, 10.139581060335976, 10.002786045947504, 9.869596847795938, 9.739874134672988, 9.61348559250899, 9.490305492498097, 9.370214290404965, 9.253098254485822, 9.138849119692676, 9.027363766041677, 8.91854391921755, 8.812295871658055, 8.708530222517577, 8.607161635048987, 8.508108610069431, 8.411293274290328, 8.316641182395333, 8.224081131844088, 8.133544989464765, 8.044967528975771, 7.958286278647363, 7.87344137837783, 7.790375445517186, 7.709033448824419, 7.629362589992668, 7.551312192220993, 7.474833595351702, 7.399880057129127, 7.326406660169546, 7.254370224262872, 7.183729223655052, 7.11444370898617, 7.046475233583092, 6.979786783827452, 6.9143427133398845, 6.850108680740024, 6.78705159075879, 6.7251395384953, 6.664341756625173, 6.604628565380383, 6.545971325133244, 6.488342391428384, 6.431715072317273, 6.376063587859469, 6.321363031663913, 6.267589334351851, 6.214719228830807, 6.16273021727615, 6.1116005397234945, 6.061309144181377, 6.011835658179359, 5.9631603616720845, 5.915264161224808, 5.868128565410461, 5.821735661352721, 5.776068092353491, 5.731109036546951, 5.686842186525867, 5.643251729889025, 5.600322330661759, 5.558039111544334, 5.516387636945605, 5.475353896761872, 5.434924290863115, 5.395085614251019, 5.35582504285519, 5.317130119935856, 5.278988743063174, 5.24138915164488, 5.204319914975612, 5.167769920782697, 5.131728364244584, 5.096184737459367, 5.061128819342114, 5.026550665930779, 4.992440601081651, 4.958789207536204, 4.925587318342231, 4.8928260086130315, 4.860496587609223, 4.828590591128586, 4.797099774190106, 4.766016103999019, 4.73533175318042, 4.705039093269555, 4.675130688447529, 4.645599289511753, 4.6164378280709215, 4.5876394109548775, 4.559197314830152, 4.531104981012395, 4.503356010467431, 4.47594415899293, 4.4488633325731906, 4.422107582899826, 4.39567110305148, 4.36954822332606, 4.343733407219238, 4.318221247543283, 4.293006462680565, 4.268083892966302, 4.243448497195397, 4.219095349248455, 4.195019634832231, 4.171216648330044, 4.147681789757874, 4.124410561821981, 4.101398567074198, 4.0786415051610625, 4.056135170163286, 4.033875448022048, 4.0118583140488795, 3.9900798305159775, 3.9685361443239398, 3.9472234847440397, 3.9261381612322754, 3.905276561312563, 3.8846351485265256, 3.864210460447455, 3.843999106756122, 3.823997767376204, 3.8042031906671734, 3.7846121916726236, 3.765221650422033, 3.7460285102840936, 3.727029776369782, 3.7082225139834417, 3.6896038471201837, 3.671170957008029, 3.6529210806932144, 3.634851509667207, 3.616959588533989, 3.599242713716248, 3.581698332199153, 3.5643239403104485, 3.547117082535661, 3.5300753503672264, 3.513196381186425, 3.496477857177045, 3.4799175042697157, 3.4635130911159098, 3.44726242809066, 3.4311633663230436, 3.4152137967535428, 3.399411649217419, 3.3837548915532674, 3.3682415287359473, 3.3528696020331137, 3.3376371881846176, 3.3225423986040337, 3.307583378601639, 3.2927583066281794, 3.2780653935387547, 3.2635028818762266, 3.249069045173535, 3.2347621872743493, 3.2205806416714866, 3.2065227708625756, 3.1925869657224215, 3.178771644891593, 3.165075254180722, 3.1514962659900707, 3.138033178743885, 3.1246845163391295, 3.111448827608147, 3.0983246857948634, 3.0853106880441095, 3.072405454903718, 3.0596076298389896, 3.0469158787591883, 3.0343288895557206, 3.021845371651656, 3.0094640555622725, 2.997183692466315, 2.985003053787648, 2.9729209307870375, 2.9609361341637497, 2.9490474936667113, 2.937253857714951, 2.925554093027083, 2.9139470842595614, 2.9024317336534793, 2.8910069606896727, 2.8796717017519047, 2.868424909797906, 2.8572655540380643, 2.8461926196215517, 2.835205107329693, 2.82430203327638, 2.813482428615344, 2.8027453392541006, 2.7920898255743998, 2.7815149621589956, 2.7710198375245825, 2.7606035538607325, 2.750265226774666, 2.740003985041725, 2.7298189703613867, 2.7197093371186707, 2.709674252150822, 2.699712894519106, 2.6898244552856116, 2.6800081372949176, 2.6702631549605065, 2.660588734055803, 2.6509841115097235, 2.6414485352066226, 2.6319812637905255, 2.62258156647354, 2.613248722848344, 2.603982022704651, 2.5947807658495523, 2.585644261931643, 2.5765718302688305, 2.5675627996797554, 2.5586165083187145, 2.5497323035140176, 2.540909541609685, 2.5321475878104116, 2.523445816029717, 2.5148036087412065, 2.506220356832864, 2.497695459464318, 2.4892283239269886, 2.4808183655070732, 2.472465007351284, 2.4641676803352826, 2.455925822934746, 2.4477388810990033, 2.4396063081271895, 2.43152756454684, 2.4235021179948935, 2.4155294431010335, 2.407609021373314, 2.3997403410860287, 2.3919228971697555, 2.384156191103549, 2.3764397308092096, 2.3687730305475982, 2.3611556108169496, 2.353586998253124, 2.346066725531782, 2.3385943312724082, 2.331169359944167, 2.3237913617735395, 2.3164598926537026, 2.309174514055616, 2.3019347929407723, 2.294740301675585, 2.287590617947367, 2.2804853246818757, 2.273424009962382, 2.266406266950238, 2.2594316938068992, 2.2524998936173932, 2.2456104743151744, 2.238763048608357, 2.2319572339072895, 2.2251926522534453, 2.218468930249591, 2.2117856989912212, 2.205142593999227, 2.198539255153764, 2.1919753266293074, 2.185450456830862, 2.1789642983313082, 2.172516507809853, 2.166106745991573, 2.1597346775880175, 2.153399971238858, 2.1471022994545557, 2.1408413385600333, 2.134616768639325, 2.1284282734811857, 2.1222755405256466, 2.116158260811486, 2.110076128924611, 2.1040288429473164, 2.0980161044084213, 2.0920376182342486, 2.086093092700442, 2.080182239384601, 2.0743047731197106, 2.0684604119483696, 2.0626488770777724, 2.0568698928354623, 2.05112318662581, 2.0454084888872277, 2.0397255330500954, 2.034074055495377, 2.0284537955139283, 2.0228644952664765, 2.0173058997442475, 2.011777756730259, 2.0062798167612264, 2.000811833090104, 1.9953735616492283, 1.989964761014065, 1.984585192367538, 1.9792346194649377, 1.9739128085993947, 1.9686195285679016, 1.9633545506378907, 1.9581176485143308, 1.9529085983073609, 1.947727178500433, 1.9425731699189577, 1.9374463556994481, 1.9323465212591504, 1.92727345426615, 1.9222269446099485, 1.9172067843724983, 1.9122127677996916, 1.907244691273292, 1.9023023532833006, 1.8973855544007523, 1.89249409725093, 1.8876277864869915, 1.8827864287640028, 1.8779698327133674, 1.8731778089176496, 1.8684101698857771, 1.8636667300286247, 1.858947305634965, 1.8542517148477853, 1.8495797776409628, 1.8449313157962857, 1.8403061528808273, 1.83570411422465, 1.8311250268988504, 1.8265687196939275, 1.8220350230984714, 1.8175237692781736, 1.8130347920551404, 1.808567926887516, 1.8041230108494082, 1.799699882611101, 1.7952983824195645, 1.7909183520792464, 1.7865596349331425, 1.7822220758441465, 1.7779055211766654, 1.773609818778505, 1.7693348179630144, 1.7650803694914894, 1.7608463255558273, 1.7566325397614309, 1.7524388671103595, 1.7482651639847147, 1.7441112881302683, 1.7399770986403187, 1.735862455939779, 1.731767221769488, 1.7276912591707434, 1.723634432470051, 1.719596607264091, 1.7155776504048916, 1.7115774299852118, 1.7075958153241269, 1.7036326769528145, 1.6996878866005378, 1.6957613171808237, 1.6918528427778312, 1.6879623386329055, 1.684089681131322, 1.6802347477892063, 1.6763974172406373, 1.6725775692249238, 1.668775084574057, 1.6649898452003304, 1.661221734084131, 1.6574706352618926, 1.6537364338142138, 1.6500190158541341, 1.64631826851557, 1.6426340799419046, 1.6389663392747291, 1.6353149366427369, 1.631679763150764, 1.628060710868974, 1.6244576728221896, 1.6208705429793635, 1.6172992162431876, 1.6137435884398394, 1.6102035563088648, 1.6066790174931918, 1.603169870529275, 1.5996760148373714, 1.5961973507119378, 1.5927337793121568, 1.5892852026525888, 1.5858515235939354, 1.5824326458339315, 1.5790284738983509, 1.5756389131321267, 1.5722638696905888, 1.5689032505308098, 1.5655569634030648, 1.562224916842398, 1.558907020160298, 1.5556031834364776, 1.5523133175107593, 1.549037333975062, 1.5457751451654889, 1.5425266641545172, 1.5392918047432818, 1.5360704814539605, 1.532862609522251, 1.5296681048899439, 1.5264868841975863, 1.523318864777238, 1.52016396464532, 1.5170221024955448, 1.5138931976919419, 1.5107771702619628, 1.5076739408896767, 1.5045834309090445, 1.5015055622972788, 1.4984402576682834, 1.495387440266175, 1.4923470339588796, 1.4893189632318116, 1.4863031531816273, 1.4832995295100542, 1.4803080185177933, 1.4773285470984991, 1.4743610427328286, 1.4714054334825615, 1.4684616479847947, 1.4655296154462014, 1.4626092656373626, 1.4597005288871634, 1.4568033360772585, 1.4539176186366023, 1.4510433085360421, 1.448180338282978, 1.4453286409160842, 1.4424881500000934, 1.4396587996206414, 1.4368405243791733, 1.4340332593879086, 1.4312369402648648, 1.428451503128941, 1.4256768845950571, 1.4229130217693484, 1.4201598522444188, 1.4174173140946467, 1.414685345871546, 1.411963886599181, 1.4092528757696328, 1.406552253338519, 1.4038619597205642, 1.4011819357852195, 1.398512122852338, 1.3958524626878912, 1.3932028974997404, 1.3905633699334532, 1.3879338230681693, 1.3853142004125105, 1.3827044459005402, 1.3801045038877655, 1.3775143191471855, 1.3749338368653832, 1.3723630026386642, 1.3698017624692347, 1.3672500627614237, 1.3647078503179473, 1.362175072336216, 1.3596516764046793, 1.3571376104992159, 1.3546328229795594, 1.3521372625857646, 1.349650878434716, 1.3471736200166688, 1.3447054371918334, 1.3422462801869934, 1.3397960995921652, 1.3373548463572869, 1.3349224717889512, 1.3324989275471684, 1.3300841656421674, 1.3276781384312293, 1.3252807986155568, 1.3228920992371778, 1.3205119936758796, 1.3181404356461808, 1.3157773791943304, 1.3134227786953439, 1.311076588850067, 1.3087387646822743, 1.3064092615357958, 1.304088035071677, 1.301775041265367, 1.299470236403937, 1.2971735770833277, 1.2948850202056281, 1.2926045229763816, 1.290332042901918, 1.2880675377867186, 1.2858109657308043, 1.2835622851271544, 1.2813214546591505, 1.2790884332980479, 1.2768631803004726, 1.274645655205946, 1.2724358178344337, 1.2702336282839197, 1.2680390469280076, 1.2658520344135438, 1.2636725516582679, 1.261500559848487, 1.2593360204367696, 1.257178895139671, 1.2550291459354748, 1.2528867350619617, 1.250751625014199, 1.2486237785423535, 1.246503158649528, 1.2443897285896168, 1.2422834518651853, 1.2401842922253699, 1.2380922136637993, 1.2360071804165393, 1.2339291569600537, 1.2318581080091877, 1.2297939985151742, 1.2277367936636572, 1.225686458872734, 1.2236429597910214, 1.2216062622957353, 1.2195763324907953, 1.2175531367049433, 1.215536641489885, 1.2135268136184452, 1.2115236200827464, 1.2095270280924009, 1.207537005072724, 1.205553518662962, 1.2035765367145417, 1.2016060272893312, 1.199641958657924, 1.197684299297935, 1.195733017892316, 1.193788083327686, 1.1918494646926796, 1.1899171312763095, 1.1879910525663449, 1.1860711982477088, 1.1841575382008855, 1.1822500425003495, 1.180348681413003, 1.178453425396636, 1.1765642450983922, 1.1746811113532596, 1.1728039951825662, 1.170932867792498, 1.1690677005726233, 1.16720846509444, 1.1653551331099294, 1.1635076765501253, 1.1616660675237012, 1.1598302783155634, 1.1580002813854655, 1.1561760493666287, 1.1543575550643794, 1.1525447714547996, 1.150737671683388, 1.1489362290637337, 1.147140417076206, 1.1453502093666508, 1.1435655797451039, 1.1417865021845137, 1.1400129508194767, 1.1382448999449857, 1.1364823240151867, 1.1347251976421504, 1.1329734955946544, 1.1312271927969741, 1.1294862643276897, 1.1277506854184984, 1.1260204314530424, 1.1242954779657446, 1.122575800640657, 1.1208613753103172, 1.1191521779546187, 1.1174481846996882, 1.1157493718167752, 1.1140557157211517, 1.1123671929710197, 1.110683780266432, 1.1090054544482193, 1.1073321924969308, 1.1056639715317804, 1.1040007688096047, 1.1023425617238307, 1.1006893278034517, 1.0990410447120125, 1.0973976902466036, 1.0957592423368656, 1.0941256790440017, 1.0924969785597982, 1.0908731192056544, 1.0892540794316223, 1.0876398378154528, 1.0860303730616523, 1.084425664000545, 1.082825689587347, 1.0812304289012455, 1.0796398611444886, 1.078053965641481, 1.0764727218378873, 1.0748961092997478, 1.0733241077125955, 1.0717566968805863, 1.0701938567256326, 1.068635567286547, 1.0670818087181946, 1.0655325612906474, 1.0639878053883538, 1.062447521509307, 1.0609116902642277, 1.0593802923757496, 1.0578533086776134, 1.0563307201138674, 1.0548125077380752, 1.0532986527125312, 1.0517891363074803, 1.050283939900346, 1.0487830449749664, 1.0472864331208334, 1.0457940860323418, 1.0443059855080425, 1.0428221134499027, 1.0413424518625725, 1.039866982852659, 1.0383956886280037, 1.0369285514969688, 1.0354655538677275, 1.034006678247562, 1.0325519072421658, 1.0311012235549537, 1.0296546099863755, 1.0282120494332372, 1.0267735248880272, 1.0253390194382481, 1.0239085162657542, 1.0224819986460947, 1.0210594499478616, 1.0196408536320443, 1.0182261932513892, 1.0168154524497628, 1.0154086149615233, 1.0140056646108948, 1.0126065853113477, 1.0112113610649844, 1.00981997596193, 1.0084324141797263, 1.007048659982735, 1.0056686977215399, 1.0042925118323602, 1.0029200868364632, 1.001551407339586, 1.000186458031358, 0.9988252236847339, 0.9974676891554233, 0.9961138393813326, 0.9947636593820068, 0.9934171342580771, 0.992074249190713, 0.9907349894410803, 0.9893993403498004, 0.9880672873364161, 0.9867388158988618, 0.985413911612937, 0.9840925601317837, 0.9827747471853711, 0.9814604585799793, 0.9801496801976916, 0.9788423979958887, 0.9775385980067476, 0.9762382663367439, 0.9749413891661591, 0.9736479527485908, 0.9723579434104669, 0.9710713475505646, 0.9697881516395325, 0.9685083422194161, 0.9672319059031879, 0.9659588293742802, 0.9646890993861235, 0.9634227027616851, 0.9621596263930157, 0.9608998572407956, 0.9596433823338878, 0.9583901887688909, 0.9571402637096995, 0.9558935943870654, 0.9546501680981623, 0.953409972206155, 0.9521729941397719, 0.9509392213928798, 0.949708641524063, 0.9484812421562051, 0.9472570109760732, 0.9460359357339084, 0.9448180042430152, 0.9436032043793584, 0.9423915240811586, 0.9411829513484946, 0.9399774742429077, 0.9387750808870073, 0.9375757594640823, 0.9363794982177136, 0.9351862854513897, 0.9339961095281265, 0.9328089588700882, 0.9316248219582128, 0.9304436873318395, 0.9292655435883385, 0.9280903793827447, 0.9269181834273937, 0.9257489444915602, 0.9245826514011004, 0.9234192930380937, 0.9222588583404936, 0.9211013363017725, 0.919946715970578, 0.9187949864503848, 0.9176461368991536, 0.9165001565289902, 0.9153570346058081, 0.914216760448994, 0.9130793234310748, 0.9119447129773871, 0.9108129185657506, 0.9096839297261422, 0.9085577360403734, 0.9074343271417709, 0.9063136927148563, 0.9051958224950332, 0.9040807062682716, 0.9029683338707993, 0.9018586951887906, 0.9007517801580616, 0.8996475787637654, 0.8985460810400907, 0.8974472770699616, 0.8963511569847401, 0.8952577109639306, 0.8941669292348872, 0.8930788020725227, 0.8919933197990187, 0.8909104727835403, 0.8898302514419496, 0.8887526462365247, 0.8876776476756777, 0.8866052463136773, 0.8855354327503714, 0.8844681976309127, 0.8834035316454864, 0.8823414255290393, 0.8812818700610111, 0.8802248560650682, 0.8791703744088378, 0.8781184160036463, 0.8770689718042567, 0.8760220328086114, 0.8749775900575727, 0.8739356346346693, 0.8728961576658415, 0.8718591503191891, 0.8708246038047226, 0.8697925093741137, 0.8687628583204494, 0.8677356419779868, 0.8667108517219111, 0.8656884789680926, 0.8646685151728487, 0.8636509518327048, 0.8626357804841588, 0.8616229927034468, 0.8606125801063084, 0.8596045343477577, 0.8585988471218525, 0.8575955101614656, 0.8565945152380601, 0.8555958541614626, 0.8545995187796414, 0.8536055009784838, 0.8526137926815761, 0.8516243858499853, 0.8506372724820418, 0.8496524446131236, 0.8486698943154416, 0.8476896136978284, 0.8467115949055256, 0.8457358301199753, 0.8447623115586108, 0.8437910314746503, 0.8428219821568911, 0.8418551559295062, 0.8408905451518414, 0.8399281422182134, 0.8389679395577109, 0.8380099296339961, 0.837054104945107, 0.8361004580232622, 0.8351489814346653, 0.8341996677793139, 0.8332525096908057, 0.8323074998361493, 0.831364630915575, 0.8304238956623454, 0.8294852868425708, 0.828548797255023, 0.8276144197309502, 0.8266821471338962, 0.8257519723595166, 0.8248238883353999, 0.8238978880208877, 0.8229739644068966, 0.8220521105157421, 0.8211323194009621, 0.8202145841471424, 0.819298897869745, 0.818385253714934, 0.8174736448594058, 0.816564064510219, 0.8156565059046259, 0.8147509623099047, 0.8138474270231929, 0.8129458933713225, 0.8120463547106551, 0.8111488044269195, 0.810253235935049, 0.8093596426790208, 0.8084680181316954, 0.8075783557946586, 0.8066906491980639, 0.8058048919004734, 0.8049210774887052, 0.8040391995776769, 0.8031592518102517, 0.8022812278570868, 0.8014051214164799, 0.800530926214221, 0.7996586360034401, 0.7987882445644606, 0.7979197457046499, 0.7970531332582732, 0.7961884010863478, 0.795325543076498, 0.794464553142811, 0.7936054252256943, 0.7927481532917326, 0.791892731333548, 0.7910391533696586, 0.7901874134443393, 0.7893375056274838, 0.7884894240144663, 0.7876431627260061, 0.7867987159080296, 0.7859560777315379, 0.7851152423924703, 0.7842762041115734, 0.7834389571342659, 0.7826034957305105, 0.7817698141946801, 0.78093790684543, 0.7801077680255679, 0.7792793921019256, 0.7784527734652328, 0.7776279065299888, 0.7768047857343379, 0.7759834055399443, 0.7751637604318675, 0.7743458449184393, 0.7735296535311409, 0.7727151808244811, 0.7719024213758756, 0.7710913697855263, 0.7702820206763011, 0.769474368693617, 0.7686684085053204, 0.7678641348015698, 0.76706154229472, 0.7662606257192061, 0.7654613798314278, 0.7646637994096359, 0.7638678792538179, 0.7630736141855852, 0.7622809990480601, 0.7614900287057664, 0.7607006980445159, 0.7599130019712999, 0.759126935414179, 0.7583424933221745, 0.7575596706651601, 0.7567784624337544, 0.7559988636392142, 0.7552208693133287, 0.7544444745083126, 0.7536696742967032, 0.7528964637712544, 0.7521248380448345, 0.7513547922503226, 0.7505863215405058, 0.7498194210879785, 0.7490540860850405, 0.748290311743598, 0.7475280932950615, 0.7467674259902488, 0.7460083050992844, 0.7452507259115033, 0.7444946837353525, 0.7437401738982945, 0.7429871917467109, 0.7422357326458069, 0.7414857919795164, 0.7407373651504068, 0.7399904475795858, 0.7392450347066081, 0.7385011219893818, 0.7377587049040771, 0.737017778945034, 0.7362783396246712, 0.735540382473396, 0.7348039030395138, 0.7340688968891387, 0.7333353596061043, 0.7326032867918763, 0.7318726740654631, 0.7311435170633296, 0.7304158114393101, 0.7296895528645216, 0.7289647370272778, 0.7282413596330046, 0.727519416404155, 0.7267989030801246, 0.7260798154171676, 0.7253621491883137, 0.7246459001832861, 0.7239310642084177, 0.7232176370865704, 0.7225056146570533, 0.721794992775542, 0.7210857673139981, 0.7203779341605894, 0.7196714892196098, 0.7189664284114018, 0.718262747672276, 0.7175604429544354, 0.7168595102258954, 0.7161599454704085 ] } ], "layout": { "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Glide Angle vs. Glide Ratio" }, "xaxis": { "title": { "text": "Glide Ratio" } }, "yaxis": { "title": { "text": "Glide Angle / deg" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "type": "scatter", "x": [ 2, 2.078078078078078, 2.156156156156156, 2.234234234234234, 2.3123123123123124, 2.3903903903903903, 2.4684684684684686, 2.5465465465465464, 2.6246246246246248, 2.7027027027027026, 2.780780780780781, 2.858858858858859, 2.936936936936937, 3.015015015015015, 3.093093093093093, 3.171171171171171, 3.2492492492492495, 3.3273273273273274, 3.4054054054054053, 3.4834834834834836, 3.561561561561562, 3.6396396396396398, 3.7177177177177176, 3.795795795795796, 3.873873873873874, 3.951951951951952, 4.03003003003003, 4.108108108108109, 4.186186186186186, 4.2642642642642645, 4.342342342342342, 4.42042042042042, 4.498498498498499, 4.576576576576576, 4.654654654654655, 4.732732732732733, 4.8108108108108105, 4.888888888888889, 4.966966966966967, 5.045045045045045, 5.123123123123124, 5.201201201201201, 5.2792792792792795, 5.357357357357357, 5.435435435435435, 5.513513513513514, 5.591591591591592, 5.66966966966967, 5.747747747747748, 5.8258258258258255, 5.903903903903904, 5.981981981981982, 6.06006006006006, 6.138138138138138, 6.216216216216217, 6.2942942942942945, 6.372372372372372, 6.45045045045045, 6.528528528528529, 6.606606606606607, 6.684684684684685, 6.762762762762763, 6.840840840840841, 6.918918918918919, 6.996996996996997, 7.075075075075075, 7.153153153153153, 7.231231231231232, 7.3093093093093096, 7.387387387387387, 7.465465465465465, 7.543543543543544, 7.621621621621622, 7.6996996996997, 7.777777777777778, 7.855855855855856, 7.933933933933934, 8.012012012012011, 8.09009009009009, 8.168168168168169, 8.246246246246248, 8.324324324324325, 8.402402402402402, 8.48048048048048, 8.558558558558559, 8.636636636636638, 8.714714714714715, 8.792792792792792, 8.87087087087087, 8.94894894894895, 9.027027027027028, 9.105105105105105, 9.183183183183184, 9.26126126126126, 9.33933933933934, 9.417417417417418, 9.495495495495495, 9.573573573573574, 9.651651651651651, 9.72972972972973, 9.807807807807809, 9.885885885885887, 9.963963963963964, 10.042042042042043, 10.12012012012012, 10.198198198198199, 10.276276276276276, 10.354354354354355, 10.432432432432433, 10.51051051051051, 10.588588588588589, 10.666666666666668, 10.744744744744745, 10.822822822822824, 10.9009009009009, 10.97897897897898, 11.057057057057058, 11.135135135135135, 11.213213213213214, 11.29129129129129, 11.36936936936937, 11.447447447447448, 11.525525525525525, 11.603603603603604, 11.681681681681683, 11.75975975975976, 11.837837837837839, 11.915915915915916, 11.993993993993994, 12.072072072072073, 12.15015015015015, 12.228228228228229, 12.306306306306306, 12.384384384384385, 12.462462462462463, 12.54054054054054, 12.618618618618619, 12.696696696696698, 12.774774774774775, 12.852852852852854, 12.93093093093093, 13.00900900900901, 13.087087087087088, 13.165165165165165, 13.243243243243244, 13.32132132132132, 13.3993993993994, 13.477477477477478, 13.555555555555555, 13.633633633633634, 13.711711711711713, 13.78978978978979, 13.867867867867869, 13.945945945945946, 14.024024024024024, 14.102102102102103, 14.18018018018018, 14.258258258258259, 14.336336336336338, 14.414414414414415, 14.492492492492493, 14.57057057057057, 14.64864864864865, 14.726726726726728, 14.804804804804805, 14.882882882882884, 14.96096096096096, 15.03903903903904, 15.117117117117118, 15.195195195195195, 15.273273273273274, 15.351351351351353, 15.42942942942943, 15.507507507507508, 15.585585585585585, 15.663663663663664, 15.741741741741743, 15.81981981981982, 15.897897897897899, 15.975975975975976, 16.054054054054056, 16.132132132132135, 16.21021021021021, 16.28828828828829, 16.366366366366368, 16.444444444444443, 16.52252252252252, 16.6006006006006, 16.67867867867868, 16.756756756756758, 16.834834834834837, 16.912912912912915, 16.99099099099099, 17.06906906906907, 17.147147147147148, 17.225225225225223, 17.303303303303302, 17.38138138138138, 17.45945945945946, 17.53753753753754, 17.615615615615617, 17.693693693693696, 17.771771771771775, 17.84984984984985, 17.92792792792793, 18.006006006006007, 18.084084084084086, 18.16216216216216, 18.24024024024024, 18.31831831831832, 18.396396396396398, 18.474474474474476, 18.55255255255255, 18.63063063063063, 18.70870870870871, 18.786786786786788, 18.864864864864867, 18.942942942942942, 19.02102102102102, 19.0990990990991, 19.177177177177178, 19.255255255255257, 19.333333333333336, 19.41141141141141, 19.48948948948949, 19.56756756756757, 19.645645645645647, 19.723723723723726, 19.8018018018018, 19.87987987987988, 19.95795795795796, 20.036036036036037, 20.114114114114116, 20.19219219219219, 20.27027027027027, 20.34834834834835, 20.426426426426428, 20.504504504504506, 20.58258258258258, 20.66066066066066, 20.73873873873874, 20.816816816816818, 20.894894894894897, 20.972972972972972, 21.05105105105105, 21.12912912912913, 21.207207207207208, 21.285285285285287, 21.363363363363366, 21.44144144144144, 21.51951951951952, 21.5975975975976, 21.675675675675677, 21.753753753753756, 21.83183183183183, 21.90990990990991, 21.98798798798799, 22.066066066066067, 22.144144144144146, 22.22222222222222, 22.3003003003003, 22.37837837837838, 22.456456456456458, 22.534534534534536, 22.61261261261261, 22.69069069069069, 22.76876876876877, 22.846846846846848, 22.924924924924927, 23.003003003003005, 23.08108108108108, 23.15915915915916, 23.237237237237238, 23.315315315315317, 23.393393393393396, 23.47147147147147, 23.54954954954955, 23.62762762762763, 23.705705705705707, 23.783783783783786, 23.86186186186186, 23.93993993993994, 24.01801801801802, 24.096096096096097, 24.174174174174176, 24.25225225225225, 24.33033033033033, 24.40840840840841, 24.486486486486488, 24.564564564564566, 24.64264264264264, 24.72072072072072, 24.7987987987988, 24.876876876876878, 24.954954954954957, 25.033033033033036, 25.11111111111111, 25.18918918918919, 25.26726726726727, 25.345345345345347, 25.423423423423426, 25.5015015015015, 25.57957957957958, 25.65765765765766, 25.735735735735737, 25.813813813813816, 25.89189189189189, 25.96996996996997, 26.04804804804805, 26.126126126126128, 26.204204204204206, 26.28228228228228, 26.36036036036036, 26.43843843843844, 26.516516516516518, 26.594594594594597, 26.672672672672675, 26.75075075075075, 26.82882882882883, 26.906906906906908, 26.984984984984987, 27.063063063063066, 27.14114114114114, 27.21921921921922, 27.2972972972973, 27.375375375375377, 27.453453453453456, 27.53153153153153, 27.60960960960961, 27.68768768768769, 27.765765765765767, 27.843843843843846, 27.92192192192192, 28, 28.07807807807808, 28.156156156156158, 28.234234234234236, 28.31231231231231, 28.39039039039039, 28.46846846846847, 28.546546546546548, 28.624624624624627, 28.702702702702705, 28.78078078078078, 28.85885885885886, 28.936936936936938, 29.015015015015017, 29.093093093093096, 29.17117117117117, 29.24924924924925, 29.32732732732733, 29.405405405405407, 29.483483483483486, 29.56156156156156, 29.63963963963964, 29.71771771771772, 29.795795795795797, 29.873873873873876, 29.95195195195195, 30.03003003003003, 30.10810810810811, 30.186186186186188, 30.264264264264266, 30.342342342342345, 30.42042042042042, 30.4984984984985, 30.576576576576578, 30.654654654654657, 30.732732732732735, 30.81081081081081, 30.88888888888889, 30.966966966966968, 31.045045045045047, 31.123123123123126, 31.2012012012012, 31.27927927927928, 31.35735735735736, 31.435435435435437, 31.513513513513516, 31.59159159159159, 31.66966966966967, 31.74774774774775, 31.825825825825827, 31.903903903903906, 31.98198198198198, 32.06006006006006, 32.13813813813814, 32.21621621621622, 32.294294294294296, 32.372372372372375, 32.45045045045045, 32.528528528528525, 32.606606606606604, 32.68468468468468, 32.76276276276276, 32.84084084084084, 32.91891891891892, 32.996996996997, 33.07507507507508, 33.153153153153156, 33.231231231231234, 33.30930930930931, 33.38738738738739, 33.46546546546547, 33.54354354354355, 33.62162162162162, 33.6996996996997, 33.77777777777778, 33.85585585585586, 33.933933933933936, 34.012012012012015, 34.090090090090094, 34.16816816816817, 34.246246246246244, 34.32432432432432, 34.4024024024024, 34.48048048048048, 34.55855855855856, 34.63663663663664, 34.71471471471472, 34.792792792792795, 34.870870870870874, 34.94894894894895, 35.02702702702703, 35.1051051051051, 35.18318318318318, 35.26126126126126, 35.33933933933934, 35.41741741741742, 35.4954954954955, 35.573573573573576, 35.651651651651655, 35.72972972972973, 35.80780780780781, 35.885885885885884, 35.96396396396396, 36.04204204204204, 36.12012012012012, 36.1981981981982, 36.27627627627628, 36.354354354354356, 36.432432432432435, 36.510510510510514, 36.58858858858859, 36.66666666666667, 36.74474474474474, 36.82282282282282, 36.9009009009009, 36.97897897897898, 37.05705705705706, 37.13513513513514, 37.213213213213216, 37.291291291291294, 37.36936936936937, 37.44744744744745, 37.525525525525524, 37.6036036036036, 37.68168168168168, 37.75975975975976, 37.83783783783784, 37.91591591591592, 37.993993993993996, 38.072072072072075, 38.150150150150154, 38.22822822822823, 38.306306306306304, 38.38438438438438, 38.46246246246246, 38.54054054054054, 38.61861861861862, 38.6966966966967, 38.77477477477478, 38.852852852852855, 38.930930930930934, 39.00900900900901, 39.08708708708709, 39.16516516516516, 39.24324324324324, 39.32132132132132, 39.3993993993994, 39.47747747747748, 39.55555555555556, 39.633633633633636, 39.711711711711715, 39.78978978978979, 39.86786786786787, 39.945945945945944, 40.02402402402402, 40.1021021021021, 40.18018018018018, 40.25825825825826, 40.33633633633634, 40.414414414414416, 40.492492492492495, 40.570570570570574, 40.64864864864865, 40.72672672672673, 40.8048048048048, 40.88288288288288, 40.96096096096096, 41.03903903903904, 41.11711711711712, 41.1951951951952, 41.273273273273276, 41.351351351351354, 41.42942942942943, 41.50750750750751, 41.585585585585584, 41.66366366366366, 41.74174174174174, 41.81981981981982, 41.8978978978979, 41.97597597597598, 42.054054054054056, 42.132132132132135, 42.210210210210214, 42.28828828828829, 42.36636636636637, 42.44444444444444, 42.52252252252252, 42.6006006006006, 42.67867867867868, 42.75675675675676, 42.83483483483484, 42.912912912912915, 42.990990990990994, 43.06906906906907, 43.14714714714715, 43.22522522522522, 43.3033033033033, 43.38138138138138, 43.45945945945946, 43.53753753753754, 43.61561561561562, 43.693693693693696, 43.771771771771775, 43.84984984984985, 43.92792792792793, 44.00600600600601, 44.08408408408408, 44.16216216216216, 44.24024024024024, 44.31831831831832, 44.3963963963964, 44.474474474474476, 44.552552552552555, 44.630630630630634, 44.70870870870871, 44.78678678678679, 44.86486486486486, 44.94294294294294, 45.02102102102102, 45.0990990990991, 45.17717717717718, 45.25525525525526, 45.333333333333336, 45.411411411411414, 45.48948948948949, 45.56756756756757, 45.64564564564565, 45.72372372372372, 45.8018018018018, 45.87987987987988, 45.95795795795796, 46.03603603603604, 46.114114114114116, 46.192192192192195, 46.270270270270274, 46.34834834834835, 46.42642642642643, 46.5045045045045, 46.58258258258258, 46.66066066066066, 46.73873873873874, 46.81681681681682, 46.8948948948949, 46.972972972972975, 47.051051051051054, 47.12912912912913, 47.20720720720721, 47.28528528528528, 47.36336336336336, 47.44144144144144, 47.51951951951952, 47.5975975975976, 47.67567567567568, 47.753753753753756, 47.831831831831835, 47.90990990990991, 47.98798798798799, 48.06606606606607, 48.14414414414414, 48.22222222222222, 48.3003003003003, 48.37837837837838, 48.45645645645646, 48.53453453453454, 48.612612612612615, 48.690690690690694, 48.76876876876877, 48.84684684684685, 48.92492492492492, 49.003003003003, 49.08108108108108, 49.15915915915916, 49.23723723723724, 49.31531531531532, 49.393393393393396, 49.471471471471475, 49.54954954954955, 49.62762762762763, 49.70570570570571, 49.78378378378378, 49.86186186186186, 49.93993993993994, 50.01801801801802, 50.0960960960961, 50.174174174174176, 50.252252252252255, 50.330330330330334, 50.40840840840841, 50.48648648648649, 50.56456456456456, 50.64264264264264, 50.72072072072072, 50.7987987987988, 50.87687687687688, 50.95495495495496, 51.033033033033036, 51.111111111111114, 51.18918918918919, 51.26726726726727, 51.34534534534535, 51.42342342342342, 51.5015015015015, 51.57957957957958, 51.65765765765766, 51.73573573573574, 51.813813813813816, 51.891891891891895, 51.96996996996997, 52.04804804804805, 52.12612612612613, 52.2042042042042, 52.28228228228228, 52.36036036036036, 52.43843843843844, 52.51651651651652, 52.5945945945946, 52.672672672672675, 52.750750750750754, 52.82882882882883, 52.90690690690691, 52.98498498498499, 53.06306306306306, 53.14114114114114, 53.21921921921922, 53.2972972972973, 53.37537537537538, 53.453453453453456, 53.531531531531535, 53.60960960960961, 53.68768768768769, 53.76576576576577, 53.84384384384384, 53.92192192192192, 54, 54.07807807807808, 54.15615615615616, 54.234234234234236, 54.312312312312315, 54.390390390390394, 54.46846846846847, 54.54654654654655, 54.62462462462462, 54.7027027027027, 54.78078078078078, 54.85885885885886, 54.93693693693694, 55.01501501501502, 55.093093093093096, 55.171171171171174, 55.24924924924925, 55.32732732732733, 55.40540540540541, 55.48348348348348, 55.56156156156156, 55.63963963963964, 55.71771771771772, 55.7957957957958, 55.873873873873876, 55.951951951951955, 56.030030030030034, 56.10810810810811, 56.18618618618619, 56.26426426426426, 56.34234234234234, 56.42042042042042, 56.4984984984985, 56.57657657657658, 56.65465465465466, 56.732732732732735, 56.810810810810814, 56.88888888888889, 56.96696696696697, 57.04504504504505, 57.12312312312312, 57.2012012012012, 57.27927927927928, 57.35735735735736, 57.43543543543544, 57.513513513513516, 57.591591591591595, 57.66966966966967, 57.74774774774775, 57.82582582582583, 57.9039039039039, 57.98198198198198, 58.06006006006006, 58.13813813813814, 58.21621621621622, 58.294294294294296, 58.372372372372375, 58.450450450450454, 58.52852852852853, 58.60660660660661, 58.68468468468469, 58.76276276276276, 58.84084084084084, 58.91891891891892, 58.996996996997, 59.07507507507508, 59.153153153153156, 59.231231231231234, 59.30930930930931, 59.38738738738739, 59.46546546546547, 59.54354354354354, 59.62162162162162, 59.6996996996997, 59.77777777777778, 59.85585585585586, 59.933933933933936, 60.012012012012015, 60.090090090090094, 60.16816816816817, 60.24624624624625, 60.32432432432433, 60.4024024024024, 60.48048048048048, 60.55855855855856, 60.63663663663664, 60.71471471471472, 60.792792792792795, 60.870870870870874, 60.94894894894895, 61.02702702702703, 61.10510510510511, 61.18318318318318, 61.26126126126126, 61.33933933933934, 61.41741741741742, 61.4954954954955, 61.573573573573576, 61.651651651651655, 61.72972972972973, 61.80780780780781, 61.88588588588589, 61.96396396396396, 62.04204204204204, 62.12012012012012, 62.1981981981982, 62.27627627627628, 62.354354354354356, 62.432432432432435, 62.510510510510514, 62.58858858858859, 62.66666666666667, 62.74474474474475, 62.82282282282282, 62.9009009009009, 62.97897897897898, 63.05705705705706, 63.13513513513514, 63.213213213213216, 63.291291291291294, 63.36936936936937, 63.44744744744745, 63.52552552552553, 63.6036036036036, 63.68168168168168, 63.75975975975976, 63.83783783783784, 63.91591591591592, 63.993993993993996, 64.07207207207207, 64.15015015015015, 64.22822822822823, 64.30630630630631, 64.38438438438439, 64.46246246246247, 64.54054054054055, 64.61861861861863, 64.6966966966967, 64.77477477477478, 64.85285285285286, 64.93093093093094, 65.00900900900902, 65.0870870870871, 65.16516516516518, 65.24324324324324, 65.32132132132132, 65.3993993993994, 65.47747747747748, 65.55555555555556, 65.63363363363364, 65.71171171171171, 65.7897897897898, 65.86786786786787, 65.94594594594595, 66.02402402402403, 66.10210210210211, 66.18018018018019, 66.25825825825827, 66.33633633633634, 66.41441441441442, 66.49249249249249, 66.57057057057057, 66.64864864864865, 66.72672672672672, 66.8048048048048, 66.88288288288288, 66.96096096096096, 67.03903903903904, 67.11711711711712, 67.1951951951952, 67.27327327327328, 67.35135135135135, 67.42942942942943, 67.50750750750751, 67.58558558558559, 67.66366366366367, 67.74174174174175, 67.81981981981983, 67.8978978978979, 67.97597597597598, 68.05405405405406, 68.13213213213213, 68.2102102102102, 68.28828828828829, 68.36636636636636, 68.44444444444444, 68.52252252252252, 68.6006006006006, 68.67867867867868, 68.75675675675676, 68.83483483483484, 68.91291291291292, 68.990990990991, 69.06906906906907, 69.14714714714715, 69.22522522522523, 69.30330330330331, 69.38138138138139, 69.45945945945947, 69.53753753753755, 69.61561561561562, 69.6936936936937, 69.77177177177177, 69.84984984984985, 69.92792792792793, 70.006006006006, 70.08408408408408, 70.16216216216216, 70.24024024024024, 70.31831831831832, 70.3963963963964, 70.47447447447448, 70.55255255255256, 70.63063063063063, 70.70870870870871, 70.78678678678679, 70.86486486486487, 70.94294294294295, 71.02102102102103, 71.0990990990991, 71.17717717717719, 71.25525525525526, 71.33333333333334, 71.41141141141141, 71.48948948948949, 71.56756756756756, 71.64564564564564, 71.72372372372372, 71.8018018018018, 71.87987987987988, 71.95795795795796, 72.03603603603604, 72.11411411411412, 72.1921921921922, 72.27027027027027, 72.34834834834835, 72.42642642642643, 72.50450450450451, 72.58258258258259, 72.66066066066067, 72.73873873873875, 72.81681681681683, 72.8948948948949, 72.97297297297298, 73.05105105105105, 73.12912912912913, 73.2072072072072, 73.28528528528528, 73.36336336336336, 73.44144144144144, 73.51951951951952, 73.5975975975976, 73.67567567567568, 73.75375375375376, 73.83183183183183, 73.90990990990991, 73.98798798798799, 74.06606606606607, 74.14414414414415, 74.22222222222223, 74.30030030030031, 74.37837837837839, 74.45645645645646, 74.53453453453454, 74.61261261261261, 74.69069069069069, 74.76876876876877, 74.84684684684684, 74.92492492492492, 75.003003003003, 75.08108108108108, 75.15915915915916, 75.23723723723724, 75.31531531531532, 75.3933933933934, 75.47147147147147, 75.54954954954955, 75.62762762762763, 75.70570570570571, 75.78378378378379, 75.86186186186187, 75.93993993993995, 76.01801801801803, 76.0960960960961, 76.17417417417418, 76.25225225225225, 76.33033033033033, 76.4084084084084, 76.48648648648648, 76.56456456456456, 76.64264264264264, 76.72072072072072, 76.7987987987988, 76.87687687687688, 76.95495495495496, 77.03303303303304, 77.11111111111111, 77.1891891891892, 77.26726726726727, 77.34534534534535, 77.42342342342343, 77.50150150150151, 77.57957957957959, 77.65765765765767, 77.73573573573574, 77.81381381381382, 77.89189189189189, 77.96996996996997, 78.04804804804805, 78.12612612612612, 78.2042042042042, 78.28228228228228, 78.36036036036036, 78.43843843843844, 78.51651651651652, 78.5945945945946, 78.67267267267268, 78.75075075075075, 78.82882882882883, 78.90690690690691, 78.98498498498499, 79.06306306306307, 79.14114114114115, 79.21921921921923, 79.2972972972973, 79.37537537537538, 79.45345345345346, 79.53153153153153, 79.6096096096096, 79.68768768768768, 79.76576576576576, 79.84384384384384, 79.92192192192192, 80 ], "y": [ 0.9457416090031758, 0.9492607139030139, 0.9524606266226643, 0.955377428421644, 0.9580424306238835, 0.960482882069311, 0.9627225624523218, 0.9647822810362667, 0.9666802968049013, 0.9684326732825715, 0.9700535789273107, 0.9715555420898195, 0.9729496679636189, 0.9742458236661955, 0.9754527965366152, 0.9765784298697091, 0.9776297395958964, 0.9786130148306929, 0.9795339047358504, 0.9803974937360848, 0.9812083668061669, 0.9819706662703379, 0.9826881413294251, 0.9833641913424581, 0.9840019037322796, 0.9846040872531399, 0.9851733012480852, 0.9857118814314269, 0.9862219626537044, 0.9867054990408809, 0.9871642818439768, 0.9875999552883142, 0.9880140306716002, 0.9884078989260945, 0.9887828418311376, 0.9891400420375518, 0.9894805920442353, 0.989805502249086, 0.9901157081807618, 0.9904120770043207, 0.9906954133821729, 0.9909664647617319, 0.9912259261524555, 0.9914744444474266, 0.9917126223380581, 0.991941021864804, 0.9921601676417727, 0.9923705497887926, 0.9925726266006707, 0.9927668269800523, 0.9929535526573561, 0.993133180218692, 0.9933060629603958, 0.9934725325868204, 0.9936329007662593, 0.9937874605583131, 0.9939364877246345, 0.994080241933757, 0.9942189678696288, 0.9943528962525033, 0.9944822447799798, 0.9946072189952176, 0.9947280130886683, 0.9948448106390497, 0.99495778529875, 0.9950671014283484, 0.9951729146845109, 0.9952753725651161, 0.9953746149151196, 0.9954707743963387, 0.9955639769240628, 0.9956543420731252, 0.9957419834558465, 0.9958270090740475, 0.9959095216471353, 0.9959896189180989, 0.9960673939390918, 0.996142935338138, 0.996216327568369, 0.9962876511410838, 0.9963569828438161, 0.9964243959444999, 0.9964899603827299, 0.9965537429490425, 0.9966158074530627, 0.9966762148812962, 0.9967350235452909, 0.9967922892208287, 0.9968480652787631, 0.9969024028080677, 0.9969553507316217, 0.9970069559152144, 0.9970572632702208, 0.9971063158503607, 0.9971541549429289, 0.9972008201548526, 0.9972463494939089, 0.9972907794454087, 0.9973341450446347, 0.9973764799452991, 0.9974178164842673, 0.9974581857427803, 0.997497617604388, 0.9975361408097947, 0.997573783008802, 0.9976105708095249, 0.9976465298250404, 0.997681684717623, 0.9977160592407062, 0.9977496762787038, 0.9977825578848144, 0.9978147253169238, 0.9978461990717152, 0.9978769989170873, 0.9979071439229759, 0.997936652490668, 0.9979655423806926, 0.9979938307393647, 0.9980215341240583, 0.9980486685272758, 0.99807524939958, 0.9981012916714488, 0.9981268097741093, 0.9981518176594075, 0.9981763288187623, 0.9982003563012516, 0.9982239127308774, 0.9982470103230504, 0.998269660900334, 0.9982918759074869, 0.9983136664258387, 0.9983350431870324, 0.9983560165861642, 0.998376596694354, 0.9983967932707689, 0.9984166157741335, 0.9984360733737457, 0.9984551749600261, 0.9984739291546217, 0.998492344320086, 0.9985104285691545, 0.9985281897736364, 0.9985456355729391, 0.998562773382244, 0.9985796104003481, 0.9985961536171889, 0.9986124098210652, 0.9986283856055697, 0.998644087376244, 0.998659521356972, 0.9986746935961193, 0.9986896099724333, 0.9987042762007137, 0.9987186978372623, 0.9987328802851242, 0.9987468287991261, 0.9987605484907253, 0.9987740443326723, 0.9987873211634987, 0.9988003836918375, 0.998813236500581, 0.9988258840508846, 0.9988383306860231, 0.9988505806351058, 0.9988626380166551, 0.9988745068420549, 0.9988861910188751, 0.9988976943540758, 0.9989090205570977, 0.998920173242841, 0.9989311559345398, 0.9989419720665357, 0.9989526249869517, 0.9989631179602761, 0.9989734541698537, 0.9989836367202929, 0.9989936686397883, 0.9990035528823658, 0.999013292330049, 0.9990228897949542, 0.9990323480213131, 0.9990416696874288, 0.9990508574075653, 0.9990599137337753, 0.9990688411576667, 0.9990776421121111, 0.9990863189728965, 0.9990948740603254, 0.9991033096407618, 0.9991116279281277, 0.9991198310853515, 0.99912792122577, 0.9991359004144854, 0.9991437706696796, 0.999151533963887, 0.9991591922252264, 0.9991667473385957, 0.9991742011468279, 0.9991815554518121, 0.9991888120155796, 0.9991959725613565, 0.9992030387745837, 0.9992100123039068, 0.9992168947621345, 0.9992236877271693, 0.9992303927429094, 0.9992370113201234, 0.9992435449373, 0.999249995041471, 0.9992563630490102, 0.9992626503464103, 0.9992688582910344, 0.9992749882118478, 0.9992810414101272, 0.9992870191601496, 0.9992929227098617, 0.9992987532815293, 0.9993045120723689, 0.9993102002551605, 0.9993158189788435, 0.9993213693690957, 0.9993268525288957, 0.9993322695390701, 0.9993376214588239, 0.9993429093262582, 0.9993481341588724, 0.999353296954052, 0.9993583986895441, 0.9993634403239194, 0.9993684227970211, 0.9993733470304024, 0.9993782139277515, 0.9993830243753056, 0.9993877792422534, 0.9993924793811271, 0.9993971256281832, 0.9994017188037747, 0.9994062597127116, 0.9994107491446135, 0.9994151878742515, 0.9994195766618826, 0.9994239162535739, 0.9994282073815192, 0.9994324507643481, 0.999436647107425, 0.9994407971031429, 0.9994449014312076, 0.9994489607589158, 0.9994529757414263, 0.9994569470220231, 0.9994608752323733, 0.999464760992777, 0.9994686049124131, 0.9994724075895759, 0.9994761696119092, 0.9994798915566319, 0.9994835739907589, 0.999487217471318, 0.9994908225455583, 0.999494389751157, 0.9994979196164187, 0.9995014126604709, 0.9995048693934543, 0.9995082903167095, 0.9995116759229574, 0.9995150266964775, 0.9995183431132797, 0.9995216256412739, 0.9995248747404343, 0.9995280908629609, 0.9995312744534355, 0.9995344259489766, 0.9995375457793876, 0.9995406343673046, 0.9995436921283383, 0.9995467194712139, 0.9995497167979078, 0.9995526845037805, 0.9995556229777067, 0.999558532602203, 0.9995614137535513, 0.9995642668019216, 0.9995670921114893, 0.9995698900405525, 0.9995726609416445, 0.9995754051616454, 0.9995781230418899, 0.9995808149182734, 0.9995834811213564, 0.9995861219764649, 0.9995887378037899, 0.9995913289184841, 0.9995938956307573, 0.9995964382459683, 0.9995989570647165, 0.9996014523829294, 0.999603924491951, 0.9996063736786253, 0.99960880022538, 0.9996112044103083, 0.9996135865072473, 0.9996159467858569, 0.9996182855116957, 0.9996206029462955, 0.9996228993472345, 0.9996251749682084, 0.9996274300591009, 0.999629664866052, 0.999631879631525, 0.9996340745943721, 0.9996362499898993, 0.9996384060499285, 0.9996405430028599, 0.999642661073732, 0.9996447604842812, 0.9996468414529992, 0.9996489041951903, 0.9996509489230269, 0.9996529758456035, 0.9996549851689912, 0.9996569770962885, 0.9996589518276742, 0.9996609095604562, 0.9996628504891217, 0.9996647748053851, 0.999666682698235, 0.9996685743539814, 0.9996704499563, 0.9996723096862777, 0.999674153722456, 0.9996759822408733, 0.9996777954151073, 0.9996795934163164, 0.9996813764132798, 0.9996831445724367, 0.9996848980579255, 0.9996866370316221, 0.9996883616531765, 0.9996900720800503, 0.9996917684675516, 0.999693450968871, 0.9996951197351159, 0.9996967749153444, 0.9996984166565984, 0.9997000451039365, 0.9997016604004659, 0.9997032626873736, 0.9997048521039575, 0.9997064287876568, 0.9997079928740809, 0.9997095444970394, 0.9997110837885705, 0.9997126108789687, 0.9997141258968125, 0.9997156289689918, 0.9997171202207338, 0.9997185997756296, 0.9997200677556598, 0.9997215242812191, 0.9997229694711411, 0.9997244034427234, 0.9997258263117501, 0.9997272381925157, 0.9997286391978484, 0.9997300294391321, 0.9997314090263286, 0.9997327780679997, 0.9997341366713278, 0.9997354849421379, 0.9997368229849172, 0.9997381509028359, 0.9997394687977667, 0.9997407767703048, 0.9997420749197868, 0.9997433633443092, 0.9997446421407479, 0.999745911404775, 0.999747171230878, 0.9997484217123767, 0.9997496629414404, 0.9997508950091053, 0.9997521180052907, 0.999753332018816, 0.9997545371374158, 0.999755733447757, 0.9997569210354534, 0.9997580999850816, 0.9997592703801954, 0.9997604323033413, 0.9997615858360729, 0.9997627310589645, 0.9997638680516262, 0.9997649968927169, 0.9997661176599585, 0.9997672304301485, 0.9997683352791741, 0.9997694322820243, 0.9997705215128034, 0.9997716030447428, 0.9997726769502134, 0.9997737433007381, 0.9997748021670035, 0.9997758536188714, 0.9997768977253908, 0.9997779345548085, 0.9997789641745809, 0.9997799866513848, 0.999781002051128, 0.9997820104389599, 0.9997830118792823, 0.9997840064357595, 0.9997849941713279, 0.999785975148207, 0.9997869494279082, 0.9997879170712451, 0.9997888781383424, 0.9997898326886456, 0.9997907807809306, 0.9997917224733117, 0.9997926578232513, 0.9997935868875687, 0.9997945097224478, 0.999795426383447, 0.9997963369255063, 0.9997972414029563, 0.9997981398695258, 0.9997990323783503, 0.9997999189819792, 0.9998007997323842, 0.9998016746809665, 0.9998025438785642, 0.9998034073754603, 0.999804265221389, 0.9998051174655438, 0.9998059641565841, 0.999806805342642, 0.9998076410713295, 0.9998084713897449, 0.9998092963444797, 0.9998101159816251, 0.999810930346778, 0.9998117394850483, 0.9998125434410639, 0.9998133422589777, 0.9998141359824736, 0.9998149246547723, 0.9998157083186369, 0.9998164870163793, 0.9998172607898654, 0.9998180296805211, 0.9998187937293374, 0.9998195529768763, 0.999820307463276, 0.9998210572282562, 0.999821802311123, 0.9998225427507751, 0.9998232785857074, 0.999824009854017, 0.9998247365934081, 0.9998254588411963, 0.999826176634314, 0.9998268900093146, 0.9998275990023775, 0.9998283036493126, 0.9998290039855647, 0.9998297000462184, 0.9998303918660014, 0.9998310794792904, 0.999831762920114, 0.9998324422221576, 0.9998331174187673, 0.9998337885429545, 0.9998344556273989, 0.9998351187044534, 0.9998357778061479, 0.9998364329641924, 0.9998370842099822, 0.9998377315746002, 0.9998383750888215, 0.9998390147831168, 0.9998396506876559, 0.9998402828323116, 0.999840911246663, 0.9998415359599985, 0.9998421570013201, 0.9998427743993461, 0.9998433881825147, 0.9998439983789872, 0.9998446050166513, 0.999845208123124, 0.9998458077257553, 0.9998464038516305, 0.9998469965275741, 0.9998475857801524, 0.9998481716356763, 0.9998487541202047, 0.9998493332595467, 0.9998499090792654, 0.9998504816046802, 0.999851050860869, 0.9998516168726721, 0.9998521796646943, 0.9998527392613076, 0.9998532956866535, 0.9998538489646465, 0.9998543991189757, 0.9998549461731081, 0.9998554901502905, 0.9998560310735525, 0.9998565689657085, 0.9998571038493601, 0.9998576357468991, 0.9998581646805091, 0.999858690672168, 0.9998592137436508, 0.999859733916531, 0.9998602512121835, 0.9998607656517864, 0.9998612772563236, 0.9998617860465863, 0.9998622920431758, 0.999862795266505, 0.999863295736801, 0.9998637934741067, 0.9998642884982828, 0.9998647808290101, 0.9998652704857912, 0.9998657574879529, 0.9998662418546471, 0.9998667236048537, 0.9998672027573821, 0.9998676793308726, 0.9998681533437993, 0.9998686248144706, 0.9998690937610318, 0.9998695602014667, 0.9998700241535989, 0.9998704856350944, 0.9998709446634622, 0.9998714012560566, 0.9998718554300791, 0.999872307202579, 0.9998727565904564, 0.9998732036104623, 0.9998736482792013, 0.9998740906131326, 0.9998745306285717, 0.9998749683416919, 0.9998754037685255, 0.9998758369249656, 0.9998762678267678, 0.9998766964895507, 0.9998771229287982, 0.9998775471598607, 0.9998779691979562, 0.9998783890581721, 0.9998788067554658, 0.999879222304667, 0.9998796357204782, 0.9998800470174766, 0.999880456210115, 0.9998808633127231, 0.9998812683395091, 0.9998816713045604, 0.9998820722218453, 0.999882471105214, 0.9998828679683996, 0.9998832628250198, 0.9998836556885776, 0.9998840465724627, 0.9998844354899523, 0.999884822454213, 0.9998852074783008, 0.9998855905751632, 0.9998859717576397, 0.9998863510384634, 0.999886728430261, 0.9998871039455555, 0.9998874775967656, 0.9998878493962077, 0.9998882193560967, 0.9998885874885469, 0.9998889538055731, 0.9998893183190914, 0.9998896810409205, 0.9998900419827823, 0.9998904011563029, 0.9998907585730141, 0.9998911142443532, 0.9998914681816652, 0.9998918203962027, 0.9998921708991273, 0.9998925197015104, 0.9998928668143339, 0.9998932122484913, 0.9998935560147886, 0.9998938981239446, 0.9998942385865925, 0.9998945774132802, 0.9998949146144714, 0.9998952502005463, 0.9998955841818019, 0.9998959165684539, 0.9998962473706365, 0.9998965765984038, 0.9998969042617301, 0.9998972303705106, 0.9998975549345629, 0.999897877963627, 0.999898199467366, 0.9998985194553676, 0.9998988379371438, 0.9998991549221325, 0.9998994704196977, 0.99989978443913, 0.9999000969896479, 0.999900408080398, 0.9999007177204561, 0.9999010259188271, 0.9999013326844466, 0.9999016380261807, 0.9999019419528273, 0.9999022444731166, 0.999902545595711, 0.999902845329207, 0.9999031436821346, 0.9999034406629587, 0.9999037362800793, 0.9999040305418323, 0.99990432345649, 0.9999046150322617, 0.9999049052772943, 0.9999051941996726, 0.9999054818074203, 0.9999057681085004, 0.9999060531108157, 0.9999063368222091, 0.9999066192504648, 0.9999069004033079, 0.999907180288406, 0.9999074589133687, 0.999907736285749, 0.9999080124130433, 0.9999082873026915, 0.9999085609620789, 0.9999088333985351, 0.9999091046193355, 0.9999093746317014, 0.9999096434428005, 0.9999099110597477, 0.9999101774896049, 0.9999104427393822, 0.9999107068160381, 0.9999109697264795, 0.9999112314775629, 0.9999114920760944, 0.99991175152883, 0.9999120098424767, 0.9999122670236922, 0.9999125230790856, 0.999912778015218, 0.9999130318386029, 0.9999132845557063, 0.999913536172947, 0.999913786696698, 0.9999140361332858, 0.9999142844889912, 0.9999145317700499, 0.9999147779826524, 0.9999150231329451, 0.99991526722703, 0.9999155102709653, 0.9999157522707659, 0.999915993232404, 0.9999162331618087, 0.999916472064867, 0.9999167099474242, 0.9999169468152838, 0.999917182674208, 0.9999174175299186, 0.9999176513880966, 0.9999178842543829, 0.9999181161343784, 0.9999183470336449, 0.9999185769577047, 0.9999188059120416, 0.9999190339021007, 0.9999192609332889, 0.9999194870109754, 0.9999197121404919, 0.9999199363271326, 0.9999201595761553, 0.9999203818927809, 0.9999206032821937, 0.9999208237495427, 0.9999210432999407, 0.9999212619384652, 0.999921479670159, 0.9999216965000294, 0.9999219124330498, 0.9999221274741591, 0.9999223416282621, 0.9999225549002304, 0.9999227672949017, 0.9999229788170808, 0.9999231894715398, 0.999923399263018, 0.9999236081962224, 0.999923816275828, 0.9999240235064782, 0.9999242298927846, 0.9999244354393276, 0.9999246401506567, 0.9999248440312904, 0.9999250470857172, 0.9999252493183944, 0.9999254507337504, 0.9999256513361828, 0.9999258511300605, 0.9999260501197226, 0.9999262483094791, 0.9999264457036114, 0.9999266423063724, 0.9999268381219862, 0.9999270331546491, 0.9999272274085294, 0.9999274208877674, 0.9999276135964766, 0.9999278055387426, 0.9999279967186242, 0.9999281871401533, 0.9999283768073354, 0.9999285657241493, 0.9999287538945477, 0.9999289413224575, 0.9999291280117795, 0.9999293139663891, 0.9999294991901364, 0.999929683686846, 0.9999298674603179, 0.9999300505143269, 0.9999302328526237, 0.9999304144789343, 0.9999305953969602, 0.9999307756103795, 0.9999309551228461, 0.9999311339379902, 0.9999313120594185, 0.9999314894907148, 0.9999316662354394, 0.9999318422971298, 0.9999320176793007, 0.9999321923854444, 0.9999323664190305, 0.9999325397835067, 0.9999327124822983, 0.9999328845188089, 0.9999330558964205, 0.9999332266184932, 0.9999333966883661, 0.9999335661093567, 0.9999337348847617, 0.9999339030178568, 0.9999340705118969, 0.9999342373701164, 0.9999344035957293, 0.999934569191929, 0.9999347341618893, 0.9999348985087636, 0.9999350622356856, 0.9999352253457694, 0.9999353878421096, 0.9999355497277811, 0.9999357110058399, 0.9999358716793229, 0.9999360317512479, 0.999936191224614, 0.9999363501024016, 0.9999365083875723, 0.9999366660830701, 0.9999368231918196, 0.9999369797167285, 0.9999371356606855, 0.9999372910265621, 0.9999374458172119, 0.9999376000354707, 0.9999377536841572, 0.9999379067660724, 0.9999380592840005, 0.9999382112407083, 0.9999383626389458, 0.9999385134814461, 0.9999386637709259, 0.9999388135100848, 0.9999389627016065, 0.9999391113481578, 0.9999392594523899, 0.9999394070169373, 0.999939554044419, 0.9999397005374377, 0.9999398464985808, 0.9999399919304198, 0.9999401368355108, 0.9999402812163941, 0.9999404250755954, 0.9999405684156246, 0.9999407112389769, 0.9999408535481322, 0.999940995345556, 0.9999411366336985, 0.9999412774149957, 0.9999414176918688, 0.9999415574667246, 0.9999416967419557, 0.9999418355199402, 0.9999419738030423, 0.9999421115936121, 0.9999422488939858, 0.9999423857064857, 0.9999425220334204, 0.9999426578770848, 0.9999427932397604, 0.9999429281237151, 0.9999430625312036, 0.999943196464467, 0.9999433299257339, 0.9999434629172191, 0.9999435954411249, 0.9999437274996404, 0.9999438590949423, 0.9999439902291941, 0.9999441209045471, 0.9999442511231399, 0.9999443808870986, 0.9999445101985369, 0.9999446390595566, 0.9999447674722468, 0.9999448954386849, 0.999945022960936, 0.9999451500410536, 0.9999452766810789, 0.9999454028830418, 0.9999455286489601, 0.9999456539808403, 0.9999457788806773, 0.9999459033504544, 0.9999460273921438, 0.999946151007706, 0.9999462741990908, 0.9999463969682365, 0.9999465193170705, 0.999946641247509, 0.9999467627614577, 0.999946883860811, 0.9999470045474528, 0.9999471248232564, 0.9999472446900843, 0.9999473641497885, 0.9999474832042106, 0.9999476018551815, 0.9999477201045223, 0.9999478379540435, 0.9999479554055454, 0.9999480724608182, 0.9999481891216422, 0.9999483053897875, 0.9999484212670144, 0.9999485367550734, 0.9999486518557051, 0.9999487665706406, 0.9999488809016008, 0.9999489948502976, 0.9999491084184332, 0.9999492216077002, 0.9999493344197818, 0.9999494468563522, 0.9999495589190759, 0.9999496706096084, 0.9999497819295959, 0.9999498928806758, 0.9999500034644763, 0.9999501136826163, 0.9999502235367064, 0.999950333028348, 0.9999504421591336, 0.9999505509306473, 0.9999506593444643, 0.9999507674021509, 0.9999508751052656, 0.9999509824553577, 0.9999510894539683, 0.9999511961026301, 0.9999513024028672, 0.999951408356196, 0.9999515139641241, 0.9999516192281511, 0.9999517241497686, 0.99995182873046, 0.9999519329717006, 0.9999520368749578, 0.9999521404416912, 0.9999522436733526, 0.9999523465713854, 0.9999524491372258, 0.9999525513723023, 0.9999526532780354, 0.9999527548558381, 0.999952856107116, 0.9999529570332669, 0.9999530576356814, 0.9999531579157425, 0.9999532578748259, 0.9999533575142998, 0.9999534568355255, 0.9999535558398566, 0.9999536545286397, 0.9999537529032145, 0.9999538509649133, 0.9999539487150614, 0.9999540461549771, 0.9999541432859718, 0.9999542401093497, 0.9999543366264089, 0.9999544328384395, 0.9999545287467259, 0.999954624352545, 0.9999547196571674, 0.9999548146618569, 0.9999549093678706, 0.9999550037764592, 0.9999550978888668, 0.9999551917063308, 0.9999552852300827, 0.9999553784613469, 0.9999554714013416, 0.9999555640512791, 0.9999556564123648, 0.9999557484857985, 0.9999558402727732, 0.9999559317744757, 0.9999560229920873, 0.9999561139267826, 0.9999562045797304, 0.9999562949520933, 0.999956385045028, 0.9999564748596853, 0.99995656439721, 0.9999566536587411, 0.9999567426454117, 0.999956831358349, 0.9999569197986747, 0.9999570079675043, 0.9999570958659483, 0.9999571834951106, 0.9999572708560904, 0.9999573579499808, 0.9999574447778693, 0.999957531340838, 0.9999576176399635, 0.9999577036763171, 0.9999577894509643, 0.9999578749649655, 0.9999579602193756, 0.9999580452152441, 0.9999581299536155, 0.9999582144355289, 0.9999582986620178, 0.9999583826341111, 0.999958466352832, 0.999958549819199, 0.9999586330342249, 0.9999587159989184, 0.999958798714282, 0.9999588811813139, 0.9999589634010073, 0.9999590453743502, 0.9999591271023257, 0.9999592085859119, 0.9999592898260826, 0.9999593708238059, 0.9999594515800458, 0.9999595320957613, 0.9999596123719063, 0.9999596924094306, 0.9999597722092787, 0.9999598517723909, 0.9999599310997024, 0.9999600101921442, 0.9999600890506426, 0.9999601676761192, 0.9999602460694912, 0.9999603242316711, 0.9999604021635673, 0.9999604798660834, 0.9999605573401186, 0.9999606345865678, 0.9999607116063217, 0.9999607884002661, 0.9999608649692833, 0.9999609413142503 ] } ], "layout": { "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "$\\text{Ratio of best glide speed and }V_{md}$" }, "xaxis": { "title": { "text": "Glide Ratio" } }, "yaxis": { "title": { "text": "$\\frac{V_{bestglide}}{V_{md}}$" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "import plotly.graph_objects as go\n", "\n", "# Make a vector of reasonable glide ratios - say 30 - 80\n", "glide_ratios = np.linspace(2, 80, 1000)\n", "glide_angles = np.arctan(1/glide_ratios)\n", "\n", "Vbestglide_on_Vmd = np.sqrt(np.cos(glide_angles))\n", "\n", "\n", "fig = go.Figure()\n", "fig.add_trace(go.Scatter(x=glide_ratios, y=glide_angles*180/np.pi))\n", "\n", "fig.update_layout(\n", " title=\"Glide Angle vs. Glide Ratio\",\n", " xaxis_title=\"Glide Ratio\",\n", " yaxis_title=\"Glide Angle / deg\",\n", ")\n", "\n", "fig.show()\n", "\n", "fig = go.Figure()\n", "fig.add_trace(go.Scatter(x=glide_ratios, y=Vbestglide_on_Vmd))\n", "\n", "fig.update_layout(\n", " title=\"$\\\\text{Ratio of best glide speed and }V_{md}$\",\n", " xaxis_title=\"Glide Ratio\",\n", " yaxis_title=\"$\\\\frac{V_{bestglide}}{V_{md}}$\",\n", ")\n", "\n", "fig.show()\n", "\n", "\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "It can be seen that for glide angles up to around 11 degrees, the best glide speed is 99% of $V_{md}$. So for most glide performance work, it is assumed that the shallowest glide occurs at $V_{md}$.\n", "\n", "Since most performance gliders have great *glide ratios* ($\\frac{C_L}{C_D}$), the above small angle approximation is suitable for gliders and aircraft with reasonable glide ratios. It may not hold for some other aircraft, however, in which case the shallowest glide speed of $V_{md}\\sqrt{\\cos\\bar{\\gamma}}$ must be used." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Sink rate\n", "\n", "Whilst the glide angle dictates the distance along the ground (hence giving the *range*), the best *endurance* is given by the slowest overall descent. Thus the sink rate needs to be minimised.\n", "\n", "The sink rate, $V_{sink}$, is the vertical component of flight speed - $V_{sink}=V\\cdot\\sin\\bar{\\gamma}$. From the reasoning used previous regarding the exchange of potential energy for kinetic energy, you should be able to intuit that the minimum sink rate occurs at the **minimum power speed**.\n", "\n", "\n", "```{admonition} Intuition and mathematics\n", ":class: dropdown\n", "\n", "This is a great example of how you should approach these sorts of problems. We **know** from logical reasoning that the minimum sink rate must occur at the minimum power speed.\n", "\n", "So we'll go through the mathematics and we should find that $V_{minsink}=\\left[\\frac{B}{3\\,A}\\right]^\\frac{1}{4}$.\n", "\n", "If we find anything else, either we have made a mistake or there is a flaw in our assumptions or reasoning.\n", "```\n", "The sink rate is the vertical component of flightspeed, $V_{sink}=V\\cdot\\sin\\bar{\\gamma}$ - see {numref}`GlideVelocities`\n", "\n", "```{figure} ../Images/GlideVelocities.png\n", "---\n", "height: 300px\n", "name: GlideVelocities\n", "---\n", "Glide Velocities\n", "```\n", "\n", "so\n", "\n", "$$\\begin{aligned}V_{sink} &= V\\sin\\bar{\\gamma}\\\\\n", "&=V\\frac{D}{W}\\end{aligned}$$\n", "\n", "from equilibrium and making the small angle assumption for $\\bar{\\gamma}$\n", "\n", "$$\\simeq V\\frac{D}{L}=V\\frac{C_D}{C_L}$$\n", "\n", "using the aircraft speed equation and using the small angle assumption to substitute $L\\simeq W$\n", "\n", "$$V_{sink}=\\sqrt{\\frac{2\\,L}{\\rho\\,S\\,C_L}}\\frac{D}{L}\\simeq\\sqrt{\\frac{2\\,W}{\\rho\\,S}}\\frac{C_D}{C_L^{3/2}}$$\n", "\n", "since the other terms are just constants, or outside of our control, then the minimum sink rate is found at the minimum of $\\frac{C_D}{C_L^{3/2}}$ which can be found from some elementary calculus by substituting $C_D=C_{D0}+K\\cdot C_L^2$ and differentiating by $C_L$:\n", "\n", "$$\\frac{C_D}{C_L^{3/2}} = \\frac{C_{D0} + K\\,C_L^2}{C_L^{3/2}} = \\frac{C_{D0}}{C_L^{3/2}} + K\\,C_L^{1/2} $$\n", "$$\\frac{\\partial\\frac{C_D}{C_L^{3/2}}}{\\partial C_L} = -\\frac{3}{2}\\frac{C_{D0}}{C_L^{5/2}} + \\frac{1}{2}K\\,C_L^{-1/2}=0$$\n", "$$\\implies C_{L,minsink} = \\sqrt{\\frac{3\\,C_{D0}}{K}}$$\n", "\n", "Substitution of this into the aircraft speed equation, Eq. {eq}`ACSpeedEquation`, yields the speed for minimum sink\n", "\n", "$$V_{minsink}=\\sqrt{\\frac{2\\,W}{\\rho\\,S\\,C_{L,minsink}}}= \\sqrt{\\frac{2\\,W}{\\rho\\,S\\,\\sqrt{\\frac{3\\,C_{D0}}{K}}}}=\\left[\\frac{K}{3\\,C_{D0}}\\right]^{1/4}\\left[\\frac{2\\,W}{\\rho\\,S}\\right]^{1/2}$$\n", "\n", "which is equal to $V_{minsink}=\\left[\\frac{B}{3\\,A}\\right]^\\frac{1}{4}$, or the **minimum power condition**, which is what was expected from intuition.\n", "\n", "```{admonition} Small angle assumption?\n", ":class: dropdown\n", "\n", "See if you can determine the relationship between $\\frac{V_{minsink}}{V_{mp}}$ if the small angle assumption cannot be used.\n", "```" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Glider Polar\n", "\n", "For the pilot, as has been mentioned previously, the actual lift coefficient or angle of attack for a given condition is not usually of relevance. A glider pilot *will* be keenly aware of their best sink rates, and will desire to know the airspeed(s) at which these occur.\n", "\n", "Glider manufacturers tend to provide a chart of *sink rate* vs. *airspeed*, which is proportional to the $\\frac{D}{L}$ ratio against the *inverse* of the lift coefficient (with some additional exponents thrown in for good measure).\n", "\n", "```{margin} What is the glide polar actually showing?\n", "$$\\frac{V_{sink}}{V}=\\sin\\gamma=\\frac{D}{W}\\simeq\\frac{D}{L}$$\n", "\n", "The minimum sink aka the minimum power is given by the highest point on the graph. The best range is given by the tangent to the graph that passes through the origin (which intersects the graph at the minimum drag speed)\n", "```" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "tags": [ "hide-input" ] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "name": "Gross weight = 8335.6525N", "type": "scatter", "x": [ 35, 35.111111111111114, 35.22222222222222, 35.333333333333336, 35.44444444444444, 35.55555555555556, 35.666666666666664, 35.77777777777778, 35.888888888888886, 36, 36.111111111111114, 36.22222222222222, 36.333333333333336, 36.44444444444444, 36.55555555555556, 36.666666666666664, 36.77777777777778, 36.888888888888886, 37, 37.111111111111114, 37.22222222222222, 37.333333333333336, 37.44444444444444, 37.55555555555556, 37.666666666666664, 37.77777777777778, 37.888888888888886, 38, 38.111111111111114, 38.22222222222222, 38.333333333333336, 38.44444444444444, 38.55555555555556, 38.666666666666664, 38.77777777777778, 38.888888888888886, 39, 39.111111111111114, 39.22222222222222, 39.333333333333336, 39.44444444444444, 39.55555555555556, 39.666666666666664, 39.77777777777778, 39.888888888888886, 40, 40.111111111111114, 40.22222222222222, 40.333333333333336, 40.44444444444444, 40.55555555555556, 40.666666666666664, 40.77777777777778, 40.888888888888886, 41, 41.111111111111114, 41.22222222222222, 41.333333333333336, 41.44444444444444, 41.55555555555556, 41.666666666666664, 41.77777777777778, 41.888888888888886, 42, 42.111111111111114, 42.22222222222222, 42.333333333333336, 42.44444444444444, 42.55555555555556, 42.666666666666664, 42.77777777777778, 42.888888888888886, 43, 43.111111111111114, 43.22222222222222, 43.33333333333333, 43.44444444444444, 43.55555555555556, 43.666666666666664, 43.77777777777778, 43.888888888888886, 44, 44.111111111111114, 44.22222222222222, 44.33333333333333, 44.44444444444444, 44.55555555555556, 44.666666666666664, 44.77777777777778, 44.888888888888886, 45, 45.111111111111114, 45.22222222222222, 45.33333333333333, 45.44444444444444, 45.55555555555556, 45.666666666666664, 45.77777777777778, 45.888888888888886, 46, 46.111111111111114, 46.22222222222222, 46.33333333333333, 46.44444444444444, 46.55555555555556, 46.666666666666664, 46.77777777777778, 46.888888888888886, 47, 47.111111111111114, 47.22222222222222, 47.33333333333333, 47.44444444444444, 47.55555555555556, 47.666666666666664, 47.77777777777778, 47.888888888888886, 48, 48.111111111111114, 48.22222222222222, 48.33333333333333, 48.44444444444444, 48.55555555555556, 48.666666666666664, 48.77777777777778, 48.888888888888886, 49, 49.111111111111114, 49.22222222222222, 49.33333333333333, 49.44444444444444, 49.55555555555556, 49.666666666666664, 49.77777777777778, 49.888888888888886, 50, 50.111111111111114, 50.22222222222222, 50.33333333333333, 50.44444444444444, 50.55555555555556, 50.666666666666664, 50.77777777777778, 50.888888888888886, 51, 51.111111111111114, 51.22222222222222, 51.33333333333333, 51.44444444444444, 51.55555555555556, 51.666666666666664, 51.77777777777778, 51.888888888888886, 52, 52.111111111111114, 52.22222222222222, 52.33333333333333, 52.44444444444444, 52.55555555555556, 52.666666666666664, 52.77777777777778, 52.888888888888886, 53, 53.111111111111114, 53.22222222222222, 53.33333333333333, 53.44444444444444, 53.55555555555556, 53.666666666666664, 53.77777777777777, 53.888888888888886, 54, 54.111111111111114, 54.22222222222222, 54.33333333333333, 54.44444444444444, 54.55555555555556, 54.666666666666664, 54.77777777777777, 54.888888888888886, 55, 55.111111111111114, 55.22222222222222, 55.33333333333333, 55.44444444444444, 55.55555555555556, 55.666666666666664, 55.77777777777777, 55.888888888888886, 56, 56.111111111111114, 56.22222222222222, 56.33333333333333, 56.44444444444444, 56.55555555555556, 56.666666666666664, 56.77777777777777, 56.888888888888886, 57, 57.111111111111114, 57.22222222222222, 57.33333333333333, 57.44444444444444, 57.55555555555556, 57.666666666666664, 57.77777777777777, 57.888888888888886, 58, 58.111111111111114, 58.22222222222222, 58.33333333333333, 58.44444444444444, 58.55555555555556, 58.666666666666664, 58.77777777777777, 58.888888888888886, 59, 59.111111111111114, 59.22222222222222, 59.33333333333333, 59.44444444444444, 59.55555555555556, 59.666666666666664, 59.77777777777777, 59.888888888888886, 60, 60.111111111111114, 60.22222222222222, 60.33333333333333, 60.44444444444444, 60.55555555555556, 60.666666666666664, 60.77777777777777, 60.888888888888886, 61, 61.111111111111114, 61.22222222222222, 61.33333333333333, 61.44444444444444, 61.55555555555556, 61.666666666666664, 61.77777777777777, 61.888888888888886, 62, 62.111111111111114, 62.22222222222222, 62.33333333333333, 62.44444444444444, 62.55555555555556, 62.666666666666664, 62.77777777777777, 62.888888888888886, 63, 63.111111111111114, 63.22222222222222, 63.33333333333333, 63.44444444444444, 63.55555555555556, 63.666666666666664, 63.77777777777777, 63.888888888888886, 64, 64.11111111111111, 64.22222222222223, 64.33333333333333, 64.44444444444444, 64.55555555555556, 64.66666666666666, 64.77777777777777, 64.88888888888889, 65, 65.11111111111111, 65.22222222222223, 65.33333333333333, 65.44444444444444, 65.55555555555556, 65.66666666666666, 65.77777777777777, 65.88888888888889, 66, 66.11111111111111, 66.22222222222223, 66.33333333333333, 66.44444444444444, 66.55555555555556, 66.66666666666666, 66.77777777777777, 66.88888888888889, 67, 67.11111111111111, 67.22222222222223, 67.33333333333333, 67.44444444444444, 67.55555555555556, 67.66666666666666, 67.77777777777777, 67.88888888888889, 68, 68.11111111111111, 68.22222222222223, 68.33333333333333, 68.44444444444444, 68.55555555555556, 68.66666666666666, 68.77777777777777, 68.88888888888889, 69, 69.11111111111111, 69.22222222222223, 69.33333333333333, 69.44444444444444, 69.55555555555556, 69.66666666666666, 69.77777777777777, 69.88888888888889, 70, 70.11111111111111, 70.22222222222223, 70.33333333333333, 70.44444444444444, 70.55555555555556, 70.66666666666666, 70.77777777777777, 70.88888888888889, 71, 71.11111111111111, 71.22222222222223, 71.33333333333333, 71.44444444444444, 71.55555555555554, 71.66666666666666, 71.77777777777777, 71.88888888888889, 72, 72.11111111111111, 72.22222222222223, 72.33333333333333, 72.44444444444444, 72.55555555555554, 72.66666666666666, 72.77777777777777, 72.88888888888889, 73, 73.11111111111111, 73.22222222222223, 73.33333333333333, 73.44444444444444, 73.55555555555554, 73.66666666666666, 73.77777777777777, 73.88888888888889, 74, 74.11111111111111, 74.22222222222223, 74.33333333333333, 74.44444444444444, 74.55555555555554, 74.66666666666666, 74.77777777777777, 74.88888888888889, 75, 75.11111111111111, 75.22222222222223, 75.33333333333333, 75.44444444444444, 75.55555555555554, 75.66666666666666, 75.77777777777777, 75.88888888888889, 76, 76.11111111111111, 76.22222222222223, 76.33333333333333, 76.44444444444444, 76.55555555555554, 76.66666666666666, 76.77777777777777, 76.88888888888889, 77, 77.11111111111111, 77.22222222222223, 77.33333333333333, 77.44444444444444, 77.55555555555554, 77.66666666666666, 77.77777777777777, 77.88888888888889, 78, 78.11111111111111, 78.22222222222223, 78.33333333333333, 78.44444444444444, 78.55555555555554, 78.66666666666666, 78.77777777777777, 78.88888888888889, 79, 79.11111111111111, 79.22222222222223, 79.33333333333333, 79.44444444444444, 79.55555555555554, 79.66666666666666, 79.77777777777777, 79.88888888888889, 80, 80.11111111111111, 80.22222222222223, 80.33333333333333, 80.44444444444444, 80.55555555555554, 80.66666666666666, 80.77777777777777, 80.88888888888889, 81, 81.11111111111111, 81.22222222222223, 81.33333333333333, 81.44444444444444, 81.55555555555554, 81.66666666666666, 81.77777777777777, 81.88888888888889, 82, 82.11111111111111, 82.22222222222223, 82.33333333333333, 82.44444444444444, 82.55555555555554, 82.66666666666666, 82.77777777777777, 82.88888888888889, 83, 83.11111111111111, 83.22222222222223, 83.33333333333333, 83.44444444444444, 83.55555555555554, 83.66666666666666, 83.77777777777777, 83.88888888888889, 84, 84.11111111111111, 84.22222222222223, 84.33333333333333, 84.44444444444444, 84.55555555555554, 84.66666666666666, 84.77777777777777, 84.88888888888889, 85, 85.11111111111111, 85.22222222222223, 85.33333333333333, 85.44444444444444, 85.55555555555554, 85.66666666666666, 85.77777777777777, 85.88888888888889, 86, 86.11111111111111, 86.22222222222223, 86.33333333333333, 86.44444444444444, 86.55555555555554, 86.66666666666666, 86.77777777777777, 86.88888888888889, 87, 87.11111111111111, 87.22222222222223, 87.33333333333333, 87.44444444444444, 87.55555555555554, 87.66666666666666, 87.77777777777777, 87.88888888888889, 88, 88.11111111111111, 88.22222222222223, 88.33333333333333, 88.44444444444444, 88.55555555555554, 88.66666666666666, 88.77777777777777, 88.88888888888889, 89, 89.11111111111111, 89.22222222222223, 89.33333333333333, 89.44444444444444, 89.55555555555554, 89.66666666666666, 89.77777777777777, 89.88888888888889, 90, 90.11111111111111, 90.22222222222223, 90.33333333333333, 90.44444444444444, 90.55555555555554, 90.66666666666666, 90.77777777777777, 90.88888888888889, 91, 91.11111111111111, 91.22222222222223, 91.33333333333333, 91.44444444444444, 91.55555555555554, 91.66666666666666, 91.77777777777777, 91.88888888888889, 92, 92.11111111111111, 92.22222222222223, 92.33333333333333, 92.44444444444444, 92.55555555555554, 92.66666666666666, 92.77777777777777, 92.88888888888889, 93, 93.11111111111111, 93.22222222222223, 93.33333333333333, 93.44444444444444, 93.55555555555554, 93.66666666666666, 93.77777777777777, 93.88888888888889, 94, 94.11111111111111, 94.22222222222223, 94.33333333333333, 94.44444444444444, 94.55555555555554, 94.66666666666666, 94.77777777777777, 94.88888888888889, 95, 95.11111111111111, 95.22222222222223, 95.33333333333333, 95.44444444444444, 95.55555555555554, 95.66666666666666, 95.77777777777777, 95.88888888888889, 96, 96.11111111111111, 96.22222222222223, 96.33333333333333, 96.44444444444444, 96.55555555555554, 96.66666666666666, 96.77777777777777, 96.88888888888889, 97, 97.11111111111111, 97.22222222222223, 97.33333333333333, 97.44444444444444, 97.55555555555554, 97.66666666666666, 97.77777777777777, 97.88888888888889, 98, 98.11111111111111, 98.22222222222223, 98.33333333333333, 98.44444444444444, 98.55555555555554, 98.66666666666666, 98.77777777777777, 98.88888888888889, 99, 99.11111111111111, 99.22222222222221, 99.33333333333333, 99.44444444444444, 99.55555555555556, 99.66666666666666, 99.77777777777777, 99.88888888888889, 100, 100.11111111111111, 100.22222222222221, 100.33333333333333, 100.44444444444444, 100.55555555555556, 100.66666666666666, 100.77777777777777, 100.88888888888889, 101, 101.11111111111111, 101.22222222222221, 101.33333333333333, 101.44444444444444, 101.55555555555556, 101.66666666666666, 101.77777777777777, 101.88888888888889, 102, 102.11111111111111, 102.22222222222221, 102.33333333333333, 102.44444444444444, 102.55555555555556, 102.66666666666666, 102.77777777777777, 102.88888888888889, 103, 103.11111111111111, 103.22222222222221, 103.33333333333333, 103.44444444444444, 103.55555555555556, 103.66666666666666, 103.77777777777777, 103.88888888888889, 104, 104.11111111111111, 104.22222222222221, 104.33333333333333, 104.44444444444444, 104.55555555555556, 104.66666666666666, 104.77777777777777, 104.88888888888889, 105, 105.11111111111111, 105.22222222222221, 105.33333333333333, 105.44444444444444, 105.55555555555556, 105.66666666666666, 105.77777777777777, 105.88888888888889, 106, 106.11111111111111, 106.22222222222221, 106.33333333333333, 106.44444444444444, 106.55555555555556, 106.66666666666666, 106.77777777777777, 106.88888888888889, 107, 107.1111111111111, 107.22222222222221, 107.33333333333333, 107.44444444444444, 107.55555555555556, 107.66666666666666, 107.77777777777777, 107.88888888888889, 108, 108.1111111111111, 108.22222222222221, 108.33333333333333, 108.44444444444444, 108.55555555555556, 108.66666666666666, 108.77777777777777, 108.88888888888889, 109, 109.1111111111111, 109.22222222222221, 109.33333333333333, 109.44444444444444, 109.55555555555556, 109.66666666666666, 109.77777777777777, 109.88888888888889, 110, 110.1111111111111, 110.22222222222221, 110.33333333333333, 110.44444444444444, 110.55555555555556, 110.66666666666666, 110.77777777777777, 110.88888888888889, 111, 111.1111111111111, 111.22222222222221, 111.33333333333333, 111.44444444444444, 111.55555555555556, 111.66666666666666, 111.77777777777777, 111.88888888888889, 112, 112.1111111111111, 112.22222222222221, 112.33333333333333, 112.44444444444444, 112.55555555555556, 112.66666666666666, 112.77777777777777, 112.88888888888889, 113, 113.1111111111111, 113.22222222222221, 113.33333333333333, 113.44444444444444, 113.55555555555556, 113.66666666666666, 113.77777777777777, 113.88888888888889, 114, 114.1111111111111, 114.22222222222221, 114.33333333333333, 114.44444444444444, 114.55555555555556, 114.66666666666666, 114.77777777777777, 114.88888888888889, 115, 115.1111111111111, 115.22222222222221, 115.33333333333333, 115.44444444444444, 115.55555555555556, 115.66666666666666, 115.77777777777777, 115.88888888888889, 116, 116.1111111111111, 116.22222222222221, 116.33333333333333, 116.44444444444444, 116.55555555555556, 116.66666666666666, 116.77777777777777, 116.88888888888889, 117, 117.1111111111111, 117.22222222222221, 117.33333333333333, 117.44444444444444, 117.55555555555556, 117.66666666666666, 117.77777777777777, 117.88888888888889, 118, 118.1111111111111, 118.22222222222221, 118.33333333333333, 118.44444444444444, 118.55555555555556, 118.66666666666666, 118.77777777777777, 118.88888888888889, 119, 119.1111111111111, 119.22222222222221, 119.33333333333333, 119.44444444444444, 119.55555555555556, 119.66666666666666, 119.77777777777777, 119.88888888888889, 120, 120.1111111111111, 120.22222222222221, 120.33333333333333, 120.44444444444444, 120.55555555555556, 120.66666666666666, 120.77777777777777, 120.88888888888889, 121, 121.1111111111111, 121.22222222222221, 121.33333333333333, 121.44444444444444, 121.55555555555556, 121.66666666666666, 121.77777777777777, 121.88888888888889, 122, 122.1111111111111, 122.22222222222221, 122.33333333333333, 122.44444444444444, 122.55555555555556, 122.66666666666666, 122.77777777777777, 122.88888888888889, 123, 123.1111111111111, 123.22222222222221, 123.33333333333333, 123.44444444444444, 123.55555555555556, 123.66666666666666, 123.77777777777777, 123.88888888888889, 124, 124.1111111111111, 124.22222222222221, 124.33333333333333, 124.44444444444444, 124.55555555555556, 124.66666666666666, 124.77777777777777, 124.88888888888889, 125, 125.1111111111111, 125.22222222222221, 125.33333333333333, 125.44444444444444, 125.55555555555556, 125.66666666666666, 125.77777777777777, 125.88888888888889, 126, 126.1111111111111, 126.22222222222221, 126.33333333333333, 126.44444444444444, 126.55555555555556, 126.66666666666666, 126.77777777777777, 126.88888888888889, 127, 127.1111111111111, 127.22222222222221, 127.33333333333333, 127.44444444444444, 127.55555555555556, 127.66666666666666, 127.77777777777777, 127.88888888888889, 128, 128.1111111111111, 128.22222222222223, 128.33333333333331, 128.44444444444446, 128.55555555555554, 128.66666666666666, 128.77777777777777, 128.88888888888889, 129, 129.1111111111111, 129.22222222222223, 129.33333333333331, 129.44444444444446, 129.55555555555554, 129.66666666666666, 129.77777777777777, 129.88888888888889, 130, 130.1111111111111, 130.22222222222223, 130.33333333333331, 130.44444444444446, 130.55555555555554, 130.66666666666666, 130.77777777777777, 130.88888888888889, 131, 131.1111111111111, 131.22222222222223, 131.33333333333331, 131.44444444444446, 131.55555555555554, 131.66666666666666, 131.77777777777777, 131.88888888888889, 132, 132.1111111111111, 132.22222222222223, 132.33333333333331, 132.44444444444446, 132.55555555555554, 132.66666666666666, 132.77777777777777, 132.88888888888889, 133, 133.1111111111111, 133.22222222222223, 133.33333333333331, 133.44444444444446, 133.55555555555554, 133.66666666666666, 133.77777777777777, 133.88888888888889, 134, 134.1111111111111, 134.22222222222223, 134.33333333333331, 134.44444444444446, 134.55555555555554, 134.66666666666666, 134.77777777777777, 134.88888888888889, 135, 135.1111111111111, 135.22222222222223, 135.33333333333331, 135.44444444444446, 135.55555555555554, 135.66666666666666, 135.77777777777777, 135.88888888888889, 136, 136.1111111111111, 136.22222222222223, 136.33333333333331, 136.44444444444446, 136.55555555555554, 136.66666666666666, 136.77777777777777, 136.88888888888889, 137, 137.1111111111111, 137.22222222222223, 137.33333333333331, 137.44444444444446, 137.55555555555554, 137.66666666666666, 137.77777777777777, 137.88888888888889, 138, 138.1111111111111, 138.22222222222223, 138.33333333333331, 138.44444444444446, 138.55555555555554, 138.66666666666666, 138.77777777777777, 138.88888888888889, 139, 139.1111111111111, 139.22222222222223, 139.33333333333331, 139.44444444444446, 139.55555555555554, 139.66666666666666, 139.77777777777777, 139.88888888888889, 140, 140.1111111111111, 140.22222222222223, 140.33333333333331, 140.44444444444446, 140.55555555555554, 140.66666666666666, 140.77777777777777, 140.88888888888889, 141, 141.1111111111111, 141.22222222222223, 141.33333333333331, 141.44444444444446, 141.55555555555554, 141.66666666666666, 141.77777777777777, 141.88888888888889, 142, 142.1111111111111, 142.22222222222223, 142.33333333333331, 142.44444444444446, 142.55555555555554, 142.66666666666666, 142.77777777777777, 142.88888888888889, 143, 143.1111111111111, 143.22222222222223, 143.33333333333331, 143.44444444444446, 143.55555555555554, 143.66666666666666, 143.77777777777777, 143.88888888888889, 144, 144.1111111111111, 144.22222222222223, 144.33333333333331, 144.44444444444446, 144.55555555555554, 144.66666666666666, 144.77777777777777, 144.88888888888889, 145, 145.1111111111111, 145.22222222222223, 145.33333333333331, 145.44444444444446, 145.55555555555554, 145.66666666666666, 145.77777777777777, 145.88888888888889, 146 ], "y": [ 1.0645893042527979, 1.0628074232425693, 1.0610518755063754, 1.0593225079806738, 1.0576191698215773, 1.0559417123701702, 1.054289989118475, 1.052663855676053, 1.0510631697372255, 1.0494877910489, 1.0479375813789928, 1.0464124044854337, 1.0449121260857346, 1.0434366138271194, 1.041985737257197, 1.0405593677951677, 1.0391573787035513, 1.037779645060426, 1.036426043732168, 1.0350964533466804, 1.0337907542671017, 1.0325088285659845, 1.031250559999933, 1.03001583398469, 1.0288045375706674, 1.027616559418905, 1.026451789777457, 1.0253101204581871, 1.024191444813975, 1.0230956577163155, 1.0220226555333114, 1.0209723361080465, 1.0199445987373292, 1.01893934415081, 1.0179564744904503, 1.0169958932903482, 1.016057505456907, 1.0151412172493421, 1.01424693626052, 1.0133745713981197, 1.0125240328661171, 1.011695232146576, 1.010888081981749, 1.010102496356476, 1.00933839048088, 1.0085956807733463, 1.0078742848437912, 1.0071741214772012, 1.006495110617449, 1.005837173351374, 1.0052002318931268, 1.004584209568767, 1.0039890308011148, 1.00341462109485, 1.002860907021853, 1.002327816206782, 1.0018152773128852, 1.001323220028042, 1.0008515750510267, 1.0004002740779938, 0.9999692497891816, 0.9995584358358244, 0.9991677668272734, 0.9987971783183264, 0.9984466067967515, 0.9981159896710138, 0.9978052652581915, 0.9975143727720829, 0.9972432523115006, 0.9969918448487475, 0.9967600922182724, 0.9965479371055033, 0.9963553230358515, 0.9961821943638886, 0.9960284962626879, 0.99589417471333, 0.9957791764945728, 0.9956834491726745, 0.9956069410913755, 0.9955496013620326, 0.9955113798539007, 0.9954922271845646, 0.9954920947105141, 0.9955109345178604, 0.9955486994131949, 0.9956053429145802, 0.9956808192426826, 0.9957750833120288, 0.9958880907224019, 0.9960197977503571, 0.9961701613408678, 0.9963391390990941, 0.9965266892822713, 0.9967327707917203, 0.9969573431649724, 0.9972003665680108, 0.9974618017876262, 0.9977416102238822, 0.9980397538826888, 0.9983561953684896, 0.9986908978770463, 0.999043825188334, 0.9994149416595353, 0.9998042122181368, 1.000211602355122, 1.000637078118264, 1.001080606105514, 1.0015421534584799, 1.0020216878560013, 1.0025191775078162, 1.0030345911483114, 1.0035678980303684, 1.0041190679192888, 1.0046880710868102, 1.005274878305203, 1.0058794608414499, 1.006501790451508, 1.0071418393746479, 1.0077995803278728, 1.0084749865004163, 1.0091680315483131, 1.0098786895890457, 1.010606935196265, 1.0113527433945835, 1.0121160896544377, 1.012896949887023, 1.0136953004392968, 1.0145111180890474, 1.0153443800400326, 1.0161950639171833, 1.0170631477618697, 1.0179486100272328, 1.0188514295735807, 1.0197715856638412, 1.0207090579590807, 1.021663826514079, 1.0226358717729656, 1.0236251745649108, 1.0246317160998786, 1.0256554779644302, 1.0266964421175875, 1.027754590886748, 1.0288299069636555, 1.0299223734004204, 1.0310319736055968, 1.0321586913403065, 1.0333025107144151, 1.0344634161827586, 1.0356413925414174, 1.0368364249240394, 1.0380484987982086, 1.0392775999618649, 1.040523714539765, 1.041786828979993, 1.0430669300505095, 1.0443640048357523, 1.0456780407332755, 1.0470090254504325, 1.0483569470011014, 1.0497217937024512, 1.0511035541717497, 1.052502217323211, 1.053917772364883, 1.0553502087955733, 1.056799516401815, 1.0582656852548693, 1.0597487057077657, 1.0612485683923771, 1.0627652642165377, 1.064298784361188, 1.065849120277561, 1.067416263684402, 1.06900020656522, 1.0706009411655768, 1.0722184599904077, 1.0738527558013733, 1.0755038216142456, 1.0771716506963274, 1.078856236563898, 1.0805575729796972, 1.0822756539504317, 1.0840104737243186, 1.085762026788654, 1.0875303078674152, 1.0893153119188852, 1.091117034133313, 1.0929354699305978, 1.0947706149579997, 1.0966224650878829, 1.098491016415479, 1.1003762652566844, 1.1022782081458753, 1.1041968418337564, 1.106132163285231, 1.1080841696772965, 1.1100528583969644, 1.1120382270392066, 1.114040273404924, 1.1160589954989384, 1.1180943915280117, 1.120146459898882, 1.1222151992163274, 1.1243006082812514, 1.126402686088788, 1.1285214318264318, 1.130656844872189, 1.132808924792747, 1.1349776713416688, 1.1371630844576053, 1.1393651642625309, 1.141583911059995, 1.143819325333399, 1.1460714077442873, 1.1483401591306617, 1.1506255805053134, 1.1529276730541735, 1.1552464381346836, 1.1575818772741833, 1.159933992168316, 1.1623027846794536, 1.1646882568351395, 1.1670904108265443, 1.1695092490069454, 1.1719447738902202, 1.1743969881493554, 1.1768658946149728, 1.179351496273875, 1.181853796267602, 1.184372797891008, 1.1869085045908527, 1.189460919964406, 1.19203004775807, 1.1946158918660172, 1.1972184563288415, 1.1998377453322235, 1.202473763205613, 1.2051265144209242, 1.2077960035912445, 1.210482235469559, 1.213185214947488, 1.2159049470540353, 1.2186414369543577, 1.221394689948538, 1.224164711470379, 1.226951507086206, 1.2297550824936838, 1.2325754435206469, 1.235412596123941, 1.238266546388276, 1.2411373005250945, 1.2440248648714483, 1.246929245888891, 1.2498504501623786, 1.2527884843991823, 1.2557433554278163, 1.258715070196973, 1.261703635774468, 1.264709059346204, 1.2677313482151369, 1.270770509800256, 1.2738265516355776, 1.2768994813691434, 1.2799893067620345, 1.2830960356873926, 1.2862196761294524, 1.2893602361825858, 1.29251772405035, 1.2956921480445531, 1.2988835165843249, 1.3020918381951965, 1.305317121508193, 1.308559375258931, 1.3118186082867307, 1.3150948295337315, 1.3183880480440209, 1.3216982729627689, 1.3250255135353735, 1.3283697791066158, 1.3317310791198196, 1.3351094231160223, 1.3385048207331556, 1.341917281705231, 1.3453468158615338, 1.3487934331258318, 1.3522571435155806, 1.3557379571411445, 1.3592358842050274, 1.3627509350011016, 1.3662831199138543, 1.3698324494176364, 1.3733989340759196, 1.3769825845405599, 1.380583411551073, 1.38420142593391, 1.3878366386017438, 1.3914890605527659, 1.3951587028699826, 1.3988455767205232, 1.402549693354955, 1.406271064106603, 1.4100097003908765, 1.4137656137046049, 1.417538815625375, 1.4213293178108788, 1.4251371319982686, 1.4289622700035134, 1.4328047437207643, 1.4366645651217278, 1.4405417462550425, 1.4444362992456616, 1.4483482362942461, 1.4522775696765546, 1.4562243117428486, 1.4601884749172984, 1.4641700716973947, 1.4681691146533664, 1.4721856164276064, 1.4762195897340986, 1.4802710473578526, 1.4843400021543467, 1.4884264670489662, 1.4925304550364606, 1.4966519791803972, 1.5007910526126191, 1.504947688532715, 1.5091219002074863, 1.5133137009704258, 1.5175231042211954, 1.5217501234251143, 1.525994772112648, 1.530257063878903, 1.5345370123831277, 1.5388346313482149, 1.54314993456021, 1.5474829358678295, 1.5518336491819746, 1.5562020884752514, 1.5605882677815064, 1.564992201195347, 1.5694139028716856, 1.573853387025273, 1.5783106679302459, 1.5827857599196737, 1.5872786773851129, 1.5917894347761576, 1.5963180466000084, 1.6008645274210276, 1.6054288918603135, 1.6100111545952729, 1.6146113303591911, 1.6192294339408182, 1.6238654801839494, 1.6285194839870136, 1.633191460302663, 1.637881424137369, 1.6425893905510216, 1.6473153746565288, 1.652059391619424, 1.6568214566574753, 1.6616015850402956, 1.6663997920889602, 1.6712160931756275, 1.6760505037231592, 1.6809030392047473, 1.685773715143546, 1.690662547112298, 1.6955695507329789, 1.700494741676429, 1.7054381356619983, 1.7103997484571927, 1.7153795958773226, 1.7203776937851523, 1.7253940580905551, 1.7304287047501743, 1.73548164976708, 1.7405529091904344, 1.745642499115157, 1.750750435681595, 1.7558767350751965, 1.761021413526184, 1.7661844873092307, 1.7713659727431454, 1.7765658861905544, 1.7817842440575848, 1.787021062793556, 1.7922763588906716, 1.7975501488837111, 1.8028424493497295, 1.8081532769077535, 1.8134826482184871, 1.8188305799840134, 1.8241970889475008, 1.8295821918929152, 1.8349859056447313, 1.8404082470676442, 1.8458492330662888, 1.8513088805849596, 1.8567872066073283, 1.8622842281561711, 1.867799962293094, 1.8733344261182634, 1.878887636770131, 1.884459611425173, 1.890050367297622, 1.8956599216392045, 1.9012882917388814, 1.9069354949225903, 1.9126015485529884, 1.9182864700291984, 1.9239902767865595, 1.92971298629637, 1.9354546160656505, 1.9412151836368907, 1.946994706587806, 1.9527932025311006, 1.9586106891142214, 1.9644471840191278, 1.9703027049620478, 1.9761772696932525, 1.9820708959968178, 1.9879836016903973, 1.9939154046249936, 1.9998663226847337, 2.005836373786639, 2.0118255758804087, 2.0178339469482003, 2.023861505004402, 2.029908268095426, 2.0359742542994823, 2.0420594817263775, 2.0481639685172883, 2.0542877328445646, 2.06043079291151, 2.0665931669521846, 2.0727748732311935, 2.0789759300434807, 2.0851963557141375, 2.0914361685981895, 2.097695387080409, 2.1039740295751104, 2.110272114525956, 2.116589660405763, 2.1229266857163127, 2.1292832089881544, 2.13565924878042, 2.142054823680636, 2.148469952304535, 2.154904653295872, 2.1613589453262385, 2.1678328470948824, 2.1743263773285286, 2.1808395547811954, 2.1873723982340216, 2.193924926495083, 2.200497158399228, 2.207089112807892, 2.2137008086089347, 2.2203322647164603, 2.2269835000706544, 2.2336545336376132, 2.240345384409177, 2.2470560714027603, 2.253786613661193, 2.260537030252556, 2.267307340270015, 2.274097562831665, 2.280907717080367, 2.28773782218359, 2.2945878973332543, 2.3014579617455793, 2.308348034660921, 2.3152581353436252, 2.322188283081874, 2.3291384971875293, 2.3361087969959904, 2.3430992018660395, 2.3501097311796966, 2.3571404043420716, 2.3641912407812176, 2.3712622599479904, 2.3783534813159, 2.385464924380974, 2.3925966086616093, 2.3997485536984398, 2.40692077905419, 2.4141133043135428, 2.421326149082997, 2.4285593329907362, 2.4358128756864903, 2.4430867968414045, 2.4503811161479034, 2.457695853319561, 2.46503102809097, 2.472386660217608, 2.4797627694757125, 2.487159375662152, 2.494576498594296, 2.502014158109895, 2.5094723740669456, 2.5169511663435773, 2.5244505548379164, 2.5319705594679784, 2.5395112001715328, 2.547072496905989, 2.554654469648276, 2.5622571383947212, 2.5698805231609354, 2.577524643981691, 2.5851895209108138, 2.592875174021054, 2.6005816234039862, 2.6083088891698885, 2.6160569914476226, 2.6238259503845347, 2.631615786146337, 2.6394265189169963, 2.6472581688986283, 2.6551107563113825, 2.6629843013933416, 2.6708788244004067, 2.6787943456061964, 2.6867308853019347, 2.694688463796354, 2.7026671014155803, 2.7106668185030416, 2.7186876354193523, 2.7267295725422205, 2.734792650266345, 2.7428768890033077, 2.750982309181485, 2.7591089312459385, 2.767256775658318, 2.775425862896769, 2.7836162134558307, 2.7918278478463407, 2.8000607865953393, 2.808315050245974, 2.816590659357407, 2.8248876345047162, 2.833205996278806, 2.841545765286318, 2.8499069621495283, 2.858289607506268, 2.8666937220098276, 2.875119326328865, 2.8835664411473187, 2.892035087164321, 2.9005252850941035, 2.9090370556659173, 2.91757041962394, 2.9261253977271915, 2.9347020107494486, 2.943300279479161, 2.9519202247193674, 2.960561867287606, 2.969225228015837, 2.9779103277503594, 2.9866171873517224, 2.995345827694653, 3.0040962696679694, 3.012868534174499, 3.0216626421310044, 3.0304786144681004, 3.0393164721301695, 3.048176236075298, 3.057057927275183, 3.0659615667150657, 3.0748871753936475, 3.083834774323017, 3.0928043845285766, 3.101796027048962, 3.1108097229359726, 3.119845493254491, 3.1289033590824205, 3.1379833415105978, 3.1470854616427313, 3.1562097405953216, 3.165356199497594, 3.1745248594914277, 3.1837157417312834, 3.1929288673841345, 3.20216425762939, 3.2114219336588357, 3.220701916676564, 3.2300042278988954, 3.239328888554321, 3.24867591988343, 3.258045343138844, 3.2674371795851536, 3.276851450498845, 3.2862881771682373, 3.2957473808934203, 3.3052290829861914, 3.3147333047699803, 3.3242600675797926, 3.3338093927621513, 3.343381301675021, 3.3529758156877576, 3.362592956181035, 3.3722327445467926, 3.3818952021881645, 3.391580350519433, 3.4012882109659452, 3.4110188049640766, 3.4207721539611553, 3.430548279415406, 3.4403472027959, 3.450168945582478, 3.460013529265712, 3.4698809753468303, 3.479771305337673, 3.4896845407606274, 3.4996207031485698, 3.5095798140448142, 3.5195618950030516, 3.5295669675873014, 3.5395950533718477, 3.5496461739411846, 3.5597203508899686, 3.569817605822961, 3.5799379603549704, 3.5900814361107973, 3.6002480547251943, 3.6104378378427935, 3.6206508071180745, 3.630886984215293, 3.6411463908084434, 3.6514290485811918, 3.661734979226848, 3.6720642044482905, 3.6824167459579296, 3.69279262547765, 3.703191864738765, 3.713614485481972, 3.72406050945729, 3.734529958424019, 3.7450228541506885, 3.755539218415015, 3.7660790730038434, 3.7766424397131084, 3.787229340347782, 3.797839796721824, 3.8084738306581447, 3.8191314639885507, 3.829812718553695, 3.8405176162030386, 3.8512461787948054, 3.8619984281959274, 3.872774386282008, 3.8835740749372736, 3.8943975160545294, 3.905244731535117, 3.9161157432888656, 3.9270105732340497, 3.9379292432973516, 3.9488717754138083, 3.9598381915267793, 3.970828513587891, 3.981842763557003, 3.9928809634021682, 4.0039431350995836, 4.0150293006335485, 4.02613948199643, 4.037273701188618, 4.048431980218482, 4.059614341102332, 4.070820805864379, 4.082051396536693, 4.09330613515917, 4.1045850437794815, 4.115888144453035, 4.127215459242951, 4.138567010220004, 4.149942819462598, 4.161342909056716, 4.172767301095898, 4.1842160176811785, 4.1956890809210785, 4.207186512931543, 4.218708335835913, 4.2302545717648945, 4.241825242856509, 4.253420371256068, 4.265039979116131, 4.2766840885964665, 4.288352721864023, 4.300045901092891, 4.311763648464262, 4.323505986166398, 4.335272936394595, 4.347064521351151, 4.358880763245329, 4.370721684293316, 4.382587306718198, 4.394477652749927, 4.406392744625274, 4.418332604587813, 4.430297254887869, 4.442286717782499, 4.454301015535454, 4.466340170417143, 4.478404204704605, 4.490493140681471, 4.50260700063794, 4.514745806870738, 4.526909581683089, 4.5390983473846855, 4.551312126291657, 4.5635509407265324, 4.5758148130182175, 4.588103765501957, 4.600417820519305, 4.612757000418095, 4.625121327552418, 4.6375108242825736, 4.649925512975053, 4.662365416002511, 4.6748305557437195, 4.687320954583563, 4.699836634912989, 4.712377619128985, 4.724943929634549, 4.737535588838667, 4.750152619156271, 4.762795043008224, 4.775462882821281, 4.788156161028065, 4.8008749000670425, 4.813619122382487, 4.826388850424461, 4.8391841066487755, 4.852004913516979, 4.864851293496319, 4.877723269059712, 4.890620862685727, 4.90354409685855, 4.916492994067966, 4.929467576809322, 4.942467867583504, 4.955493888896916, 4.968545663261452, 4.981623213194459, 4.994726561218733, 5.00785572986247, 5.021010741659252, 5.034191619148029, 5.047398384873078, 5.060631061383986, 5.073889671235623, 5.087174236988125, 5.100484781206858, 5.113821326462401, 5.127183895330508, 5.14057251039211, 5.153987194233267, 5.1674279694451535, 5.180894858624033, 5.194387884371231, 5.207907069293129, 5.221452436001114, 5.235024007111567, 5.248621805245854, 5.262245853030272, 5.275896173096065, 5.289572788079366, 5.303275720621189, 5.317004993367409, 5.330760628968742, 5.344542650080705, 5.358351079363617, 5.37218593948256, 5.386047253107364, 5.399935042912585, 5.413849331577484, 5.427790141786001, 5.4417574962267325, 5.455751417592926, 5.469771928582436, 5.483819051897718, 5.497892810245801, 5.51199322633827, 5.526120322891244, 5.540274122625357, 5.554454648265731, 5.568661922541962, 5.582895968188103, 5.597156807942634, 5.611444464548445, 5.6257589607528224, 5.64010031930742, 5.654468562968245, 5.66886371449564, 5.683285796654259, 5.697734832213041, 5.712210843945216, 5.7267138546282474, 5.741243887043854, 5.755800963977956, 5.77038510822068, 5.784996342566329, 5.799634689813367, 5.814300172764393, 5.828992814226136, 5.84371263700943, 5.858459663929189, 5.8732339178043995, 5.888035421458092, 5.902864197717332, 5.917720269413203, 5.9326036593807805, 5.947514390459111, 5.962452485491214, 5.977417967324046, 5.992410858808484, 6.007431182799319, 6.022478962155233, 6.037554219738777, 6.0526569784163575, 6.067787261058232, 6.082945090538464, 6.09813048973493, 6.113343481529304, 6.128584088807013, 6.143852334457259, 6.159148241372968, 6.1744718324507994, 6.189823130591108, 6.20520215869795, 6.220608939679048, 6.236043496445783, 6.251505851913188, 6.266996028999907, 6.282514050628204, 6.298059939723929, 6.313633719216524, 6.329235412038986, 6.3448650411278535, 6.360522629423217, 6.376208199868657, 6.3919217754112845, 6.4076633790016695, 6.42343303359388, 6.43923076214542, 6.455056587617242, 6.470910532973737, 6.486792621182687, 6.5027028752152845, 6.518641318046099, 6.53460797265309, 6.550602862017523, 6.566626009124056, 6.582677436960639, 6.598757168518537, 6.614865226792325, 6.631001634779846, 6.647166415482226, 6.663359591903823, 6.679581187052268, 6.695831223938379, 6.712109725576232, 6.728416714983056, 6.744752215179309, 6.761116249188585, 6.777508840037668, 6.793930010756463, 6.810379784378011, 6.826858183938495, 6.843365232477167, 6.859900953036409, 6.87646536866164, 6.893058502401398, 6.909680377307223, 6.92633101643373, 6.943010442838547, 6.959718679582321, 6.976455749728706, 6.993221676344331, 7.010016482498827, 7.026840191264755, 7.043692825717664, 7.060574408936022, 7.077484964001237, 7.094424513997617, 7.111393082012386, 7.12839069113566, 7.145417364460423, 7.162473125082541, 7.179557996100717, 7.196672000616515, 7.213815161734327, 7.230987502561357, 7.248189046207616, 7.265419815785926, 7.282679834411886, 7.299969125203861, 7.31728771128299, 7.334635615773153, 7.352012861800978, 7.369419472495818, 7.386855470989735, 7.40432088041751, 7.421815723916599, 7.439340024627176, 7.4568938056920455, 7.474477090256702, 7.492089901469275, 7.5097322624805445, 7.527404196443919, 7.54510572651541, 7.5628368758536615, 7.580597667619881, 7.598388124977911, 7.616208271094106, 7.634058129137449, 7.651937722279425, 7.669847073694102, 7.687786206558063, 7.705755144050411, 7.723753909352778, 7.741782525649283, 7.759841016126563, 7.777929403973697, 7.796047712382285, 7.814195964546342, 7.832374183662385, 7.850582392929332, 7.868820615548561, 7.887088874723859, 7.905387193661429, 7.9237155955699015, 7.942074103660251, 7.960462741145894, 7.978881531242571, 7.997330497168433, 8.015809662143957, 8.034319049391982, 8.052858682137673, 8.071428583608535, 8.090028777034387, 8.10865928564735, 8.127320132681866, 8.146011341374628, 8.164732934964668, 8.183484936693242, 8.202267369803897, 8.221080257542424, 8.239923623156862, 8.258797489897493, 8.277701881016814, 8.29663681976956, 8.31560232941266, 8.334598433205255, 8.353625154408677, 8.372682516286446, 8.39177054210424, 8.410889255129929, 8.430038678633535, 8.44921883588722, 8.4684297501653, 8.487671444744212, 8.506943942902534, 8.526247267920953, 8.545581443082261, 8.56494649167136, 8.584342436975227, 8.603769302282954, 8.623227110885672, 8.642715886076605, 8.662235651151025, 8.68178642940626, 8.701368244141689, 8.720981118658706, 8.740625076260761, 8.760300140253293, 8.780006333943792, 8.799743680641706, 8.819512203658526, 8.83931192630768, 8.859142871904636, 8.879005063766797, 8.89889852521353, 8.918823279566185, 8.938779350148033, 8.95876676028433, 8.978785533302217, 8.998835692530811, 9.0189172613011, 9.039030262946039, 9.059174720800446, 9.07935065820107, 9.099558098486524, 9.119797064997325, 9.140067581075868, 9.160369670066391, 9.180703355315034, 9.201068660169755, 9.221465607980397, 9.241894222098612, 9.26235452587791, 9.282846542673614 ] }, { "mode": "markers+text", "name": "Annotation", "showlegend": false, "text": "Vmd=57.98kn$", "textposition": "middle right", "type": "scatter", "x": [ 57.981376208892904 ], "y": [ 1.134612996141466 ] }, { "mode": "markers+text", "name": "Annotation", "showlegend": false, "text": "Vmp=44.06kn$", "textposition": "middle right", "type": "scatter", "x": [ 44.05631874670708 ], "y": [ 0.9954897859866333 ] }, { "mode": "lines", "name": "Annotation", "showlegend": false, "type": "scatter", "x": [ 0, 115.96275241778581 ], "y": [ 0, 2.269225992282932 ] } ], "layout": { "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Glider Polar" }, "xaxis": { "range": [ 0, 150 ], "title": { "text": "Airspeed kn EAS" } }, "yaxis": { "range": [ 2.5, 0 ], "title": { "text": "Sink rate kn EAS" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Aircraft Input data - representative glider data taken from https://booksite.elsevier.com/9780123973085/content/APP-C4-DESIGN_OF_SAILPLANES.pdf page 23\n", "# and from Stemme S10 info at https://en.wikipedia.org/wiki/Stemme_S10\n", "#\n", "# Note that I have reduced the stall speed slightly to show the shape of the drag polar in more detail\n", "CD0 = 0.008\n", "e = 0.95\n", "AR = 28\n", "W = 850 * 9.80665 # Gross weight\n", "Vstall = 35 # knots\n", "Vne = 146 # knots\n", "S = 18.7\n", "rho_sl = 1.2255\n", "\n", "# Get the induced drag factor from Oswold efficiency\n", "K = 1/np.pi/e/AR\n", "\n", "\n", "# Make a vector of speeds\n", "Vknots = np.linspace(Vstall, Vne, 1000) # In knots\n", "Vms = Vknots * 0.5144444 # In m/s\n", "\n", "# Get the CL values for these speeds\n", "CLs = 2*W/rho_sl/S/Vms**2\n", "\n", "# Get the corresponding drags\n", "CDs = CD0 + K * CLs**2\n", "\n", "\n", "\n", "# Determine the sink rates\n", "w_e = np.sqrt(2 * W / rho_sl / S) * CDs / CLs**(3/2) / 0.5144444\n", "\n", "#### Get points for min glide angle\n", "# Get ClMD and associated sink rate for plotting\n", "A = .5 * CD0 * rho_sl * S\n", "B = K * W**2 / rho_sl / 0.5 / S\n", "\n", "# Minimum drag speed\n", "Vmd_ms = (B/A)**(1/4)\n", "Vmd_knots = (B/A)**(1/4) / 0.5144444\n", "\n", "# Associated Cl and Cd\n", "Clmd = np.sqrt(CD0/K)\n", "Cdmd = CD0 + K * Clmd**2\n", "\n", "# Sink rate at minimum drag speed\n", "w_emd = np.sqrt(2 * W / rho_sl / S) * Cdmd / Clmd**(3/2) / 0.5144444\n", "\n", "#### Do the same for the minimum sink rate\n", "# Minimum power speed\n", "Vmp_ms = (B/3/A)**(1/4)\n", "Vmp_knots = (B/3/A)**(1/4) / 0.5144444\n", "\n", "# Associated Cl and Cd\n", "Clmp = np.sqrt(3*CD0/K)\n", "Cdmp = CD0 + K * Clmp**2\n", "\n", "# Sink rate at minimum power speed\n", "w_emp = np.sqrt(2 * W / rho_sl / S) * Cdmp / Clmp**(3/2) / 0.5144444\n", "\n", "# Make a plot\n", "fig = go.Figure()\n", "fig.add_trace(go.Scatter(x=Vknots, y=w_e, name=f\"Gross weight = {W}N\"))\n", "\n", "\n", "\n", "# Annotate it\n", "fig.add_trace(go.Scatter(x=[Vmd_knots], y=[w_emd], mode=\"markers+text\", text=f\"Vmd={Vmd_knots:1.2f}kn$\", textposition=\"middle right\", name=\"Annotation\"))\n", "fig.add_trace(go.Scatter(x=[Vmp_knots], y=[w_emp], mode=\"markers+text\", text=f\"Vmp={Vmp_knots:1.2f}kn$\", textposition=\"middle right\", name=\"Annotation\"))\n", "\n", "# Draw a line to the minimum drag speed\n", "fig.add_trace(go.Scatter(x=[0, Vmd_knots*2], y=[0, w_emd*2], mode='lines', name=\"Annotation\"))\n", "\n", "\n", "fig.update_layout(\n", " title=\"Glider Polar\",\n", " xaxis_title=\"Airspeed kn EAS\",\n", " yaxis_title=\"Sink rate kn EAS\"\n", ")\n", "\n", "\n", "fig.update_yaxes(range=[2.5, 0])\n", "fig.update_xaxes(range=[0, 150])\n", "\n", "for trace in fig['data']: \n", " if(trace['name'] == \"Annotation\"): trace['showlegend'] = False\n", "\n", "fig.show()\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can see that an increase in the aircraft weight moves the curve along so its tangent remains the same.\n", "\n", "*Note: The weights for the plot are likely unfeasible for this aircraft but they make for a nice plot*" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "tags": [ "remove-input" ] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "name": "Gross weight = 850kg", "type": "scatter", "x": [ 35, 35.111111111111114, 35.22222222222222, 35.333333333333336, 35.44444444444444, 35.55555555555556, 35.666666666666664, 35.77777777777778, 35.888888888888886, 36, 36.111111111111114, 36.22222222222222, 36.333333333333336, 36.44444444444444, 36.55555555555556, 36.666666666666664, 36.77777777777778, 36.888888888888886, 37, 37.111111111111114, 37.22222222222222, 37.333333333333336, 37.44444444444444, 37.55555555555556, 37.666666666666664, 37.77777777777778, 37.888888888888886, 38, 38.111111111111114, 38.22222222222222, 38.333333333333336, 38.44444444444444, 38.55555555555556, 38.666666666666664, 38.77777777777778, 38.888888888888886, 39, 39.111111111111114, 39.22222222222222, 39.333333333333336, 39.44444444444444, 39.55555555555556, 39.666666666666664, 39.77777777777778, 39.888888888888886, 40, 40.111111111111114, 40.22222222222222, 40.333333333333336, 40.44444444444444, 40.55555555555556, 40.666666666666664, 40.77777777777778, 40.888888888888886, 41, 41.111111111111114, 41.22222222222222, 41.333333333333336, 41.44444444444444, 41.55555555555556, 41.666666666666664, 41.77777777777778, 41.888888888888886, 42, 42.111111111111114, 42.22222222222222, 42.333333333333336, 42.44444444444444, 42.55555555555556, 42.666666666666664, 42.77777777777778, 42.888888888888886, 43, 43.111111111111114, 43.22222222222222, 43.33333333333333, 43.44444444444444, 43.55555555555556, 43.666666666666664, 43.77777777777778, 43.888888888888886, 44, 44.111111111111114, 44.22222222222222, 44.33333333333333, 44.44444444444444, 44.55555555555556, 44.666666666666664, 44.77777777777778, 44.888888888888886, 45, 45.111111111111114, 45.22222222222222, 45.33333333333333, 45.44444444444444, 45.55555555555556, 45.666666666666664, 45.77777777777778, 45.888888888888886, 46, 46.111111111111114, 46.22222222222222, 46.33333333333333, 46.44444444444444, 46.55555555555556, 46.666666666666664, 46.77777777777778, 46.888888888888886, 47, 47.111111111111114, 47.22222222222222, 47.33333333333333, 47.44444444444444, 47.55555555555556, 47.666666666666664, 47.77777777777778, 47.888888888888886, 48, 48.111111111111114, 48.22222222222222, 48.33333333333333, 48.44444444444444, 48.55555555555556, 48.666666666666664, 48.77777777777778, 48.888888888888886, 49, 49.111111111111114, 49.22222222222222, 49.33333333333333, 49.44444444444444, 49.55555555555556, 49.666666666666664, 49.77777777777778, 49.888888888888886, 50, 50.111111111111114, 50.22222222222222, 50.33333333333333, 50.44444444444444, 50.55555555555556, 50.666666666666664, 50.77777777777778, 50.888888888888886, 51, 51.111111111111114, 51.22222222222222, 51.33333333333333, 51.44444444444444, 51.55555555555556, 51.666666666666664, 51.77777777777778, 51.888888888888886, 52, 52.111111111111114, 52.22222222222222, 52.33333333333333, 52.44444444444444, 52.55555555555556, 52.666666666666664, 52.77777777777778, 52.888888888888886, 53, 53.111111111111114, 53.22222222222222, 53.33333333333333, 53.44444444444444, 53.55555555555556, 53.666666666666664, 53.77777777777777, 53.888888888888886, 54, 54.111111111111114, 54.22222222222222, 54.33333333333333, 54.44444444444444, 54.55555555555556, 54.666666666666664, 54.77777777777777, 54.888888888888886, 55, 55.111111111111114, 55.22222222222222, 55.33333333333333, 55.44444444444444, 55.55555555555556, 55.666666666666664, 55.77777777777777, 55.888888888888886, 56, 56.111111111111114, 56.22222222222222, 56.33333333333333, 56.44444444444444, 56.55555555555556, 56.666666666666664, 56.77777777777777, 56.888888888888886, 57, 57.111111111111114, 57.22222222222222, 57.33333333333333, 57.44444444444444, 57.55555555555556, 57.666666666666664, 57.77777777777777, 57.888888888888886, 58, 58.111111111111114, 58.22222222222222, 58.33333333333333, 58.44444444444444, 58.55555555555556, 58.666666666666664, 58.77777777777777, 58.888888888888886, 59, 59.111111111111114, 59.22222222222222, 59.33333333333333, 59.44444444444444, 59.55555555555556, 59.666666666666664, 59.77777777777777, 59.888888888888886, 60, 60.111111111111114, 60.22222222222222, 60.33333333333333, 60.44444444444444, 60.55555555555556, 60.666666666666664, 60.77777777777777, 60.888888888888886, 61, 61.111111111111114, 61.22222222222222, 61.33333333333333, 61.44444444444444, 61.55555555555556, 61.666666666666664, 61.77777777777777, 61.888888888888886, 62, 62.111111111111114, 62.22222222222222, 62.33333333333333, 62.44444444444444, 62.55555555555556, 62.666666666666664, 62.77777777777777, 62.888888888888886, 63, 63.111111111111114, 63.22222222222222, 63.33333333333333, 63.44444444444444, 63.55555555555556, 63.666666666666664, 63.77777777777777, 63.888888888888886, 64, 64.11111111111111, 64.22222222222223, 64.33333333333333, 64.44444444444444, 64.55555555555556, 64.66666666666666, 64.77777777777777, 64.88888888888889, 65, 65.11111111111111, 65.22222222222223, 65.33333333333333, 65.44444444444444, 65.55555555555556, 65.66666666666666, 65.77777777777777, 65.88888888888889, 66, 66.11111111111111, 66.22222222222223, 66.33333333333333, 66.44444444444444, 66.55555555555556, 66.66666666666666, 66.77777777777777, 66.88888888888889, 67, 67.11111111111111, 67.22222222222223, 67.33333333333333, 67.44444444444444, 67.55555555555556, 67.66666666666666, 67.77777777777777, 67.88888888888889, 68, 68.11111111111111, 68.22222222222223, 68.33333333333333, 68.44444444444444, 68.55555555555556, 68.66666666666666, 68.77777777777777, 68.88888888888889, 69, 69.11111111111111, 69.22222222222223, 69.33333333333333, 69.44444444444444, 69.55555555555556, 69.66666666666666, 69.77777777777777, 69.88888888888889, 70, 70.11111111111111, 70.22222222222223, 70.33333333333333, 70.44444444444444, 70.55555555555556, 70.66666666666666, 70.77777777777777, 70.88888888888889, 71, 71.11111111111111, 71.22222222222223, 71.33333333333333, 71.44444444444444, 71.55555555555554, 71.66666666666666, 71.77777777777777, 71.88888888888889, 72, 72.11111111111111, 72.22222222222223, 72.33333333333333, 72.44444444444444, 72.55555555555554, 72.66666666666666, 72.77777777777777, 72.88888888888889, 73, 73.11111111111111, 73.22222222222223, 73.33333333333333, 73.44444444444444, 73.55555555555554, 73.66666666666666, 73.77777777777777, 73.88888888888889, 74, 74.11111111111111, 74.22222222222223, 74.33333333333333, 74.44444444444444, 74.55555555555554, 74.66666666666666, 74.77777777777777, 74.88888888888889, 75, 75.11111111111111, 75.22222222222223, 75.33333333333333, 75.44444444444444, 75.55555555555554, 75.66666666666666, 75.77777777777777, 75.88888888888889, 76, 76.11111111111111, 76.22222222222223, 76.33333333333333, 76.44444444444444, 76.55555555555554, 76.66666666666666, 76.77777777777777, 76.88888888888889, 77, 77.11111111111111, 77.22222222222223, 77.33333333333333, 77.44444444444444, 77.55555555555554, 77.66666666666666, 77.77777777777777, 77.88888888888889, 78, 78.11111111111111, 78.22222222222223, 78.33333333333333, 78.44444444444444, 78.55555555555554, 78.66666666666666, 78.77777777777777, 78.88888888888889, 79, 79.11111111111111, 79.22222222222223, 79.33333333333333, 79.44444444444444, 79.55555555555554, 79.66666666666666, 79.77777777777777, 79.88888888888889, 80, 80.11111111111111, 80.22222222222223, 80.33333333333333, 80.44444444444444, 80.55555555555554, 80.66666666666666, 80.77777777777777, 80.88888888888889, 81, 81.11111111111111, 81.22222222222223, 81.33333333333333, 81.44444444444444, 81.55555555555554, 81.66666666666666, 81.77777777777777, 81.88888888888889, 82, 82.11111111111111, 82.22222222222223, 82.33333333333333, 82.44444444444444, 82.55555555555554, 82.66666666666666, 82.77777777777777, 82.88888888888889, 83, 83.11111111111111, 83.22222222222223, 83.33333333333333, 83.44444444444444, 83.55555555555554, 83.66666666666666, 83.77777777777777, 83.88888888888889, 84, 84.11111111111111, 84.22222222222223, 84.33333333333333, 84.44444444444444, 84.55555555555554, 84.66666666666666, 84.77777777777777, 84.88888888888889, 85, 85.11111111111111, 85.22222222222223, 85.33333333333333, 85.44444444444444, 85.55555555555554, 85.66666666666666, 85.77777777777777, 85.88888888888889, 86, 86.11111111111111, 86.22222222222223, 86.33333333333333, 86.44444444444444, 86.55555555555554, 86.66666666666666, 86.77777777777777, 86.88888888888889, 87, 87.11111111111111, 87.22222222222223, 87.33333333333333, 87.44444444444444, 87.55555555555554, 87.66666666666666, 87.77777777777777, 87.88888888888889, 88, 88.11111111111111, 88.22222222222223, 88.33333333333333, 88.44444444444444, 88.55555555555554, 88.66666666666666, 88.77777777777777, 88.88888888888889, 89, 89.11111111111111, 89.22222222222223, 89.33333333333333, 89.44444444444444, 89.55555555555554, 89.66666666666666, 89.77777777777777, 89.88888888888889, 90, 90.11111111111111, 90.22222222222223, 90.33333333333333, 90.44444444444444, 90.55555555555554, 90.66666666666666, 90.77777777777777, 90.88888888888889, 91, 91.11111111111111, 91.22222222222223, 91.33333333333333, 91.44444444444444, 91.55555555555554, 91.66666666666666, 91.77777777777777, 91.88888888888889, 92, 92.11111111111111, 92.22222222222223, 92.33333333333333, 92.44444444444444, 92.55555555555554, 92.66666666666666, 92.77777777777777, 92.88888888888889, 93, 93.11111111111111, 93.22222222222223, 93.33333333333333, 93.44444444444444, 93.55555555555554, 93.66666666666666, 93.77777777777777, 93.88888888888889, 94, 94.11111111111111, 94.22222222222223, 94.33333333333333, 94.44444444444444, 94.55555555555554, 94.66666666666666, 94.77777777777777, 94.88888888888889, 95, 95.11111111111111, 95.22222222222223, 95.33333333333333, 95.44444444444444, 95.55555555555554, 95.66666666666666, 95.77777777777777, 95.88888888888889, 96, 96.11111111111111, 96.22222222222223, 96.33333333333333, 96.44444444444444, 96.55555555555554, 96.66666666666666, 96.77777777777777, 96.88888888888889, 97, 97.11111111111111, 97.22222222222223, 97.33333333333333, 97.44444444444444, 97.55555555555554, 97.66666666666666, 97.77777777777777, 97.88888888888889, 98, 98.11111111111111, 98.22222222222223, 98.33333333333333, 98.44444444444444, 98.55555555555554, 98.66666666666666, 98.77777777777777, 98.88888888888889, 99, 99.11111111111111, 99.22222222222221, 99.33333333333333, 99.44444444444444, 99.55555555555556, 99.66666666666666, 99.77777777777777, 99.88888888888889, 100, 100.11111111111111, 100.22222222222221, 100.33333333333333, 100.44444444444444, 100.55555555555556, 100.66666666666666, 100.77777777777777, 100.88888888888889, 101, 101.11111111111111, 101.22222222222221, 101.33333333333333, 101.44444444444444, 101.55555555555556, 101.66666666666666, 101.77777777777777, 101.88888888888889, 102, 102.11111111111111, 102.22222222222221, 102.33333333333333, 102.44444444444444, 102.55555555555556, 102.66666666666666, 102.77777777777777, 102.88888888888889, 103, 103.11111111111111, 103.22222222222221, 103.33333333333333, 103.44444444444444, 103.55555555555556, 103.66666666666666, 103.77777777777777, 103.88888888888889, 104, 104.11111111111111, 104.22222222222221, 104.33333333333333, 104.44444444444444, 104.55555555555556, 104.66666666666666, 104.77777777777777, 104.88888888888889, 105, 105.11111111111111, 105.22222222222221, 105.33333333333333, 105.44444444444444, 105.55555555555556, 105.66666666666666, 105.77777777777777, 105.88888888888889, 106, 106.11111111111111, 106.22222222222221, 106.33333333333333, 106.44444444444444, 106.55555555555556, 106.66666666666666, 106.77777777777777, 106.88888888888889, 107, 107.1111111111111, 107.22222222222221, 107.33333333333333, 107.44444444444444, 107.55555555555556, 107.66666666666666, 107.77777777777777, 107.88888888888889, 108, 108.1111111111111, 108.22222222222221, 108.33333333333333, 108.44444444444444, 108.55555555555556, 108.66666666666666, 108.77777777777777, 108.88888888888889, 109, 109.1111111111111, 109.22222222222221, 109.33333333333333, 109.44444444444444, 109.55555555555556, 109.66666666666666, 109.77777777777777, 109.88888888888889, 110, 110.1111111111111, 110.22222222222221, 110.33333333333333, 110.44444444444444, 110.55555555555556, 110.66666666666666, 110.77777777777777, 110.88888888888889, 111, 111.1111111111111, 111.22222222222221, 111.33333333333333, 111.44444444444444, 111.55555555555556, 111.66666666666666, 111.77777777777777, 111.88888888888889, 112, 112.1111111111111, 112.22222222222221, 112.33333333333333, 112.44444444444444, 112.55555555555556, 112.66666666666666, 112.77777777777777, 112.88888888888889, 113, 113.1111111111111, 113.22222222222221, 113.33333333333333, 113.44444444444444, 113.55555555555556, 113.66666666666666, 113.77777777777777, 113.88888888888889, 114, 114.1111111111111, 114.22222222222221, 114.33333333333333, 114.44444444444444, 114.55555555555556, 114.66666666666666, 114.77777777777777, 114.88888888888889, 115, 115.1111111111111, 115.22222222222221, 115.33333333333333, 115.44444444444444, 115.55555555555556, 115.66666666666666, 115.77777777777777, 115.88888888888889, 116, 116.1111111111111, 116.22222222222221, 116.33333333333333, 116.44444444444444, 116.55555555555556, 116.66666666666666, 116.77777777777777, 116.88888888888889, 117, 117.1111111111111, 117.22222222222221, 117.33333333333333, 117.44444444444444, 117.55555555555556, 117.66666666666666, 117.77777777777777, 117.88888888888889, 118, 118.1111111111111, 118.22222222222221, 118.33333333333333, 118.44444444444444, 118.55555555555556, 118.66666666666666, 118.77777777777777, 118.88888888888889, 119, 119.1111111111111, 119.22222222222221, 119.33333333333333, 119.44444444444444, 119.55555555555556, 119.66666666666666, 119.77777777777777, 119.88888888888889, 120, 120.1111111111111, 120.22222222222221, 120.33333333333333, 120.44444444444444, 120.55555555555556, 120.66666666666666, 120.77777777777777, 120.88888888888889, 121, 121.1111111111111, 121.22222222222221, 121.33333333333333, 121.44444444444444, 121.55555555555556, 121.66666666666666, 121.77777777777777, 121.88888888888889, 122, 122.1111111111111, 122.22222222222221, 122.33333333333333, 122.44444444444444, 122.55555555555556, 122.66666666666666, 122.77777777777777, 122.88888888888889, 123, 123.1111111111111, 123.22222222222221, 123.33333333333333, 123.44444444444444, 123.55555555555556, 123.66666666666666, 123.77777777777777, 123.88888888888889, 124, 124.1111111111111, 124.22222222222221, 124.33333333333333, 124.44444444444444, 124.55555555555556, 124.66666666666666, 124.77777777777777, 124.88888888888889, 125, 125.1111111111111, 125.22222222222221, 125.33333333333333, 125.44444444444444, 125.55555555555556, 125.66666666666666, 125.77777777777777, 125.88888888888889, 126, 126.1111111111111, 126.22222222222221, 126.33333333333333, 126.44444444444444, 126.55555555555556, 126.66666666666666, 126.77777777777777, 126.88888888888889, 127, 127.1111111111111, 127.22222222222221, 127.33333333333333, 127.44444444444444, 127.55555555555556, 127.66666666666666, 127.77777777777777, 127.88888888888889, 128, 128.1111111111111, 128.22222222222223, 128.33333333333331, 128.44444444444446, 128.55555555555554, 128.66666666666666, 128.77777777777777, 128.88888888888889, 129, 129.1111111111111, 129.22222222222223, 129.33333333333331, 129.44444444444446, 129.55555555555554, 129.66666666666666, 129.77777777777777, 129.88888888888889, 130, 130.1111111111111, 130.22222222222223, 130.33333333333331, 130.44444444444446, 130.55555555555554, 130.66666666666666, 130.77777777777777, 130.88888888888889, 131, 131.1111111111111, 131.22222222222223, 131.33333333333331, 131.44444444444446, 131.55555555555554, 131.66666666666666, 131.77777777777777, 131.88888888888889, 132, 132.1111111111111, 132.22222222222223, 132.33333333333331, 132.44444444444446, 132.55555555555554, 132.66666666666666, 132.77777777777777, 132.88888888888889, 133, 133.1111111111111, 133.22222222222223, 133.33333333333331, 133.44444444444446, 133.55555555555554, 133.66666666666666, 133.77777777777777, 133.88888888888889, 134, 134.1111111111111, 134.22222222222223, 134.33333333333331, 134.44444444444446, 134.55555555555554, 134.66666666666666, 134.77777777777777, 134.88888888888889, 135, 135.1111111111111, 135.22222222222223, 135.33333333333331, 135.44444444444446, 135.55555555555554, 135.66666666666666, 135.77777777777777, 135.88888888888889, 136, 136.1111111111111, 136.22222222222223, 136.33333333333331, 136.44444444444446, 136.55555555555554, 136.66666666666666, 136.77777777777777, 136.88888888888889, 137, 137.1111111111111, 137.22222222222223, 137.33333333333331, 137.44444444444446, 137.55555555555554, 137.66666666666666, 137.77777777777777, 137.88888888888889, 138, 138.1111111111111, 138.22222222222223, 138.33333333333331, 138.44444444444446, 138.55555555555554, 138.66666666666666, 138.77777777777777, 138.88888888888889, 139, 139.1111111111111, 139.22222222222223, 139.33333333333331, 139.44444444444446, 139.55555555555554, 139.66666666666666, 139.77777777777777, 139.88888888888889, 140, 140.1111111111111, 140.22222222222223, 140.33333333333331, 140.44444444444446, 140.55555555555554, 140.66666666666666, 140.77777777777777, 140.88888888888889, 141, 141.1111111111111, 141.22222222222223, 141.33333333333331, 141.44444444444446, 141.55555555555554, 141.66666666666666, 141.77777777777777, 141.88888888888889, 142, 142.1111111111111, 142.22222222222223, 142.33333333333331, 142.44444444444446, 142.55555555555554, 142.66666666666666, 142.77777777777777, 142.88888888888889, 143, 143.1111111111111, 143.22222222222223, 143.33333333333331, 143.44444444444446, 143.55555555555554, 143.66666666666666, 143.77777777777777, 143.88888888888889, 144, 144.1111111111111, 144.22222222222223, 144.33333333333331, 144.44444444444446, 144.55555555555554, 144.66666666666666, 144.77777777777777, 144.88888888888889, 145, 145.1111111111111, 145.22222222222223, 145.33333333333331, 145.44444444444446, 145.55555555555554, 145.66666666666666, 145.77777777777777, 145.88888888888889, 146 ], "y": [ 1.0645893042527979, 1.0628074232425693, 1.0610518755063754, 1.0593225079806738, 1.0576191698215773, 1.0559417123701702, 1.054289989118475, 1.052663855676053, 1.0510631697372255, 1.0494877910489, 1.0479375813789928, 1.0464124044854337, 1.0449121260857346, 1.0434366138271194, 1.041985737257197, 1.0405593677951677, 1.0391573787035513, 1.037779645060426, 1.036426043732168, 1.0350964533466804, 1.0337907542671017, 1.0325088285659845, 1.031250559999933, 1.03001583398469, 1.0288045375706674, 1.027616559418905, 1.026451789777457, 1.0253101204581871, 1.024191444813975, 1.0230956577163155, 1.0220226555333114, 1.0209723361080465, 1.0199445987373292, 1.01893934415081, 1.0179564744904503, 1.0169958932903482, 1.016057505456907, 1.0151412172493421, 1.01424693626052, 1.0133745713981197, 1.0125240328661171, 1.011695232146576, 1.010888081981749, 1.010102496356476, 1.00933839048088, 1.0085956807733463, 1.0078742848437912, 1.0071741214772012, 1.006495110617449, 1.005837173351374, 1.0052002318931268, 1.004584209568767, 1.0039890308011148, 1.00341462109485, 1.002860907021853, 1.002327816206782, 1.0018152773128852, 1.001323220028042, 1.0008515750510267, 1.0004002740779938, 0.9999692497891816, 0.9995584358358244, 0.9991677668272734, 0.9987971783183264, 0.9984466067967515, 0.9981159896710138, 0.9978052652581915, 0.9975143727720829, 0.9972432523115006, 0.9969918448487475, 0.9967600922182724, 0.9965479371055033, 0.9963553230358515, 0.9961821943638886, 0.9960284962626879, 0.99589417471333, 0.9957791764945728, 0.9956834491726745, 0.9956069410913755, 0.9955496013620326, 0.9955113798539007, 0.9954922271845646, 0.9954920947105141, 0.9955109345178604, 0.9955486994131949, 0.9956053429145802, 0.9956808192426826, 0.9957750833120288, 0.9958880907224019, 0.9960197977503571, 0.9961701613408678, 0.9963391390990941, 0.9965266892822713, 0.9967327707917203, 0.9969573431649724, 0.9972003665680108, 0.9974618017876262, 0.9977416102238822, 0.9980397538826888, 0.9983561953684896, 0.9986908978770463, 0.999043825188334, 0.9994149416595353, 0.9998042122181368, 1.000211602355122, 1.000637078118264, 1.001080606105514, 1.0015421534584799, 1.0020216878560013, 1.0025191775078162, 1.0030345911483114, 1.0035678980303684, 1.0041190679192888, 1.0046880710868102, 1.005274878305203, 1.0058794608414499, 1.006501790451508, 1.0071418393746479, 1.0077995803278728, 1.0084749865004163, 1.0091680315483131, 1.0098786895890457, 1.010606935196265, 1.0113527433945835, 1.0121160896544377, 1.012896949887023, 1.0136953004392968, 1.0145111180890474, 1.0153443800400326, 1.0161950639171833, 1.0170631477618697, 1.0179486100272328, 1.0188514295735807, 1.0197715856638412, 1.0207090579590807, 1.021663826514079, 1.0226358717729656, 1.0236251745649108, 1.0246317160998786, 1.0256554779644302, 1.0266964421175875, 1.027754590886748, 1.0288299069636555, 1.0299223734004204, 1.0310319736055968, 1.0321586913403065, 1.0333025107144151, 1.0344634161827586, 1.0356413925414174, 1.0368364249240394, 1.0380484987982086, 1.0392775999618649, 1.040523714539765, 1.041786828979993, 1.0430669300505095, 1.0443640048357523, 1.0456780407332755, 1.0470090254504325, 1.0483569470011014, 1.0497217937024512, 1.0511035541717497, 1.052502217323211, 1.053917772364883, 1.0553502087955733, 1.056799516401815, 1.0582656852548693, 1.0597487057077657, 1.0612485683923771, 1.0627652642165377, 1.064298784361188, 1.065849120277561, 1.067416263684402, 1.06900020656522, 1.0706009411655768, 1.0722184599904077, 1.0738527558013733, 1.0755038216142456, 1.0771716506963274, 1.078856236563898, 1.0805575729796972, 1.0822756539504317, 1.0840104737243186, 1.085762026788654, 1.0875303078674152, 1.0893153119188852, 1.091117034133313, 1.0929354699305978, 1.0947706149579997, 1.0966224650878829, 1.098491016415479, 1.1003762652566844, 1.1022782081458753, 1.1041968418337564, 1.106132163285231, 1.1080841696772965, 1.1100528583969644, 1.1120382270392066, 1.114040273404924, 1.1160589954989384, 1.1180943915280117, 1.120146459898882, 1.1222151992163274, 1.1243006082812514, 1.126402686088788, 1.1285214318264318, 1.130656844872189, 1.132808924792747, 1.1349776713416688, 1.1371630844576053, 1.1393651642625309, 1.141583911059995, 1.143819325333399, 1.1460714077442873, 1.1483401591306617, 1.1506255805053134, 1.1529276730541735, 1.1552464381346836, 1.1575818772741833, 1.159933992168316, 1.1623027846794536, 1.1646882568351395, 1.1670904108265443, 1.1695092490069454, 1.1719447738902202, 1.1743969881493554, 1.1768658946149728, 1.179351496273875, 1.181853796267602, 1.184372797891008, 1.1869085045908527, 1.189460919964406, 1.19203004775807, 1.1946158918660172, 1.1972184563288415, 1.1998377453322235, 1.202473763205613, 1.2051265144209242, 1.2077960035912445, 1.210482235469559, 1.213185214947488, 1.2159049470540353, 1.2186414369543577, 1.221394689948538, 1.224164711470379, 1.226951507086206, 1.2297550824936838, 1.2325754435206469, 1.235412596123941, 1.238266546388276, 1.2411373005250945, 1.2440248648714483, 1.246929245888891, 1.2498504501623786, 1.2527884843991823, 1.2557433554278163, 1.258715070196973, 1.261703635774468, 1.264709059346204, 1.2677313482151369, 1.270770509800256, 1.2738265516355776, 1.2768994813691434, 1.2799893067620345, 1.2830960356873926, 1.2862196761294524, 1.2893602361825858, 1.29251772405035, 1.2956921480445531, 1.2988835165843249, 1.3020918381951965, 1.305317121508193, 1.308559375258931, 1.3118186082867307, 1.3150948295337315, 1.3183880480440209, 1.3216982729627689, 1.3250255135353735, 1.3283697791066158, 1.3317310791198196, 1.3351094231160223, 1.3385048207331556, 1.341917281705231, 1.3453468158615338, 1.3487934331258318, 1.3522571435155806, 1.3557379571411445, 1.3592358842050274, 1.3627509350011016, 1.3662831199138543, 1.3698324494176364, 1.3733989340759196, 1.3769825845405599, 1.380583411551073, 1.38420142593391, 1.3878366386017438, 1.3914890605527659, 1.3951587028699826, 1.3988455767205232, 1.402549693354955, 1.406271064106603, 1.4100097003908765, 1.4137656137046049, 1.417538815625375, 1.4213293178108788, 1.4251371319982686, 1.4289622700035134, 1.4328047437207643, 1.4366645651217278, 1.4405417462550425, 1.4444362992456616, 1.4483482362942461, 1.4522775696765546, 1.4562243117428486, 1.4601884749172984, 1.4641700716973947, 1.4681691146533664, 1.4721856164276064, 1.4762195897340986, 1.4802710473578526, 1.4843400021543467, 1.4884264670489662, 1.4925304550364606, 1.4966519791803972, 1.5007910526126191, 1.504947688532715, 1.5091219002074863, 1.5133137009704258, 1.5175231042211954, 1.5217501234251143, 1.525994772112648, 1.530257063878903, 1.5345370123831277, 1.5388346313482149, 1.54314993456021, 1.5474829358678295, 1.5518336491819746, 1.5562020884752514, 1.5605882677815064, 1.564992201195347, 1.5694139028716856, 1.573853387025273, 1.5783106679302459, 1.5827857599196737, 1.5872786773851129, 1.5917894347761576, 1.5963180466000084, 1.6008645274210276, 1.6054288918603135, 1.6100111545952729, 1.6146113303591911, 1.6192294339408182, 1.6238654801839494, 1.6285194839870136, 1.633191460302663, 1.637881424137369, 1.6425893905510216, 1.6473153746565288, 1.652059391619424, 1.6568214566574753, 1.6616015850402956, 1.6663997920889602, 1.6712160931756275, 1.6760505037231592, 1.6809030392047473, 1.685773715143546, 1.690662547112298, 1.6955695507329789, 1.700494741676429, 1.7054381356619983, 1.7103997484571927, 1.7153795958773226, 1.7203776937851523, 1.7253940580905551, 1.7304287047501743, 1.73548164976708, 1.7405529091904344, 1.745642499115157, 1.750750435681595, 1.7558767350751965, 1.761021413526184, 1.7661844873092307, 1.7713659727431454, 1.7765658861905544, 1.7817842440575848, 1.787021062793556, 1.7922763588906716, 1.7975501488837111, 1.8028424493497295, 1.8081532769077535, 1.8134826482184871, 1.8188305799840134, 1.8241970889475008, 1.8295821918929152, 1.8349859056447313, 1.8404082470676442, 1.8458492330662888, 1.8513088805849596, 1.8567872066073283, 1.8622842281561711, 1.867799962293094, 1.8733344261182634, 1.878887636770131, 1.884459611425173, 1.890050367297622, 1.8956599216392045, 1.9012882917388814, 1.9069354949225903, 1.9126015485529884, 1.9182864700291984, 1.9239902767865595, 1.92971298629637, 1.9354546160656505, 1.9412151836368907, 1.946994706587806, 1.9527932025311006, 1.9586106891142214, 1.9644471840191278, 1.9703027049620478, 1.9761772696932525, 1.9820708959968178, 1.9879836016903973, 1.9939154046249936, 1.9998663226847337, 2.005836373786639, 2.0118255758804087, 2.0178339469482003, 2.023861505004402, 2.029908268095426, 2.0359742542994823, 2.0420594817263775, 2.0481639685172883, 2.0542877328445646, 2.06043079291151, 2.0665931669521846, 2.0727748732311935, 2.0789759300434807, 2.0851963557141375, 2.0914361685981895, 2.097695387080409, 2.1039740295751104, 2.110272114525956, 2.116589660405763, 2.1229266857163127, 2.1292832089881544, 2.13565924878042, 2.142054823680636, 2.148469952304535, 2.154904653295872, 2.1613589453262385, 2.1678328470948824, 2.1743263773285286, 2.1808395547811954, 2.1873723982340216, 2.193924926495083, 2.200497158399228, 2.207089112807892, 2.2137008086089347, 2.2203322647164603, 2.2269835000706544, 2.2336545336376132, 2.240345384409177, 2.2470560714027603, 2.253786613661193, 2.260537030252556, 2.267307340270015, 2.274097562831665, 2.280907717080367, 2.28773782218359, 2.2945878973332543, 2.3014579617455793, 2.308348034660921, 2.3152581353436252, 2.322188283081874, 2.3291384971875293, 2.3361087969959904, 2.3430992018660395, 2.3501097311796966, 2.3571404043420716, 2.3641912407812176, 2.3712622599479904, 2.3783534813159, 2.385464924380974, 2.3925966086616093, 2.3997485536984398, 2.40692077905419, 2.4141133043135428, 2.421326149082997, 2.4285593329907362, 2.4358128756864903, 2.4430867968414045, 2.4503811161479034, 2.457695853319561, 2.46503102809097, 2.472386660217608, 2.4797627694757125, 2.487159375662152, 2.494576498594296, 2.502014158109895, 2.5094723740669456, 2.5169511663435773, 2.5244505548379164, 2.5319705594679784, 2.5395112001715328, 2.547072496905989, 2.554654469648276, 2.5622571383947212, 2.5698805231609354, 2.577524643981691, 2.5851895209108138, 2.592875174021054, 2.6005816234039862, 2.6083088891698885, 2.6160569914476226, 2.6238259503845347, 2.631615786146337, 2.6394265189169963, 2.6472581688986283, 2.6551107563113825, 2.6629843013933416, 2.6708788244004067, 2.6787943456061964, 2.6867308853019347, 2.694688463796354, 2.7026671014155803, 2.7106668185030416, 2.7186876354193523, 2.7267295725422205, 2.734792650266345, 2.7428768890033077, 2.750982309181485, 2.7591089312459385, 2.767256775658318, 2.775425862896769, 2.7836162134558307, 2.7918278478463407, 2.8000607865953393, 2.808315050245974, 2.816590659357407, 2.8248876345047162, 2.833205996278806, 2.841545765286318, 2.8499069621495283, 2.858289607506268, 2.8666937220098276, 2.875119326328865, 2.8835664411473187, 2.892035087164321, 2.9005252850941035, 2.9090370556659173, 2.91757041962394, 2.9261253977271915, 2.9347020107494486, 2.943300279479161, 2.9519202247193674, 2.960561867287606, 2.969225228015837, 2.9779103277503594, 2.9866171873517224, 2.995345827694653, 3.0040962696679694, 3.012868534174499, 3.0216626421310044, 3.0304786144681004, 3.0393164721301695, 3.048176236075298, 3.057057927275183, 3.0659615667150657, 3.0748871753936475, 3.083834774323017, 3.0928043845285766, 3.101796027048962, 3.1108097229359726, 3.119845493254491, 3.1289033590824205, 3.1379833415105978, 3.1470854616427313, 3.1562097405953216, 3.165356199497594, 3.1745248594914277, 3.1837157417312834, 3.1929288673841345, 3.20216425762939, 3.2114219336588357, 3.220701916676564, 3.2300042278988954, 3.239328888554321, 3.24867591988343, 3.258045343138844, 3.2674371795851536, 3.276851450498845, 3.2862881771682373, 3.2957473808934203, 3.3052290829861914, 3.3147333047699803, 3.3242600675797926, 3.3338093927621513, 3.343381301675021, 3.3529758156877576, 3.362592956181035, 3.3722327445467926, 3.3818952021881645, 3.391580350519433, 3.4012882109659452, 3.4110188049640766, 3.4207721539611553, 3.430548279415406, 3.4403472027959, 3.450168945582478, 3.460013529265712, 3.4698809753468303, 3.479771305337673, 3.4896845407606274, 3.4996207031485698, 3.5095798140448142, 3.5195618950030516, 3.5295669675873014, 3.5395950533718477, 3.5496461739411846, 3.5597203508899686, 3.569817605822961, 3.5799379603549704, 3.5900814361107973, 3.6002480547251943, 3.6104378378427935, 3.6206508071180745, 3.630886984215293, 3.6411463908084434, 3.6514290485811918, 3.661734979226848, 3.6720642044482905, 3.6824167459579296, 3.69279262547765, 3.703191864738765, 3.713614485481972, 3.72406050945729, 3.734529958424019, 3.7450228541506885, 3.755539218415015, 3.7660790730038434, 3.7766424397131084, 3.787229340347782, 3.797839796721824, 3.8084738306581447, 3.8191314639885507, 3.829812718553695, 3.8405176162030386, 3.8512461787948054, 3.8619984281959274, 3.872774386282008, 3.8835740749372736, 3.8943975160545294, 3.905244731535117, 3.9161157432888656, 3.9270105732340497, 3.9379292432973516, 3.9488717754138083, 3.9598381915267793, 3.970828513587891, 3.981842763557003, 3.9928809634021682, 4.0039431350995836, 4.0150293006335485, 4.02613948199643, 4.037273701188618, 4.048431980218482, 4.059614341102332, 4.070820805864379, 4.082051396536693, 4.09330613515917, 4.1045850437794815, 4.115888144453035, 4.127215459242951, 4.138567010220004, 4.149942819462598, 4.161342909056716, 4.172767301095898, 4.1842160176811785, 4.1956890809210785, 4.207186512931543, 4.218708335835913, 4.2302545717648945, 4.241825242856509, 4.253420371256068, 4.265039979116131, 4.2766840885964665, 4.288352721864023, 4.300045901092891, 4.311763648464262, 4.323505986166398, 4.335272936394595, 4.347064521351151, 4.358880763245329, 4.370721684293316, 4.382587306718198, 4.394477652749927, 4.406392744625274, 4.418332604587813, 4.430297254887869, 4.442286717782499, 4.454301015535454, 4.466340170417143, 4.478404204704605, 4.490493140681471, 4.50260700063794, 4.514745806870738, 4.526909581683089, 4.5390983473846855, 4.551312126291657, 4.5635509407265324, 4.5758148130182175, 4.588103765501957, 4.600417820519305, 4.612757000418095, 4.625121327552418, 4.6375108242825736, 4.649925512975053, 4.662365416002511, 4.6748305557437195, 4.687320954583563, 4.699836634912989, 4.712377619128985, 4.724943929634549, 4.737535588838667, 4.750152619156271, 4.762795043008224, 4.775462882821281, 4.788156161028065, 4.8008749000670425, 4.813619122382487, 4.826388850424461, 4.8391841066487755, 4.852004913516979, 4.864851293496319, 4.877723269059712, 4.890620862685727, 4.90354409685855, 4.916492994067966, 4.929467576809322, 4.942467867583504, 4.955493888896916, 4.968545663261452, 4.981623213194459, 4.994726561218733, 5.00785572986247, 5.021010741659252, 5.034191619148029, 5.047398384873078, 5.060631061383986, 5.073889671235623, 5.087174236988125, 5.100484781206858, 5.113821326462401, 5.127183895330508, 5.14057251039211, 5.153987194233267, 5.1674279694451535, 5.180894858624033, 5.194387884371231, 5.207907069293129, 5.221452436001114, 5.235024007111567, 5.248621805245854, 5.262245853030272, 5.275896173096065, 5.289572788079366, 5.303275720621189, 5.317004993367409, 5.330760628968742, 5.344542650080705, 5.358351079363617, 5.37218593948256, 5.386047253107364, 5.399935042912585, 5.413849331577484, 5.427790141786001, 5.4417574962267325, 5.455751417592926, 5.469771928582436, 5.483819051897718, 5.497892810245801, 5.51199322633827, 5.526120322891244, 5.540274122625357, 5.554454648265731, 5.568661922541962, 5.582895968188103, 5.597156807942634, 5.611444464548445, 5.6257589607528224, 5.64010031930742, 5.654468562968245, 5.66886371449564, 5.683285796654259, 5.697734832213041, 5.712210843945216, 5.7267138546282474, 5.741243887043854, 5.755800963977956, 5.77038510822068, 5.784996342566329, 5.799634689813367, 5.814300172764393, 5.828992814226136, 5.84371263700943, 5.858459663929189, 5.8732339178043995, 5.888035421458092, 5.902864197717332, 5.917720269413203, 5.9326036593807805, 5.947514390459111, 5.962452485491214, 5.977417967324046, 5.992410858808484, 6.007431182799319, 6.022478962155233, 6.037554219738777, 6.0526569784163575, 6.067787261058232, 6.082945090538464, 6.09813048973493, 6.113343481529304, 6.128584088807013, 6.143852334457259, 6.159148241372968, 6.1744718324507994, 6.189823130591108, 6.20520215869795, 6.220608939679048, 6.236043496445783, 6.251505851913188, 6.266996028999907, 6.282514050628204, 6.298059939723929, 6.313633719216524, 6.329235412038986, 6.3448650411278535, 6.360522629423217, 6.376208199868657, 6.3919217754112845, 6.4076633790016695, 6.42343303359388, 6.43923076214542, 6.455056587617242, 6.470910532973737, 6.486792621182687, 6.5027028752152845, 6.518641318046099, 6.53460797265309, 6.550602862017523, 6.566626009124056, 6.582677436960639, 6.598757168518537, 6.614865226792325, 6.631001634779846, 6.647166415482226, 6.663359591903823, 6.679581187052268, 6.695831223938379, 6.712109725576232, 6.728416714983056, 6.744752215179309, 6.761116249188585, 6.777508840037668, 6.793930010756463, 6.810379784378011, 6.826858183938495, 6.843365232477167, 6.859900953036409, 6.87646536866164, 6.893058502401398, 6.909680377307223, 6.92633101643373, 6.943010442838547, 6.959718679582321, 6.976455749728706, 6.993221676344331, 7.010016482498827, 7.026840191264755, 7.043692825717664, 7.060574408936022, 7.077484964001237, 7.094424513997617, 7.111393082012386, 7.12839069113566, 7.145417364460423, 7.162473125082541, 7.179557996100717, 7.196672000616515, 7.213815161734327, 7.230987502561357, 7.248189046207616, 7.265419815785926, 7.282679834411886, 7.299969125203861, 7.31728771128299, 7.334635615773153, 7.352012861800978, 7.369419472495818, 7.386855470989735, 7.40432088041751, 7.421815723916599, 7.439340024627176, 7.4568938056920455, 7.474477090256702, 7.492089901469275, 7.5097322624805445, 7.527404196443919, 7.54510572651541, 7.5628368758536615, 7.580597667619881, 7.598388124977911, 7.616208271094106, 7.634058129137449, 7.651937722279425, 7.669847073694102, 7.687786206558063, 7.705755144050411, 7.723753909352778, 7.741782525649283, 7.759841016126563, 7.777929403973697, 7.796047712382285, 7.814195964546342, 7.832374183662385, 7.850582392929332, 7.868820615548561, 7.887088874723859, 7.905387193661429, 7.9237155955699015, 7.942074103660251, 7.960462741145894, 7.978881531242571, 7.997330497168433, 8.015809662143957, 8.034319049391982, 8.052858682137673, 8.071428583608535, 8.090028777034387, 8.10865928564735, 8.127320132681866, 8.146011341374628, 8.164732934964668, 8.183484936693242, 8.202267369803897, 8.221080257542424, 8.239923623156862, 8.258797489897493, 8.277701881016814, 8.29663681976956, 8.31560232941266, 8.334598433205255, 8.353625154408677, 8.372682516286446, 8.39177054210424, 8.410889255129929, 8.430038678633535, 8.44921883588722, 8.4684297501653, 8.487671444744212, 8.506943942902534, 8.526247267920953, 8.545581443082261, 8.56494649167136, 8.584342436975227, 8.603769302282954, 8.623227110885672, 8.642715886076605, 8.662235651151025, 8.68178642940626, 8.701368244141689, 8.720981118658706, 8.740625076260761, 8.760300140253293, 8.780006333943792, 8.799743680641706, 8.819512203658526, 8.83931192630768, 8.859142871904636, 8.879005063766797, 8.89889852521353, 8.918823279566185, 8.938779350148033, 8.95876676028433, 8.978785533302217, 8.998835692530811, 9.0189172613011, 9.039030262946039, 9.059174720800446, 9.07935065820107, 9.099558098486524, 9.119797064997325, 9.140067581075868, 9.160369670066391, 9.180703355315034, 9.201068660169755, 9.221465607980397, 9.241894222098612, 9.26235452587791, 9.282846542673614 ] }, { "mode": "markers", "name": "Annotation", "showlegend": false, "text": "Vmd=57.98kn", "textposition": "middle right", "type": "scatter", "x": [ 57.981376208892904 ], "y": [ 1.134612996141466 ] }, { "mode": "markers", "name": "Annotation", "showlegend": false, "text": "Vmp=44.06kn", "textposition": "middle right", "type": "scatter", "x": [ 44.05631874670708 ], "y": [ 0.9954897859866333 ] }, { "mode": "lines", "name": "Annotation", "showlegend": false, "type": "scatter", "x": [ 0, 115.96275241778581 ], "y": [ 0, 2.269225992282932 ] }, { "name": "Gross weight = 1200kg", "type": "scatter", "x": [ 35, 35.111111111111114, 35.22222222222222, 35.333333333333336, 35.44444444444444, 35.55555555555556, 35.666666666666664, 35.77777777777778, 35.888888888888886, 36, 36.111111111111114, 36.22222222222222, 36.333333333333336, 36.44444444444444, 36.55555555555556, 36.666666666666664, 36.77777777777778, 36.888888888888886, 37, 37.111111111111114, 37.22222222222222, 37.333333333333336, 37.44444444444444, 37.55555555555556, 37.666666666666664, 37.77777777777778, 37.888888888888886, 38, 38.111111111111114, 38.22222222222222, 38.333333333333336, 38.44444444444444, 38.55555555555556, 38.666666666666664, 38.77777777777778, 38.888888888888886, 39, 39.111111111111114, 39.22222222222222, 39.333333333333336, 39.44444444444444, 39.55555555555556, 39.666666666666664, 39.77777777777778, 39.888888888888886, 40, 40.111111111111114, 40.22222222222222, 40.333333333333336, 40.44444444444444, 40.55555555555556, 40.666666666666664, 40.77777777777778, 40.888888888888886, 41, 41.111111111111114, 41.22222222222222, 41.333333333333336, 41.44444444444444, 41.55555555555556, 41.666666666666664, 41.77777777777778, 41.888888888888886, 42, 42.111111111111114, 42.22222222222222, 42.333333333333336, 42.44444444444444, 42.55555555555556, 42.666666666666664, 42.77777777777778, 42.888888888888886, 43, 43.111111111111114, 43.22222222222222, 43.33333333333333, 43.44444444444444, 43.55555555555556, 43.666666666666664, 43.77777777777778, 43.888888888888886, 44, 44.111111111111114, 44.22222222222222, 44.33333333333333, 44.44444444444444, 44.55555555555556, 44.666666666666664, 44.77777777777778, 44.888888888888886, 45, 45.111111111111114, 45.22222222222222, 45.33333333333333, 45.44444444444444, 45.55555555555556, 45.666666666666664, 45.77777777777778, 45.888888888888886, 46, 46.111111111111114, 46.22222222222222, 46.33333333333333, 46.44444444444444, 46.55555555555556, 46.666666666666664, 46.77777777777778, 46.888888888888886, 47, 47.111111111111114, 47.22222222222222, 47.33333333333333, 47.44444444444444, 47.55555555555556, 47.666666666666664, 47.77777777777778, 47.888888888888886, 48, 48.111111111111114, 48.22222222222222, 48.33333333333333, 48.44444444444444, 48.55555555555556, 48.666666666666664, 48.77777777777778, 48.888888888888886, 49, 49.111111111111114, 49.22222222222222, 49.33333333333333, 49.44444444444444, 49.55555555555556, 49.666666666666664, 49.77777777777778, 49.888888888888886, 50, 50.111111111111114, 50.22222222222222, 50.33333333333333, 50.44444444444444, 50.55555555555556, 50.666666666666664, 50.77777777777778, 50.888888888888886, 51, 51.111111111111114, 51.22222222222222, 51.33333333333333, 51.44444444444444, 51.55555555555556, 51.666666666666664, 51.77777777777778, 51.888888888888886, 52, 52.111111111111114, 52.22222222222222, 52.33333333333333, 52.44444444444444, 52.55555555555556, 52.666666666666664, 52.77777777777778, 52.888888888888886, 53, 53.111111111111114, 53.22222222222222, 53.33333333333333, 53.44444444444444, 53.55555555555556, 53.666666666666664, 53.77777777777777, 53.888888888888886, 54, 54.111111111111114, 54.22222222222222, 54.33333333333333, 54.44444444444444, 54.55555555555556, 54.666666666666664, 54.77777777777777, 54.888888888888886, 55, 55.111111111111114, 55.22222222222222, 55.33333333333333, 55.44444444444444, 55.55555555555556, 55.666666666666664, 55.77777777777777, 55.888888888888886, 56, 56.111111111111114, 56.22222222222222, 56.33333333333333, 56.44444444444444, 56.55555555555556, 56.666666666666664, 56.77777777777777, 56.888888888888886, 57, 57.111111111111114, 57.22222222222222, 57.33333333333333, 57.44444444444444, 57.55555555555556, 57.666666666666664, 57.77777777777777, 57.888888888888886, 58, 58.111111111111114, 58.22222222222222, 58.33333333333333, 58.44444444444444, 58.55555555555556, 58.666666666666664, 58.77777777777777, 58.888888888888886, 59, 59.111111111111114, 59.22222222222222, 59.33333333333333, 59.44444444444444, 59.55555555555556, 59.666666666666664, 59.77777777777777, 59.888888888888886, 60, 60.111111111111114, 60.22222222222222, 60.33333333333333, 60.44444444444444, 60.55555555555556, 60.666666666666664, 60.77777777777777, 60.888888888888886, 61, 61.111111111111114, 61.22222222222222, 61.33333333333333, 61.44444444444444, 61.55555555555556, 61.666666666666664, 61.77777777777777, 61.888888888888886, 62, 62.111111111111114, 62.22222222222222, 62.33333333333333, 62.44444444444444, 62.55555555555556, 62.666666666666664, 62.77777777777777, 62.888888888888886, 63, 63.111111111111114, 63.22222222222222, 63.33333333333333, 63.44444444444444, 63.55555555555556, 63.666666666666664, 63.77777777777777, 63.888888888888886, 64, 64.11111111111111, 64.22222222222223, 64.33333333333333, 64.44444444444444, 64.55555555555556, 64.66666666666666, 64.77777777777777, 64.88888888888889, 65, 65.11111111111111, 65.22222222222223, 65.33333333333333, 65.44444444444444, 65.55555555555556, 65.66666666666666, 65.77777777777777, 65.88888888888889, 66, 66.11111111111111, 66.22222222222223, 66.33333333333333, 66.44444444444444, 66.55555555555556, 66.66666666666666, 66.77777777777777, 66.88888888888889, 67, 67.11111111111111, 67.22222222222223, 67.33333333333333, 67.44444444444444, 67.55555555555556, 67.66666666666666, 67.77777777777777, 67.88888888888889, 68, 68.11111111111111, 68.22222222222223, 68.33333333333333, 68.44444444444444, 68.55555555555556, 68.66666666666666, 68.77777777777777, 68.88888888888889, 69, 69.11111111111111, 69.22222222222223, 69.33333333333333, 69.44444444444444, 69.55555555555556, 69.66666666666666, 69.77777777777777, 69.88888888888889, 70, 70.11111111111111, 70.22222222222223, 70.33333333333333, 70.44444444444444, 70.55555555555556, 70.66666666666666, 70.77777777777777, 70.88888888888889, 71, 71.11111111111111, 71.22222222222223, 71.33333333333333, 71.44444444444444, 71.55555555555554, 71.66666666666666, 71.77777777777777, 71.88888888888889, 72, 72.11111111111111, 72.22222222222223, 72.33333333333333, 72.44444444444444, 72.55555555555554, 72.66666666666666, 72.77777777777777, 72.88888888888889, 73, 73.11111111111111, 73.22222222222223, 73.33333333333333, 73.44444444444444, 73.55555555555554, 73.66666666666666, 73.77777777777777, 73.88888888888889, 74, 74.11111111111111, 74.22222222222223, 74.33333333333333, 74.44444444444444, 74.55555555555554, 74.66666666666666, 74.77777777777777, 74.88888888888889, 75, 75.11111111111111, 75.22222222222223, 75.33333333333333, 75.44444444444444, 75.55555555555554, 75.66666666666666, 75.77777777777777, 75.88888888888889, 76, 76.11111111111111, 76.22222222222223, 76.33333333333333, 76.44444444444444, 76.55555555555554, 76.66666666666666, 76.77777777777777, 76.88888888888889, 77, 77.11111111111111, 77.22222222222223, 77.33333333333333, 77.44444444444444, 77.55555555555554, 77.66666666666666, 77.77777777777777, 77.88888888888889, 78, 78.11111111111111, 78.22222222222223, 78.33333333333333, 78.44444444444444, 78.55555555555554, 78.66666666666666, 78.77777777777777, 78.88888888888889, 79, 79.11111111111111, 79.22222222222223, 79.33333333333333, 79.44444444444444, 79.55555555555554, 79.66666666666666, 79.77777777777777, 79.88888888888889, 80, 80.11111111111111, 80.22222222222223, 80.33333333333333, 80.44444444444444, 80.55555555555554, 80.66666666666666, 80.77777777777777, 80.88888888888889, 81, 81.11111111111111, 81.22222222222223, 81.33333333333333, 81.44444444444444, 81.55555555555554, 81.66666666666666, 81.77777777777777, 81.88888888888889, 82, 82.11111111111111, 82.22222222222223, 82.33333333333333, 82.44444444444444, 82.55555555555554, 82.66666666666666, 82.77777777777777, 82.88888888888889, 83, 83.11111111111111, 83.22222222222223, 83.33333333333333, 83.44444444444444, 83.55555555555554, 83.66666666666666, 83.77777777777777, 83.88888888888889, 84, 84.11111111111111, 84.22222222222223, 84.33333333333333, 84.44444444444444, 84.55555555555554, 84.66666666666666, 84.77777777777777, 84.88888888888889, 85, 85.11111111111111, 85.22222222222223, 85.33333333333333, 85.44444444444444, 85.55555555555554, 85.66666666666666, 85.77777777777777, 85.88888888888889, 86, 86.11111111111111, 86.22222222222223, 86.33333333333333, 86.44444444444444, 86.55555555555554, 86.66666666666666, 86.77777777777777, 86.88888888888889, 87, 87.11111111111111, 87.22222222222223, 87.33333333333333, 87.44444444444444, 87.55555555555554, 87.66666666666666, 87.77777777777777, 87.88888888888889, 88, 88.11111111111111, 88.22222222222223, 88.33333333333333, 88.44444444444444, 88.55555555555554, 88.66666666666666, 88.77777777777777, 88.88888888888889, 89, 89.11111111111111, 89.22222222222223, 89.33333333333333, 89.44444444444444, 89.55555555555554, 89.66666666666666, 89.77777777777777, 89.88888888888889, 90, 90.11111111111111, 90.22222222222223, 90.33333333333333, 90.44444444444444, 90.55555555555554, 90.66666666666666, 90.77777777777777, 90.88888888888889, 91, 91.11111111111111, 91.22222222222223, 91.33333333333333, 91.44444444444444, 91.55555555555554, 91.66666666666666, 91.77777777777777, 91.88888888888889, 92, 92.11111111111111, 92.22222222222223, 92.33333333333333, 92.44444444444444, 92.55555555555554, 92.66666666666666, 92.77777777777777, 92.88888888888889, 93, 93.11111111111111, 93.22222222222223, 93.33333333333333, 93.44444444444444, 93.55555555555554, 93.66666666666666, 93.77777777777777, 93.88888888888889, 94, 94.11111111111111, 94.22222222222223, 94.33333333333333, 94.44444444444444, 94.55555555555554, 94.66666666666666, 94.77777777777777, 94.88888888888889, 95, 95.11111111111111, 95.22222222222223, 95.33333333333333, 95.44444444444444, 95.55555555555554, 95.66666666666666, 95.77777777777777, 95.88888888888889, 96, 96.11111111111111, 96.22222222222223, 96.33333333333333, 96.44444444444444, 96.55555555555554, 96.66666666666666, 96.77777777777777, 96.88888888888889, 97, 97.11111111111111, 97.22222222222223, 97.33333333333333, 97.44444444444444, 97.55555555555554, 97.66666666666666, 97.77777777777777, 97.88888888888889, 98, 98.11111111111111, 98.22222222222223, 98.33333333333333, 98.44444444444444, 98.55555555555554, 98.66666666666666, 98.77777777777777, 98.88888888888889, 99, 99.11111111111111, 99.22222222222221, 99.33333333333333, 99.44444444444444, 99.55555555555556, 99.66666666666666, 99.77777777777777, 99.88888888888889, 100, 100.11111111111111, 100.22222222222221, 100.33333333333333, 100.44444444444444, 100.55555555555556, 100.66666666666666, 100.77777777777777, 100.88888888888889, 101, 101.11111111111111, 101.22222222222221, 101.33333333333333, 101.44444444444444, 101.55555555555556, 101.66666666666666, 101.77777777777777, 101.88888888888889, 102, 102.11111111111111, 102.22222222222221, 102.33333333333333, 102.44444444444444, 102.55555555555556, 102.66666666666666, 102.77777777777777, 102.88888888888889, 103, 103.11111111111111, 103.22222222222221, 103.33333333333333, 103.44444444444444, 103.55555555555556, 103.66666666666666, 103.77777777777777, 103.88888888888889, 104, 104.11111111111111, 104.22222222222221, 104.33333333333333, 104.44444444444444, 104.55555555555556, 104.66666666666666, 104.77777777777777, 104.88888888888889, 105, 105.11111111111111, 105.22222222222221, 105.33333333333333, 105.44444444444444, 105.55555555555556, 105.66666666666666, 105.77777777777777, 105.88888888888889, 106, 106.11111111111111, 106.22222222222221, 106.33333333333333, 106.44444444444444, 106.55555555555556, 106.66666666666666, 106.77777777777777, 106.88888888888889, 107, 107.1111111111111, 107.22222222222221, 107.33333333333333, 107.44444444444444, 107.55555555555556, 107.66666666666666, 107.77777777777777, 107.88888888888889, 108, 108.1111111111111, 108.22222222222221, 108.33333333333333, 108.44444444444444, 108.55555555555556, 108.66666666666666, 108.77777777777777, 108.88888888888889, 109, 109.1111111111111, 109.22222222222221, 109.33333333333333, 109.44444444444444, 109.55555555555556, 109.66666666666666, 109.77777777777777, 109.88888888888889, 110, 110.1111111111111, 110.22222222222221, 110.33333333333333, 110.44444444444444, 110.55555555555556, 110.66666666666666, 110.77777777777777, 110.88888888888889, 111, 111.1111111111111, 111.22222222222221, 111.33333333333333, 111.44444444444444, 111.55555555555556, 111.66666666666666, 111.77777777777777, 111.88888888888889, 112, 112.1111111111111, 112.22222222222221, 112.33333333333333, 112.44444444444444, 112.55555555555556, 112.66666666666666, 112.77777777777777, 112.88888888888889, 113, 113.1111111111111, 113.22222222222221, 113.33333333333333, 113.44444444444444, 113.55555555555556, 113.66666666666666, 113.77777777777777, 113.88888888888889, 114, 114.1111111111111, 114.22222222222221, 114.33333333333333, 114.44444444444444, 114.55555555555556, 114.66666666666666, 114.77777777777777, 114.88888888888889, 115, 115.1111111111111, 115.22222222222221, 115.33333333333333, 115.44444444444444, 115.55555555555556, 115.66666666666666, 115.77777777777777, 115.88888888888889, 116, 116.1111111111111, 116.22222222222221, 116.33333333333333, 116.44444444444444, 116.55555555555556, 116.66666666666666, 116.77777777777777, 116.88888888888889, 117, 117.1111111111111, 117.22222222222221, 117.33333333333333, 117.44444444444444, 117.55555555555556, 117.66666666666666, 117.77777777777777, 117.88888888888889, 118, 118.1111111111111, 118.22222222222221, 118.33333333333333, 118.44444444444444, 118.55555555555556, 118.66666666666666, 118.77777777777777, 118.88888888888889, 119, 119.1111111111111, 119.22222222222221, 119.33333333333333, 119.44444444444444, 119.55555555555556, 119.66666666666666, 119.77777777777777, 119.88888888888889, 120, 120.1111111111111, 120.22222222222221, 120.33333333333333, 120.44444444444444, 120.55555555555556, 120.66666666666666, 120.77777777777777, 120.88888888888889, 121, 121.1111111111111, 121.22222222222221, 121.33333333333333, 121.44444444444444, 121.55555555555556, 121.66666666666666, 121.77777777777777, 121.88888888888889, 122, 122.1111111111111, 122.22222222222221, 122.33333333333333, 122.44444444444444, 122.55555555555556, 122.66666666666666, 122.77777777777777, 122.88888888888889, 123, 123.1111111111111, 123.22222222222221, 123.33333333333333, 123.44444444444444, 123.55555555555556, 123.66666666666666, 123.77777777777777, 123.88888888888889, 124, 124.1111111111111, 124.22222222222221, 124.33333333333333, 124.44444444444444, 124.55555555555556, 124.66666666666666, 124.77777777777777, 124.88888888888889, 125, 125.1111111111111, 125.22222222222221, 125.33333333333333, 125.44444444444444, 125.55555555555556, 125.66666666666666, 125.77777777777777, 125.88888888888889, 126, 126.1111111111111, 126.22222222222221, 126.33333333333333, 126.44444444444444, 126.55555555555556, 126.66666666666666, 126.77777777777777, 126.88888888888889, 127, 127.1111111111111, 127.22222222222221, 127.33333333333333, 127.44444444444444, 127.55555555555556, 127.66666666666666, 127.77777777777777, 127.88888888888889, 128, 128.1111111111111, 128.22222222222223, 128.33333333333331, 128.44444444444446, 128.55555555555554, 128.66666666666666, 128.77777777777777, 128.88888888888889, 129, 129.1111111111111, 129.22222222222223, 129.33333333333331, 129.44444444444446, 129.55555555555554, 129.66666666666666, 129.77777777777777, 129.88888888888889, 130, 130.1111111111111, 130.22222222222223, 130.33333333333331, 130.44444444444446, 130.55555555555554, 130.66666666666666, 130.77777777777777, 130.88888888888889, 131, 131.1111111111111, 131.22222222222223, 131.33333333333331, 131.44444444444446, 131.55555555555554, 131.66666666666666, 131.77777777777777, 131.88888888888889, 132, 132.1111111111111, 132.22222222222223, 132.33333333333331, 132.44444444444446, 132.55555555555554, 132.66666666666666, 132.77777777777777, 132.88888888888889, 133, 133.1111111111111, 133.22222222222223, 133.33333333333331, 133.44444444444446, 133.55555555555554, 133.66666666666666, 133.77777777777777, 133.88888888888889, 134, 134.1111111111111, 134.22222222222223, 134.33333333333331, 134.44444444444446, 134.55555555555554, 134.66666666666666, 134.77777777777777, 134.88888888888889, 135, 135.1111111111111, 135.22222222222223, 135.33333333333331, 135.44444444444446, 135.55555555555554, 135.66666666666666, 135.77777777777777, 135.88888888888889, 136, 136.1111111111111, 136.22222222222223, 136.33333333333331, 136.44444444444446, 136.55555555555554, 136.66666666666666, 136.77777777777777, 136.88888888888889, 137, 137.1111111111111, 137.22222222222223, 137.33333333333331, 137.44444444444446, 137.55555555555554, 137.66666666666666, 137.77777777777777, 137.88888888888889, 138, 138.1111111111111, 138.22222222222223, 138.33333333333331, 138.44444444444446, 138.55555555555554, 138.66666666666666, 138.77777777777777, 138.88888888888889, 139, 139.1111111111111, 139.22222222222223, 139.33333333333331, 139.44444444444446, 139.55555555555554, 139.66666666666666, 139.77777777777777, 139.88888888888889, 140, 140.1111111111111, 140.22222222222223, 140.33333333333331, 140.44444444444446, 140.55555555555554, 140.66666666666666, 140.77777777777777, 140.88888888888889, 141, 141.1111111111111, 141.22222222222223, 141.33333333333331, 141.44444444444446, 141.55555555555554, 141.66666666666666, 141.77777777777777, 141.88888888888889, 142, 142.1111111111111, 142.22222222222223, 142.33333333333331, 142.44444444444446, 142.55555555555554, 142.66666666666666, 142.77777777777777, 142.88888888888889, 143, 143.1111111111111, 143.22222222222223, 143.33333333333331, 143.44444444444446, 143.55555555555554, 143.66666666666666, 143.77777777777777, 143.88888888888889, 144, 144.1111111111111, 144.22222222222223, 144.33333333333331, 144.44444444444446, 144.55555555555554, 144.66666666666666, 144.77777777777777, 144.88888888888889, 145, 145.1111111111111, 145.22222222222223, 145.33333333333331, 145.44444444444446, 145.55555555555554, 145.66666666666666, 145.77777777777777, 145.88888888888889, 146 ], "y": [ 1.4151731449760938, 1.4118189252906932, 1.4084965574197417, 1.4052058084236192, 1.4019464484963367, 1.3987182509165708, 1.395520991999618, 1.39235445105024, 1.3892184103163883, 1.3861126549437859, 1.3830369729313425, 1.3799911550873993, 1.3769749949867653, 1.3739882889285513, 1.371030835894762, 1.3681024375096504, 1.3652028979998014, 1.3623320241549428, 1.3594896252894573, 1.3566755132045891, 1.3538895021513286, 1.3511314087939532, 1.3484010521742278, 1.345698253676229, 1.3430228369918014, 1.340374628086619, 1.3377534551668444, 1.335159148646374, 1.3325915411146532, 1.330050467305057, 1.3275357640638175, 1.3250472703194927, 1.322584827052959, 1.3201482772679272, 1.3177374659619603, 1.3153522400979896, 1.3129924485763178, 1.3106579422071027, 1.3083485736833003, 1.3060641975540752, 1.3038046701986568, 1.3015698498006338, 1.2993595963226858, 1.2971737714817333, 1.2950122387245067, 1.2928748632035207, 1.2907615117534494, 1.2886720528678903, 1.2866063566765167, 1.2845642949226008, 1.2825457409409122, 1.2805505696359754, 1.2785786574606823, 1.2766298823952584, 1.2747041239265606, 1.2728012630277246, 1.2709211821381297, 1.269063765143691, 1.2672288973574726, 1.2654164655006042, 1.263626357683508, 1.261858463387425, 1.260112673446235, 1.258388880028561, 1.2566869766201634, 1.2550068580066105, 1.2533484202562164, 1.251711560703255, 1.2500961779314317, 1.248502171757613, 1.2469294432158151, 1.2453778945414347, 1.2438474291557284, 1.242337951650531, 1.2408493677732104, 1.23938158441185, 1.2379345095806653, 1.236508052405638, 1.235102123110371, 1.233716633002161, 1.2323514944582785, 1.2310066209124606, 1.2296819268416033, 1.2283773277526575, 1.2270927401697203, 1.2258280816213214, 1.2245832706278994, 1.2233582266894634, 1.22215287027344, 1.2209671228027013, 1.2198009066437667, 1.2186541450951855, 1.2175267623760824, 1.2164186836148805, 1.2153298348381816, 1.214260142959814, 1.2132095357700408, 1.21217794192492, 1.211165290935825, 1.2101715131591153, 1.2091965397859537, 1.2082403028322752, 1.2073027351288954, 1.2063837703117641, 1.2054833428123581, 1.2046013878482087, 1.2037378414135693, 1.2028926402702085, 1.2020657219383417, 1.2012570246876844, 1.2004664875286362, 1.1996940502035864, 1.1989396531783427, 1.1982032376336809, 1.1974847454570108, 1.1967841192341606, 1.1961013022412739, 1.19543623843682, 1.1947888724537152, 1.1941591495915524, 1.1935470158089383, 1.1929524177159352, 1.1923753025666084, 1.1918156182516748, 1.1912733132912496, 1.1907483368276959, 1.19024063861857, 1.1897501690296606, 1.1892768790281252, 1.1888207201757168, 1.188381644622105, 1.1879596050982828, 1.1875545549100652, 1.1871664479316735, 1.1867952385994063, 1.1864408819053929, 1.1861033333914326, 1.1857825491429124, 1.1854784857828096, 1.1851911004657683, 1.1849203508722599, 1.1846661952028152, 1.1844285921723356, 1.1842075010044768, 1.1840028814261085, 1.1838146936618419, 1.1836428984286342, 1.1834874569304588, 1.1833483308530452, 1.1832254823586887, 1.1831188740811265, 1.1830284691204782, 1.1829542310382526, 1.182896123852418, 1.1828541120325382, 1.1828281604949642, 1.1828182345980958, 1.1828243001376952, 1.1828463233422655, 1.1828842708684855, 1.182938109796703, 1.1830078076264847, 1.1830933322722197, 1.1831946520587837, 1.183311735717251, 1.183444552380666, 1.1835930715798628, 1.1837572632393392, 1.1839370976731822, 1.1841325455810428, 1.1843435780441607, 1.1845701665214394, 1.1848122828455676, 1.1850698992191908, 1.1853429882111277, 1.185631522752634, 1.1859354761337106, 1.1862548219994598, 1.1865895343464816, 1.1869395875193183, 1.1873049562069378, 1.1876856154392632, 1.1880815405837422, 1.1884927073419573, 1.188919091746279, 1.1893606701565582, 1.1898174192568562, 1.1902893160522168, 1.1907763378654757, 1.1912784623341075, 1.1917956674071102, 1.1923279313419266, 1.192875232701404, 1.193437550350787, 1.194014863454747, 1.194607151474446, 1.1952143941646385, 1.1958365715708006, 1.196473664026298, 1.1971256521495868, 1.1977925168414443, 1.1984742392822318, 1.1991708009291957, 1.1998821835137872, 1.200608369039029, 1.201349339776898, 1.202105078265747, 1.2028755673077514, 1.2036607899663885, 1.2044607295639445, 1.205275369679047, 1.2061046941442328, 1.2069486870435335, 1.2078073327100975, 1.208680615723836, 1.2095685209090912, 1.2104710333323392, 1.21138813829991, 1.2123198213557418, 1.2132660682791527, 1.2142268650826427, 1.2152021980097176, 1.2161920535327393, 1.2171964183507973, 1.2182152793876069, 1.219248623789428, 1.22029643892301, 1.2213587123735563, 1.2224354319427129, 1.2235265856465798, 1.2246321617137432, 1.2257521485833294, 1.2268865349030802, 1.2280353095274505, 1.2291984615157239, 1.2303759801301528, 1.231567854834115, 1.2327740752902911, 1.2339946313588657, 1.2352295130957414, 1.236478710750778, 1.2377422147660468, 1.239020015774106, 1.2403121045962926, 1.2416184722410375, 1.242939109902188, 1.2442740089573643, 1.2456231609663162, 1.2469865576693109, 1.2483641909855308, 1.2497560530114897, 1.2511621360194676, 1.2525824324559602, 1.254016934940144, 1.255465636262362, 1.2569285293826171, 1.258405607429094, 1.2598968636966805, 1.2614022916455199, 1.2629218848995674, 1.2644556372451674, 1.2660035426296437, 1.2675655951599027, 1.2691417891010566, 1.2707321188750533, 1.2723365790593275, 1.2739551643854592, 1.2755878697378542, 1.2772346901524287, 1.2788956208153146, 1.2805706570615754, 1.2822597943739342, 1.283963028381518, 1.285680354858611, 1.287411769723424, 1.2891572690368722, 1.2909168490013703, 1.2926905059596367, 1.2944782363935103, 1.2962800369227785, 1.2980959043040206, 1.2999258354294558, 1.3017698273258127, 1.3036278771532015, 1.3054999822039992, 1.3073861399017508, 1.3092863478000767, 1.3112006035815902, 1.3131289050568309, 1.3150712501632054, 1.3170276369639375, 1.3189980636470289, 1.3209825285242354, 1.3229810300300462, 1.3249935667206756, 1.3270201372730683, 1.3290607404839094, 1.331115375268645, 1.333184040660517, 1.3352667358095998, 1.3373634599818531, 1.3394742125581818, 1.3415989930335022, 1.3437378010158192, 1.3458906362253182, 1.3480574984934524, 1.3502383877620536, 1.352433304082442, 1.3546422476145459, 1.3568652186260364, 1.35910221749146, 1.3613532446913894, 1.3636183008115736, 1.3658973865421058, 1.3681905026765886, 1.3704976501113157, 1.3728188298444581, 1.3751540429752567, 1.3775032907032252, 1.3798665743273586, 1.3822438952453497, 1.3846352549528138, 1.3870406550425207, 1.3894600972036317, 1.3918935832209456, 1.3943411149741534, 1.396802694437095, 1.3992783236770292, 1.4017680048539054, 1.4042717402196434, 1.4067895321174233, 1.4093213829809754, 1.411867295333884, 1.4144272717888893, 1.4170013150472076, 1.4195894278978434, 1.4221916132169194, 1.4248078739670091, 1.4274382131964707, 1.4300826340387962, 1.4327411397119565, 1.435413733517762, 1.4381004188412212, 1.440801199149912, 1.443516077993351, 1.4462450590023757, 1.448988145888529, 1.4517453424434485, 1.4545166525382642, 1.4573020801229974, 1.4601016292259703, 1.462915303953217, 1.465743108487899, 1.468585047089732, 1.4714411240944094, 1.4743113439130398, 1.4771957110315799, 1.4800942300102828, 1.4830069054831427, 1.4859337421573469, 1.4888747448127382, 1.4918299183012729, 1.4947992675464905, 1.4977827975429856, 1.500780513355884, 1.5037924201203252, 1.5068185230409468, 1.5098588273913767, 1.5129133385137263, 1.515982061818091, 1.5190650027820538, 1.5221621669501932, 1.525273559933596, 1.5283991874093736, 1.5315390551201833, 1.534693168873752, 1.5378615345424074, 1.54104415806261, 1.54424104543449, 1.547452202721389, 1.5506776360494066, 1.5539173516069464, 1.5571713556442741, 1.560439654473068, 1.5637222544659852, 1.5670191620562222, 1.5703303837370857, 1.573655926061563, 1.5769957956418985, 1.5803499991491716, 1.5837185433128804, 1.5871014349205295, 1.5904986808172143, 1.5939102879052218, 1.5973362631436212, 1.600776613547867, 1.6042313461894018, 1.6077004681952622, 1.611183986747691, 1.6146819090837485, 1.618194242494932, 1.6217209943267912, 1.6252621719785552, 1.628817782902757, 1.632387834604864, 1.635972334642908, 1.6395712906271227, 1.6431847102195827, 1.6468126011338418, 1.6504549711345828, 1.6541118280372586, 1.6577831797077482, 1.6614690340620057, 1.6651693990657184, 1.6688842827339658, 1.6726136931308806, 1.6763576383693135, 1.6801161266105, 1.6838891660637314, 1.6876767649860263, 1.6914789316818057, 1.695295674502574, 1.6991270018465945, 1.7029729221585763, 1.7068334439293593, 1.7107085756956026, 1.7145983260394733, 1.718502703588345, 1.7224217170144855, 1.7263553750347649, 1.730303686410347, 1.7342666599463978, 1.73824430449179, 1.7422366289388103, 1.7462436422228709, 1.7502653533222177, 1.7543017712576523, 1.758352905092243, 1.762418763931046, 1.7664993569208285, 1.7705946932497894, 1.7747047821472883, 1.7788296328835735, 1.7829692547695082, 1.7871236571563074, 1.7912928494352722, 1.7954768410375224, 1.799675641433742, 1.8038892601339112, 1.8081177066870568, 1.812360990680994, 1.8166191217420729, 1.8208921095349273, 1.825179963762226, 1.8294826941644262, 1.8338003105195266, 1.8381328226428262, 1.8424802403866778, 1.846842573640255, 1.8512198323293099, 1.8556120264159377, 1.8600191658983436, 1.8644412608106085, 1.868878321222464, 1.8733303572390536, 1.877797379000717, 1.8822793966827558, 1.8867764204952147, 1.8912884606826579, 1.8958155275239492, 1.9003576313320354, 1.9049147824537245, 1.9094869912694792, 1.914074268193194, 1.918676623671988, 1.9232940681859945, 1.9279266122481526, 1.932574266403998, 1.9372370412314595, 1.9419149473406545, 1.9466079953736861, 1.951316196004443, 1.9560395599383986, 1.9607780979124152, 1.965531820694546, 1.9703007390838392, 1.9750848639101495, 1.9798842060339383, 1.984698776346089, 1.989528585767716, 1.9943736452499796, 1.9992339657738922, 2.0041095583501427, 2.009000434018905, 2.013906603849661, 2.0188280789410173, 2.0237648704205258, 2.0287169894445056, 2.033684447197868, 2.0386672548939373, 2.0436654237742777, 2.048678965108524, 2.0537078901942043, 2.058752210356572, 2.063811936948438, 2.0688870813499975, 2.0739776549686724, 2.0790836692389347, 2.084205135622151, 2.089342065606416, 2.094494470706387, 2.0996623624631314, 2.1048457524439574, 2.110044652242263, 2.1152590734773757, 2.1204890277943953, 2.125734526864042, 2.1309955823824986, 2.136272206071261, 2.1415644096769846, 2.1468722049713325, 2.152195603750829, 2.1575346178367116, 2.162889259074776, 2.1682595393352417, 2.173645470512594, 2.1790470645254496, 2.184464333316409, 2.1898972888519155, 2.195345943122112, 2.200810308140702, 2.2062903959448126, 2.2117862185948503, 2.2172977881743714, 2.2228251167899375, 2.2283682165709897, 2.233927099669705, 2.239501778260868, 2.245092264541737, 2.250698570731911, 2.256320709073205, 2.2619586918295105, 2.267612531286677, 2.273282239752374, 2.2789678295559743, 2.2846693130484184, 2.2903867026020954, 2.2961200106107187, 2.301869249489196, 2.307634431673514, 2.3134155696206102, 2.3192126758082625, 2.325025762734952, 2.330854842919764, 2.3366999289022505, 2.342561033242326, 2.3484381685201448, 2.3543313473359837, 2.3602405823101327, 2.3661658860827726, 2.3721072713138676, 2.3780647506830506, 2.384038336889512, 2.390028042651881, 2.396033880708131, 2.402055863815449, 2.4080940047501467, 2.4141483163075343, 2.420218811301829, 2.4263055025660347, 2.4324084029518445, 2.4385275253295315, 2.4446628825878434, 2.450814487633904, 2.4569823533931014, 2.4631664928089916, 2.469366918843195, 2.4755836444752926, 2.48181668270273, 2.4880660465407165, 2.4943317490221206, 2.500613803197378, 2.5069122221343894, 2.5132270189184287, 2.5195582066520377, 2.525905798454938, 2.532269807463931, 2.538650246832806, 2.5450471297322466, 2.5514604693497316, 2.5578902788894506, 2.564336571572204, 2.5707993606353194, 2.577278659332551, 2.5837744809339975, 2.590286838726009, 2.5968157460110963, 2.603361216107846, 2.60992326235083, 2.6165018980905175, 2.6230971366931906, 2.6297089915408542, 2.6363374760311555, 2.6429826035772934, 2.6496443876079367, 2.6563228415671425, 2.663017978914266, 2.6697298131238845, 2.6764583576857097, 2.6832036261045076, 2.6899656319000207, 2.696744388606882, 2.703539909774535, 2.7103522089671572, 2.717181299763578, 2.7240271957572033, 2.7308899105559328, 2.7377694577820844, 2.7446658510723174, 2.7515791040775577, 2.7585092304629137, 2.76545624390761, 2.7724201581049073, 2.779400986762026, 2.786398743600078, 2.7934134423539856, 2.800445096772415, 2.807493720617691, 2.8145593276657452, 2.8216419317060257, 2.828741546541432, 2.8358581859882444, 2.8429918638760525, 2.8501425940476883, 2.8573103903591504, 2.8644952666795374, 2.8716972368909794, 2.878916314888574, 2.886152514580309, 2.8934058498869994, 2.9006763347422244, 2.9079639830922517, 2.9152688088959824, 2.922590826124873, 2.92993004876288, 2.937286490806386, 2.944660166264147, 2.952051089157214, 2.959459273518878, 2.9668847333946053, 2.9743274828419732, 2.981787535930608, 2.989264906742124, 2.9967596093700535, 3.0042716579197974, 3.0118010665085593, 3.0193478492652805, 3.026912020330584, 3.0344935938567117, 3.0420925840074715, 3.0497090049581677, 3.0573428708955506, 3.0649941960177527, 3.0726629945342325, 3.0803492806657187, 3.088053068644149, 3.0957743727126146, 3.1035132071253013, 3.1112695861474418, 3.119043524055246, 3.126835035135855, 3.1346441336872837, 3.1424708340183636, 3.1503151504486904, 3.1581770973085668, 3.1660566889389523, 3.173953939691404, 3.1818688639280337, 3.189801476021438, 3.1977517903546615, 3.205719821321137, 3.2137055833246295, 3.2217090907791976, 3.2297303581091263, 3.237769399748888, 3.2458262301430807, 3.25390086374639, 3.261993315023527, 3.270103598449186, 3.278231728507989, 3.2863777196944426, 3.2945415865128873, 3.3027233434774423, 3.3109230051119622, 3.319140585949994, 3.327376100534717, 3.3356295634189044, 3.343900989164874, 3.352190392344439, 3.360497787538861, 3.368823189338807, 3.3771666123443027, 3.38552807116468, 3.3939075804185386, 3.402305154733698, 3.4107208087471528, 3.419154557105025, 3.427606414462524, 3.4360763954838984, 3.4445645148423942, 3.4530707872202084, 3.46159522730845, 3.470137849807087, 3.47869866942492, 3.4872777008795204, 3.495874958897198, 3.5044904582129632, 3.5131242135704683, 3.5217762397219863, 3.530446551428355, 3.539135163458938, 3.547842090591587, 3.5565673476126, 3.5653109493166792, 3.5740729105068905, 3.5828532459946243, 3.5916519705995524, 3.600469099149597, 3.6093046464808816, 3.618158627437694, 3.6270310568724495, 3.6359219496456534, 3.644831320625856, 3.653759184689622, 3.6627055567214857, 3.6716704516139154, 3.6806538842672807, 3.6896558695898074, 3.6986764224975412, 3.7077155579143146, 3.7167732907717097, 3.725849636009015, 3.734944608573201, 3.7440582234188695, 3.7531904955082265, 3.762341439811047, 3.7715110713046363, 3.7806994049737925, 3.7899064558107765, 3.799132238815271, 3.808376768994356, 3.817640061362459, 3.8269221309413326, 3.836222992760015, 3.8455426618547985, 3.8548811532691927, 3.864238482053894, 3.873614663266748, 3.8830097119727207, 3.8924236432438652, 3.9018564721592797, 3.9113082138050927, 3.920778883274405, 3.9302684956672875, 3.939777066090721, 3.949304609658586, 3.958851141491613, 3.9684166767173683, 3.9780012304701993, 3.9876048178912322, 3.9972274541283173, 4.006869154336006, 4.01652993367553, 4.026209807314747, 4.035908790428137, 4.045626898196748, 4.055364145808187, 4.065120548456575, 4.0748961213425225, 4.084690879673101, 4.094504838661813, 4.10433801352856, 4.114190419499614, 4.124062071807592, 4.133952985691424, 4.143863176396329, 4.153792659173775, 4.163741449281463, 4.173709561983292, 4.183697012549335, 4.193703816255809, 4.203729988385043, 4.21377554422546, 4.2238404990715415, 4.233924868223802, 4.24402866698876, 4.254151910678922, 4.264294614612742, 4.2744567941145934, 4.284638464514764, 4.294839641149398, 4.305060339360499, 4.315300574495885, 4.325560361909168, 4.335839716959731, 4.346138655012697, 4.35645719143891, 4.366795341614898, 4.377153120922864, 4.387530544750648, 4.397927628491706, 4.4083443875450845, 4.4187808373154, 4.429236993212805, 4.439712870652971, 4.450208485057065, 4.460723851851717, 4.471258986469005, 4.4818139043464305, 4.492388620926882, 4.502983151658629, 4.513597511995287, 4.524231717395791, 4.534885783324389, 4.545559725250597, 4.556253558649197, 4.566967299000192, 4.577700961788805, 4.588454562505436, 4.599228116645657, 4.6100216397101805, 4.620835147204834, 4.631668654640544, 4.64252217753331, 4.6533957314041885, 4.664289331779266, 4.675202994189628, 4.686136734171362, 4.697090567265507, 4.708064509018058, 4.719058574979919, 4.73007278070691, 4.741107141759716, 4.752161673703894, 4.763236392109832, 4.774331312552734, 4.785446450612604, 4.796581821874218, 4.807737441927121, 4.81891332636556, 4.830109490788537, 4.841325950799718, 4.852562722007455, 4.863819820024756, 4.875097260469256, 4.886395058963213, 4.897713231133466, 4.909051792611453, 4.920410759033133, 4.93179014603904, 4.943189969274187, 4.954610244388119, 4.9660509870348335, 4.977512212872802, 4.988993937564932, 5.000496176778546, 5.012018946185391, 5.023562261461567, 5.035126138287574, 5.046710592348222, 5.058315639332689, 5.069941294934435, 5.0815875748512305, 5.0932544947851035, 5.1049420704423545, 5.1166503175335185, 5.128379251773343, 5.140128888880795, 5.1518992445790035, 5.163690334595294, 5.175502174661118, 5.187334780512081, 5.199188167887882, 5.211062352532339, 5.222957350193346, 5.234873176622854, 5.246809847576873, 5.258767378815434, 5.270745786102587, 5.282745085206389, 5.294765291898857, 5.306806421955988, 5.318868491157726, 5.330951515287943, 5.343055510134427, 5.355180491488866, 5.367326475146829, 5.3794934769077605, 5.391681512574946, 5.403890597955508, 5.4161207488604, 5.4283719811043545, 5.44064431050593, 5.452937752887419, 5.465252324074897, 5.4775880398981664, 5.489944916190765, 5.5023229687899455, 5.514722213536639, 5.5271426662754815, 5.5395843428547495, 5.5520472591263985, 5.564531430945991, 5.577036874172739, 5.589563604669432, 5.60211163830248, 5.614680990941855, 5.627271678461085, 5.639883716737268, 5.652517121651009, 5.665171909086462, 5.677848094931259, 5.690545695076551, 5.7032647254169335, 5.716005201850497, 5.7287671402787606, 5.741550556606686, 5.754355466742658, 5.767181886598459, 5.78002983208929, 5.792899319133693, 5.80579036365362, 5.818702981574338, 5.831637188824487, 5.844593001336008, 5.857570435044173, 5.870569505887541, 5.883590229807962, 5.896632622750568, 5.909696700663734, 5.922782479499108, 5.935889975211539, 5.949019203759134, 5.962170181103182, 5.9753429232081805, 5.988537446041809, 6.001753765574913, 6.01499189778151, 6.0282518586387415, 6.0415336641269075, 6.054837330229408, 6.0681628729327635, 6.081510308226587, 6.0948796521035815, 6.108270920559507, 6.121684129593199, 6.135119295206542, 6.1485764334044415, 6.162055560194841, 6.175556691588688, 6.189079843599934, 6.202625032245523, 6.216192273545365, 6.22978158352235, 6.243392978202304, 6.257026473614019, 6.270682085789189, 6.28435983076245, 6.298059724571336, 6.311781783256275, 6.325526022860594, 6.339292459430476, 6.353081109014982, 6.366891987666008, 6.380725111438321, 6.394580496389475, 6.4084581585798865, 6.422358114072739, 6.4362803789340495, 6.450224969232598, 6.464191901039942, 6.478181190430418, 6.492192853481097, 6.5062269062718165, 6.520283364885117, 6.534362245406298, 6.5484635639233275, 6.56258733652692, 6.576733579310447, 6.590902308369981, 6.605093539804251, 6.619307289714658, 6.633543574205252, 6.647802409382705, 6.66208381135635, 6.676387796238106, 6.690714380142533, 6.705063579186769, 6.719435409490556, 6.733829887176206 ] }, { "mode": "markers", "name": "Annotation", "showlegend": false, "text": "Vmd=68.89kn", "textposition": "middle right", "type": "scatter", "x": [ 68.8921406299698 ], "y": [ 1.3481211244306504 ] }, { "mode": "markers", "name": "Annotation", "showlegend": false, "text": "Vmp=52.35kn", "textposition": "middle right", "type": "scatter", "x": [ 52.34670691157904 ], "y": [ 1.1828181187836484 ] }, { "mode": "lines", "name": "Annotation", "showlegend": false, "type": "scatter", "x": [ 0, 137.7842812599396 ], "y": [ 0, 2.6962422488613007 ] }, { "name": "Gross weight = 1500kg", "type": "scatter", "x": [ 35, 35.111111111111114, 35.22222222222222, 35.333333333333336, 35.44444444444444, 35.55555555555556, 35.666666666666664, 35.77777777777778, 35.888888888888886, 36, 36.111111111111114, 36.22222222222222, 36.333333333333336, 36.44444444444444, 36.55555555555556, 36.666666666666664, 36.77777777777778, 36.888888888888886, 37, 37.111111111111114, 37.22222222222222, 37.333333333333336, 37.44444444444444, 37.55555555555556, 37.666666666666664, 37.77777777777778, 37.888888888888886, 38, 38.111111111111114, 38.22222222222222, 38.333333333333336, 38.44444444444444, 38.55555555555556, 38.666666666666664, 38.77777777777778, 38.888888888888886, 39, 39.111111111111114, 39.22222222222222, 39.333333333333336, 39.44444444444444, 39.55555555555556, 39.666666666666664, 39.77777777777778, 39.888888888888886, 40, 40.111111111111114, 40.22222222222222, 40.333333333333336, 40.44444444444444, 40.55555555555556, 40.666666666666664, 40.77777777777778, 40.888888888888886, 41, 41.111111111111114, 41.22222222222222, 41.333333333333336, 41.44444444444444, 41.55555555555556, 41.666666666666664, 41.77777777777778, 41.888888888888886, 42, 42.111111111111114, 42.22222222222222, 42.333333333333336, 42.44444444444444, 42.55555555555556, 42.666666666666664, 42.77777777777778, 42.888888888888886, 43, 43.111111111111114, 43.22222222222222, 43.33333333333333, 43.44444444444444, 43.55555555555556, 43.666666666666664, 43.77777777777778, 43.888888888888886, 44, 44.111111111111114, 44.22222222222222, 44.33333333333333, 44.44444444444444, 44.55555555555556, 44.666666666666664, 44.77777777777778, 44.888888888888886, 45, 45.111111111111114, 45.22222222222222, 45.33333333333333, 45.44444444444444, 45.55555555555556, 45.666666666666664, 45.77777777777778, 45.888888888888886, 46, 46.111111111111114, 46.22222222222222, 46.33333333333333, 46.44444444444444, 46.55555555555556, 46.666666666666664, 46.77777777777778, 46.888888888888886, 47, 47.111111111111114, 47.22222222222222, 47.33333333333333, 47.44444444444444, 47.55555555555556, 47.666666666666664, 47.77777777777778, 47.888888888888886, 48, 48.111111111111114, 48.22222222222222, 48.33333333333333, 48.44444444444444, 48.55555555555556, 48.666666666666664, 48.77777777777778, 48.888888888888886, 49, 49.111111111111114, 49.22222222222222, 49.33333333333333, 49.44444444444444, 49.55555555555556, 49.666666666666664, 49.77777777777778, 49.888888888888886, 50, 50.111111111111114, 50.22222222222222, 50.33333333333333, 50.44444444444444, 50.55555555555556, 50.666666666666664, 50.77777777777778, 50.888888888888886, 51, 51.111111111111114, 51.22222222222222, 51.33333333333333, 51.44444444444444, 51.55555555555556, 51.666666666666664, 51.77777777777778, 51.888888888888886, 52, 52.111111111111114, 52.22222222222222, 52.33333333333333, 52.44444444444444, 52.55555555555556, 52.666666666666664, 52.77777777777778, 52.888888888888886, 53, 53.111111111111114, 53.22222222222222, 53.33333333333333, 53.44444444444444, 53.55555555555556, 53.666666666666664, 53.77777777777777, 53.888888888888886, 54, 54.111111111111114, 54.22222222222222, 54.33333333333333, 54.44444444444444, 54.55555555555556, 54.666666666666664, 54.77777777777777, 54.888888888888886, 55, 55.111111111111114, 55.22222222222222, 55.33333333333333, 55.44444444444444, 55.55555555555556, 55.666666666666664, 55.77777777777777, 55.888888888888886, 56, 56.111111111111114, 56.22222222222222, 56.33333333333333, 56.44444444444444, 56.55555555555556, 56.666666666666664, 56.77777777777777, 56.888888888888886, 57, 57.111111111111114, 57.22222222222222, 57.33333333333333, 57.44444444444444, 57.55555555555556, 57.666666666666664, 57.77777777777777, 57.888888888888886, 58, 58.111111111111114, 58.22222222222222, 58.33333333333333, 58.44444444444444, 58.55555555555556, 58.666666666666664, 58.77777777777777, 58.888888888888886, 59, 59.111111111111114, 59.22222222222222, 59.33333333333333, 59.44444444444444, 59.55555555555556, 59.666666666666664, 59.77777777777777, 59.888888888888886, 60, 60.111111111111114, 60.22222222222222, 60.33333333333333, 60.44444444444444, 60.55555555555556, 60.666666666666664, 60.77777777777777, 60.888888888888886, 61, 61.111111111111114, 61.22222222222222, 61.33333333333333, 61.44444444444444, 61.55555555555556, 61.666666666666664, 61.77777777777777, 61.888888888888886, 62, 62.111111111111114, 62.22222222222222, 62.33333333333333, 62.44444444444444, 62.55555555555556, 62.666666666666664, 62.77777777777777, 62.888888888888886, 63, 63.111111111111114, 63.22222222222222, 63.33333333333333, 63.44444444444444, 63.55555555555556, 63.666666666666664, 63.77777777777777, 63.888888888888886, 64, 64.11111111111111, 64.22222222222223, 64.33333333333333, 64.44444444444444, 64.55555555555556, 64.66666666666666, 64.77777777777777, 64.88888888888889, 65, 65.11111111111111, 65.22222222222223, 65.33333333333333, 65.44444444444444, 65.55555555555556, 65.66666666666666, 65.77777777777777, 65.88888888888889, 66, 66.11111111111111, 66.22222222222223, 66.33333333333333, 66.44444444444444, 66.55555555555556, 66.66666666666666, 66.77777777777777, 66.88888888888889, 67, 67.11111111111111, 67.22222222222223, 67.33333333333333, 67.44444444444444, 67.55555555555556, 67.66666666666666, 67.77777777777777, 67.88888888888889, 68, 68.11111111111111, 68.22222222222223, 68.33333333333333, 68.44444444444444, 68.55555555555556, 68.66666666666666, 68.77777777777777, 68.88888888888889, 69, 69.11111111111111, 69.22222222222223, 69.33333333333333, 69.44444444444444, 69.55555555555556, 69.66666666666666, 69.77777777777777, 69.88888888888889, 70, 70.11111111111111, 70.22222222222223, 70.33333333333333, 70.44444444444444, 70.55555555555556, 70.66666666666666, 70.77777777777777, 70.88888888888889, 71, 71.11111111111111, 71.22222222222223, 71.33333333333333, 71.44444444444444, 71.55555555555554, 71.66666666666666, 71.77777777777777, 71.88888888888889, 72, 72.11111111111111, 72.22222222222223, 72.33333333333333, 72.44444444444444, 72.55555555555554, 72.66666666666666, 72.77777777777777, 72.88888888888889, 73, 73.11111111111111, 73.22222222222223, 73.33333333333333, 73.44444444444444, 73.55555555555554, 73.66666666666666, 73.77777777777777, 73.88888888888889, 74, 74.11111111111111, 74.22222222222223, 74.33333333333333, 74.44444444444444, 74.55555555555554, 74.66666666666666, 74.77777777777777, 74.88888888888889, 75, 75.11111111111111, 75.22222222222223, 75.33333333333333, 75.44444444444444, 75.55555555555554, 75.66666666666666, 75.77777777777777, 75.88888888888889, 76, 76.11111111111111, 76.22222222222223, 76.33333333333333, 76.44444444444444, 76.55555555555554, 76.66666666666666, 76.77777777777777, 76.88888888888889, 77, 77.11111111111111, 77.22222222222223, 77.33333333333333, 77.44444444444444, 77.55555555555554, 77.66666666666666, 77.77777777777777, 77.88888888888889, 78, 78.11111111111111, 78.22222222222223, 78.33333333333333, 78.44444444444444, 78.55555555555554, 78.66666666666666, 78.77777777777777, 78.88888888888889, 79, 79.11111111111111, 79.22222222222223, 79.33333333333333, 79.44444444444444, 79.55555555555554, 79.66666666666666, 79.77777777777777, 79.88888888888889, 80, 80.11111111111111, 80.22222222222223, 80.33333333333333, 80.44444444444444, 80.55555555555554, 80.66666666666666, 80.77777777777777, 80.88888888888889, 81, 81.11111111111111, 81.22222222222223, 81.33333333333333, 81.44444444444444, 81.55555555555554, 81.66666666666666, 81.77777777777777, 81.88888888888889, 82, 82.11111111111111, 82.22222222222223, 82.33333333333333, 82.44444444444444, 82.55555555555554, 82.66666666666666, 82.77777777777777, 82.88888888888889, 83, 83.11111111111111, 83.22222222222223, 83.33333333333333, 83.44444444444444, 83.55555555555554, 83.66666666666666, 83.77777777777777, 83.88888888888889, 84, 84.11111111111111, 84.22222222222223, 84.33333333333333, 84.44444444444444, 84.55555555555554, 84.66666666666666, 84.77777777777777, 84.88888888888889, 85, 85.11111111111111, 85.22222222222223, 85.33333333333333, 85.44444444444444, 85.55555555555554, 85.66666666666666, 85.77777777777777, 85.88888888888889, 86, 86.11111111111111, 86.22222222222223, 86.33333333333333, 86.44444444444444, 86.55555555555554, 86.66666666666666, 86.77777777777777, 86.88888888888889, 87, 87.11111111111111, 87.22222222222223, 87.33333333333333, 87.44444444444444, 87.55555555555554, 87.66666666666666, 87.77777777777777, 87.88888888888889, 88, 88.11111111111111, 88.22222222222223, 88.33333333333333, 88.44444444444444, 88.55555555555554, 88.66666666666666, 88.77777777777777, 88.88888888888889, 89, 89.11111111111111, 89.22222222222223, 89.33333333333333, 89.44444444444444, 89.55555555555554, 89.66666666666666, 89.77777777777777, 89.88888888888889, 90, 90.11111111111111, 90.22222222222223, 90.33333333333333, 90.44444444444444, 90.55555555555554, 90.66666666666666, 90.77777777777777, 90.88888888888889, 91, 91.11111111111111, 91.22222222222223, 91.33333333333333, 91.44444444444444, 91.55555555555554, 91.66666666666666, 91.77777777777777, 91.88888888888889, 92, 92.11111111111111, 92.22222222222223, 92.33333333333333, 92.44444444444444, 92.55555555555554, 92.66666666666666, 92.77777777777777, 92.88888888888889, 93, 93.11111111111111, 93.22222222222223, 93.33333333333333, 93.44444444444444, 93.55555555555554, 93.66666666666666, 93.77777777777777, 93.88888888888889, 94, 94.11111111111111, 94.22222222222223, 94.33333333333333, 94.44444444444444, 94.55555555555554, 94.66666666666666, 94.77777777777777, 94.88888888888889, 95, 95.11111111111111, 95.22222222222223, 95.33333333333333, 95.44444444444444, 95.55555555555554, 95.66666666666666, 95.77777777777777, 95.88888888888889, 96, 96.11111111111111, 96.22222222222223, 96.33333333333333, 96.44444444444444, 96.55555555555554, 96.66666666666666, 96.77777777777777, 96.88888888888889, 97, 97.11111111111111, 97.22222222222223, 97.33333333333333, 97.44444444444444, 97.55555555555554, 97.66666666666666, 97.77777777777777, 97.88888888888889, 98, 98.11111111111111, 98.22222222222223, 98.33333333333333, 98.44444444444444, 98.55555555555554, 98.66666666666666, 98.77777777777777, 98.88888888888889, 99, 99.11111111111111, 99.22222222222221, 99.33333333333333, 99.44444444444444, 99.55555555555556, 99.66666666666666, 99.77777777777777, 99.88888888888889, 100, 100.11111111111111, 100.22222222222221, 100.33333333333333, 100.44444444444444, 100.55555555555556, 100.66666666666666, 100.77777777777777, 100.88888888888889, 101, 101.11111111111111, 101.22222222222221, 101.33333333333333, 101.44444444444444, 101.55555555555556, 101.66666666666666, 101.77777777777777, 101.88888888888889, 102, 102.11111111111111, 102.22222222222221, 102.33333333333333, 102.44444444444444, 102.55555555555556, 102.66666666666666, 102.77777777777777, 102.88888888888889, 103, 103.11111111111111, 103.22222222222221, 103.33333333333333, 103.44444444444444, 103.55555555555556, 103.66666666666666, 103.77777777777777, 103.88888888888889, 104, 104.11111111111111, 104.22222222222221, 104.33333333333333, 104.44444444444444, 104.55555555555556, 104.66666666666666, 104.77777777777777, 104.88888888888889, 105, 105.11111111111111, 105.22222222222221, 105.33333333333333, 105.44444444444444, 105.55555555555556, 105.66666666666666, 105.77777777777777, 105.88888888888889, 106, 106.11111111111111, 106.22222222222221, 106.33333333333333, 106.44444444444444, 106.55555555555556, 106.66666666666666, 106.77777777777777, 106.88888888888889, 107, 107.1111111111111, 107.22222222222221, 107.33333333333333, 107.44444444444444, 107.55555555555556, 107.66666666666666, 107.77777777777777, 107.88888888888889, 108, 108.1111111111111, 108.22222222222221, 108.33333333333333, 108.44444444444444, 108.55555555555556, 108.66666666666666, 108.77777777777777, 108.88888888888889, 109, 109.1111111111111, 109.22222222222221, 109.33333333333333, 109.44444444444444, 109.55555555555556, 109.66666666666666, 109.77777777777777, 109.88888888888889, 110, 110.1111111111111, 110.22222222222221, 110.33333333333333, 110.44444444444444, 110.55555555555556, 110.66666666666666, 110.77777777777777, 110.88888888888889, 111, 111.1111111111111, 111.22222222222221, 111.33333333333333, 111.44444444444444, 111.55555555555556, 111.66666666666666, 111.77777777777777, 111.88888888888889, 112, 112.1111111111111, 112.22222222222221, 112.33333333333333, 112.44444444444444, 112.55555555555556, 112.66666666666666, 112.77777777777777, 112.88888888888889, 113, 113.1111111111111, 113.22222222222221, 113.33333333333333, 113.44444444444444, 113.55555555555556, 113.66666666666666, 113.77777777777777, 113.88888888888889, 114, 114.1111111111111, 114.22222222222221, 114.33333333333333, 114.44444444444444, 114.55555555555556, 114.66666666666666, 114.77777777777777, 114.88888888888889, 115, 115.1111111111111, 115.22222222222221, 115.33333333333333, 115.44444444444444, 115.55555555555556, 115.66666666666666, 115.77777777777777, 115.88888888888889, 116, 116.1111111111111, 116.22222222222221, 116.33333333333333, 116.44444444444444, 116.55555555555556, 116.66666666666666, 116.77777777777777, 116.88888888888889, 117, 117.1111111111111, 117.22222222222221, 117.33333333333333, 117.44444444444444, 117.55555555555556, 117.66666666666666, 117.77777777777777, 117.88888888888889, 118, 118.1111111111111, 118.22222222222221, 118.33333333333333, 118.44444444444444, 118.55555555555556, 118.66666666666666, 118.77777777777777, 118.88888888888889, 119, 119.1111111111111, 119.22222222222221, 119.33333333333333, 119.44444444444444, 119.55555555555556, 119.66666666666666, 119.77777777777777, 119.88888888888889, 120, 120.1111111111111, 120.22222222222221, 120.33333333333333, 120.44444444444444, 120.55555555555556, 120.66666666666666, 120.77777777777777, 120.88888888888889, 121, 121.1111111111111, 121.22222222222221, 121.33333333333333, 121.44444444444444, 121.55555555555556, 121.66666666666666, 121.77777777777777, 121.88888888888889, 122, 122.1111111111111, 122.22222222222221, 122.33333333333333, 122.44444444444444, 122.55555555555556, 122.66666666666666, 122.77777777777777, 122.88888888888889, 123, 123.1111111111111, 123.22222222222221, 123.33333333333333, 123.44444444444444, 123.55555555555556, 123.66666666666666, 123.77777777777777, 123.88888888888889, 124, 124.1111111111111, 124.22222222222221, 124.33333333333333, 124.44444444444444, 124.55555555555556, 124.66666666666666, 124.77777777777777, 124.88888888888889, 125, 125.1111111111111, 125.22222222222221, 125.33333333333333, 125.44444444444444, 125.55555555555556, 125.66666666666666, 125.77777777777777, 125.88888888888889, 126, 126.1111111111111, 126.22222222222221, 126.33333333333333, 126.44444444444444, 126.55555555555556, 126.66666666666666, 126.77777777777777, 126.88888888888889, 127, 127.1111111111111, 127.22222222222221, 127.33333333333333, 127.44444444444444, 127.55555555555556, 127.66666666666666, 127.77777777777777, 127.88888888888889, 128, 128.1111111111111, 128.22222222222223, 128.33333333333331, 128.44444444444446, 128.55555555555554, 128.66666666666666, 128.77777777777777, 128.88888888888889, 129, 129.1111111111111, 129.22222222222223, 129.33333333333331, 129.44444444444446, 129.55555555555554, 129.66666666666666, 129.77777777777777, 129.88888888888889, 130, 130.1111111111111, 130.22222222222223, 130.33333333333331, 130.44444444444446, 130.55555555555554, 130.66666666666666, 130.77777777777777, 130.88888888888889, 131, 131.1111111111111, 131.22222222222223, 131.33333333333331, 131.44444444444446, 131.55555555555554, 131.66666666666666, 131.77777777777777, 131.88888888888889, 132, 132.1111111111111, 132.22222222222223, 132.33333333333331, 132.44444444444446, 132.55555555555554, 132.66666666666666, 132.77777777777777, 132.88888888888889, 133, 133.1111111111111, 133.22222222222223, 133.33333333333331, 133.44444444444446, 133.55555555555554, 133.66666666666666, 133.77777777777777, 133.88888888888889, 134, 134.1111111111111, 134.22222222222223, 134.33333333333331, 134.44444444444446, 134.55555555555554, 134.66666666666666, 134.77777777777777, 134.88888888888889, 135, 135.1111111111111, 135.22222222222223, 135.33333333333331, 135.44444444444446, 135.55555555555554, 135.66666666666666, 135.77777777777777, 135.88888888888889, 136, 136.1111111111111, 136.22222222222223, 136.33333333333331, 136.44444444444446, 136.55555555555554, 136.66666666666666, 136.77777777777777, 136.88888888888889, 137, 137.1111111111111, 137.22222222222223, 137.33333333333331, 137.44444444444446, 137.55555555555554, 137.66666666666666, 137.77777777777777, 137.88888888888889, 138, 138.1111111111111, 138.22222222222223, 138.33333333333331, 138.44444444444446, 138.55555555555554, 138.66666666666666, 138.77777777777777, 138.88888888888889, 139, 139.1111111111111, 139.22222222222223, 139.33333333333331, 139.44444444444446, 139.55555555555554, 139.66666666666666, 139.77777777777777, 139.88888888888889, 140, 140.1111111111111, 140.22222222222223, 140.33333333333331, 140.44444444444446, 140.55555555555554, 140.66666666666666, 140.77777777777777, 140.88888888888889, 141, 141.1111111111111, 141.22222222222223, 141.33333333333331, 141.44444444444446, 141.55555555555554, 141.66666666666666, 141.77777777777777, 141.88888888888889, 142, 142.1111111111111, 142.22222222222223, 142.33333333333331, 142.44444444444446, 142.55555555555554, 142.66666666666666, 142.77777777777777, 142.88888888888889, 143, 143.1111111111111, 143.22222222222223, 143.33333333333331, 143.44444444444446, 143.55555555555554, 143.66666666666666, 143.77777777777777, 143.88888888888889, 144, 144.1111111111111, 144.22222222222223, 144.33333333333331, 144.44444444444446, 144.55555555555554, 144.66666666666666, 144.77777777777777, 144.88888888888889, 145, 145.1111111111111, 145.22222222222223, 145.33333333333331, 145.44444444444446, 145.55555555555554, 145.66666666666666, 145.77777777777777, 145.88888888888889, 146 ], "y": [ 1.7291917665627212, 1.724618981793572, 1.7200835990376275, 1.7155853194850634, 1.7111238482430926, 1.7066988942747612, 1.702310170338889, 1.697957392931128, 1.6936402822261187, 1.689358562020712, 1.6851119596782476, 1.6809002060738505, 1.6767230355407319, 1.67258018581748, 1.6684713979963004, 1.6643964164722092, 1.6603549888931386, 1.6563468661109468, 1.652371802133312, 1.6484295540764904, 1.644519882118918, 1.6406425494556434, 1.6367973222535706, 1.6329839696074961, 1.6292022634969263, 1.625451978743652, 1.6217328929700785, 1.6180447865582732, 1.6143874426097442, 1.6107606469059104, 1.607164187869261, 1.603597856525194, 1.600061446464504, 1.5965547538065301, 1.5930775771629244, 1.5896297176020526, 1.586210978613993, 1.5828211660761407, 1.5794600882193923, 1.5761275555949028, 1.5728233810414085, 1.5695473796530954, 1.566299368748013, 1.5630791678370106, 1.5598865985932024, 1.5567214848219315, 1.55358365243124, 1.5504729294028246, 1.5473891457634763, 1.5443321335569857, 1.5413017268165146, 1.5382977615374183, 1.5353200756505119, 1.5323685089957761, 1.5294429032964825, 1.5265431021337512, 1.5236689509215047, 1.5208202968818385, 1.5179969890207814, 1.5151988781044445, 1.5124258166355569, 1.5096776588303695, 1.506954260595931, 1.5042554795077203, 1.5015811747876386, 1.4989312072823449, 1.4963054394419326, 1.493703735298943, 1.4911259604477074, 1.488571982024011, 1.4860416686850715, 1.4835348905898358, 1.481051519379574, 1.4785914281587793, 1.476154491476361, 1.473740585307125, 1.471349587033539, 1.4689813754277798, 1.466635830634051, 1.464312834151174, 1.4620122688154364, 1.4597340187837096, 1.4574779695168127, 1.4552440077631348, 1.4530320215424968, 1.4508419001302608, 1.4486735340416745, 1.4465268150164503, 1.4444016360035699, 1.4422978911463231, 1.4402154757675605, 1.4381542863551668, 1.4361142205477488, 1.4340951771205352, 1.4320970559714783, 1.4301197581075629, 1.428163185631316, 1.4262272417275121, 1.4243118306500677, 1.4224168577091314, 1.420542229258357, 1.4186878526823623, 1.416853636384367, 1.4150394897740082, 1.4132453232553313, 1.4114710482149517, 1.4097165770103837, 1.4079818229585401, 1.4062667003243883, 1.4045711243097736, 1.4028950110423948, 1.4012382775649381, 1.399600841824364, 1.3979826226613405, 1.396383539799831, 1.39480351383682, 1.3932424662321876, 1.3917003192987185, 1.3901769961922594, 1.3886724209020012, 1.3871865182409011, 1.3857192138362378, 1.3842704341202925, 1.3828401063211608, 1.3814281584536863, 1.380034519310524, 1.3786591184533172, 1.3773018862040032, 1.3759627536362282, 1.374641652566883, 1.3733385155477547, 1.3720532758572839, 1.3707858674924402, 1.3695362251606993, 1.368304284272134, 1.3670899809316066, 1.365893251931065, 1.3647140347419437, 1.3635522675076637, 1.3624078890362303, 1.3612808387929323, 1.360171056893133, 1.3590784840951584, 1.3580030617932792, 1.3569447320107808, 1.3559034373931287, 1.3548791212012186, 1.3538717273047167, 1.3528812001754842, 1.3519074848810921, 1.35095052707841, 1.3500102730072872, 1.3490866694843098, 1.3481796638966386, 1.3472892041959272, 1.346415238892315, 1.3455577170485011, 1.3447165882738878, 1.3438918027188047, 1.3430833110687999, 1.3422910645390078, 1.341515014868586, 1.3407551143152214, 1.340011315649708, 1.3392835721505891, 1.338571837598869, 1.3378760662727915, 1.3371962129426778, 1.3365322328658367, 1.3358840817815314, 1.335251715906012, 1.334635091927607, 1.334034167001878, 1.3334488987468311, 1.3328792452381895, 1.3323251650047225, 1.3317866170236312, 1.3312635607159933, 1.3307559559422595, 1.330263762997806, 1.3297869426085431, 1.3293254559265748, 1.32887926452591, 1.3284483303982273, 1.32803261594869, 1.3276320839918099, 1.3272466977473643, 1.3268764208363582, 1.3265212172770358, 1.3261810514809396, 1.3258558882490177, 1.3255456927677733, 1.325250430605465, 1.3249700677083491, 1.3247045703969633, 1.3244539053624618, 1.3242180396629857, 1.3239969407200807, 1.3237905763151545, 1.323598914585976, 1.3234219240232163, 1.3232595734670287, 1.3231118321036688, 1.3229786694621524, 1.3228600554109564, 1.3227559601547523, 1.3226663542311796, 1.3225912085076597, 1.3225304941782376, 1.3224841827604712, 1.3224522460923456, 1.3224346563292293, 1.322431385940864, 1.322442407708384, 1.3224676947213778, 1.322507220374974, 1.3225609583669662, 1.3226288826949684, 1.322710967653602, 1.3228071878317145, 1.3229175181096309, 1.3230419336564336, 1.3231804099272741, 1.3233329226607147, 1.3234994478760993, 1.3236799618709527, 1.3238744412184107, 1.324082862764678, 1.324305203626512, 1.324541441188737, 1.3247915531017862, 1.3250555172792668, 1.3253333118955564, 1.3256249153834232, 1.3259303064316714, 1.326249463982816, 1.326582367230779, 1.3269289956186126, 1.3272893288362455, 1.3276633468182566, 1.32805102974167, 1.3284523580237753, 1.3288673123199695, 1.3292958735216247, 1.329738022753977, 1.3301937413740386, 1.330663010968532, 1.3311458133518455, 1.3316421305640127, 1.3321519448687107, 1.3326752387512826, 1.333211994916778, 1.3337621962880157, 1.3343258260036674, 1.3349028674163594, 1.3354933040907981, 1.3360971198019116, 1.3367142985330112, 1.3373448244739752, 1.3379886820194473, 1.338645855767058, 1.339316330515662, 1.340000091263592, 1.3406971232069378, 1.3414074117378345, 1.3421309424427748, 1.3428677011009347, 1.3436176736825196, 1.3443808463471256, 1.345157205442117, 1.3459467375010232, 1.3467494292419482, 1.3475652675660004, 1.348394239555735, 1.3492363324736143, 1.350091533760483, 1.35095983103406, 1.351841212087442, 1.352735664887627, 1.35364317757405, 1.3545637384571345, 1.3554973360168554, 1.3564439589013229, 1.357403595925373, 1.3583762360691785, 1.3593618684768702, 1.3603604824551718, 1.361372067472052, 1.3623966131553844, 1.3634341092916265, 1.3644845458245076, 1.3655479128537313, 1.3666242006336904, 1.367713399572197, 1.3688155002292195, 1.3699304933156375, 1.3710583696920071, 1.372199120367337, 1.3733527364978777, 1.3745192093859229, 1.3756985304786233, 1.3768906913668078, 1.3780956837838216, 1.3793134996043728, 1.380544130843391, 1.3817875696548936, 1.3830438083308694, 1.3843128393001682, 1.3855946551274014, 1.386889248511857, 1.3881966122864184, 1.3895167394165007, 1.3908496229989902, 1.3921952562612028, 1.393553632559842, 1.3949247453799754, 1.396308588334016, 1.397705155160714, 1.3991144397241622, 1.4005364360128039, 1.401971138138455, 1.403418540335335, 1.4048786369591055, 1.406351422485917, 1.4078368915114694, 1.409335038750075, 1.4108458590337345, 1.4123693473112204, 1.4139054986471702, 1.415454308221183, 1.4170157713269333, 1.4185898833712842, 1.4201766398734152, 1.4217760364639533, 1.4233880688841165, 1.4250127329848612, 1.4266500247260416, 1.4282999401755727, 1.4299624755086031, 1.4316376270066964, 1.4333253910570176, 1.4350257641515285, 1.436738742886191, 1.4384643239601749, 1.4402025041750774, 1.4419532804341453, 1.4437166497415062, 1.4454926092014075, 1.4472811560174614, 1.4490822874918945, 1.4508960010248086, 1.4527222941134466, 1.4545611643514609, 1.4564126094281946, 1.4582766271279661, 1.460153215329359, 1.462042372004521, 1.4639440952184666, 1.465858383128388, 1.467785233982972, 1.4697246461217182, 1.4716766179742744, 1.4736411480597646, 1.4756182349861309, 1.4776078774494812, 1.4796100742334388, 1.4816248242085015, 1.4836521263314029, 1.4856919796444825, 1.4877443832750596, 1.489809336434813, 1.4918868384191657, 1.4939768886066749, 1.4960794864584315, 1.498194631517455, 1.5003223234081053, 1.5024625618354912, 1.5046153465848877, 1.5067806775211579, 1.5089585545881798, 1.5111489778082754, 1.5133519472816517, 1.5155674631858376, 1.5177955257751332, 1.520036135380058, 1.5222892924068083, 1.5245549973367178, 1.5268332507257196, 1.529124053203819, 1.5314274054745665, 1.533743308314533, 1.5360717625727993, 1.5384127691704352, 1.5407663290999984, 1.543132443425026, 1.545511113279535, 1.5479023398675287, 1.5503061244625036, 1.5527224684069627, 1.5551513731119306, 1.5575928400564794, 1.5600468707872448, 1.5625134669179646, 1.5649926301290045, 1.5674843621668975, 1.5699886648438837, 1.572505540037456, 1.5750349896899065, 1.5775770158078777, 1.5801316204619225, 1.5826988057860572, 1.5852785739773299, 1.5878709272953837, 1.590475868062027, 1.5930933986608096, 1.5957235215365975, 1.598366239195152, 1.6010215542027189, 1.6036894691856118, 1.6063699868298038, 1.6090631098805217, 1.6117688411418438, 1.6144871834763008, 1.6172181398044778, 1.619961713104626, 1.6227179064122677, 1.6254867228198129, 1.6282681654761764, 1.6310622375863955, 1.6338689424112547, 1.6366882832669103, 1.6395202635245196, 1.642364886609873, 1.6452221560030287, 1.6480920752379518, 1.6509746479021494, 1.6538698776363234, 1.656777768134009, 1.6596983231412268, 1.6626315464561339, 1.6655774419286813, 1.668536013460267, 1.6715072650034, 1.6744912005613601, 1.677487824187867, 1.6804971399867459, 1.6835191521115966, 1.6865538647654732, 1.6896012822005517, 1.692661408717815, 1.6957342486667322, 1.6988198064449396, 1.7019180864979306, 1.7050290933187409, 1.708152831447642, 1.711289305471831, 1.714438520025132, 1.717600479787686, 1.7207751894856602, 1.7239626538909434, 1.727162877820855, 1.7303758661378519, 1.7336016237492353, 1.736840155606867, 1.7400914667068803, 1.7433555620893961, 1.7466324468382421, 1.7499221260806748, 1.7532246049870985, 1.756539888770794, 1.7598679826876424, 1.7632088920358568, 1.7665626221557127, 1.769929178429278, 1.7733085662801527, 1.7767007911732025, 1.7801058586143015, 1.7835237741500687, 1.7869545433676157, 1.790398171894289, 1.7938546653974163, 1.7973240295840591, 1.8008062702007583, 1.8043013930332925, 1.807809403906427, 1.8113303086836732, 1.8148641132670476, 1.8184108235968282, 1.8219704456513182, 1.8255429854466128, 1.8291284490363582, 1.8327268425115224, 1.8363381720001655, 1.8399624436672048, 1.8435996637141927, 1.847249838379087, 1.8509129739360275, 1.8545890766951139, 1.858278153002183, 1.8619802092385913, 1.8656952518209948, 1.8694232872011345, 1.8731643218656222, 1.8769183623357237, 1.880685415167152, 1.8844654869498536, 1.8882585843078017, 1.892064713898789, 1.8958838824142237, 1.8997160965789206, 1.9035613631509056, 1.9074196889212092, 1.9112910807136685, 1.9151755453847301, 1.919073089823253, 1.9229837209503136, 1.9269074457190092, 1.9308442711142701, 1.9347942041526647, 1.9387572518822127, 1.9427334213821936, 1.946722719762962, 1.9507251541657629, 1.9547407317625436, 1.9587694597557757, 1.9628113453782674, 1.9668663958929893, 1.9709346185928915, 1.9750160208007275, 1.9791106098688764, 1.9832183931791674, 1.9873393781427073, 1.9914735721997072, 1.9956209828193103, 1.9997816174994196, 2.0039554837665348, 2.0081425891755775, 2.012342941309729, 2.0165565477802607, 2.0207834162263736, 2.025023554315034, 2.029276969740807, 2.0335436702257024, 2.0378236635190103, 2.0421169573971443, 2.0464235596634803, 2.0507434781482057, 2.0550767207081586, 2.0594232952266767, 2.063783209613442, 2.0681564718043286, 2.072543089761253, 2.076943071472024, 2.081356424950191, 2.085783158234898, 2.0902232793907367, 2.094676796507599, 2.099143717700532, 2.103624051109597, 2.1081178048997207, 2.1126249872605585, 2.1171456064063507, 2.121679670575784, 2.126227188031849, 2.1307881670617053, 2.135362615976543, 2.1399505431114463, 2.144551956825258, 2.1491668655004457, 2.1537952775429656, 2.1584372013821325, 2.1630926454704893, 2.16776161828367, 2.172444128320278, 2.177140184101749, 2.181849794172229, 2.18657296709844, 2.1913097114695628, 2.196060035897102, 2.2008239490147665, 2.205601459478346, 2.210392575965583, 2.2151973071760525, 2.2200156618310474, 2.224847648673445, 2.229693276467596, 2.2345525539992037, 2.239425490075204, 2.24431209352365, 2.2492123731935925, 2.254126337954965, 2.259053996698472, 2.2639953583354675, 2.2689504317978484, 2.273919226037936, 2.278901750028369, 2.283898012761985, 2.288908023251717, 2.29393179053048, 2.298969323651059, 2.3040206316860075, 2.309085723727533, 2.31416460888739, 2.3192572962967817, 2.3243637951062426, 2.329484114485541, 2.334618263623575, 2.3397662517282622, 2.3449280880264456, 2.350103781763781, 2.355293342204645, 2.360496778632029, 2.36571410034744, 2.3709453166707966, 2.3761904369403366, 2.3814494705125164, 2.3867224267619123, 2.3920093150811197, 2.397310144880664, 2.402624925588899, 2.407953666651915, 2.4132963775334404, 2.4186530677147493, 2.4240237466945693, 2.4294084239889884, 2.434807109131361, 2.4402198116722156, 2.4456465411791646, 2.4510873072368184, 2.456542119446686, 2.462010987427094, 2.467493920813092, 2.4729909292563663, 2.478502022425156, 2.4840272100041605, 2.4895665016944526, 2.495119907213395, 2.5006874362945584, 2.506269098687627, 2.5118649041583225, 2.517474862488315, 2.5230989834751427, 2.5287372769321266, 2.5343897526882926, 2.540056420588282, 2.545737290492277, 2.5514323722759182, 2.5571416758302212, 2.5628652110615007, 2.5686029878912873, 2.5743550162562534, 2.5801213061081323, 2.5859018674136385, 2.5916967101543915, 2.59750584432684, 2.6033292799421894, 2.6091670270263143, 2.615019095619694, 2.620885495777334, 2.6267662375686887, 2.6326613310775926, 2.63857078640218, 2.644494613654818, 2.65043282296203, 2.6563854244644256, 2.662352428316627, 2.6683338446871976, 2.674329683758572, 2.6803399557269882, 2.6863646708024094, 2.6924038392084624, 2.698457471182364, 2.7045255769748544, 2.7106081668501276, 2.7167052510857626, 2.722816839972658, 2.7289429438149613, 2.7350835729300087, 2.74123873764825, 2.7474084483131875, 2.7535927152813118, 2.7597915489220344, 2.7660049596176224, 2.772232957763135, 2.7784755537663597, 2.784732758047746, 2.7910045810403505, 2.7972910331897616, 2.8035921249540463, 2.809907866803684, 2.8162382692215058, 2.822583342702638, 2.8289430977544274, 2.8353175448963968, 2.841706694660174, 2.848110557589438, 2.8545291442398524, 2.860962465179015, 2.8674105309863913, 2.8738733522532587, 2.880350939582654, 2.8868433035893015, 2.893350454899572, 2.899872404151413, 2.9064091619943007, 2.9129607390891743, 2.91952714610839, 2.9261083937356567, 2.932704492665986, 2.939315453605636, 2.945941287272051, 2.9525820043938173, 2.959237615710599, 2.9659081319730882, 2.9725935639429566, 2.979293922392789, 2.9860092181060462, 2.992739461876996, 2.9994846645106787, 3.0062448368228405, 3.0130199896398864, 3.019810133798831, 3.0266152801472463, 3.03343543954321, 3.0402706228552536, 3.047120840962315, 3.0539861047536876, 3.060866425128969, 3.067761812998014, 3.0746722792808856, 3.081597834907798, 3.088538490819086, 3.0954942579651368, 3.102465147306355, 3.1094511698131093, 3.116452336465686, 3.1234686582542452, 3.130500146178768, 3.1375468112490124, 3.144608664484469, 3.1516857169143164, 3.158777979577365, 3.165885463522025, 3.1730081798062493, 3.180146139497498, 3.187299353672688, 3.1944678334181495, 3.2016515898295808, 3.2088506340120078, 3.216064977079738, 3.223294630156312, 3.230539604374471, 3.2377999108761037, 3.2450755608122077, 3.2523665653428484, 3.2596729356371132, 3.2669946828730696, 3.274331818237728, 3.2816843529269946, 3.2890522981456334, 3.29643566510722, 3.303834465034112, 3.3112487091573892, 3.3186784087168366, 3.3261235749608833, 3.333584219146575, 3.341060352539527, 3.3485519864138955, 3.35605913205232, 3.363581800745903, 3.3711200037941573, 3.378673752504977, 3.386243058194592, 3.393827932187534, 3.4014283858165966, 3.409044430422793, 3.4166760773553317, 3.424323337971562, 3.431986223636947, 3.439664745725027, 3.4473589156173783, 3.4550687447035786, 3.4627942443811692, 3.4705354260556205, 3.478292301140293, 3.48606488105641, 3.493853177233008, 3.501657201106913, 3.5094769641227006, 3.517312477732658, 3.5251637533967566, 3.533030802582611, 3.5409136367654463, 3.548812267428064, 3.556726706060809, 3.5646569641615318, 3.572603053235561, 3.5805649847956613, 3.5885427703620087, 3.596536421462152, 3.6045459496309813, 3.6125713664106947, 3.620612683350764, 3.6286699120079082, 3.636743063946052, 3.644832150736302, 3.65293718395691, 3.6610581751932383, 3.669195136037741, 3.6773480780899157, 3.685517012956281, 3.6937019522503496, 3.7019029075925878, 3.710119890610387, 3.7183529129380384, 3.7266019862166972, 3.734867122094354, 3.743148332225806, 3.7514456282726276, 3.75975902190313, 3.7680885247923492, 3.776434148622005, 3.784795905080469, 3.7931738058627467, 3.801567862670434, 3.8099780872117104, 3.8184044912012767, 3.8268470863603627, 3.835305884416669, 3.843780897104359, 3.852272136164023, 3.8607796133426464, 3.8693033403935866, 3.8778433290765446, 3.8863995911575384, 3.8949721384088756, 3.9035609826091147, 3.912166135543064, 3.9207876090017217, 3.929425414782282, 3.938079564688075, 3.946750070528573, 3.9554369441193393, 3.9641401972820107, 3.972859841844277, 3.981595889639844, 3.9903483525084145, 3.9991172422956587, 4.007902570853202, 4.016704350038566, 4.025522591715192, 4.034357307752366, 4.043208510025227, 4.052076210414737, 4.060960420807639, 4.069861153096452, 4.07877841917943, 4.0877122309605625, 4.096662600349508, 4.105629539261624, 4.114613059617889, 4.123613173344919, 4.1326298923749185, 4.1416632286456805, 4.150713194100531, 4.159779800688329, 4.168863060363455, 4.177962985085736, 4.187079586820491, 4.196212877538443, 4.205362869215756, 4.214529573833957, 4.223713003379957, 4.232913169845995, 4.242130085229645, 4.251363761533774, 4.2606142107665175, 4.269881444941281, 4.279165476076684, 4.28846631619657, 4.297783977329966, 4.30711847151107, 4.316469810779212, 4.325838007178861, 4.335223072759582, 4.344625019576018, 4.354043859687877, 4.363479605159902, 4.372932268061856, 4.3824018604685, 4.391888394459569, 4.40139188211975, 4.410912335538676, 4.420449766810885, 4.430004188035815, 4.439575611317772, 4.449164048765922, 4.458769512494262, 4.468392014621607, 4.478031567271557, 4.4876881825725015, 4.497361872657564, 4.50705264966463, 4.5167605257362755, 4.526485513019789, 4.536227623667125, 4.545986869834907, 4.555763263684396, 4.565556817381464, 4.575367543096596, 4.585195453004847, 4.595040559285851, 4.604902874123768, 4.6147824097073125, 4.624679178229671, 4.634593191888554, 4.644524462886124, 4.654473003428998, 4.664438825728241, 4.674421941999316, 4.684422364462109, 4.694440105340865, 4.704475176864217, 4.714527591265115, 4.724597360780867, 4.734684497653074, 4.744789014127639, 4.754910922454741, 4.765050234888809, 4.7752069636885395, 4.785381121116817, 4.795572719440778, 4.805781770931709, 4.8160082878651025, 4.826252282520595, 4.836513767181965, 4.846792754137117, 4.857089255678064, 4.8674032841009165, 4.8777348517058545, 4.888083970797119, 4.89845065368299, 4.908834912675789, 4.919236760091829, 4.92965620825144, 4.940093269478907, 4.950547956102502, 4.9610202804544326, 4.971510254870837, 4.982017891691782, 4.992543203261218, 5.003086201927, 5.013646900040845, 5.024225309958323, 5.034821444038844, 5.045435314645647, 5.056066934145786, 5.066716314910095, 5.077383469313203, 5.088068409733493, 5.098771148553108, 5.1094916981579255, 5.120230070937531, 5.130986279285236, 5.141760335598028, 5.152552252276591, 5.163362041725248, 5.174189716351991, 5.185035288568431, 5.195898770789819, 5.206780175434998, 5.217679514926402, 5.228596801690061, 5.239532048155541, 5.250485266755996, 5.261456469928078, 5.272445670111997, 5.283452879751442, 5.294478111293627, 5.3055213771892324, 5.316582689892403, 5.327662061860755, 5.338759505555333, 5.34987503344063, 5.361008657984522, 5.372160391658331, 5.383330246936726, 5.394518236297787, 5.40572437222294, 5.416948667196967, 5.428191133707985, 5.439451784247438, 5.450730631310093, 5.462027687393992, 5.473342965000497, 5.484676476634211, 5.4960282348030285, 5.507398252018075, 5.518786540793726, 5.53019311364757 ] }, { "mode": "markers", "name": "Annotation", "showlegend": false, "text": "Vmd=77.02kn", "textposition": "middle right", "type": "scatter", "x": [ 77.02375478204384 ], "y": [ 1.5072452380651935 ] }, { "mode": "markers", "name": "Annotation", "showlegend": false, "text": "Vmp=58.53kn", "textposition": "middle right", "type": "scatter", "x": [ 58.5253975262744 ], "y": [ 1.3224308593093292 ] }, { "mode": "lines", "name": "Annotation", "showlegend": false, "type": "scatter", "x": [ 0, 154.04750956408768 ], "y": [ 0, 3.014490476130387 ] } ], "layout": { "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Glider Polar" }, "xaxis": { "range": [ 0, 150 ], "title": { "text": "Airspeed kn EAS" } }, "yaxis": { "range": [ 2.5, 0 ], "title": { "text": "Sink rate kn EAS" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Aircraft Input data - representative glider data taken from https://booksite.elsevier.com/9780123973085/content/APP-C4-DESIGN_OF_SAILPLANES.pdf page 23\n", "# and from Stemme S10 info at https://en.wikipedia.org/wiki/Stemme_S10\n", "#\n", "# Note that I have reduced the stall speed slightly to show the shape of the drag polar in more detail\n", "CD0 = 0.008\n", "e = 0.95\n", "AR = 28\n", "Vstall = 35 # knots\n", "Vne = 146 # knots\n", "S = 18.7\n", "rho_sl = 1.2255\n", "\n", "fig = go.Figure()\n", "\n", "# Get the induced drag factor from Oswold efficiency\n", "K = 1/np.pi/e/AR\n", "\n", "\n", "# Make a vector of speeds\n", "Vknots = np.linspace(Vstall, Vne, 1000) # In knots\n", "Vms = Vknots * 0.5144444 # In m/s\n", "\n", "for W in [850 * 9.80665, 1200 * 9.80665, 1500 * 9.80665]: # Gross weight\n", "\n", " # Get the CL values for these speeds\n", " CLs = 2*W/rho_sl/S/Vms**2\n", "\n", " # Get the corresponding drags\n", " CDs = CD0 + K * CLs**2\n", "\n", "\n", "\n", " # Determine the sink rates\n", " w_e = np.sqrt(2 * W / rho_sl / S) * CDs / CLs**(3/2) / 0.5144444\n", "\n", " #### Get points for min glide angle\n", " # Get ClMD and associated sink rate for plotting\n", " A = .5 * CD0 * rho_sl * S\n", " B = K * W**2 / rho_sl / 0.5 / S\n", "\n", " # Minimum drag speed\n", " Vmd_ms = (B/A)**(1/4)\n", " Vmd_knots = (B/A)**(1/4) / 0.5144444\n", "\n", " # Associated Cl and Cd\n", " Clmd = np.sqrt(CD0/K)\n", " Cdmd = CD0 + K * Clmd**2\n", "\n", " # Sink rate at minimum drag speed\n", " w_emd = np.sqrt(2 * W / rho_sl / S) * Cdmd / Clmd**(3/2) / 0.5144444\n", "\n", " #### Do the same for the minimum sink rate\n", " # Minimum power speed\n", " Vmp_ms = (B/3/A)**(1/4)\n", " Vmp_knots = (B/3/A)**(1/4) / 0.5144444\n", "\n", " # Associated Cl and Cd\n", " Clmp = np.sqrt(3*CD0/K)\n", " Cdmp = CD0 + K * Clmp**2\n", "\n", " # Sink rate at minimum power speed\n", " w_emp = np.sqrt(2 * W / rho_sl / S) * Cdmp / Clmp**(3/2) / 0.5144444\n", "\n", " # Make a plot\n", " fig.add_trace(go.Scatter(x=Vknots, y=w_e, name=f\"Gross weight = {W/9.80665:1.0f}kg\"))\n", "\n", "\n", "\n", " # Annotate it\n", " fig.add_trace(go.Scatter(x=[Vmd_knots], y=[w_emd], mode=\"markers\", text=f\"Vmd={Vmd_knots:1.2f}kn\", textposition=\"middle right\", name=\"Annotation\"))\n", " fig.add_trace(go.Scatter(x=[Vmp_knots], y=[w_emp], mode=\"markers\", text=f\"Vmp={Vmp_knots:1.2f}kn\", textposition=\"middle right\", name=\"Annotation\"))\n", "\n", " # Draw a line to the minimum drag speed\n", " fig.add_trace(go.Scatter(x=[0, Vmd_knots*2], y=[0, w_emd*2], mode='lines', name=\"Annotation\"))\n", "\n", "\n", "fig.update_layout(\n", " title=\"Glider Polar\",\n", " xaxis_title=\"Airspeed kn EAS\",\n", " yaxis_title=\"Sink rate kn EAS\"\n", ")\n", "\n", "\n", "fig.update_yaxes(range=[2.5, 0])\n", "fig.update_xaxes(range=[0, 150])\n", "\n", "for trace in fig['data']: \n", " if(trace['name'] == \"Annotation\"): trace['showlegend'] = False\n", "\n", "fig.show()\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Powered Descent\n", "\n", "The procedure for powered descent and determination of descent slope and sink rate is the same but with $D=T + W\\sin\\gamma$" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "celltoolbar": "Tags", "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.5" } }, "nbformat": 4, "nbformat_minor": 4 }