{ "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": [ "