├── .gitignore ├── Bell_Christopher ├── VLM.ipynb └── VLM_resources │ ├── General_VLM.png │ ├── General_VLM.xcf │ ├── Single_horseshoe_vortex.png │ ├── Single_horseshoe_vortex.xcf │ ├── VLM_Coords.xlsx │ ├── VLM_Example_Airfoil.txt │ ├── Vortex_Notation.png │ ├── Vortex_Notation.xcf │ ├── control_point.png │ ├── control_point.xcf │ ├── numericalmoocstyle.css │ ├── validation_image.png │ ├── validation_image.xcf │ ├── vector_elements.png │ └── vector_elements.xcf ├── Bornemeier ├── .ipynb_checkpoints │ ├── Final Project-checkpoint.ipynb │ └── dataexportforxflr5-checkpoint.ipynb ├── Book1.csv ├── Final Project.ipynb ├── Styles │ ├── custom.css │ └── numericalmoocstyle.css ├── airfoila.dat ├── b707a.txt ├── b707b.txt ├── b707c.txt ├── b707d.txt ├── b707e.txt ├── dataexportforxflr5.ipynb ├── figures │ ├── a.png │ ├── b.png │ ├── cclalpha1.png │ ├── cropped ppt 707c.png │ ├── d.png │ ├── dash80.jpg │ ├── dash80.png │ ├── dash80rollout.jpg │ ├── dash80rollout.png │ ├── dclalpha.png │ └── e.png └── resources │ ├── JetSet.ttf │ ├── JetSetItalic.ttf │ ├── b707a.txt │ ├── b707b.txt │ ├── b707c.txt │ ├── b707d.txt │ ├── b707e.txt │ └── others │ ├── b707a.dat │ ├── b707b.dat │ ├── b707c.dat │ ├── b707d.dat │ └── b707e.dat ├── GeorgeTeel ├── .ipynb_checkpoints │ └── Orlyonok Ekranoplan-checkpoint.ipynb ├── 10ms │ ├── 00.csv │ ├── 02.csv │ ├── 03.csv │ ├── 04.csv │ ├── 05.csv │ ├── 06.csv │ ├── 07.csv │ ├── 09.csv │ ├── 12.csv │ ├── 17.csv │ ├── CLvsAlpha.csv │ └── Data.csv ├── 2_5ms │ ├── 00.csv │ ├── 02.csv │ ├── 03.csv │ ├── 04.csv │ ├── 05.csv │ ├── 06.csv │ ├── 06.xlsx │ ├── 07.csv │ ├── 09.csv │ ├── 09.xlsx │ ├── 12.csv │ └── 17.csv ├── 3ms │ ├── 00.csv │ ├── 02.csv │ ├── 03.csv │ ├── 04.csv │ ├── 05.csv │ ├── 06.csv │ ├── 07.csv │ ├── 09.csv │ ├── 10.csv │ └── 16.csv ├── 5ms │ ├── 00.csv │ ├── 02.csv │ ├── 03.csv │ ├── 04.csv │ ├── 05.csv │ ├── 06.csv │ ├── 08.csv │ ├── 10.csv │ ├── 15.csv │ └── 21.csv ├── BannerLow.png ├── BannerThin.png ├── Ekranoplan.jpg ├── FittedCurve.png ├── Full10ms │ ├── 00.csv │ ├── 04.csv │ ├── 05.csv │ ├── 06.csv │ ├── 07.csv │ ├── 08.csv │ ├── 09.csv │ └── 10.csv ├── Full20ms │ ├── 0.4.csv │ ├── 00.csv │ ├── 04.csv │ ├── 05.csv │ ├── 06.csv │ ├── 07.csv │ ├── 08.csv │ ├── 09.csv │ └── 10.csv ├── Full5ms │ ├── 00.csv │ ├── 05.csv │ ├── 06.csv │ ├── 07.csv │ ├── 08.csv │ ├── 09.csv │ └── 10.csv ├── Orlyonok Ekranoplan.ipynb ├── Plane.gif ├── SectionalBuildup.png ├── SectionalBuildup2.png ├── SectionalBuildup3.png ├── SectionalBuildup4.png ├── Thumbs.db ├── TitleThin.png ├── Wing.gif ├── XFLR5.png ├── XFLR5Wing.png ├── blender.png ├── body1.png ├── body2.png ├── body3.png └── project.css ├── Ground-Effect-in-Vortex-Panel-Method ├── Ground-Effect-in-Vortex-Panel-Method.ipynb └── resources │ ├── NACA0012_N=100 │ ├── NACA4412_N=100 │ ├── NACA4412_cl.png │ ├── NACA4412_inv_N=100 │ ├── custom.css │ ├── data │ ├── lotus79.jpg │ └── panel.png ├── Project - Michael J Carter ├── .ipynb_checkpoints │ └── Project - Michael J Carter-checkpoint.ipynb ├── Project - Michael J Carter.ipynb ├── resources │ └── naca0012.dat └── styles │ └── custom.css ├── README.md └── cparvini ├── .ipynb_checkpoints └── FlapNotebook-checkpoint.ipynb ├── FlapNotebook.ipynb ├── FowlerFlapPresentation.pdf ├── NACA23012_FlapFoil.csv ├── NACA23012_MainFoil.csv ├── NASAFowler.jpg ├── junkersFlap.gif ├── styles └── custom.css └── theta_20_plots.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .project 7 | .metadata 8 | bin/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .classpath 16 | .settings/ 17 | .loadpath 18 | 19 | # External tool builders 20 | .externalToolBuilders/ 21 | 22 | # Locally stored "Eclipse launch configurations" 23 | *.launch 24 | 25 | # CDT-specific 26 | .cproject 27 | 28 | # PDT-specific 29 | .buildpath 30 | 31 | 32 | ################# 33 | ## Visual Studio 34 | ################# 35 | 36 | ## Ignore Visual Studio temporary files, build results, and 37 | ## files generated by popular Visual Studio add-ons. 38 | 39 | # User-specific files 40 | *.suo 41 | *.user 42 | *.sln.docstates 43 | 44 | # Build results 45 | 46 | [Dd]ebug/ 47 | [Rr]elease/ 48 | x64/ 49 | build/ 50 | [Bb]in/ 51 | [Oo]bj/ 52 | 53 | # MSTest test Results 54 | [Tt]est[Rr]esult*/ 55 | [Bb]uild[Ll]og.* 56 | 57 | *_i.c 58 | *_p.c 59 | *.ilk 60 | *.meta 61 | *.obj 62 | *.pch 63 | *.pdb 64 | *.pgc 65 | *.pgd 66 | *.rsp 67 | *.sbr 68 | *.tlb 69 | *.tli 70 | *.tlh 71 | *.tmp 72 | *.tmp_proj 73 | *.log 74 | *.vspscc 75 | *.vssscc 76 | .builds 77 | *.pidb 78 | *.log 79 | *.scc 80 | 81 | # Visual C++ cache files 82 | ipch/ 83 | *.aps 84 | *.ncb 85 | *.opensdf 86 | *.sdf 87 | *.cachefile 88 | 89 | # Visual Studio profiler 90 | *.psess 91 | *.vsp 92 | *.vspx 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | 101 | # TeamCity is a build add-in 102 | _TeamCity* 103 | 104 | # DotCover is a Code Coverage Tool 105 | *.dotCover 106 | 107 | # NCrunch 108 | *.ncrunch* 109 | .*crunch*.local.xml 110 | 111 | # Installshield output folder 112 | [Ee]xpress/ 113 | 114 | # DocProject is a documentation generator add-in 115 | DocProject/buildhelp/ 116 | DocProject/Help/*.HxT 117 | DocProject/Help/*.HxC 118 | DocProject/Help/*.hhc 119 | DocProject/Help/*.hhk 120 | DocProject/Help/*.hhp 121 | DocProject/Help/Html2 122 | DocProject/Help/html 123 | 124 | # Click-Once directory 125 | publish/ 126 | 127 | # Publish Web Output 128 | *.Publish.xml 129 | *.pubxml 130 | *.publishproj 131 | 132 | # NuGet Packages Directory 133 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line 134 | #packages/ 135 | 136 | # Windows Azure Build Output 137 | csx 138 | *.build.csdef 139 | 140 | # Windows Store app package directory 141 | AppPackages/ 142 | 143 | # Others 144 | sql/ 145 | *.Cache 146 | ClientBin/ 147 | [Ss]tyle[Cc]op.* 148 | ~$* 149 | *~ 150 | *.dbmdl 151 | *.[Pp]ublish.xml 152 | *.pfx 153 | *.publishsettings 154 | 155 | # RIA/Silverlight projects 156 | Generated_Code/ 157 | 158 | # Backup & report files from converting an old project file to a newer 159 | # Visual Studio version. Backup files are not needed, because we have git ;-) 160 | _UpgradeReport_Files/ 161 | Backup*/ 162 | UpgradeLog*.XML 163 | UpgradeLog*.htm 164 | 165 | # SQL Server files 166 | App_Data/*.mdf 167 | App_Data/*.ldf 168 | 169 | ############# 170 | ## Windows detritus 171 | ############# 172 | 173 | # Windows image file caches 174 | Thumbs.db 175 | ehthumbs.db 176 | 177 | # Folder config file 178 | Desktop.ini 179 | 180 | # Recycle Bin used on file shares 181 | $RECYCLE.BIN/ 182 | 183 | # Mac crap 184 | .DS_Store 185 | 186 | 187 | ############# 188 | ## Python 189 | ############# 190 | 191 | *.py[cod] 192 | 193 | # Packages 194 | *.egg 195 | *.egg-info 196 | dist/ 197 | build/ 198 | eggs/ 199 | parts/ 200 | var/ 201 | sdist/ 202 | develop-eggs/ 203 | .installed.cfg 204 | 205 | # Installer logs 206 | pip-log.txt 207 | 208 | # Unit test / coverage reports 209 | .coverage 210 | .tox 211 | 212 | #Translations 213 | *.mo 214 | 215 | #Mr Developer 216 | .mr.developer.cfg 217 | 218 | #checkpoints 219 | .ipynb_checkpoints 220 | -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/General_VLM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/General_VLM.png -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/General_VLM.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/General_VLM.xcf -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/Single_horseshoe_vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/Single_horseshoe_vortex.png -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/Single_horseshoe_vortex.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/Single_horseshoe_vortex.xcf -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/VLM_Coords.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/VLM_Coords.xlsx -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/VLM_Example_Airfoil.txt: -------------------------------------------------------------------------------- 1 | 0 0 0 2 | 1 0.25 -0.25 3 | 2 0.5 -0.5 4 | 3 0.75 -0.75 5 | 4 1 -1 6 | 5 1.25 -1.25 7 | 6 1.5 -1.5 8 | 7 1.75 -1.75 9 | 8 2 -2 10 | 9 2.25 -2.25 11 | 10 2.5 -2.5 12 | 21 2.5 -3.5 13 | 20 2.25 -3.25 14 | 19 2 -3 15 | 18 1.75 -2.75 16 | 17 1.5 -2.5 17 | 16 1.25 -2.25 18 | 15 1 -2 19 | 14 0.75 -1.75 20 | 13 0.5 -1.5 21 | 12 0.25 -1.25 22 | 11 0 -1 23 | 22 0 -0.01 24 | -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/Vortex_Notation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/Vortex_Notation.png -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/Vortex_Notation.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/Vortex_Notation.xcf -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/control_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/control_point.png -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/control_point.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/control_point.xcf -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/numericalmoocstyle.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 126 | 142 | -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/validation_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/validation_image.png -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/validation_image.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/validation_image.xcf -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/vector_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/vector_elements.png -------------------------------------------------------------------------------- /Bell_Christopher/VLM_resources/vector_elements.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bell_Christopher/VLM_resources/vector_elements.xcf -------------------------------------------------------------------------------- /Bornemeier/.ipynb_checkpoints/dataexportforxflr5-checkpoint.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "metadata": { 3 | "name": "", 4 | "signature": "sha256:d8d029696ab34ef5016656cf6baa84178105b3f1c2653c2eae51aaf2c9b6ba35" 5 | }, 6 | "nbformat": 3, 7 | "nbformat_minor": 0, 8 | "worksheets": [ 9 | { 10 | "cells": [ 11 | { 12 | "cell_type": "code", 13 | "collapsed": false, 14 | "input": [ 15 | "import math\n", 16 | "import numpy\n", 17 | "import sympy\n", 18 | "from matplotlib import pyplot\n", 19 | "% matplotlib inline\n", 20 | "import csv" 21 | ], 22 | "language": "python", 23 | "metadata": {}, 24 | "outputs": [], 25 | "prompt_number": 2 26 | }, 27 | { 28 | "cell_type": "code", 29 | "collapsed": false, 30 | "input": [ 31 | "# This cell imports and plots the five airfoil variants of the Boeing 707.\n", 32 | "#####import the first airfoil 707a#####\n", 33 | "file_name = './b707a.txt' \n", 34 | "x,y = numpy.loadtxt(file_name,dtype=float,unpack=True )\n", 35 | "#Rearrange data into format that is expected from Barba's team code\n", 36 | "L = len(x);\n", 37 | "xpart1 = x[0:L/2];\n", 38 | "xpart2 = xpart1[::-1]\n", 39 | "xcont = numpy.linspace(0,L,L)\n", 40 | "xcont[:L/2]=xpart2;\n", 41 | "xcont[L/2:]=x[L/2:]\n", 42 | "x[0:L] = xcont[0:L]\n", 43 | "ypart1 = y[0:L/2];\n", 44 | "ypart2 = ypart1[::-1]\n", 45 | "ycont = numpy.linspace(0,L,L)\n", 46 | "ycont[:L/2]=ypart2;\n", 47 | "ycont[L/2:]=y[L/2:]\n", 48 | "y[0:L] = ycont[0:L]" 49 | ], 50 | "language": "python", 51 | "metadata": {}, 52 | "outputs": [], 53 | "prompt_number": 3 54 | }, 55 | { 56 | "cell_type": "code", 57 | "collapsed": false, 58 | "input": [ 59 | "dataA = numpy.zeros((122,2));\n", 60 | "\n", 61 | "dataA.shape" 62 | ], 63 | "language": "python", 64 | "metadata": {}, 65 | "outputs": [ 66 | { 67 | "metadata": {}, 68 | "output_type": "pyout", 69 | "prompt_number": 29, 70 | "text": [ 71 | "(122L, 2L)" 72 | ] 73 | } 74 | ], 75 | "prompt_number": 29 76 | }, 77 | { 78 | "cell_type": "code", 79 | "collapsed": false, 80 | "input": [ 81 | "dataA[:,0] = x[:];\n", 82 | "dataA[:,0] = y[:];" 83 | ], 84 | "language": "python", 85 | "metadata": {}, 86 | "outputs": [], 87 | "prompt_number": 30 88 | }, 89 | { 90 | "cell_type": "code", 91 | "collapsed": false, 92 | "input": [ 93 | "numpy.savetxt('./dataA.txt',dataA,delimiter =',')" 94 | ], 95 | "language": "python", 96 | "metadata": {}, 97 | "outputs": [], 98 | "prompt_number": 24 99 | }, 100 | { 101 | "cell_type": "code", 102 | "collapsed": false, 103 | "input": [ 104 | "? datawriter" 105 | ], 106 | "language": "python", 107 | "metadata": {}, 108 | "outputs": [], 109 | "prompt_number": 9 110 | }, 111 | { 112 | "cell_type": "code", 113 | "collapsed": false, 114 | "input": [], 115 | "language": "python", 116 | "metadata": {}, 117 | "outputs": [] 118 | } 119 | ], 120 | "metadata": {} 121 | } 122 | ] 123 | } -------------------------------------------------------------------------------- /Bornemeier/Book1.csv: -------------------------------------------------------------------------------- 1 | 1.00000,0.00000 2 | 0.99000,0.00123 3 | 0.98000,0.00245 4 | 0.97000,0.00367 5 | 0.96000,0.00486 6 | 0.94000,0.00720 7 | 0.92000,0.00941 8 | 0.90000,0.01150 9 | 0.88000,0.01330 10 | 0.86000,0.01500 11 | 0.84000,0.01650 12 | 0.82000,0.01790 13 | 0.80000,0.01910 14 | 0.78000,0.02020 15 | 0.76000,0.02120 16 | 0.74000,0.02210 17 | 0.72000,0.02300 18 | 0.70000,0.02400 19 | 0.68000,0.02510 20 | 0.66000,0.02620 21 | 0.64000,0.02740 22 | 0.62000,0.02850 23 | 0.60000,0.02960 24 | 0.58000,0.03070 25 | 0.56000,0.03180 26 | 0.54000,0.03280 27 | 0.52000,0.03400 28 | 0.50000,0.03520 29 | 0.48000,0.03670 30 | 0.46000,0.03810 31 | 0.44000,0.03950 32 | 0.42000,0.04070 33 | 0.40000,0.04160 34 | 0.38000,0.04210 35 | 0.36000,0.04230 36 | 0.34000,0.04250 37 | 0.32000,0.04300 38 | 0.30000,0.04400 39 | 0.28000,0.04570 40 | 0.26000,0.04820 41 | 0.24000,0.05020 42 | 0.22000,0.05070 43 | 0.20000,0.05050 44 | 0.18000,0.05050 45 | 0.16000,0.05050 46 | 0.14000,0.05010 47 | 0.12000,0.04910 48 | 0.10000,0.04770 49 | 0.08000,0.04540 50 | 0.06000,0.04140 51 | 0.05000,0.03880 52 | 0.04000,0.03610 53 | 0.03000,0.03270 54 | 0.02000,0.02720 55 | 0.01200,0.02100 56 | 0.00800,0.01750 57 | 0.00400,0.01400 58 | 0.00200,0.01100 59 | 0.00100,0.00845 60 | 0.00050,0.00646 61 | 0.00000,0.00000 62 | 0.00000,0.00000 63 | 0.00050,-0.00469 64 | 0.00100,-0.00681 65 | 0.00200,-0.00955 66 | 0.00400,-0.01280 67 | 0.00800,-0.01630 68 | 0.01200,-0.01900 69 | 0.02000,-0.02410 70 | 0.03000,-0.02900 71 | 0.04000,-0.03220 72 | 0.05000,-0.03460 73 | 0.06000,-0.03680 74 | 0.08000,-0.04150 75 | 0.10000,-0.04620 76 | 0.12000,-0.05030 77 | 0.14000,-0.05370 78 | 0.16000,-0.05670 79 | 0.18000,-0.05920 80 | 0.20000,-0.06120 81 | 0.22000,-0.06270 82 | 0.24000,-0.06410 83 | 0.26000,-0.06590 84 | 0.28000,-0.06790 85 | 0.30000,-0.06890 86 | 0.32000,-0.06900 87 | 0.34000,-0.06840 88 | 0.36000,-0.06710 89 | 0.38000,-0.06550 90 | 0.40000,-0.06360 91 | 0.42000,-0.06150 92 | 0.44000,-0.05950 93 | 0.46000,-0.05740 94 | 0.48000,-0.05530 95 | 0.50000,-0.05330 96 | 0.52000,-0.05120 97 | 0.54000,-0.04920 98 | 0.56000,-0.04720 99 | 0.58000,-0.04520 100 | 0.60000,-0.04310 101 | 0.62000,-0.04090 102 | 0.64000,-0.03880 103 | 0.66000,-0.03660 104 | 0.68000,-0.03430 105 | 0.70000,-0.03210 106 | 0.72000,-0.02990 107 | 0.74000,-0.02760 108 | 0.76000,-0.02540 109 | 0.78000,-0.02330 110 | 0.80000,-0.02120 111 | 0.82000,-0.01910 112 | 0.84000,-0.01710 113 | 0.86000,-0.01510 114 | 0.88000,-0.01310 115 | 0.90000,-0.01100 116 | 0.92000,-0.00886 117 | 0.94000,-0.00669 118 | 0.96000,-0.00448 119 | 0.97000,-0.00337 120 | 0.98000,-0.00225 121 | 0.99000,-0.00112 122 | 1.00000,0.00000 123 | -------------------------------------------------------------------------------- /Bornemeier/Styles/custom.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 84 | 100 | -------------------------------------------------------------------------------- /Bornemeier/Styles/numericalmoocstyle.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 126 | 142 | -------------------------------------------------------------------------------- /Bornemeier/airfoila.dat: -------------------------------------------------------------------------------- 1 | Airfoil A 2 | 3 | 1.00000,0.00000 4 | 0.99000,0.00123 5 | 0.98000,0.00245 6 | 0.97000,0.00367 7 | 0.96000,0.00486 8 | 0.94000,0.00720 9 | 0.92000,0.00941 10 | 0.90000,0.01150 11 | 0.88000,0.01330 12 | 0.86000,0.01500 13 | 0.84000,0.01650 14 | 0.82000,0.01790 15 | 0.80000,0.01910 16 | 0.78000,0.02020 17 | 0.76000,0.02120 18 | 0.74000,0.02210 19 | 0.72000,0.02300 20 | 0.70000,0.02400 21 | 0.68000,0.02510 22 | 0.66000,0.02620 23 | 0.64000,0.02740 24 | 0.62000,0.02850 25 | 0.60000,0.02960 26 | 0.58000,0.03070 27 | 0.56000,0.03180 28 | 0.54000,0.03280 29 | 0.52000,0.03400 30 | 0.50000,0.03520 31 | 0.48000,0.03670 32 | 0.46000,0.03810 33 | 0.44000,0.03950 34 | 0.42000,0.04070 35 | 0.40000,0.04160 36 | 0.38000,0.04210 37 | 0.36000,0.04230 38 | 0.34000,0.04250 39 | 0.32000,0.04300 40 | 0.30000,0.04400 41 | 0.28000,0.04570 42 | 0.26000,0.04820 43 | 0.24000,0.05020 44 | 0.22000,0.05070 45 | 0.20000,0.05050 46 | 0.18000,0.05050 47 | 0.16000,0.05050 48 | 0.14000,0.05010 49 | 0.12000,0.04910 50 | 0.10000,0.04770 51 | 0.08000,0.04540 52 | 0.06000,0.04140 53 | 0.05000,0.03880 54 | 0.04000,0.03610 55 | 0.03000,0.03270 56 | 0.02000,0.02720 57 | 0.01200,0.02100 58 | 0.00800,0.01750 59 | 0.00400,0.01400 60 | 0.00200,0.01100 61 | 0.00100,0.00845 62 | 0.00050,0.00646 63 | 0.00000,0.00000 64 | 0.00000,0.00000 65 | 0.00050,-0.00469 66 | 0.00100,-0.00681 67 | 0.00200,-0.00955 68 | 0.00400,-0.01280 69 | 0.00800,-0.01630 70 | 0.01200,-0.01900 71 | 0.02000,-0.02410 72 | 0.03000,-0.02900 73 | 0.04000,-0.03220 74 | 0.05000,-0.03460 75 | 0.06000,-0.03680 76 | 0.08000,-0.04150 77 | 0.10000,-0.04620 78 | 0.12000,-0.05030 79 | 0.14000,-0.05370 80 | 0.16000,-0.05670 81 | 0.18000,-0.05920 82 | 0.20000,-0.06120 83 | 0.22000,-0.06270 84 | 0.24000,-0.06410 85 | 0.26000,-0.06590 86 | 0.28000,-0.06790 87 | 0.30000,-0.06890 88 | 0.32000,-0.06900 89 | 0.34000,-0.06840 90 | 0.36000,-0.06710 91 | 0.38000,-0.06550 92 | 0.40000,-0.06360 93 | 0.42000,-0.06150 94 | 0.44000,-0.05950 95 | 0.46000,-0.05740 96 | 0.48000,-0.05530 97 | 0.50000,-0.05330 98 | 0.52000,-0.05120 99 | 0.54000,-0.04920 100 | 0.56000,-0.04720 101 | 0.58000,-0.04520 102 | 0.60000,-0.04310 103 | 0.62000,-0.04090 104 | 0.64000,-0.03880 105 | 0.66000,-0.03660 106 | 0.68000,-0.03430 107 | 0.70000,-0.03210 108 | 0.72000,-0.02990 109 | 0.74000,-0.02760 110 | 0.76000,-0.02540 111 | 0.78000,-0.02330 112 | 0.80000,-0.02120 113 | 0.82000,-0.01910 114 | 0.84000,-0.01710 115 | 0.86000,-0.01510 116 | 0.88000,-0.01310 117 | 0.90000,-0.01100 118 | 0.92000,-0.00886 119 | 0.94000,-0.00669 120 | 0.96000,-0.00448 121 | 0.97000,-0.00337 122 | 0.98000,-0.00225 123 | 0.99000,-0.00112 124 | 1.00000,0.00000 125 | -------------------------------------------------------------------------------- /Bornemeier/b707a.txt: -------------------------------------------------------------------------------- 1 | 0.0000000 0.0000000 2 | 0.0005000 0.0064638 3 | 0.0010000 0.0084488 4 | 0.0020000 0.0110085 5 | 0.0040000 0.0140317 6 | 0.0080000 0.0175265 7 | 0.0120000 0.0209530 8 | 0.0200000 0.0272234 9 | 0.0300000 0.0326742 10 | 0.0400000 0.0360978 11 | 0.0500000 0.0387719 12 | 0.0600000 0.0413505 13 | 0.0800000 0.0454360 14 | 0.1000000 0.0476525 15 | 0.1200000 0.0491397 16 | 0.1400000 0.0500832 17 | 0.1600000 0.0504598 18 | 0.1800000 0.0504723 19 | 0.2000000 0.0505076 20 | 0.2200000 0.0506790 21 | 0.2400000 0.0502123 22 | 0.2600000 0.0482429 23 | 0.2800000 0.0456843 24 | 0.3000000 0.0439763 25 | 0.3200000 0.0430062 26 | 0.3400000 0.0425267 27 | 0.3600000 0.0422943 28 | 0.3800000 0.0420659 29 | 0.4000000 0.0416033 30 | 0.4200000 0.0407363 31 | 0.4400000 0.0395394 32 | 0.4600000 0.0381409 33 | 0.4800000 0.0366673 34 | 0.5000000 0.0352476 35 | 0.5200000 0.0339760 36 | 0.5400000 0.0328278 37 | 0.5600000 0.0317559 38 | 0.5800000 0.0307107 39 | 0.6000000 0.0296456 40 | 0.6200000 0.0285267 41 | 0.6400000 0.0273739 42 | 0.6600000 0.0262196 43 | 0.6800000 0.0250949 44 | 0.7000000 0.0240321 45 | 0.7200000 0.0230489 46 | 0.7400000 0.0221102 47 | 0.7600000 0.0211718 48 | 0.7800000 0.0201870 49 | 0.8000000 0.0191108 50 | 0.8200000 0.0179036 51 | 0.8400000 0.0165478 52 | 0.8600000 0.0150329 53 | 0.8800000 0.0133449 54 | 0.9000000 0.0114733 55 | 0.9200000 0.0094145 56 | 0.9400000 0.0071976 57 | 0.9600000 0.0048649 58 | 0.9700000 0.0036652 59 | 0.9800000 0.0024506 60 | 0.9900000 0.0012275 61 | 1.0000000 0.0000000 62 | 63 | 0.0000000 0.0000000 64 | 0.0005000 -.0046938 65 | 0.0010000 -.0068122 66 | 0.0020000 -.0095513 67 | 0.0040000 -.0128330 68 | 0.0080000 -.0162748 69 | 0.0120000 -.0189872 70 | 0.0200000 -.0241108 71 | 0.0300000 -.0290301 72 | 0.0400000 -.0321990 73 | 0.0500000 -.0345765 74 | 0.0600000 -.0368498 75 | 0.0800000 -.0415383 76 | 0.1000000 -.0461846 77 | 0.1200000 -.0502606 78 | 0.1400000 -.0537201 79 | 0.1600000 -.0566756 80 | 0.1800000 -.0591680 81 | 0.2000000 -.0611521 82 | 0.2200000 -.0626515 83 | 0.2400000 -.0640784 84 | 0.2600000 -.0659499 85 | 0.2800000 -.0679186 86 | 0.3000000 -.0689475 87 | 0.3200000 -.0690421 88 | 0.3400000 -.0683785 89 | 0.3600000 -.0671287 90 | 0.3800000 -.0654627 91 | 0.4000000 -.0635503 92 | 0.4200000 -.0615419 93 | 0.4400000 -.0594897 94 | 0.4600000 -.0574125 95 | 0.4800000 -.0553319 96 | 0.5000000 -.0532648 97 | 0.5200000 -.0512286 98 | 0.5400000 -.0492102 99 | 0.5600000 -.0471911 100 | 0.5800000 -.0451534 101 | 0.6000000 -.0430761 102 | 0.6200000 -.0409454 103 | 0.6400000 -.0387685 104 | 0.6600000 -.0365568 105 | 0.6800000 -.0343263 106 | 0.7000000 -.0320878 107 | 0.7200000 -.0298565 108 | 0.7400000 -.0276400 109 | 0.7600000 -.0254497 110 | 0.7800000 -.0232958 111 | 0.8000000 -.0211866 112 | 0.8200000 -.0191282 113 | 0.8400000 -.0171026 114 | 0.8600000 -.0150853 115 | 0.8800000 -.0130551 116 | 0.9000000 -.0109869 117 | 0.9200000 -.0088630 118 | 0.9400000 -.0066907 119 | 0.9600000 -.0044805 120 | 0.9700000 -.0033653 121 | 0.9800000 -.0022462 122 | 0.9900000 -.0011243 123 | 1.0000000 0.0000000 124 | -------------------------------------------------------------------------------- /Bornemeier/b707b.txt: -------------------------------------------------------------------------------- 1 | 2 | 0.000000 0.000000 3 | 0.004712 0.012211 4 | 0.007052 0.014766 5 | 0.012157 0.018787 6 | 0.024309 0.029274 7 | 0.049040 0.040657 8 | 0.073920 0.045745 9 | 0.098786 0.051431 10 | 0.148638 0.057708 11 | 0.198551 0.061386 12 | 0.248554 0.061266 13 | 0.298540 0.061846 14 | 0.398560 0.061006 15 | 0.498566 0.060766 16 | 0.598899 0.046634 17 | 1.000000 0.000000 18 | 19 | 0.000000 0.000000 20 | 0.005209 -0.008877 21 | 0.007681 -0.011919 22 | 0.012940 -0.014395 23 | 0.025467 -0.019799 24 | 0.050649 -0.027505 25 | 0.075755 -0.032012 26 | 0.100876 -0.037119 27 | 0.151044 -0.044235 28 | 0.201198 -0.050752 29 | 0.251319 -0.055869 30 | 0.301411 -0.059787 31 | 0.401417 -0.060027 32 | 0.501361 -0.057668 33 | 0.601185 -0.050212 34 | 1.000000 0.000000 35 | -------------------------------------------------------------------------------- /Bornemeier/b707c.txt: -------------------------------------------------------------------------------- 1 | 2 | 0.0000 0.0000 3 | 0.0050 0.0149 4 | 0.0083 0.0165 5 | 0.0125 0.0206 6 | 0.0249 0.0256 7 | 0.0500 0.0330 8 | 0.0748 0.0396 9 | 0.1000 0.0446 10 | 0.1500 0.0545 11 | 0.2000 0.0578 12 | 0.2500 0.0628 13 | 0.3000 0.0661 14 | 0.4000 0.0661 15 | 0.5000 0.0611 16 | 0.6000 0.0512 17 | 0.7000 0.0413 18 | 1.0000 0.0000 19 | 20 | 0.0000 0.0000 21 | 0.0050 -0.0066 22 | 0.0083 -0.0074 23 | 0.0125 -0.0083 24 | 0.0249 -0.0091 25 | 0.0500 -0.0099 26 | 0.0748 -0.0124 27 | 0.1000 -0.0132 28 | 0.1500 -0.0165 29 | 0.2000 -0.0215 30 | 0.2500 -0.0248 31 | 0.3000 -0.0297 32 | 0.4000 -0.0297 33 | 0.5000 -0.0289 34 | 0.6000 -0.0264 35 | 0.7000 -0.0198 36 | 1.0000 0.0000 37 | -------------------------------------------------------------------------------- /Bornemeier/b707d.txt: -------------------------------------------------------------------------------- 1 | 2 | 0.0000 0.0030 3 | 0.0050 0.0099 4 | 0.0074 0.0120 5 | 0.0126 0.0147 6 | 0.0250 0.0215 7 | 0.0500 0.0303 8 | 0.0753 0.0385 9 | 0.1000 0.0442 10 | 0.1500 0.0520 11 | 0.2000 0.0570 12 | 0.2500 0.0604 13 | 0.3000 0.0627 14 | 0.4000 0.0644 15 | 0.5000 0.0618 16 | 0.6000 0.0541 17 | 0.7000 0.0427 18 | 0.8000 0.0290 19 | 0.9000 0.0145 20 | 1.0000 0.0000 21 | 22 | 0.0000 0.0030 23 | 0.0050 -0.0046 24 | 0.0074 -0.0055 25 | 0.0126 -0.0065 26 | 0.0250 -0.0074 27 | 0.0500 -0.0090 28 | 0.0753 -0.0105 29 | 0.1000 -0.0118 30 | 0.1500 -0.0149 31 | 0.2000 -0.0177 32 | 0.2500 -0.0206 33 | 0.3000 -0.0227 34 | 0.4000 -0.0253 35 | 0.5000 -0.0250 36 | 0.6000 -0.0208 37 | 0.7000 -0.0156 38 | 0.8000 -0.0105 39 | 0.9000 -0.0051 40 | 1.0000 0.0000 41 | -------------------------------------------------------------------------------- /Bornemeier/b707e.txt: -------------------------------------------------------------------------------- 1 | 2 | 0.0000000 0.0000000 3 | 0.0005000 0.0017762 4 | 0.0010000 0.0026712 5 | 0.0020000 0.0039826 6 | 0.0040000 0.0059651 7 | 0.0080000 0.0093775 8 | 0.0120000 0.0126235 9 | 0.0200000 0.0165502 10 | 0.0300000 0.0201909 11 | 0.0400000 0.0243663 12 | 0.0500000 0.0283931 13 | 0.0600000 0.0316763 14 | 0.0800000 0.0368998 15 | 0.1000000 0.0414470 16 | 0.1200000 0.0451368 17 | 0.1400000 0.0481068 18 | 0.1600000 0.0505979 19 | 0.1800000 0.0527383 20 | 0.2000000 0.0545539 21 | 0.2200000 0.0560793 22 | 0.2400000 0.0573984 23 | 0.2600000 0.0586036 24 | 0.2800000 0.0597119 25 | 0.3000000 0.0606677 26 | 0.3200000 0.0614255 27 | 0.3400000 0.0619894 28 | 0.3600000 0.0623757 29 | 0.3800000 0.0626003 30 | 0.4000000 0.0626795 31 | 0.4200000 0.0626219 32 | 0.4400000 0.0624084 33 | 0.4600000 0.0620130 34 | 0.4800000 0.0614093 35 | 0.5000000 0.0605710 36 | 0.5200000 0.0594744 37 | 0.5400000 0.0581322 38 | 0.5600000 0.0565812 39 | 0.5800000 0.0548590 40 | 0.6000000 0.0530032 41 | 0.6200000 0.0510426 42 | 0.6400000 0.0489701 43 | 0.6600000 0.0467699 44 | 0.6800000 0.0444259 45 | 0.7000000 0.0419222 46 | 0.7200000 0.0392571 47 | 0.7400000 0.0364864 48 | 0.7600000 0.0336812 49 | 0.7800000 0.0309114 50 | 0.8000000 0.0282480 51 | 0.8200000 0.0257350 52 | 0.8400000 0.0233138 53 | 0.8600000 0.0209021 54 | 0.8800000 0.0184162 55 | 0.9000000 0.0157729 56 | 0.9200000 0.0129100 57 | 0.9400000 0.0098530 58 | 0.9600000 0.0066502 59 | 0.9700000 0.0050090 60 | 0.9800000 0.0033495 61 | 0.9900000 0.0016777 62 | 1.0000000 -.0000000 63 | 64 | 0.0000000 0.0000000 65 | 0.0005000 -.0027391 66 | 0.0010000 -.0037318 67 | 0.0020000 -.0051549 68 | 0.0040000 -.0070820 69 | 0.0080000 -.0090008 70 | 0.0120000 -.0095219 71 | 0.0200000 -.0101876 72 | 0.0300000 -.0109695 73 | 0.0400000 -.0114902 74 | 0.0500000 -.0119380 75 | 0.0600000 -.0124717 76 | 0.0800000 -.0136395 77 | 0.1000000 -.0146775 78 | 0.1200000 -.0156764 79 | 0.1400000 -.0167361 80 | 0.1600000 -.0179398 81 | 0.1800000 -.0192399 82 | 0.2000000 -.0204561 83 | 0.2200000 -.0214592 84 | 0.2400000 -.0223472 85 | 0.2600000 -.0232692 86 | 0.2800000 -.0242397 87 | 0.3000000 -.0251365 88 | 0.3200000 -.0258576 89 | 0.3400000 -.0264065 90 | 0.3600000 -.0268131 91 | 0.3800000 -.0271073 92 | 0.4000000 -.0273189 93 | 0.4200000 -.0274668 94 | 0.4400000 -.0275250 95 | 0.4600000 -.0274563 96 | 0.4800000 -.0272236 97 | 0.5000000 -.0267894 98 | 0.5200000 -.0261207 99 | 0.5400000 -.0252416 100 | 0.5600000 -.0242160 101 | 0.5800000 -.0231082 102 | 0.6000000 -.0219837 103 | 0.6200000 -.0208931 104 | 0.6400000 -.0198331 105 | 0.6600000 -.0187862 106 | 0.6800000 -.0177353 107 | 0.7000000 -.0166627 108 | 0.7200000 -.0155566 109 | 0.7400000 -.0144264 110 | 0.7600000 -.0132873 111 | 0.7800000 -.0121541 112 | 0.8000000 -.0110418 113 | 0.8200000 -.0099608 114 | 0.8400000 -.0089020 115 | 0.8600000 -.0078516 116 | 0.8800000 -.0067959 117 | 0.9000000 -.0057209 118 | 0.9200000 -.0046164 119 | 0.9400000 -.0034854 120 | 0.9600000 -.0023346 121 | 0.9700000 -.0017538 122 | 0.9800000 -.0011706 123 | 0.9900000 -.0005857 124 | 1.0000000 0.0000000 125 | -------------------------------------------------------------------------------- /Bornemeier/dataexportforxflr5.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "metadata": { 3 | "name": "", 4 | "signature": "sha256:52576baa4c4fefe0c4446ea647b6975b869a8fc5e8b55c781d4efa484abca016" 5 | }, 6 | "nbformat": 3, 7 | "nbformat_minor": 0, 8 | "worksheets": [ 9 | { 10 | "cells": [ 11 | { 12 | "cell_type": "code", 13 | "collapsed": false, 14 | "input": [ 15 | "import math\n", 16 | "import numpy\n", 17 | "import sympy\n", 18 | "from matplotlib import pyplot\n", 19 | "% matplotlib inline\n", 20 | "import csv" 21 | ], 22 | "language": "python", 23 | "metadata": {}, 24 | "outputs": [], 25 | "prompt_number": 1 26 | }, 27 | { 28 | "cell_type": "code", 29 | "collapsed": false, 30 | "input": [ 31 | "# This cell imports and plots the five airfoil variants of the Boeing 707.\n", 32 | "#####import the first airfoil 707a#####\n", 33 | "file_name = './b707a.txt' \n", 34 | "x,y = numpy.loadtxt(file_name,dtype=float,unpack=True )\n", 35 | "#Rearrange data into format that is expected from Barba's team code\n", 36 | "L = len(x);\n", 37 | "xpart1 = x[0:L/2];\n", 38 | "xpart2 = xpart1[::-1]\n", 39 | "xcont = numpy.linspace(0,L,L)\n", 40 | "xcont[:L/2]=xpart2;\n", 41 | "xcont[L/2:]=x[L/2:]\n", 42 | "x[0:L] = xcont[0:L]\n", 43 | "ypart1 = y[0:L/2];\n", 44 | "ypart2 = ypart1[::-1]\n", 45 | "ycont = numpy.linspace(0,L,L)\n", 46 | "ycont[:L/2]=ypart2;\n", 47 | "ycont[L/2:]=y[L/2:]\n", 48 | "y[0:L] = ycont[0:L]" 49 | ], 50 | "language": "python", 51 | "metadata": {}, 52 | "outputs": [], 53 | "prompt_number": 2 54 | }, 55 | { 56 | "cell_type": "code", 57 | "collapsed": false, 58 | "input": [ 59 | "numpy.savetxt('./xdataA.txt',x,delimiter =',')\n", 60 | "numpy.savetxt('./ydataA.txt',y,delimiter =',')" 61 | ], 62 | "language": "python", 63 | "metadata": {}, 64 | "outputs": [], 65 | "prompt_number": 3 66 | }, 67 | { 68 | "cell_type": "code", 69 | "collapsed": false, 70 | "input": [], 71 | "language": "python", 72 | "metadata": {}, 73 | "outputs": [] 74 | } 75 | ], 76 | "metadata": {} 77 | } 78 | ] 79 | } -------------------------------------------------------------------------------- /Bornemeier/figures/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/a.png -------------------------------------------------------------------------------- /Bornemeier/figures/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/b.png -------------------------------------------------------------------------------- /Bornemeier/figures/cclalpha1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/cclalpha1.png -------------------------------------------------------------------------------- /Bornemeier/figures/cropped ppt 707c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/cropped ppt 707c.png -------------------------------------------------------------------------------- /Bornemeier/figures/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/d.png -------------------------------------------------------------------------------- /Bornemeier/figures/dash80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/dash80.jpg -------------------------------------------------------------------------------- /Bornemeier/figures/dash80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/dash80.png -------------------------------------------------------------------------------- /Bornemeier/figures/dash80rollout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/dash80rollout.jpg -------------------------------------------------------------------------------- /Bornemeier/figures/dash80rollout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/dash80rollout.png -------------------------------------------------------------------------------- /Bornemeier/figures/dclalpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/dclalpha.png -------------------------------------------------------------------------------- /Bornemeier/figures/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/figures/e.png -------------------------------------------------------------------------------- /Bornemeier/resources/JetSet.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/resources/JetSet.ttf -------------------------------------------------------------------------------- /Bornemeier/resources/JetSetItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Bornemeier/resources/JetSetItalic.ttf -------------------------------------------------------------------------------- /Bornemeier/resources/b707a.txt: -------------------------------------------------------------------------------- 1 | 0.0000000 0.0000000 2 | 0.0005000 0.0064638 3 | 0.0010000 0.0084488 4 | 0.0020000 0.0110085 5 | 0.0040000 0.0140317 6 | 0.0080000 0.0175265 7 | 0.0120000 0.0209530 8 | 0.0200000 0.0272234 9 | 0.0300000 0.0326742 10 | 0.0400000 0.0360978 11 | 0.0500000 0.0387719 12 | 0.0600000 0.0413505 13 | 0.0800000 0.0454360 14 | 0.1000000 0.0476525 15 | 0.1200000 0.0491397 16 | 0.1400000 0.0500832 17 | 0.1600000 0.0504598 18 | 0.1800000 0.0504723 19 | 0.2000000 0.0505076 20 | 0.2200000 0.0506790 21 | 0.2400000 0.0502123 22 | 0.2600000 0.0482429 23 | 0.2800000 0.0456843 24 | 0.3000000 0.0439763 25 | 0.3200000 0.0430062 26 | 0.3400000 0.0425267 27 | 0.3600000 0.0422943 28 | 0.3800000 0.0420659 29 | 0.4000000 0.0416033 30 | 0.4200000 0.0407363 31 | 0.4400000 0.0395394 32 | 0.4600000 0.0381409 33 | 0.4800000 0.0366673 34 | 0.5000000 0.0352476 35 | 0.5200000 0.0339760 36 | 0.5400000 0.0328278 37 | 0.5600000 0.0317559 38 | 0.5800000 0.0307107 39 | 0.6000000 0.0296456 40 | 0.6200000 0.0285267 41 | 0.6400000 0.0273739 42 | 0.6600000 0.0262196 43 | 0.6800000 0.0250949 44 | 0.7000000 0.0240321 45 | 0.7200000 0.0230489 46 | 0.7400000 0.0221102 47 | 0.7600000 0.0211718 48 | 0.7800000 0.0201870 49 | 0.8000000 0.0191108 50 | 0.8200000 0.0179036 51 | 0.8400000 0.0165478 52 | 0.8600000 0.0150329 53 | 0.8800000 0.0133449 54 | 0.9000000 0.0114733 55 | 0.9200000 0.0094145 56 | 0.9400000 0.0071976 57 | 0.9600000 0.0048649 58 | 0.9700000 0.0036652 59 | 0.9800000 0.0024506 60 | 0.9900000 0.0012275 61 | 1.0000000 0.0000000 62 | 63 | 0.0000000 0.0000000 64 | 0.0005000 -.0046938 65 | 0.0010000 -.0068122 66 | 0.0020000 -.0095513 67 | 0.0040000 -.0128330 68 | 0.0080000 -.0162748 69 | 0.0120000 -.0189872 70 | 0.0200000 -.0241108 71 | 0.0300000 -.0290301 72 | 0.0400000 -.0321990 73 | 0.0500000 -.0345765 74 | 0.0600000 -.0368498 75 | 0.0800000 -.0415383 76 | 0.1000000 -.0461846 77 | 0.1200000 -.0502606 78 | 0.1400000 -.0537201 79 | 0.1600000 -.0566756 80 | 0.1800000 -.0591680 81 | 0.2000000 -.0611521 82 | 0.2200000 -.0626515 83 | 0.2400000 -.0640784 84 | 0.2600000 -.0659499 85 | 0.2800000 -.0679186 86 | 0.3000000 -.0689475 87 | 0.3200000 -.0690421 88 | 0.3400000 -.0683785 89 | 0.3600000 -.0671287 90 | 0.3800000 -.0654627 91 | 0.4000000 -.0635503 92 | 0.4200000 -.0615419 93 | 0.4400000 -.0594897 94 | 0.4600000 -.0574125 95 | 0.4800000 -.0553319 96 | 0.5000000 -.0532648 97 | 0.5200000 -.0512286 98 | 0.5400000 -.0492102 99 | 0.5600000 -.0471911 100 | 0.5800000 -.0451534 101 | 0.6000000 -.0430761 102 | 0.6200000 -.0409454 103 | 0.6400000 -.0387685 104 | 0.6600000 -.0365568 105 | 0.6800000 -.0343263 106 | 0.7000000 -.0320878 107 | 0.7200000 -.0298565 108 | 0.7400000 -.0276400 109 | 0.7600000 -.0254497 110 | 0.7800000 -.0232958 111 | 0.8000000 -.0211866 112 | 0.8200000 -.0191282 113 | 0.8400000 -.0171026 114 | 0.8600000 -.0150853 115 | 0.8800000 -.0130551 116 | 0.9000000 -.0109869 117 | 0.9200000 -.0088630 118 | 0.9400000 -.0066907 119 | 0.9600000 -.0044805 120 | 0.9700000 -.0033653 121 | 0.9800000 -.0022462 122 | 0.9900000 -.0011243 123 | 1.0000000 0.0000000 124 | -------------------------------------------------------------------------------- /Bornemeier/resources/b707b.txt: -------------------------------------------------------------------------------- 1 | 2 | 0.000000 0.000000 3 | 0.004712 0.012211 4 | 0.007052 0.014766 5 | 0.012157 0.018787 6 | 0.024309 0.029274 7 | 0.049040 0.040657 8 | 0.073920 0.045745 9 | 0.098786 0.051431 10 | 0.148638 0.057708 11 | 0.198551 0.061386 12 | 0.248554 0.061266 13 | 0.298540 0.061846 14 | 0.398560 0.061006 15 | 0.498566 0.060766 16 | 0.598899 0.046634 17 | 1.000000 0.000000 18 | 19 | 0.000000 0.000000 20 | 0.005209 -0.008877 21 | 0.007681 -0.011919 22 | 0.012940 -0.014395 23 | 0.025467 -0.019799 24 | 0.050649 -0.027505 25 | 0.075755 -0.032012 26 | 0.100876 -0.037119 27 | 0.151044 -0.044235 28 | 0.201198 -0.050752 29 | 0.251319 -0.055869 30 | 0.301411 -0.059787 31 | 0.401417 -0.060027 32 | 0.501361 -0.057668 33 | 0.601185 -0.050212 34 | 1.000000 0.000000 35 | -------------------------------------------------------------------------------- /Bornemeier/resources/b707c.txt: -------------------------------------------------------------------------------- 1 | BOEING 707 .40 SPAN AIRFOIL 2 | 17.0 17.0 3 | 4 | 0.0000 0.0000 5 | 0.0050 0.0149 6 | 0.0083 0.0165 7 | 0.0125 0.0206 8 | 0.0249 0.0256 9 | 0.0500 0.0330 10 | 0.0748 0.0396 11 | 0.1000 0.0446 12 | 0.1500 0.0545 13 | 0.2000 0.0578 14 | 0.2500 0.0628 15 | 0.3000 0.0661 16 | 0.4000 0.0661 17 | 0.5000 0.0611 18 | 0.6000 0.0512 19 | 0.7000 0.0413 20 | 1.0000 0.0000 21 | 22 | 0.0000 0.0000 23 | 0.0050 -0.0066 24 | 0.0083 -0.0074 25 | 0.0125 -0.0083 26 | 0.0249 -0.0091 27 | 0.0500 -0.0099 28 | 0.0748 -0.0124 29 | 0.1000 -0.0132 30 | 0.1500 -0.0165 31 | 0.2000 -0.0215 32 | 0.2500 -0.0248 33 | 0.3000 -0.0297 34 | 0.4000 -0.0297 35 | 0.5000 -0.0289 36 | 0.6000 -0.0264 37 | 0.7000 -0.0198 38 | 1.0000 0.0000 39 | -------------------------------------------------------------------------------- /Bornemeier/resources/b707d.txt: -------------------------------------------------------------------------------- 1 | BOEING 707 .54 SPAN AIRFOIL 2 | 19.0 19.0 3 | 4 | 0.0000 0.0030 5 | 0.0050 0.0099 6 | 0.0074 0.0120 7 | 0.0126 0.0147 8 | 0.0250 0.0215 9 | 0.0500 0.0303 10 | 0.0753 0.0385 11 | 0.1000 0.0442 12 | 0.1500 0.0520 13 | 0.2000 0.0570 14 | 0.2500 0.0604 15 | 0.3000 0.0627 16 | 0.4000 0.0644 17 | 0.5000 0.0618 18 | 0.6000 0.0541 19 | 0.7000 0.0427 20 | 0.8000 0.0290 21 | 0.9000 0.0145 22 | 1.0000 0.0000 23 | 24 | 0.0000 0.0030 25 | 0.0050 -0.0046 26 | 0.0074 -0.0055 27 | 0.0126 -0.0065 28 | 0.0250 -0.0074 29 | 0.0500 -0.0090 30 | 0.0753 -0.0105 31 | 0.1000 -0.0118 32 | 0.1500 -0.0149 33 | 0.2000 -0.0177 34 | 0.2500 -0.0206 35 | 0.3000 -0.0227 36 | 0.4000 -0.0253 37 | 0.5000 -0.0250 38 | 0.6000 -0.0208 39 | 0.7000 -0.0156 40 | 0.8000 -0.0105 41 | 0.9000 -0.0051 42 | 1.0000 0.0000 43 | -------------------------------------------------------------------------------- /Bornemeier/resources/b707e.txt: -------------------------------------------------------------------------------- 1 | BOEING 707 .99 SPAN AIRFOIL 2 | 61. 61. 3 | 4 | 0.0000000 0.0000000 5 | 0.0005000 0.0017762 6 | 0.0010000 0.0026712 7 | 0.0020000 0.0039826 8 | 0.0040000 0.0059651 9 | 0.0080000 0.0093775 10 | 0.0120000 0.0126235 11 | 0.0200000 0.0165502 12 | 0.0300000 0.0201909 13 | 0.0400000 0.0243663 14 | 0.0500000 0.0283931 15 | 0.0600000 0.0316763 16 | 0.0800000 0.0368998 17 | 0.1000000 0.0414470 18 | 0.1200000 0.0451368 19 | 0.1400000 0.0481068 20 | 0.1600000 0.0505979 21 | 0.1800000 0.0527383 22 | 0.2000000 0.0545539 23 | 0.2200000 0.0560793 24 | 0.2400000 0.0573984 25 | 0.2600000 0.0586036 26 | 0.2800000 0.0597119 27 | 0.3000000 0.0606677 28 | 0.3200000 0.0614255 29 | 0.3400000 0.0619894 30 | 0.3600000 0.0623757 31 | 0.3800000 0.0626003 32 | 0.4000000 0.0626795 33 | 0.4200000 0.0626219 34 | 0.4400000 0.0624084 35 | 0.4600000 0.0620130 36 | 0.4800000 0.0614093 37 | 0.5000000 0.0605710 38 | 0.5200000 0.0594744 39 | 0.5400000 0.0581322 40 | 0.5600000 0.0565812 41 | 0.5800000 0.0548590 42 | 0.6000000 0.0530032 43 | 0.6200000 0.0510426 44 | 0.6400000 0.0489701 45 | 0.6600000 0.0467699 46 | 0.6800000 0.0444259 47 | 0.7000000 0.0419222 48 | 0.7200000 0.0392571 49 | 0.7400000 0.0364864 50 | 0.7600000 0.0336812 51 | 0.7800000 0.0309114 52 | 0.8000000 0.0282480 53 | 0.8200000 0.0257350 54 | 0.8400000 0.0233138 55 | 0.8600000 0.0209021 56 | 0.8800000 0.0184162 57 | 0.9000000 0.0157729 58 | 0.9200000 0.0129100 59 | 0.9400000 0.0098530 60 | 0.9600000 0.0066502 61 | 0.9700000 0.0050090 62 | 0.9800000 0.0033495 63 | 0.9900000 0.0016777 64 | 1.0000000 -.0000000 65 | 66 | 0.0000000 0.0000000 67 | 0.0005000 -.0027391 68 | 0.0010000 -.0037318 69 | 0.0020000 -.0051549 70 | 0.0040000 -.0070820 71 | 0.0080000 -.0090008 72 | 0.0120000 -.0095219 73 | 0.0200000 -.0101876 74 | 0.0300000 -.0109695 75 | 0.0400000 -.0114902 76 | 0.0500000 -.0119380 77 | 0.0600000 -.0124717 78 | 0.0800000 -.0136395 79 | 0.1000000 -.0146775 80 | 0.1200000 -.0156764 81 | 0.1400000 -.0167361 82 | 0.1600000 -.0179398 83 | 0.1800000 -.0192399 84 | 0.2000000 -.0204561 85 | 0.2200000 -.0214592 86 | 0.2400000 -.0223472 87 | 0.2600000 -.0232692 88 | 0.2800000 -.0242397 89 | 0.3000000 -.0251365 90 | 0.3200000 -.0258576 91 | 0.3400000 -.0264065 92 | 0.3600000 -.0268131 93 | 0.3800000 -.0271073 94 | 0.4000000 -.0273189 95 | 0.4200000 -.0274668 96 | 0.4400000 -.0275250 97 | 0.4600000 -.0274563 98 | 0.4800000 -.0272236 99 | 0.5000000 -.0267894 100 | 0.5200000 -.0261207 101 | 0.5400000 -.0252416 102 | 0.5600000 -.0242160 103 | 0.5800000 -.0231082 104 | 0.6000000 -.0219837 105 | 0.6200000 -.0208931 106 | 0.6400000 -.0198331 107 | 0.6600000 -.0187862 108 | 0.6800000 -.0177353 109 | 0.7000000 -.0166627 110 | 0.7200000 -.0155566 111 | 0.7400000 -.0144264 112 | 0.7600000 -.0132873 113 | 0.7800000 -.0121541 114 | 0.8000000 -.0110418 115 | 0.8200000 -.0099608 116 | 0.8400000 -.0089020 117 | 0.8600000 -.0078516 118 | 0.8800000 -.0067959 119 | 0.9000000 -.0057209 120 | 0.9200000 -.0046164 121 | 0.9400000 -.0034854 122 | 0.9600000 -.0023346 123 | 0.9700000 -.0017538 124 | 0.9800000 -.0011706 125 | 0.9900000 -.0005857 126 | 1.0000000 0.0000000 127 | -------------------------------------------------------------------------------- /Bornemeier/resources/others/b707a.dat: -------------------------------------------------------------------------------- 1 | 0.0000000 0.0000000 2 | 0.0005000 0.0064638 3 | 0.0010000 0.0084488 4 | 0.0020000 0.0110085 5 | 0.0040000 0.0140317 6 | 0.0080000 0.0175265 7 | 0.0120000 0.0209530 8 | 0.0200000 0.0272234 9 | 0.0300000 0.0326742 10 | 0.0400000 0.0360978 11 | 0.0500000 0.0387719 12 | 0.0600000 0.0413505 13 | 0.0800000 0.0454360 14 | 0.1000000 0.0476525 15 | 0.1200000 0.0491397 16 | 0.1400000 0.0500832 17 | 0.1600000 0.0504598 18 | 0.1800000 0.0504723 19 | 0.2000000 0.0505076 20 | 0.2200000 0.0506790 21 | 0.2400000 0.0502123 22 | 0.2600000 0.0482429 23 | 0.2800000 0.0456843 24 | 0.3000000 0.0439763 25 | 0.3200000 0.0430062 26 | 0.3400000 0.0425267 27 | 0.3600000 0.0422943 28 | 0.3800000 0.0420659 29 | 0.4000000 0.0416033 30 | 0.4200000 0.0407363 31 | 0.4400000 0.0395394 32 | 0.4600000 0.0381409 33 | 0.4800000 0.0366673 34 | 0.5000000 0.0352476 35 | 0.5200000 0.0339760 36 | 0.5400000 0.0328278 37 | 0.5600000 0.0317559 38 | 0.5800000 0.0307107 39 | 0.6000000 0.0296456 40 | 0.6200000 0.0285267 41 | 0.6400000 0.0273739 42 | 0.6600000 0.0262196 43 | 0.6800000 0.0250949 44 | 0.7000000 0.0240321 45 | 0.7200000 0.0230489 46 | 0.7400000 0.0221102 47 | 0.7600000 0.0211718 48 | 0.7800000 0.0201870 49 | 0.8000000 0.0191108 50 | 0.8200000 0.0179036 51 | 0.8400000 0.0165478 52 | 0.8600000 0.0150329 53 | 0.8800000 0.0133449 54 | 0.9000000 0.0114733 55 | 0.9200000 0.0094145 56 | 0.9400000 0.0071976 57 | 0.9600000 0.0048649 58 | 0.9700000 0.0036652 59 | 0.9800000 0.0024506 60 | 0.9900000 0.0012275 61 | 1.0000000 0.0000000 62 | 63 | 0.0000000 0.0000000 64 | 0.0005000 -.0046938 65 | 0.0010000 -.0068122 66 | 0.0020000 -.0095513 67 | 0.0040000 -.0128330 68 | 0.0080000 -.0162748 69 | 0.0120000 -.0189872 70 | 0.0200000 -.0241108 71 | 0.0300000 -.0290301 72 | 0.0400000 -.0321990 73 | 0.0500000 -.0345765 74 | 0.0600000 -.0368498 75 | 0.0800000 -.0415383 76 | 0.1000000 -.0461846 77 | 0.1200000 -.0502606 78 | 0.1400000 -.0537201 79 | 0.1600000 -.0566756 80 | 0.1800000 -.0591680 81 | 0.2000000 -.0611521 82 | 0.2200000 -.0626515 83 | 0.2400000 -.0640784 84 | 0.2600000 -.0659499 85 | 0.2800000 -.0679186 86 | 0.3000000 -.0689475 87 | 0.3200000 -.0690421 88 | 0.3400000 -.0683785 89 | 0.3600000 -.0671287 90 | 0.3800000 -.0654627 91 | 0.4000000 -.0635503 92 | 0.4200000 -.0615419 93 | 0.4400000 -.0594897 94 | 0.4600000 -.0574125 95 | 0.4800000 -.0553319 96 | 0.5000000 -.0532648 97 | 0.5200000 -.0512286 98 | 0.5400000 -.0492102 99 | 0.5600000 -.0471911 100 | 0.5800000 -.0451534 101 | 0.6000000 -.0430761 102 | 0.6200000 -.0409454 103 | 0.6400000 -.0387685 104 | 0.6600000 -.0365568 105 | 0.6800000 -.0343263 106 | 0.7000000 -.0320878 107 | 0.7200000 -.0298565 108 | 0.7400000 -.0276400 109 | 0.7600000 -.0254497 110 | 0.7800000 -.0232958 111 | 0.8000000 -.0211866 112 | 0.8200000 -.0191282 113 | 0.8400000 -.0171026 114 | 0.8600000 -.0150853 115 | 0.8800000 -.0130551 116 | 0.9000000 -.0109869 117 | 0.9200000 -.0088630 118 | 0.9400000 -.0066907 119 | 0.9600000 -.0044805 120 | 0.9700000 -.0033653 121 | 0.9800000 -.0022462 122 | 0.9900000 -.0011243 123 | 1.0000000 0.0000000 124 | -------------------------------------------------------------------------------- /Bornemeier/resources/others/b707b.dat: -------------------------------------------------------------------------------- 1 | BOEING 707 .19 SPAN AIRFOIL 2 | 16.0 16.0 3 | 4 | 0.000000 0.000000 5 | 0.004712 0.012211 6 | 0.007052 0.014766 7 | 0.012157 0.018787 8 | 0.024309 0.029274 9 | 0.049040 0.040657 10 | 0.073920 0.045745 11 | 0.098786 0.051431 12 | 0.148638 0.057708 13 | 0.198551 0.061386 14 | 0.248554 0.061266 15 | 0.298540 0.061846 16 | 0.398560 0.061006 17 | 0.498566 0.060766 18 | 0.598899 0.046634 19 | 1.000000 0.000000 20 | 21 | 0.000000 0.000000 22 | 0.005209 -0.008877 23 | 0.007681 -0.011919 24 | 0.012940 -0.014395 25 | 0.025467 -0.019799 26 | 0.050649 -0.027505 27 | 0.075755 -0.032012 28 | 0.100876 -0.037119 29 | 0.151044 -0.044235 30 | 0.201198 -0.050752 31 | 0.251319 -0.055869 32 | 0.301411 -0.059787 33 | 0.401417 -0.060027 34 | 0.501361 -0.057668 35 | 0.601185 -0.050212 36 | 1.000000 0.000000 37 | -------------------------------------------------------------------------------- /Bornemeier/resources/others/b707c.dat: -------------------------------------------------------------------------------- 1 | BOEING 707 .40 SPAN AIRFOIL 2 | 17.0 17.0 3 | 4 | 0.0000 0.0000 5 | 0.0050 0.0149 6 | 0.0083 0.0165 7 | 0.0125 0.0206 8 | 0.0249 0.0256 9 | 0.0500 0.0330 10 | 0.0748 0.0396 11 | 0.1000 0.0446 12 | 0.1500 0.0545 13 | 0.2000 0.0578 14 | 0.2500 0.0628 15 | 0.3000 0.0661 16 | 0.4000 0.0661 17 | 0.5000 0.0611 18 | 0.6000 0.0512 19 | 0.7000 0.0413 20 | 1.0000 0.0000 21 | 22 | 0.0000 0.0000 23 | 0.0050 -0.0066 24 | 0.0083 -0.0074 25 | 0.0125 -0.0083 26 | 0.0249 -0.0091 27 | 0.0500 -0.0099 28 | 0.0748 -0.0124 29 | 0.1000 -0.0132 30 | 0.1500 -0.0165 31 | 0.2000 -0.0215 32 | 0.2500 -0.0248 33 | 0.3000 -0.0297 34 | 0.4000 -0.0297 35 | 0.5000 -0.0289 36 | 0.6000 -0.0264 37 | 0.7000 -0.0198 38 | 1.0000 0.0000 39 | -------------------------------------------------------------------------------- /Bornemeier/resources/others/b707d.dat: -------------------------------------------------------------------------------- 1 | BOEING 707 .54 SPAN AIRFOIL 2 | 19.0 19.0 3 | 4 | 0.0000 0.0030 5 | 0.0050 0.0099 6 | 0.0074 0.0120 7 | 0.0126 0.0147 8 | 0.0250 0.0215 9 | 0.0500 0.0303 10 | 0.0753 0.0385 11 | 0.1000 0.0442 12 | 0.1500 0.0520 13 | 0.2000 0.0570 14 | 0.2500 0.0604 15 | 0.3000 0.0627 16 | 0.4000 0.0644 17 | 0.5000 0.0618 18 | 0.6000 0.0541 19 | 0.7000 0.0427 20 | 0.8000 0.0290 21 | 0.9000 0.0145 22 | 1.0000 0.0000 23 | 24 | 0.0000 0.0030 25 | 0.0050 -0.0046 26 | 0.0074 -0.0055 27 | 0.0126 -0.0065 28 | 0.0250 -0.0074 29 | 0.0500 -0.0090 30 | 0.0753 -0.0105 31 | 0.1000 -0.0118 32 | 0.1500 -0.0149 33 | 0.2000 -0.0177 34 | 0.2500 -0.0206 35 | 0.3000 -0.0227 36 | 0.4000 -0.0253 37 | 0.5000 -0.0250 38 | 0.6000 -0.0208 39 | 0.7000 -0.0156 40 | 0.8000 -0.0105 41 | 0.9000 -0.0051 42 | 1.0000 0.0000 43 | -------------------------------------------------------------------------------- /Bornemeier/resources/others/b707e.dat: -------------------------------------------------------------------------------- 1 | BOEING 707 .99 SPAN AIRFOIL 2 | 61. 61. 3 | 4 | 0.0000000 0.0000000 5 | 0.0005000 0.0017762 6 | 0.0010000 0.0026712 7 | 0.0020000 0.0039826 8 | 0.0040000 0.0059651 9 | 0.0080000 0.0093775 10 | 0.0120000 0.0126235 11 | 0.0200000 0.0165502 12 | 0.0300000 0.0201909 13 | 0.0400000 0.0243663 14 | 0.0500000 0.0283931 15 | 0.0600000 0.0316763 16 | 0.0800000 0.0368998 17 | 0.1000000 0.0414470 18 | 0.1200000 0.0451368 19 | 0.1400000 0.0481068 20 | 0.1600000 0.0505979 21 | 0.1800000 0.0527383 22 | 0.2000000 0.0545539 23 | 0.2200000 0.0560793 24 | 0.2400000 0.0573984 25 | 0.2600000 0.0586036 26 | 0.2800000 0.0597119 27 | 0.3000000 0.0606677 28 | 0.3200000 0.0614255 29 | 0.3400000 0.0619894 30 | 0.3600000 0.0623757 31 | 0.3800000 0.0626003 32 | 0.4000000 0.0626795 33 | 0.4200000 0.0626219 34 | 0.4400000 0.0624084 35 | 0.4600000 0.0620130 36 | 0.4800000 0.0614093 37 | 0.5000000 0.0605710 38 | 0.5200000 0.0594744 39 | 0.5400000 0.0581322 40 | 0.5600000 0.0565812 41 | 0.5800000 0.0548590 42 | 0.6000000 0.0530032 43 | 0.6200000 0.0510426 44 | 0.6400000 0.0489701 45 | 0.6600000 0.0467699 46 | 0.6800000 0.0444259 47 | 0.7000000 0.0419222 48 | 0.7200000 0.0392571 49 | 0.7400000 0.0364864 50 | 0.7600000 0.0336812 51 | 0.7800000 0.0309114 52 | 0.8000000 0.0282480 53 | 0.8200000 0.0257350 54 | 0.8400000 0.0233138 55 | 0.8600000 0.0209021 56 | 0.8800000 0.0184162 57 | 0.9000000 0.0157729 58 | 0.9200000 0.0129100 59 | 0.9400000 0.0098530 60 | 0.9600000 0.0066502 61 | 0.9700000 0.0050090 62 | 0.9800000 0.0033495 63 | 0.9900000 0.0016777 64 | 1.0000000 -.0000000 65 | 66 | 0.0000000 0.0000000 67 | 0.0005000 -.0027391 68 | 0.0010000 -.0037318 69 | 0.0020000 -.0051549 70 | 0.0040000 -.0070820 71 | 0.0080000 -.0090008 72 | 0.0120000 -.0095219 73 | 0.0200000 -.0101876 74 | 0.0300000 -.0109695 75 | 0.0400000 -.0114902 76 | 0.0500000 -.0119380 77 | 0.0600000 -.0124717 78 | 0.0800000 -.0136395 79 | 0.1000000 -.0146775 80 | 0.1200000 -.0156764 81 | 0.1400000 -.0167361 82 | 0.1600000 -.0179398 83 | 0.1800000 -.0192399 84 | 0.2000000 -.0204561 85 | 0.2200000 -.0214592 86 | 0.2400000 -.0223472 87 | 0.2600000 -.0232692 88 | 0.2800000 -.0242397 89 | 0.3000000 -.0251365 90 | 0.3200000 -.0258576 91 | 0.3400000 -.0264065 92 | 0.3600000 -.0268131 93 | 0.3800000 -.0271073 94 | 0.4000000 -.0273189 95 | 0.4200000 -.0274668 96 | 0.4400000 -.0275250 97 | 0.4600000 -.0274563 98 | 0.4800000 -.0272236 99 | 0.5000000 -.0267894 100 | 0.5200000 -.0261207 101 | 0.5400000 -.0252416 102 | 0.5600000 -.0242160 103 | 0.5800000 -.0231082 104 | 0.6000000 -.0219837 105 | 0.6200000 -.0208931 106 | 0.6400000 -.0198331 107 | 0.6600000 -.0187862 108 | 0.6800000 -.0177353 109 | 0.7000000 -.0166627 110 | 0.7200000 -.0155566 111 | 0.7400000 -.0144264 112 | 0.7600000 -.0132873 113 | 0.7800000 -.0121541 114 | 0.8000000 -.0110418 115 | 0.8200000 -.0099608 116 | 0.8400000 -.0089020 117 | 0.8600000 -.0078516 118 | 0.8800000 -.0067959 119 | 0.9000000 -.0057209 120 | 0.9200000 -.0046164 121 | 0.9400000 -.0034854 122 | 0.9600000 -.0023346 123 | 0.9700000 -.0017538 124 | 0.9800000 -.0011706 125 | 0.9900000 -.0005857 126 | 1.0000000 0.0000000 127 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/00.csv: -------------------------------------------------------------------------------- 1 | 1,0.3727362 2 | 2,0.4293426 3 | 3,0.4854044 4 | 4,0.5408355 5 | 5,0.5955512 6 | 6,0.6494687 7 | 7,0.7025068 8 | 8,0.7545869 9 | 9,0.8056322 10 | 10,0.8555689 11 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/02.csv: -------------------------------------------------------------------------------- 1 | 0,0.6603183 2 | 1,0.801625 3 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/03.csv: -------------------------------------------------------------------------------- 1 | 0,0.5342257 2 | 1,0.6451035 3 | 2,0.7549188 4 | 3,0.8635383 5 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/04.csv: -------------------------------------------------------------------------------- 1 | 0,0.4716768 2 | 1,0.5671367 3 | 2,0.6617532 4 | 3,0.7554089 5 | 4,0.8479885 6 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/05.csv: -------------------------------------------------------------------------------- 1 | 0,0.4344953 2 | 1,0.5206747 3 | 2,0.6061286 4 | 3,0.6907488 5 | 4,0.774429 6 | 5,0.8570652 7 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/06.csv: -------------------------------------------------------------------------------- 1 | 0,0.4100331 2 | 1,0.4900602 3 | 2,0.5694336 4 | 3,0.6480511 5 | 4,0.7258119 6 | 5,0.8026178 7 | 6,0.8783724 8 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/07.csv: -------------------------------------------------------------------------------- 1 | 0,0.3928423 2 | 1,0.4685297 3 | 2,0.5436108 4 | 3,0.6179872 5 | 4,0.6915623 6 | 5,0.7642413 7 | 6,0.8359317 8 | 7,0.9065432 9 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/09.csv: -------------------------------------------------------------------------------- 1 | 1,0.4405863 2 | 2,0.5100937 3 | 3,0.5789581 4 | 4,0.6470876 5 | 5,0.7143919 6 | 6,0.7807829 7 | 7,0.8461745 8 | 8,0.9104831 9 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/12.csv: -------------------------------------------------------------------------------- 1 | 1,0.4173695 2 | 2,0.48228 3 | 3,0.5465929 4 | 4,0.6102198 5 | 5,0.6730737 6 | 6,0.7350697 7 | 7,0.7961246 8 | 8,0.8561578 9 | 9,0.915091 10 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/17.csv: -------------------------------------------------------------------------------- 1 | 1,0.3986011 2 | 2,0.4598737 3 | 3,0.5205797 4 | 4,0.5806326 5 | 5,0.6399476 6 | 6,0.6984414 7 | 7,0.7560329 8 | 8,0.8126431 9 | 9,0.8681952 10 | 10,0.9226151 11 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/CLvsAlpha.csv: -------------------------------------------------------------------------------- 1 | Alpha,T1-10.0 m/s-VLM1, , Alpha,T1-10.0 m/s-VLM1-G0.20, , Alpha,T1-10.0 m/s-VLM1-G0.30, , Alpha,T1-10.0 m/s-VLM1-G0.40, , Alpha,T1-10.0 m/s-VLM1-G0.50, , Alpha,T1-10.0 m/s-VLM1-G0.60, , Alpha,T1-10.0 m/s-VLM1-G0.70, , Alpha,T1-10.0 m/s-VLM1-G0.90, , Alpha,T1-10.0 m/s-VLM1-G1.20, , Alpha,T1-10.0 m/s-VLM1-G1.70, , 2 | 1, 0.3727362, , 0, 0.6603183, , 0, 0.5342257, , 0, 0.4716768, , 0, 0.4344953, , 0, 0.4100331, , 0, 0.3928423, , 1, 0.4405863, , 1, 0.4173695, , 1, 0.3986011, , 3 | 2, 0.4293426, , 1, 0.801625, , 1, 0.6451035, , 1, 0.5671367, , 1, 0.5206747, , 1, 0.4900602, , 1, 0.4685297, , 2, 0.5100937, , 2, 0.48228, , 2, 0.4598737, , 4 | 3, 0.4854044, , , , , 2, 0.7549188, , 2, 0.6617532, , 2, 0.6061286, , 2, 0.5694336, , 2, 0.5436108, , 3, 0.5789581, , 3, 0.5465929, , 3, 0.5205797, , 5 | 4, 0.5408355, , , , , 3, 0.8635383, , 3, 0.7554089, , 3, 0.6907488, , 3, 0.6480511, , 3, 0.6179872, , 4, 0.6470876, , 4, 0.6102198, , 4, 0.5806326, , 6 | 5, 0.5955512, , , , , , , , 4, 0.8479885, , 4, 0.774429, , 4, 0.7258119, , 4, 0.6915623, , 5, 0.7143919, , 5, 0.6730737, , 5, 0.6399476, , 7 | 6, 0.6494687, , , , , , , , , , , 5, 0.8570652, , 5, 0.8026178, , 5, 0.7642413, , 6, 0.7807829, , 6, 0.7350697, , 6, 0.6984414, , 8 | 7, 0.7025068, , , , , , , , , , , , , , 6, 0.8783724, , 6, 0.8359317, , 7, 0.8461745, , 7, 0.7961246, , 7, 0.7560329, , 9 | 8, 0.7545869, , , , , , , , , , , , , , , , , 7, 0.9065432, , 8, 0.9104831, , 8, 0.8561578, , 8, 0.8126431, , 10 | 9, 0.8056322, , , , , , , , , , , , , , , , , , , , , , , 9, 0.915091, , 9, 0.8681952, , 11 | 10, 0.8555689, , , , , , , , , , , , , , , , , , , , , , , , , , 10, 0.9226151, , 12 | 13 | -------------------------------------------------------------------------------- /GeorgeTeel/10ms/Data.csv: -------------------------------------------------------------------------------- 1 | Alpha,T1-10.0 m/s-VLM1, , Alpha,T1-10.0 m/s-VLM1-G0.20, , Alpha,T1-10.0 m/s-VLM1-G0.30, , Alpha,T1-10.0 m/s-VLM1-G0.40, , Alpha,T1-10.0 m/s-VLM1-G0.50, , Alpha,T1-10.0 m/s-VLM1-G0.60, , Alpha,T1-10.0 m/s-VLM1-G0.70, , Alpha,T1-10.0 m/s-VLM1-G0.90, , Alpha,T1-10.0 m/s-VLM1-G1.20, , Alpha,T1-10.0 m/s-VLM1-G1.70, , 2 | 1, 0.3727362, , 0, 0.6603183, , 0, 0.5342257, , 0, 0.4716768, , 0, 0.4344953, , 0, 0.4100331, , 0, 0.3928423, , 1, 0.4405863, , 1, 0.4173695, , 1, 0.3986011, , 3 | 2, 0.4293426, , 1, 0.801625, , 1, 0.6451035, , 1, 0.5671367, , 1, 0.5206747, , 1, 0.4900602, , 1, 0.4685297, , 2, 0.5100937, , 2, 0.48228, , 2, 0.4598737, , 4 | 3, 0.4854044, , , , , 2, 0.7549188, , 2, 0.6617532, , 2, 0.6061286, , 2, 0.5694336, , 2, 0.5436108, , 3, 0.5789581, , 3, 0.5465929, , 3, 0.5205797, , 5 | 4, 0.5408355, , , , , 3, 0.8635383, , 3, 0.7554089, , 3, 0.6907488, , 3, 0.6480511, , 3, 0.6179872, , 4, 0.6470876, , 4, 0.6102198, , 4, 0.5806326, , 6 | 5, 0.5955512, , , , , , , , 4, 0.8479885, , 4, 0.774429, , 4, 0.7258119, , 4, 0.6915623, , 5, 0.7143919, , 5, 0.6730737, , 5, 0.6399476, , 7 | 6, 0.6494687, , , , , , , , , , , 5, 0.8570652, , 5, 0.8026178, , 5, 0.7642413, , 6, 0.7807829, , 6, 0.7350697, , 6, 0.6984414, , 8 | 7, 0.7025068, , , , , , , , , , , , , , 6, 0.8783724, , 6, 0.8359317, , 7, 0.8461745, , 7, 0.7961246, , 7, 0.7560329, , 9 | 8, 0.7545869, , , , , , , , , , , , , , , , , 7, 0.9065432, , 8, 0.9104831, , 8, 0.8561578, , 8, 0.8126431, , 10 | 9, 0.8056322, , , , , , , , , , , , , , , , , , , , , , , 9, 0.915091, , 9, 0.8681952, , 11 | 10, 0.8555689, , , , , , , , , , , , , , , , , , , , , , , , , , 10, 0.9226151, , 12 | 13 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/00.csv: -------------------------------------------------------------------------------- 1 | 1,0.396284 2 | 2,0.4571166 3 | 3,0.5173858 4 | 4,0.5770055 5 | 5,0.6358909 6 | 6,0.6939589 7 | 7,0.7511286 8 | 8,0.8073211 9 | 9,0.8624598 10 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/02.csv: -------------------------------------------------------------------------------- 1 | 0,0.6603183 2 | 1,0.801625 3 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/03.csv: -------------------------------------------------------------------------------- 1 | 0,0.5342257 2 | 1,0.6451035 3 | 2,0.7549188 4 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/04.csv: -------------------------------------------------------------------------------- 1 | 0,0.4716768 2 | 1,0.5671367 3 | 2,0.6617532 4 | 3,0.7554089 5 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/05.csv: -------------------------------------------------------------------------------- 1 | 0,0.4344953 2 | 1,0.5206747 3 | 2,0.6061286 4 | 3,0.6907488 5 | 4,0.774429 6 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/06.csv: -------------------------------------------------------------------------------- 1 | 0,0.4100331 2 | 1,0.4900602 3 | 2,0.5694336 4 | 3,0.6480511 5 | 4,0.7258119 6 | 5,0.8026178 7 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/06.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/2_5ms/06.xlsx -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/07.csv: -------------------------------------------------------------------------------- 1 | 0,0.3928423 2 | 1,0.4685297 3 | 2,0.5436108 4 | 3,0.6179872 5 | 4,0.6915623 6 | 5,0.7642413 7 | 6,0.8359317 8 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/09.csv: -------------------------------------------------------------------------------- 1 | 1,0.4405863 2 | 2,0.5100937 3 | 3,0.5789581 4 | 4,0.6470876 5 | 5,0.7143919 6 | 6,0.7807829 7 | 7,0.8461745 8 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/09.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/2_5ms/09.xlsx -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/12.csv: -------------------------------------------------------------------------------- 1 | 1,0.4173695 2 | 2,0.48228 3 | 3,0.5465929 4 | 4,0.6102198 5 | 5,0.6730737 6 | 6,0.7350697 7 | 7,0.7961246 8 | 8,0.8561578 9 | -------------------------------------------------------------------------------- /GeorgeTeel/2_5ms/17.csv: -------------------------------------------------------------------------------- 1 | 1,0.3986011 2 | 2,0.4598737 3 | 3,0.5205797 4 | 4,0.5806326 5 | 5,0.6399476 6 | 6,0.6984414 7 | 7,0.7560329 8 | 8,0.8126431 9 | 9,0.8681952 10 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/00.csv: -------------------------------------------------------------------------------- 1 | 1,0.3727362 2 | 2,0.4293426 3 | 3,0.4854044 4 | 4,0.5408355 5 | 5,0.5955512 6 | 6,0.6494687 7 | 7,0.7025068 8 | 8,0.7545869 9 | 9,0.8056322 10 | 10,0.8555689 11 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/02.csv: -------------------------------------------------------------------------------- 1 | 0,0.6603183 2 | 1,0.801625 3 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/03.csv: -------------------------------------------------------------------------------- 1 | 0,0.5342257 2 | 1,0.6451035 3 | 2,0.7549188 4 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/04.csv: -------------------------------------------------------------------------------- 1 | 0,0.4716768 2 | 1,0.5671367 3 | 2,0.6617532 4 | 3,0.7554089 5 | 4,0.8479885 6 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/05.csv: -------------------------------------------------------------------------------- 1 | 0,0.4344953 2 | 1,0.5206747 3 | 2,0.6061286 4 | 3,0.6907488 5 | 4,0.774429 6 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/06.csv: -------------------------------------------------------------------------------- 1 | 0,0.4100331 2 | 1,0.4900602 3 | 2,0.5694336 4 | 3,0.6480511 5 | 4,0.7258119 6 | 5,0.8026178 7 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/07.csv: -------------------------------------------------------------------------------- 1 | 0,0.3928423 2 | 1,0.4685297 3 | 2,0.5436108 4 | 3,0.6179872 5 | 4,0.6915623 6 | 5,0.7642413 7 | 6,0.8359317 8 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/09.csv: -------------------------------------------------------------------------------- 1 | 1,0.4405863 2 | 2,0.5100937 3 | 3,0.5789581 4 | 4,0.6470876 5 | 5,0.7143919 6 | 6,0.7807829 7 | 7,0.8461745 8 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/10.csv: -------------------------------------------------------------------------------- 1 | 1,0.423543 2 | 2,0.4896692 3 | 3,0.5551864 4 | 4,0.6200053 5 | 5,0.6840381 6 | 6,0.7471991 7 | 7,0.8094045 8 | 8,0.8705727 9 | -------------------------------------------------------------------------------- /GeorgeTeel/3ms/16.csv: -------------------------------------------------------------------------------- 1 | 1,0.4012697 2 | 2,0.463052 3 | 3,0.5242639 4 | 4,0.5848185 5 | 5,0.6446307 6 | 6,0.7036172 7 | 7,0.7616965 8 | 8,0.8187895 9 | 9,0.8748191 10 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/00.csv: -------------------------------------------------------------------------------- 1 | 1,0.3727362 2 | 2,0.4293426 3 | 3,0.4854044 4 | 4,0.5408355 5 | 5,0.5955512 6 | 6,0.6494687 7 | 7,0.7025068 8 | 8,0.7545869 9 | 9,0.8056322 10 | 10,0.8555689 11 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/02.csv: -------------------------------------------------------------------------------- 1 | 0,0.6603183 2 | 1,0.801625 3 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/03.csv: -------------------------------------------------------------------------------- 1 | 0,0.5342257 2 | 1,0.6451035 3 | 2,0.7549188 4 | 3,0.8635383 5 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/04.csv: -------------------------------------------------------------------------------- 1 | 0,0.4716768 2 | 1,0.5671367 3 | 2,0.6617532 4 | 3,0.7554089 5 | 4,0.8479885 6 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/05.csv: -------------------------------------------------------------------------------- 1 | 0,0.4344953 2 | 1,0.5206747 3 | 2,0.6061286 4 | 3,0.6907488 5 | 4,0.774429 6 | 5,0.8570652 7 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/06.csv: -------------------------------------------------------------------------------- 1 | 0,0.4100331 2 | 1,0.4900602 3 | 2,0.5694336 4 | 3,0.6480511 5 | 4,0.7258119 6 | 5,0.8026178 7 | 6,0.8783724 8 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/08.csv: -------------------------------------------------------------------------------- 1 | 0,0.3801835 2 | 1,0.4526737 3 | 2,0.5245905 4 | 3,0.5958384 5 | 4,0.6663235 6 | 5,0.7359536 7 | 6,0.8046388 8 | 7,0.8722912 9 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/10.csv: -------------------------------------------------------------------------------- 1 | 1,0.4311197 2 | 2,0.4987456 3 | 3,0.5657478 4 | 4,0.6320358 5 | 5,0.6975208 6 | 6,0.7621161 7 | 7,0.8257368 8 | 8,0.8883007 9 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/15.csv: -------------------------------------------------------------------------------- 1 | 1,0.4043655 2 | 2,0.466743 3 | 3,0.5285452 4 | 4,0.5896851 5 | 5,0.6500772 6 | 6,0.7096379 7 | 7,0.7682855 8 | 8,0.8259405 9 | 9,0.8825259 10 | -------------------------------------------------------------------------------- /GeorgeTeel/5ms/21.csv: -------------------------------------------------------------------------------- 1 | 1,0.3909051 2 | 2,0.4507276 3 | 3,0.5099937 4 | 4,0.5686176 5 | 5,0.6265148 6 | 6,0.6836028 7 | 7,0.7398006 8 | 8,0.7950298 9 | 9,0.849214 10 | 10,0.9022796 11 | -------------------------------------------------------------------------------- /GeorgeTeel/BannerLow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/BannerLow.png -------------------------------------------------------------------------------- /GeorgeTeel/BannerThin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/BannerThin.png -------------------------------------------------------------------------------- /GeorgeTeel/Ekranoplan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/Ekranoplan.jpg -------------------------------------------------------------------------------- /GeorgeTeel/FittedCurve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/FittedCurve.png -------------------------------------------------------------------------------- /GeorgeTeel/Full10ms/00.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1285822 2 | -4,-0.06062471 3 | -3,0.007494767 4 | -2,0.0756751 5 | -1,0.143815 6 | 0,0.2118131 7 | 1,0.2795686 8 | 2,0.3469811 9 | 3,0.413951 10 | 4,0.4803798 11 | 5,0.5461702 12 | -------------------------------------------------------------------------------- /GeorgeTeel/Full10ms/04.csv: -------------------------------------------------------------------------------- 1 | -4,-0.05053574 2 | -3,0.05212923 3 | -2,0.1546292 4 | -------------------------------------------------------------------------------- /GeorgeTeel/Full10ms/05.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1513694 2 | -4,-0.05674444 3 | -3,0.0378795 4 | -2,0.1323878 5 | -1,0.226666 6 | 0,0.3206005 7 | 1,0.4140782 8 | 2,0.5069875 9 | 3,0.599218 10 | 4,0.6906609 11 | -------------------------------------------------------------------------------- /GeorgeTeel/Full10ms/06.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1473023 2 | -4,-0.05793744 3 | -3,0.03145957 4 | -2,0.1207783 5 | -1,0.2099085 6 | 0,0.2987405 7 | 1,0.3871653 8 | 2,0.4750749 9 | 3,0.5623624 10 | 4,0.6489227 11 | -------------------------------------------------------------------------------- /GeorgeTeel/Full10ms/07.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1435103 2 | -4,-0.05789225 3 | -3,0.02777977 4 | -2,0.1133982 5 | -1,0.1988557 6 | 0,0.2840451 7 | 1,0.3688602 8 | 2,0.4531953 9 | -------------------------------------------------------------------------------- /GeorgeTeel/Full10ms/08.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1433053 2 | -4,-0.06050329 3 | -3,0.02237015 4 | -2,0.1052095 5 | -1,0.1879093 6 | 0,0.2703645 7 | 1,0.3524706 8 | 2,0.4341238 9 | -------------------------------------------------------------------------------- /GeorgeTeel/Full10ms/09.csv: -------------------------------------------------------------------------------- 1 | -5,-0.140854 2 | -4,-0.06021593 3 | -3,0.02050588 4 | -2,0.1012074 5 | -1,0.1817846 6 | 0,0.2621337 7 | 1,0.3421516 8 | 2,0.4217358 9 | 3,0.500785 10 | 4,0.5791991 11 | -------------------------------------------------------------------------------- /GeorgeTeel/Full10ms/10.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1392695 2 | -4,-0.06029614 3 | -3,0.01877127 4 | -2,0.0978296 5 | -1,0.1767757 6 | 0,0.2555068 7 | 1,0.3339206 8 | 2,0.4119153 9 | 3,0.4893905 10 | -------------------------------------------------------------------------------- /GeorgeTeel/Full20ms/0.4.csv: -------------------------------------------------------------------------------- 1 | -4,-0.05053574 2 | -3,0.05212923 3 | -2,0.1546292 4 | -1,0.2568431 5 | 0,0.3586504 6 | 1,0.4599318 7 | 2,0.5605692 8 | -------------------------------------------------------------------------------- /GeorgeTeel/Full20ms/00.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1285822 2 | -4,-0.06062471 3 | -3,0.007494767 4 | -2,0.0756751 5 | -1,0.143815 6 | 0,0.2118131 7 | 1,0.2795686 8 | 2,0.3469811 9 | 3,0.413951 10 | 4,0.4803798 11 | 5,0.5461702 12 | -------------------------------------------------------------------------------- /GeorgeTeel/Full20ms/04.csv: -------------------------------------------------------------------------------- 1 | -4,-0.05053574 2 | -3,0.05212923 3 | -2,0.1546292 4 | -1,0.2568431 5 | 0,0.3586504 6 | 1,0.4599318 7 | 2,0.5605692 8 | -------------------------------------------------------------------------------- /GeorgeTeel/Full20ms/05.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1513694 2 | -4,-0.05674444 3 | -3,0.0378795 4 | -2,0.1323878 5 | -1,0.226666 6 | 0,0.3206005 7 | 1,0.4140782 8 | 2,0.5069875 9 | 3,0.599218 10 | 4,0.6906609 11 | 5,0.7812093 12 | -------------------------------------------------------------------------------- /GeorgeTeel/Full20ms/06.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1473023 2 | -4,-0.05793744 3 | -3,0.03145957 4 | -2,0.1207783 5 | -1,0.2099085 6 | 0,0.2987405 7 | 1,0.3871653 8 | 2,0.4750749 9 | 3,0.5623624 10 | 4,0.6489227 11 | 5,0.7346522 12 | -------------------------------------------------------------------------------- /GeorgeTeel/Full20ms/07.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1435103 2 | -4,-0.05789225 3 | -3,0.02777977 4 | -2,0.1133982 5 | -1,0.1988557 6 | 0,0.2840451 7 | 1,0.3688602 8 | 2,0.4531953 9 | 3,0.5369463 10 | 4,0.6200102 11 | 5,0.7022857 12 | -------------------------------------------------------------------------------- /GeorgeTeel/Full20ms/08.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1433053 2 | -4,-0.06050329 3 | -3,0.02237015 4 | -2,0.1052095 5 | -1,0.1879093 6 | 0,0.2703645 7 | 1,0.3524706 8 | 2,0.4341238 9 | 3,0.5152217 10 | 4,0.5956628 11 | 5,0.6753476 12 | -------------------------------------------------------------------------------- /GeorgeTeel/Full20ms/09.csv: -------------------------------------------------------------------------------- 1 | -5,-0.140854 2 | -4,-0.06021593 3 | -3,0.02050588 4 | -2,0.1012074 5 | -1,0.1817846 6 | 0,0.2621337 7 | 1,0.3421516 8 | 2,0.4217358 9 | 3,0.500785 10 | 4,0.5791991 11 | 5,0.6568795 12 | -------------------------------------------------------------------------------- /GeorgeTeel/Full20ms/10.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1392695 2 | -4,-0.06029614 3 | -3,0.01877127 4 | -2,0.0978296 5 | -1,0.1767757 6 | 0,0.2555068 7 | 1,0.3339206 8 | 2,0.4119153 9 | 3,0.4893905 10 | 4,0.5662468 11 | 5,0.6423863 12 | -------------------------------------------------------------------------------- /GeorgeTeel/Full5ms/00.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1285822 2 | -4,-0.06062471 3 | -3,0.007494767 4 | -2,0.0756751 5 | -1,0.143815 6 | 0,0.2118131 7 | 1,0.2795686 8 | -------------------------------------------------------------------------------- /GeorgeTeel/Full5ms/05.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1513694 2 | -4,-0.05674444 3 | -3,0.0378795 4 | -2,0.1323878 5 | -1,0.226666 6 | 0,0.3206005 7 | 1,0.4140782 8 | -------------------------------------------------------------------------------- /GeorgeTeel/Full5ms/06.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1473023 2 | -4,-0.05793744 3 | -3,0.03145957 4 | -2,0.1207783 5 | -1,0.2099085 6 | 0,0.2987405 7 | 1,0.3871653 8 | -------------------------------------------------------------------------------- /GeorgeTeel/Full5ms/07.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1435103 2 | -4,-0.05789225 3 | -3,0.02777977 4 | -2,0.1133982 5 | -1,0.1988557 6 | -------------------------------------------------------------------------------- /GeorgeTeel/Full5ms/08.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1433053 2 | -4,-0.06050329 3 | -3,0.02237015 4 | -2,0.1052095 5 | -1,0.1879093 6 | -------------------------------------------------------------------------------- /GeorgeTeel/Full5ms/09.csv: -------------------------------------------------------------------------------- 1 | -5,-0.140854 2 | -4,-0.06021593 3 | -3,0.02050588 4 | -2,0.1012074 5 | -1,0.1817846 6 | 0,0.2621337 7 | 1,0.3421516 8 | -------------------------------------------------------------------------------- /GeorgeTeel/Full5ms/10.csv: -------------------------------------------------------------------------------- 1 | -5,-0.1392695 2 | -4,-0.06029614 3 | -3,0.01877127 4 | -2,0.0978296 5 | -1,0.1767757 6 | 0,0.2555068 7 | -------------------------------------------------------------------------------- /GeorgeTeel/Plane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/Plane.gif -------------------------------------------------------------------------------- /GeorgeTeel/SectionalBuildup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/SectionalBuildup.png -------------------------------------------------------------------------------- /GeorgeTeel/SectionalBuildup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/SectionalBuildup2.png -------------------------------------------------------------------------------- /GeorgeTeel/SectionalBuildup3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/SectionalBuildup3.png -------------------------------------------------------------------------------- /GeorgeTeel/SectionalBuildup4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/SectionalBuildup4.png -------------------------------------------------------------------------------- /GeorgeTeel/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/Thumbs.db -------------------------------------------------------------------------------- /GeorgeTeel/TitleThin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/TitleThin.png -------------------------------------------------------------------------------- /GeorgeTeel/Wing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/Wing.gif -------------------------------------------------------------------------------- /GeorgeTeel/XFLR5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/XFLR5.png -------------------------------------------------------------------------------- /GeorgeTeel/XFLR5Wing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/XFLR5Wing.png -------------------------------------------------------------------------------- /GeorgeTeel/blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/blender.png -------------------------------------------------------------------------------- /GeorgeTeel/body1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/body1.png -------------------------------------------------------------------------------- /GeorgeTeel/body2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/body2.png -------------------------------------------------------------------------------- /GeorgeTeel/body3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/GeorgeTeel/body3.png -------------------------------------------------------------------------------- /GeorgeTeel/project.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 128 | 144 | -------------------------------------------------------------------------------- /Ground-Effect-in-Vortex-Panel-Method/resources/NACA0012_N=100: -------------------------------------------------------------------------------- 1 | 1.0 0.0 2 | 0.999013 -0.000148261 3 | 0.996057 -0.000591044 4 | 0.991144 -0.00132242 5 | 0.984292 -0.00233275 6 | 0.975528 -0.00360903 7 | 0.964888 -0.00513534 8 | 0.952414 -0.00689337 9 | 0.938153 -0.00886293 10 | 0.922164 -0.0110225 11 | 0.904508 -0.0133498 12 | 0.885257 -0.0158221 13 | 0.864484 -0.0184164 14 | 0.842274 -0.0211102 15 | 0.818712 -0.0238809 16 | 0.793893 -0.0267063 17 | 0.767913 -0.0295644 18 | 0.740877 -0.0324329 19 | 0.71289 -0.0352895 20 | 0.684062 -0.0381113 21 | 0.654508 -0.040875 22 | 0.624345 -0.043556 23 | 0.593691 -0.0461292 24 | 0.562667 -0.0485684 25 | 0.531395 -0.0508463 26 | 0.5 -0.0529353 27 | 0.468605 -0.0548073 28 | 0.437333 -0.056434 29 | 0.406309 -0.0577881 30 | 0.375655 -0.0588432 31 | 0.345492 -0.0595745 32 | 0.315938 -0.0599598 33 | 0.28711 -0.05998 34 | 0.259123 -0.0596194 35 | 0.232087 -0.0588664 36 | 0.206107 -0.0577141 37 | 0.181288 -0.0561602 38 | 0.157726 -0.0542073 39 | 0.135516 -0.0518625 40 | 0.114743 -0.0491378 41 | 0.0954915 -0.0460489 42 | 0.077836 -0.0426152 43 | 0.0618467 -0.0388585 44 | 0.0475865 -0.0348029 45 | 0.0351118 -0.0304729 46 | 0.0244717 -0.0258933 47 | 0.0157084 -0.0210879 48 | 0.00885637 -0.0160785 49 | 0.00394265 -0.0108842 50 | 0.000986636 -0.00552072 51 | 0.0 0.0 52 | 0.000986636 0.00552072 53 | 0.00394265 0.0108842 54 | 0.00885637 0.0160785 55 | 0.0157084 0.0210879 56 | 0.0244717 0.0258933 57 | 0.0351118 0.0304729 58 | 0.0475865 0.0348029 59 | 0.0618467 0.0388585 60 | 0.077836 0.0426152 61 | 0.0954915 0.0460489 62 | 0.114743 0.0491378 63 | 0.135516 0.0518625 64 | 0.157726 0.0542073 65 | 0.181288 0.0561602 66 | 0.206107 0.0577141 67 | 0.232087 0.0588664 68 | 0.259123 0.0596194 69 | 0.28711 0.05998 70 | 0.315938 0.0599598 71 | 0.345492 0.0595745 72 | 0.375655 0.0588432 73 | 0.406309 0.0577881 74 | 0.437333 0.056434 75 | 0.468605 0.0548073 76 | 0.5 0.0529353 77 | 0.531395 0.0508463 78 | 0.562667 0.0485684 79 | 0.593691 0.0461292 80 | 0.624345 0.043556 81 | 0.654508 0.040875 82 | 0.684062 0.0381113 83 | 0.71289 0.0352895 84 | 0.740877 0.0324329 85 | 0.767913 0.0295644 86 | 0.793893 0.0267063 87 | 0.818712 0.0238809 88 | 0.842274 0.0211102 89 | 0.864484 0.0184164 90 | 0.885257 0.0158221 91 | 0.904508 0.0133498 92 | 0.922164 0.0110225 93 | 0.938153 0.00886293 94 | 0.952414 0.00689337 95 | 0.964888 0.00513534 96 | 0.975528 0.00360903 97 | 0.984292 0.00233275 98 | 0.991144 0.00132242 99 | 0.996057 0.000591044 100 | 0.999013 0.000148261 101 | 1.0 0.0 102 | -------------------------------------------------------------------------------- /Ground-Effect-in-Vortex-Panel-Method/resources/NACA4412_N=100: -------------------------------------------------------------------------------- 1 | 1.0 0.0 2 | 0.998994 -1.5528e-05 3 | 0.99598 -6.20086e-05 4 | 0.990972 -0.000139148 5 | 0.983993 -0.000246577 6 | 0.975075 -0.000384041 7 | 0.964256 -0.000551637 8 | 0.951584 -0.00075006 9 | 0.937116 -0.000980838 10 | 0.920915 -0.00124652 11 | 0.903049 -0.00155079 12 | 0.883596 -0.00189846 13 | 0.862638 -0.00229539 14 | 0.840263 -0.00274824 15 | 0.816565 -0.00326413 16 | 0.79164 -0.00385023 17 | 0.765592 -0.00451315 18 | 0.738527 -0.00525842 19 | 0.710554 -0.00608987 20 | 0.681786 -0.007009 21 | 0.652337 -0.00801442 22 | 0.622324 -0.00910142 23 | 0.591866 -0.0102616 24 | 0.561081 -0.0114825 25 | 0.530088 -0.0127478 26 | 0.499008 -0.0140372 27 | 0.46796 -0.0153264 28 | 0.43706 -0.0165882 29 | 0.40658 -0.0177919 30 | 0.376815 -0.0189799 31 | 0.347554 -0.0202815 32 | 0.318886 -0.0216539 33 | 0.290908 -0.0230457 34 | 0.263712 -0.0244041 35 | 0.23739 -0.0256758 36 | 0.212029 -0.0268081 37 | 0.187718 -0.0277497 38 | 0.164539 -0.0284515 39 | 0.142577 -0.0288675 40 | 0.121911 -0.0289551 41 | 0.102619 -0.0286754 42 | 0.084777 -0.0279935 43 | 0.0684575 -0.026879 44 | 0.0537295 -0.0253052 45 | 0.0406582 -0.0232497 46 | 0.0293039 -0.0206938 47 | 0.0197218 -0.0176225 48 | 0.0119611 -0.0140242 49 | 0.00606456 -0.00989069 50 | 0.00206805 -0.00521668 51 | 0.0 0.0 52 | -9.4782e-05 0.00561085 53 | 0.00182074 0.01146 54 | 0.00575168 0.0175275 55 | 0.0116951 0.0237825 56 | 0.0196396 0.0301831 57 | 0.0295653 0.036678 58 | 0.0414434 0.0432076 59 | 0.0552358 0.0497052 60 | 0.0708951 0.0560987 61 | 0.088364 0.0623126 62 | 0.107576 0.0682694 63 | 0.128454 0.0738916 64 | 0.150913 0.0791033 65 | 0.174858 0.0838322 66 | 0.200186 0.0880109 67 | 0.226784 0.0915783 68 | 0.254534 0.0944809 69 | 0.283313 0.0966736 70 | 0.312989 0.0981206 71 | 0.343429 0.098796 72 | 0.374495 0.0986836 73 | 0.406038 0.0977831 74 | 0.437607 0.0962785 75 | 0.46925 0.0942805 76 | 0.500992 0.0918149 77 | 0.532702 0.0889112 78 | 0.564253 0.0856024 79 | 0.595516 0.0819247 80 | 0.626366 0.0779168 81 | 0.65668 0.0736201 82 | 0.686339 0.0690776 83 | 0.715225 0.0643343 84 | 0.743227 0.0594369 85 | 0.770235 0.0544331 86 | 0.796145 0.0493721 87 | 0.820859 0.0443042 88 | 0.844284 0.0392803 89 | 0.86633 0.0343519 90 | 0.886917 0.0295709 91 | 0.905968 0.0249888 92 | 0.923413 0.0206565 93 | 0.93919 0.0166233 94 | 0.953243 0.0129366 95 | 0.965521 0.00964081 96 | 0.975982 0.00677676 97 | 0.98459 0.00438065 98 | 0.991315 0.00248342 99 | 0.996135 0.00110993 100 | 0.999033 0.000278415 101 | 1.0 0.0 102 | -------------------------------------------------------------------------------- /Ground-Effect-in-Vortex-Panel-Method/resources/NACA4412_cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Ground-Effect-in-Vortex-Panel-Method/resources/NACA4412_cl.png -------------------------------------------------------------------------------- /Ground-Effect-in-Vortex-Panel-Method/resources/NACA4412_inv_N=100: -------------------------------------------------------------------------------- 1 | 1.0 -0.0 2 | 0.998994 -0.000278415 3 | 0.99598 -0.00110993 4 | 0.990972 -0.00248342 5 | 0.983993 -0.00438065 6 | 0.975075 -0.00677676 7 | 0.964256 -0.00964081 8 | 0.951584 -0.0129366 9 | 0.937116 -0.0166233 10 | 0.920915 -0.0206565 11 | 0.903049 -0.0249888 12 | 0.883596 -0.0295709 13 | 0.862638 -0.0343519 14 | 0.840263 -0.0392803 15 | 0.816565 -0.0443042 16 | 0.79164 -0.0493721 17 | 0.765592 -0.0544331 18 | 0.738527 -0.0594369 19 | 0.710554 -0.0643343 20 | 0.681786 -0.0690776 21 | 0.652337 -0.0736201 22 | 0.622324 -0.0779168 23 | 0.591866 -0.0819247 24 | 0.561081 -0.0856024 25 | 0.530088 -0.0889112 26 | 0.499008 -0.0918149 27 | 0.46796 -0.0942805 28 | 0.43706 -0.0962785 29 | 0.40658 -0.0977831 30 | 0.376815 -0.0986836 31 | 0.347554 -0.098796 32 | 0.318886 -0.0981206 33 | 0.290908 -0.0966736 34 | 0.263712 -0.0944809 35 | 0.23739 -0.0915783 36 | 0.212029 -0.0880109 37 | 0.187718 -0.0838322 38 | 0.164539 -0.0791033 39 | 0.142577 -0.0738916 40 | 0.121911 -0.0682694 41 | 0.102619 -0.0623126 42 | 0.084777 -0.0560987 43 | 0.0684575 -0.0497052 44 | 0.0537295 -0.0432076 45 | 0.0406582 -0.036678 46 | 0.0293039 -0.0301831 47 | 0.0197218 -0.0237825 48 | 0.0119611 -0.0175275 49 | 0.00606456 -0.01146 50 | 0.00206805 -0.00561085 51 | 0.0 -0.0 52 | -9.4782e-05 0.00521668 53 | 0.00182074 0.00989069 54 | 0.00575168 0.0140242 55 | 0.0116951 0.0176225 56 | 0.0196396 0.0206938 57 | 0.0295653 0.0232497 58 | 0.0414434 0.0253052 59 | 0.0552358 0.026879 60 | 0.0708951 0.0279935 61 | 0.088364 0.0286754 62 | 0.107576 0.0289551 63 | 0.128454 0.0288675 64 | 0.150913 0.0284515 65 | 0.174858 0.0277497 66 | 0.200186 0.0268081 67 | 0.226784 0.0256758 68 | 0.254534 0.0244041 69 | 0.283313 0.0230457 70 | 0.312989 0.0216539 71 | 0.343429 0.0202815 72 | 0.374495 0.0189799 73 | 0.406038 0.0177919 74 | 0.437607 0.0165882 75 | 0.46925 0.0153264 76 | 0.500992 0.0140372 77 | 0.532702 0.0127478 78 | 0.564253 0.0114825 79 | 0.595516 0.0102616 80 | 0.626366 0.00910142 81 | 0.65668 0.00801442 82 | 0.686339 0.007009 83 | 0.715225 0.00608987 84 | 0.743227 0.00525842 85 | 0.770235 0.00451315 86 | 0.796145 0.00385023 87 | 0.820859 0.00326413 88 | 0.844284 0.00274824 89 | 0.86633 0.00229539 90 | 0.886917 0.00189846 91 | 0.905968 0.00155079 92 | 0.923413 0.00124652 93 | 0.93919 0.000980838 94 | 0.953243 0.00075006 95 | 0.965521 0.000551637 96 | 0.975982 0.000384041 97 | 0.98459 0.000246577 98 | 0.991315 0.000139148 99 | 0.996135 6.20086e-05 100 | 0.999033 1.5528e-05 101 | 1.0 -0.0 102 | -------------------------------------------------------------------------------- /Ground-Effect-in-Vortex-Panel-Method/resources/custom.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 128 | 144 | -------------------------------------------------------------------------------- /Ground-Effect-in-Vortex-Panel-Method/resources/data: -------------------------------------------------------------------------------- 1 | 0.99950650000000008, 0.99753500000000006, 0.9936005, 0.98771799999999998, 0.97990999999999995, 0.97020799999999996, 0.95865099999999992, 0.94528349999999994, 0.9301585, 0.91333599999999993, 0.89488250000000003, 0.8748705, 0.853379, 0.83049299999999993, 0.80630249999999992, 0.7809029999999999, 0.75439499999999993, 0.72688350000000002, 0.69847599999999999, 0.66928499999999991, 0.63942650000000001, 0.60901800000000006, 0.578179, 0.54703100000000004, 0.51569749999999992, 0.48430249999999997, 0.45296900000000001, 0.421821, 0.390982, 0.36057349999999999, 0.33071499999999998, 0.30152400000000001, 0.27311649999999998, 0.24560499999999999, 0.21909699999999999, 0.19369750000000002, 0.16950700000000002, 0.146621, 0.1251295, 0.10511725, 0.086663750000000012, 0.069841349999999996, 0.054716599999999997, 0.041349150000000001, 0.029791749999999999, 0.020090049999999998, 0.012282385, 0.0063995100000000006, 0.0024646429999999999, 0.00049331799999999997, 0.00049331799999999997, 0.0024646429999999999, 0.0063995100000000006, 0.012282385, 0.020090049999999998, 0.029791749999999999, 0.041349150000000001, 0.054716599999999997, 0.069841349999999996, 0.086663750000000012, 0.10511725, 0.1251295, 0.146621, 0.16950700000000002, 0.19369750000000002, 0.21909699999999999, 0.24560499999999999, 0.27311649999999998, 0.30152400000000001, 0.33071499999999998, 0.36057349999999999, 0.390982, 0.421821, 0.45296900000000001, 0.48430249999999997, 0.51569749999999992, 0.54703100000000004, 0.578179, 0.60901800000000006, 0.63942650000000001, 0.66928499999999991, 0.69847599999999999, 0.72688350000000002, 0.75439499999999993, 0.7809029999999999, 0.80630249999999992, 0.83049299999999993, 0.853379, 0.8748705, 0.89488250000000003, 0.91333599999999993, 0.9301585, 0.94528349999999994, 0.95865099999999992, 0.97020799999999996, 0.97990999999999995, 0.98771799999999998, 0.9936005, 0.99753500000000006, 0.99950650000000008 2 | 0.4465976792671168, 0.35140026250361611, 0.28622451248056224, 0.23651567226037851, 0.19566610817871322, 0.1605499082342785, 0.12948206341567048, 0.10149761593794882, 0.07594982768429126, 0.052375339560626788, 0.030435034605434841, 0.0098653211304677857, -0.0095627822760857573, -0.028070174383370006, -0.045831006734711632, -0.063032523836080045, -0.079834704606570384, -0.096388635654393484, -0.11281821974779094, -0.1292492501595266, -0.14578382199034357, -0.16248811415245612, -0.17942148775003441, -0.19660052426780372, -0.21402262086200841, -0.23166857365140481, -0.24946187428848621, -0.26731108440144502, -0.28510786970006841, -0.30269039386248919, -0.31987095807683441, -0.33645065159502519, -0.35219719509731262, -0.36683453446418612, -0.38007422574477956, -0.39158815066753117, -0.40099471368054296, -0.407811685893398, -0.41145313441272635, -0.41110137676474134, -0.40555215868357264, -0.39294897558925879, -0.37028762161657514, -0.3324598730976549, -0.27058879531166635, -0.1691516694640145, -0.0022203169313648186, 0.2641661095505623, 0.63135854707346062, 0.95012169661610535, 0.95012169661610701, 0.63135854707346484, 0.26416610955056752, -0.0022203169313594895, -0.16915166946401006, -0.2705887953116628, -0.33245987309765179, -0.37028762161657247, -0.39294897558925612, -0.40555215868356931, -0.41110137676473824, -0.41145313441272413, -0.407811685893396, -0.40099471368054074, -0.39158815066753005, -0.38007422574477867, -0.3668345344641839, -0.35219719509731173, -0.3364506515950243, -0.3198709580768333, -0.30269039386248831, -0.28510786970006774, -0.26731108440144569, -0.24946187428848576, -0.2316685736514037, -0.21402262086200796, -0.19660052426780372, -0.17942148775003397, -0.16248811415245568, -0.14578382199034245, -0.12924925015952593, -0.11281821974779049, -0.09638863565439304, -0.079834704606570828, -0.063032523836080934, -0.045831006734711632, -0.028070174383369562, -0.0095627822760857573, 0.0098653211304677857, 0.030435034605435285, 0.05237533956062701, 0.07594982768429126, 0.10149761593794882, 0.1294820634156707, 0.16054990823427906, 0.19566610817871388, 0.23651567226037895, 0.28622451248056224, 0.35140026250361633, 0.4465976792671168 3 | 0.46328480107431547, 0.36510840618463558, 0.29424825141875777, 0.23714243938023549, 0.18770321913574417, 0.14305494662117402, 0.10160764787971777, 0.062442262702382401, 0.02504658342168109, -0.011097070792872366, -0.046254836988867121, -0.080785287641680803, -0.11483594864131219, -0.14876227896625926, -0.1827288859068692, -0.21703420244819283, -0.25191054368012455, -0.28763609628885245, -0.32446813823281229, -0.36265944004555051, -0.40252755771206616, -0.44431526610566174, -0.48831557254604618, -0.53482012572922466, -0.58408378634629643, -0.63643973478797133, -0.69219778429985102, -0.75165656000507353, -0.81523037985317925, -0.88333719055254578, -0.95645754551698814, -1.0352058907841846, -1.1203595820441854, -1.2128639507817596, -1.3139499591473398, -1.4252884177914664, -1.5490124946553223, -1.6880653357089597, -1.8462774215600608, -2.029146192195975, -2.2439042919270613, -2.500909408237423, -2.8142912361114161, -3.2036728956687366, -3.6941125626058433, -4.3120258493647139, -5.0602456746914388, -5.8294808676960805, -6.1902872604028687, -5.3737051798491855, -3.3461270871704105, -1.2070141627306974, 0.14663719378597095, 0.75994336813432073, 0.96934319380942413, 0.99713043239009735, 0.95014382473628012, 0.8756755136344555, 0.7943080987483625, 0.71483025948765722, 0.6408900465954197, 0.57371861408011449, 0.51357579751831217, 0.46014897631548957, 0.41303733042347213, 0.37167546127645579, 0.33554492749083653, 0.30410615483344972, 0.27687635467166805, 0.2533812130545614, 0.23318024581662433, 0.21588539923588079, 0.2011371170433387, 0.18859899391599588, 0.17797422969463528, 0.16903733503299401, 0.1615506406024062, 0.15532843304584276, 0.15025161231555662, 0.14619013598329023, 0.14307150700548454, 0.14086392903622169, 0.13952883165750074, 0.13911340219650015, 0.1396525306168348, 0.14120631361564895, 0.14388535991066398, 0.14778912920436837, 0.15310728066532675, 0.15994477963589893, 0.16860439200520194, 0.1792629114992631, 0.19231963053880197, 0.20817374792181831, 0.22757314222495362, 0.25148440391113291, 0.28159900352146372, 0.32111635005130046, 0.37678039715797806, 0.46328480107431347 -------------------------------------------------------------------------------- /Ground-Effect-in-Vortex-Panel-Method/resources/lotus79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Ground-Effect-in-Vortex-Panel-Method/resources/lotus79.jpg -------------------------------------------------------------------------------- /Ground-Effect-in-Vortex-Panel-Method/resources/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/Ground-Effect-in-Vortex-Panel-Method/resources/panel.png -------------------------------------------------------------------------------- /Project - Michael J Carter/resources/naca0012.dat: -------------------------------------------------------------------------------- 1 | 1.0 0.0 2 | 0.9994161 0.0013419 3 | 0.9976658 0.001587 4 | 0.9947532 0.0019938 5 | 0.990685 0.0025595 6 | 0.9854709 0.0032804 7 | 0.9791229 0.0041519 8 | 0.9716559 0.0051685 9 | 0.9630873 0.0063238 10 | 0.9534372 0.0076108 11 | 0.942728 0.0090217 12 | 0.9309849 0.0105485 13 | 0.9182351 0.0121823 14 | 0.9045085 0.0139143 15 | 0.8898372 0.0157351 16 | 0.8742554 0.0176353 17 | 0.8577995 0.0196051 18 | 0.8405079 0.0216347 19 | 0.8224211 0.0237142 20 | 0.8035813 0.0258337 21 | 0.7840324 0.0279828 22 | 0.7638202 0.0301515 23 | 0.7429917 0.0323294 24 | 0.7215958 0.0345058 25 | 0.6996823 0.03667 26 | 0.6773025 0.0388109 27 | 0.6545085 0.0409174 28 | 0.6313537 0.0429778 29 | 0.6078921 0.0449802 30 | 0.5841786 0.0469124 31 | 0.5602683 0.0487619 32 | 0.5362174 0.0505161 33 | 0.5120819 0.052162 34 | 0.4879181 0.0536866 35 | 0.4637826 0.0550769 36 | 0.4397317 0.05632 37 | 0.4158215 0.0574033 38 | 0.3921079 0.0583145 39 | 0.3686463 0.0590419 40 | 0.3454915 0.0595747 41 | 0.3226976 0.0599028 42 | 0.3003177 0.0600172 43 | 0.2784042 0.0599102 44 | 0.2570083 0.0595755 45 | 0.2361799 0.0590081 46 | 0.2159676 0.0582048 47 | 0.1964187 0.057164 48 | 0.1775789 0.0558856 49 | 0.1594921 0.0543715 50 | 0.1422005 0.0526251 51 | 0.1257446 0.0506513 52 | 0.1101628 0.0484567 53 | 0.0954915 0.0460489 54 | 0.0817649 0.0434371 55 | 0.0690152 0.040631 56 | 0.057272 0.0376414 57 | 0.0465628 0.0344792 58 | 0.0369127 0.0311559 59 | 0.0283441 0.0276827 60 | 0.0208771 0.0240706 61 | 0.0145291 0.02033 62 | 0.0093149 0.0164706 63 | 0.0052468 0.0125011 64 | 0.0023342 0.0084289 65 | 0.0005839 0.0042603 66 | 0.0 0.0 67 | 0.0005839 -0.0042603 68 | 0.0023342 -0.0084289 69 | 0.0052468 -0.0125011 70 | 0.0093149 -0.0164706 71 | 0.0145291 -0.02033 72 | 0.0208771 -0.0240706 73 | 0.0283441 -0.0276827 74 | 0.0369127 -0.0311559 75 | 0.0465628 -0.0344792 76 | 0.057272 -0.0376414 77 | 0.0690152 -0.040631 78 | 0.0817649 -0.0434371 79 | 0.0954915 -0.0460489 80 | 0.1101628 -0.0484567 81 | 0.1257446 -0.0506513 82 | 0.1422005 -0.0526251 83 | 0.1594921 -0.0543715 84 | 0.1775789 -0.0558856 85 | 0.1964187 -0.057164 86 | 0.2159676 -0.0582048 87 | 0.2361799 -0.0590081 88 | 0.2570083 -0.0595755 89 | 0.2784042 -0.0599102 90 | 0.3003177 -0.0600172 91 | 0.3226976 -0.0599028 92 | 0.3454915 -0.0595747 93 | 0.3686463 -0.0590419 94 | 0.3921079 -0.0583145 95 | 0.4158215 -0.0574033 96 | 0.4397317 -0.05632 97 | 0.4637826 -0.0550769 98 | 0.4879181 -0.0536866 99 | 0.5120819 -0.052162 100 | 0.5362174 -0.0505161 101 | 0.5602683 -0.0487619 102 | 0.5841786 -0.0469124 103 | 0.6078921 -0.0449802 104 | 0.6313537 -0.0429778 105 | 0.6545085 -0.0409174 106 | 0.6773025 -0.0388109 107 | 0.6996823 -0.03667 108 | 0.7215958 -0.0345058 109 | 0.7429917 -0.0323294 110 | 0.7638202 -0.0301515 111 | 0.7840324 -0.0279828 112 | 0.8035813 -0.0258337 113 | 0.8224211 -0.0237142 114 | 0.8405079 -0.0216347 115 | 0.8577995 -0.0196051 116 | 0.8742554 -0.0176353 117 | 0.8898372 -0.0157351 118 | 0.9045085 -0.0139143 119 | 0.9182351 -0.0121823 120 | 0.9309849 -0.0105485 121 | 0.942728 -0.0090217 122 | 0.9534372 -0.0076108 123 | 0.9630873 -0.0063238 124 | 0.9716559 -0.0051685 125 | 0.9791229 -0.0041519 126 | 0.9854709 -0.0032804 127 | 0.990685 -0.0025595 128 | 0.9947532 -0.0019938 129 | 0.9976658 -0.001587 130 | 0.9994161 -0.0013419 131 | -------------------------------------------------------------------------------- /Project - Michael J Carter/styles/custom.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 128 | 144 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AeroPython student projects, Spring 2015 2 | 3 | Students were requested to fork this repository, add their project as an IPython Notebook 4 | (with any dependencies, like figures, data or style sheets), and submit a pull request. 5 | The instructor will provide feedback as comments on the pull request, and merge the pull request 6 | when the project is good! 7 | 8 | 9 | **Please add all your files in one folder, named with your GitHub handle or last name.** And *please* do not include the notebook checkpoints in your commits (add the checkpoints folder to the ignore list). 10 | 11 | ## Index of merged student projects 12 | 13 | 1. [Vortex lattice method](http://nbviewer.ipython.org/github/barbagroup/AeroPython-studentprojects/blob/master/Bell_Christopher/VLM.ipynb), by Christopher Bell 14 | 2. [The effect of flap deflection wit a Junkers flap](http://nbviewer.ipython.org/github/barbagroup/AeroPython-studentprojects/blob/master/cparvini/FlapNotebook.ipynb), by Cameron Parvini 15 | 3. [Case study of Wing in Ground Effect with XFLR5: the A-90 Orlyonok (Орлёнок) Ekranoplan](http://nbviewer.ipython.org/github/barbagroup/AeroPython-studentprojects/blob/master/GeorgeTeel/Orlyonok%20Ekranoplan.ipynb), by George Teel 16 | 4. [The evolution of Boeing's 707 airliner: panel method applied to a family of B707 airfoils](http://nbviewer.ipython.org/github/barbagroup/AeroPython-studentprojects/blob/master/Bornemeier/Final%20Project.ipynb), by Matt Bornemeier 17 | 5. [Ground Effect with a Vortex Panel Method](http://nbviewer.ipython.org/github/barbagroup/AeroPython-studentprojects/blob/master/Ground-Effect-in-Vortex-Panel-Method/Ground-Effect-in-Vortex-Panel-Method.ipynb), by Tingyu Wang 18 | 6. [Further Study of Constant-Strength-Singularity Panel Methods](http://nbviewer.ipython.org/github/barbagroup/AeroPython-studentprojects/blob/master/Project%20-%20Michael%20J%20Carter/Project%20-%20Michael%20J%20Carter.ipynb), by Michael J. Carter 19 | 20 | ### Spring 2014 21 | 22 | * [Limitations of Inviscid Panel Method](http://nbviewer.ipython.org/github/LTChaseJohnson/MAE6226/blob/master/final%20project.ipynb), Chase Johnson 23 | * [Pterosaur wings: effect of the wing-tip twist on center-of-pressure location](http://nbviewer.ipython.org/github/colinparker/Pterosaur/blob/master/parker_pterosaur.ipynb) (following Palmer & Dyke, 2012; using XFLR) 24 | * [Boundary Layer Correction in Panel Methods](http://nbviewer.ipython.org/github/iancarr/AeroHydro/blob/master/final-project/BoundaryLayerCorrection.ipynb), Ian Carr. 25 | * [Stokes Flow with a Boundary Element Method](http://nbviewer.ipython.org/github/arm6226/mae6226/blob/master/project/MAE6226%20Project.ipynb), Abhilash Malipeddi 26 | -------------------------------------------------------------------------------- /cparvini/FowlerFlapPresentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/cparvini/FowlerFlapPresentation.pdf -------------------------------------------------------------------------------- /cparvini/NACA23012_FlapFoil.csv: -------------------------------------------------------------------------------- 1 | 1.181999999999999940e+00,-3.400000000000000244e-02 2 | 1.181912655551069502e+00,-3.398540927969810610e-02 3 | 1.181650622204278189e+00,-3.394143724591160149e-02 4 | 1.181214499578268295e+00,-3.386828377152131808e-02 5 | 1.180604887291682559e+00,-3.376654847516978586e-02 6 | 1.179823184454686924e+00,-3.363663110261873312e-02 7 | 1.178870190558804598e+00,-3.347893139962983267e-02 8 | 1.177748104205725177e+00,-3.329444873060732890e-02 9 | 1.176458724251375987e+00,-3.308378271419376571e-02 10 | 1.175004049424565933e+00,-3.284793271479338750e-02 11 | 1.173387077818507374e+00,-3.258789809681042482e-02 12 | 1.171610207907770596e+00,-3.230487809752996542e-02 13 | 1.169676637658449092e+00,-3.199987208135625372e-02 14 | 1.167589964782398404e+00,-3.167447903133606413e-02 15 | 1.165353587118592493e+00,-3.132949843899279774e-02 16 | 1.162971502124648726e+00,-3.096652928737323243e-02 17 | 1.160447907131064715e+00,-3.058717055952414263e-02 18 | 1.157787199341218987e+00,-3.019242161984977621e-02 19 | 1.154993975831371200e+00,-2.978388145139690760e-02 20 | 1.152073233423542620e+00,-2.936294916433148175e-02 21 | 1.149029968939754287e+00,-2.893122374170028002e-02 22 | 1.145869379074908379e+00,-2.849010429366922656e-02 23 | 1.142597460015430055e+00,-2.804098993040425938e-02 24 | 1.139219408456221938e+00,-2.758547963495216679e-02 25 | 1.135741420456589656e+00,-2.712497251747887986e-02 26 | 1.132169492202959038e+00,-2.666106756103117995e-02 27 | 1.128509819754635934e+00,-2.619536374865585535e-02 28 | 1.124768998916688911e+00,-2.572926019051883020e-02 29 | 1.120953625494185646e+00,-2.526435586966689281e-02 30 | 1.117069895546432434e+00,-2.480244964202766786e-02 31 | 1.113125204370020604e+00,-2.434494061776710030e-02 32 | 1.109125947897137365e+00,-2.389362765281280790e-02 33 | 1.105079521424374045e+00,-2.345010973021158587e-02 34 | 1.100992720629679456e+00,-2.301618570589105198e-02 35 | 1.096872940809645147e+00,-2.259365443577884477e-02 36 | 1.092726977642219488e+00,-2.218431477580258895e-02 37 | 1.088562626169756076e+00,-2.178976570900906587e-02 38 | 1.084386682070203278e+00,-2.141200596420676436e-02 39 | 1.080206740513033781e+00,-2.105283439732330217e-02 40 | 1.076030196794838467e+00,-2.071424973716716120e-02 41 | 1.071863846593566372e+00,-2.039765109390427253e-02 42 | 1.067715484951570870e+00,-2.010523706922397527e-02 43 | 1.063592107419681021e+00,-1.983860664617302996e-02 44 | 1.059501109294488597e+00,-1.959955868067908905e-02 45 | 1.055449486126823322e+00,-1.938949228290806973e-02 46 | 1.051444233467514699e+00,-1.921020630878761057e-02 47 | 1.047492746613154058e+00,-1.906289999560279932e-02 48 | 1.043601421495928605e+00,-1.894897245351956014e-02 49 | 1.039777253666668067e+00,-1.886962291982298770e-02 50 | 1.036027238676201945e+00,-1.882585075891732643e-02 51 | 1.032357572583836758e+00,-1.881845546232595659e-02 52 | 1.028774651321759270e+00,-1.884823652157227927e-02 53 | 1.025285070695038048e+00,-1.891559368241798114e-02 54 | 1.021892628288408655e+00,-1.902092669062476274e-02 55 | 1.018569142025671725e+00,-1.916863274957126759e-02 56 | 1.015315011652588861e+00,-1.937070423210838013e-02 57 | 1.012144228270819735e+00,-1.963833401956355598e-02 58 | 1.009070782982023351e+00,-1.997911728140902218e-02 59 | 1.006109466379382589e+00,-2.039825071254681640e-02 60 | 1.003273669945914381e+00,-2.089793291466627081e-02 61 | 1.000577184910397044e+00,-2.147696465048229073e-02 62 | 9.980326032643238587e-01,-2.213174820813961982e-02 63 | 9.956513177619035204e-01,-2.285608752833198296e-02 64 | 9.934437217929397157e-01,-2.364198769582545254e-02 65 | 9.914186097641899398e-01,-2.447925519369680350e-02 66 | 9.895827773536030048e-01,-2.535689701349941663e-02 67 | 9.879420208747236032e-01,-2.626332052814410109e-02 68 | 9.865001379122877445e-01,-2.718633349189914991e-02 69 | 9.852593270679848025e-01,-2.811454315055624334e-02 70 | 9.842203878333379841e-01,-2.903675662278790495e-02 71 | 9.833829204625856857e-01,-2.994338001031343968e-02 72 | 9.827451260998005811e-01,-3.082561890637554661e-02 73 | 9.823044063975312490e-01,-3.167667763302539630e-02 74 | 9.820575633896841961e-01,-3.249115962248010081e-02 75 | 9.819999999999999840e-01,-3.326626665440779451e-02 76 | 9.821271191522191746e-01,-3.400000000000000244e-02 77 | 9.824295268209417564e-01,-3.468036728640584709e-02 78 | 9.828976291078874716e-01,-3.529697512382125313e-02 79 | 9.835258295723918742e-01,-3.585262173257808271e-02 80 | 9.843081320280302471e-01,-3.635170431605498631e-02 81 | 9.852391399070190570e-01,-3.679981931491571601e-02 82 | 9.863132567686951901e-01,-3.720276304270483947e-02 83 | 9.875254857910369388e-01,-3.756673155872865266e-02 84 | 9.888716296435466901e-01,-3.789852054093596767e-02 85 | 9.903478907414884347e-01,-3.820472579439476712e-02 86 | 9.919512709916493698e-01,-3.849214299705387698e-02 87 | 9.936799715381017251e-01,-3.876676833533872213e-02 88 | 9.955333927622032064e-01,-3.903439812279389798e-02 89 | 9.975117345368345045e-01,-3.929982930855975554e-02 90 | 9.996161960992808737e-01,-3.956745909601493139e-02 91 | 1.001849375796993069e+00,-3.984068532413384545e-02 92 | 1.004214471596064806e+00,-4.012170659460582989e-02 93 | 1.006714881335470713e+00,-4.041132239895425804e-02 94 | 1.009355202091469783e+00,-4.070873324565575657e-02 95 | 1.012139231448798471e+00,-4.101194040590185053e-02 96 | 1.015070966865073698e+00,-4.131594705767131781e-02 97 | 1.018154205925031697e+00,-4.161395752301536022e-02 98 | 1.021391546976123221e+00,-4.189657777653411908e-02 99 | 1.024771997009901625e+00,-4.215121582673420075e-02 100 | 1.028255181704435861e+00,-4.237267497871353983e-02 101 | 1.031833106144492085e+00,-4.256055548671044964e-02 102 | 1.035499574270763778e+00,-4.271525709648663072e-02 103 | 1.039247990278183043e+00,-4.283717955380376974e-02 104 | 1.043071958234562890e+00,-4.292652273154273779e-02 105 | 1.046964282716192463e+00,-4.298468573986943819e-02 106 | 1.050918767663765907e+00,-4.301186845166474204e-02 107 | 1.054927817907810539e+00,-4.300946997709456654e-02 108 | 1.058984837643258903e+00,-4.297848968056315611e-02 109 | 1.063082431573519226e+00,-4.292032667223645570e-02 110 | 1.067213604147762007e+00,-4.283598031651868199e-02 111 | 1.071370760196515004e+00,-4.272684972357580768e-02 112 | 1.075546904168948492e+00,-4.259473374933542278e-02 113 | 1.079734440895590453e+00,-4.244063175820178557e-02 114 | 1.083926174952730026e+00,-4.226654247898337102e-02 115 | 1.088114711043776106e+00,-4.207346527608440967e-02 116 | 1.092292453999256452e+00,-4.186319900543254702e-02 117 | 1.096452208395460426e+00,-4.163714277719370027e-02 118 | 1.100586778808677613e+00,-4.139689557441467160e-02 119 | 1.104688769942316684e+00,-4.114385650726137822e-02 120 | 1.108750986372667002e+00,-4.087942468589976508e-02 121 | 1.112766032803137239e+00,-4.060499922049576327e-02 122 | 1.116727313428659274e+00,-4.032217909409614720e-02 123 | 1.120627432952642000e+00,-4.003216354398601851e-02 124 | 1.124459795570017517e+00,-3.973615180745046493e-02 125 | 1.128217605602836571e+00,-3.943574286753624702e-02 126 | 1.131894067373150570e+00,-3.913193608864762307e-02 127 | 1.135482984821653440e+00,-3.882613058095051028e-02 128 | 1.138977962016157752e+00,-3.851972545461086750e-02 129 | 1.142372802897357209e+00,-3.821372007403291138e-02 130 | 1.145661511278826650e+00,-3.790951354938258688e-02 131 | 1.148838290847021160e+00,-3.760830511794498177e-02 132 | 1.151897745034158316e+00,-3.731129401700518378e-02 133 | 1.154834277399573894e+00,-3.701987935672912400e-02 134 | 1.157642691248365940e+00,-3.673506050152103297e-02 135 | 1.160318189631394326e+00,-3.645803668866601233e-02 136 | 1.162856175472399611e+00,-3.619040690121082260e-02 137 | 1.165251851822241003e+00,-3.593297063067889263e-02 138 | 1.167501221223302021e+00,-3.568712698723611187e-02 139 | 1.169600486090846214e+00,-3.545407520816760971e-02 140 | 1.171545449094375968e+00,-3.523481465787758893e-02 141 | 1.173333112140678480e+00,-3.503054457365115115e-02 142 | 1.174960077390779567e+00,-3.484206444701169747e-02 143 | 1.176423746497227807e+00,-3.467077338812514509e-02 144 | 1.177721121366810619e+00,-3.451707114275320842e-02 145 | 1.178850403143600678e+00,-3.438235682106180469e-02 146 | 1.179809193353027474e+00,-3.426683029593179108e-02 147 | 1.180596092884925064e+00,-3.417149093176739816e-02 148 | 1.181209502756247032e+00,-3.409673847433032645e-02 149 | 1.181648423602588815e+00,-3.404317254226311984e-02 150 | 1.181912055932426986e+00,-3.401079313556577832e-02 151 | 1.181999999999999940e+00,-3.400000000000000244e-02 152 | -------------------------------------------------------------------------------- /cparvini/NACA23012_MainFoil.csv: -------------------------------------------------------------------------------- 1 | 1.000000000000000000e+00,0.000000000000000000e+00 2 | 9.995632777553475901e-01,7.295360150943998540e-05 3 | 9.982531110213903602e-01,2.928137704419988847e-04 4 | 9.960724978913410022e-01,6.585811423934377412e-04 5 | 9.930244364584123185e-01,1.167257624151039766e-03 6 | 9.891159222734340339e-01,1.816844486906327291e-03 7 | 9.843509527940229598e-01,2.605343001850822428e-03 8 | 9.787405210286257429e-01,3.527756346963331277e-03 9 | 9.722936212568805692e-01,4.581086429031135977e-03 10 | 9.650202471228297441e-01,5.760336426033042627e-03 11 | 9.569353890925370587e-01,7.060509515947856890e-03 12 | 9.480510395388531686e-01,8.475609512350145217e-03 13 | 9.383831882922459844e-01,1.000063959321871240e-02 14 | 9.279498239119917669e-01,1.162760484331964647e-02 15 | 9.167679355929627683e-01,1.335250780503599577e-02 16 | 9.048575106232434884e-01,1.516735356313384485e-02 17 | 8.922395356553232126e-01,1.706414720237928520e-02 18 | 8.789359967060947909e-01,1.903789190075112076e-02 19 | 8.649698791568560807e-01,2.108059274301544300e-02 20 | 8.503661671177130676e-01,2.318525417834257224e-02 21 | 8.351498446987715152e-01,2.534388129149860516e-02 22 | 8.193468953745416394e-01,2.754947853165386554e-02 23 | 8.029873000771508007e-01,2.979505034797868407e-02 24 | 7.860970422811091041e-01,3.207260182523914704e-02 25 | 7.687071022829479183e-01,3.437513741260557476e-02 26 | 7.508474610147946038e-01,3.669466219484407432e-02 27 | 7.325490987731801962e-01,3.902318125672072507e-02 28 | 7.138449945834448584e-01,4.135369904740584385e-02 29 | 6.947681274709284205e-01,4.367822065166553774e-02 30 | 6.753494777321623621e-01,4.598775178986164863e-02 31 | 6.556260218501032133e-01,4.827529691116450028e-02 32 | 6.356297394856870175e-01,5.053186173593594149e-02 33 | 6.153976071218704158e-01,5.274945134894206550e-02 34 | 5.949636031483974685e-01,5.491907147054473498e-02 35 | 5.743647040482252608e-01,5.703172782110577099e-02 36 | 5.536348882110977421e-01,5.907842612098705010e-02 37 | 5.328131308487801254e-01,6.105117145495464470e-02 38 | 5.119334103510166933e-01,6.293997017896617308e-02 39 | 4.910337025651685394e-01,6.473582801338348403e-02 40 | 4.701509839741924157e-01,6.642875131416418888e-02 41 | 4.493192329678324382e-01,6.801174453047861834e-02 42 | 4.285774247578539864e-01,6.947381465388012545e-02 43 | 4.079605370984054069e-01,7.080696676913482424e-02 44 | 3.875055464724435628e-01,7.200220659660455658e-02 45 | 3.672474306341166894e-01,7.305253858545963930e-02 46 | 3.472211673375732999e-01,7.394896845606194202e-02 47 | 3.274637330657701462e-01,7.468550002198599824e-02 48 | 3.080071074796429387e-01,7.525513773240218030e-02 49 | 2.888862683333400239e-01,7.565188540088503555e-02 50 | 2.701361933810096927e-01,7.587074620541335579e-02 51 | 2.517878629191833695e-01,7.590772268837019110e-02 52 | 2.338732566087967923e-01,7.575881739213859156e-02 53 | 2.164253534751897634e-01,7.542203158791008222e-02 54 | 1.994631414420428295e-01,7.489536654687617423e-02 55 | 1.828457101283583464e-01,7.415683625214364305e-02 56 | 1.665750582629447474e-01,7.314647883945808726e-02 57 | 1.507211413540987810e-01,7.180832990218220802e-02 58 | 1.353539149101171679e-01,7.010441359295488395e-02 59 | 1.205473318969135510e-01,6.800874643726589897e-02 60 | 1.063683497295719871e-01,6.551033542666863385e-02 61 | 9.288592455198492470e-02,6.261517674758852736e-02 62 | 8.016301632161944302e-02,5.934125895930188188e-02 63 | 6.825658880951714080e-02,5.571956235834008703e-02 64 | 5.721860896469845026e-02,5.179006152087271830e-02 65 | 4.709304882094986905e-02,4.760372403151595655e-02 66 | 3.791388676801554086e-02,4.321551493250291864e-02 67 | 2.971010437361837689e-02,3.868339735927949635e-02 68 | 2.250068956143892393e-02,3.406833254050423837e-02 69 | 1.629663533992380814e-02,2.942728424721876776e-02 70 | 1.110193916668998290e-02,2.481621688606046316e-02 71 | 6.914602312928977597e-03,2.028309994843279646e-02 72 | 3.725630499002634093e-03,1.587190546812227224e-02 73 | 1.522031987655850845e-03,1.161661183487302032e-02 74 | 2.878169484208042777e-04,7.544201887599486477e-03 75 | 0.000000000000000000e+00,3.668666727961016234e-03 76 | 6.355957610959428634e-04,0.000000000000000000e+00 77 | 2.147634104709404603e-03,-3.401836432029228894e-03 78 | 4.488145539436917686e-03,-6.484875619106248226e-03 79 | 7.629147861959792790e-03,-9.263108662890399622e-03 80 | 1.154066014015086260e-02,-1.175852158027494536e-02 81 | 1.619569953509568047e-02,-1.399909657457856609e-02 82 | 2.156628384347554842e-02,-1.601381521352419901e-02 83 | 2.762742895518449995e-02,-1.783365779364324069e-02 84 | 3.435814821773351679e-02,-1.949260270467982267e-02 85 | 4.173945370744205907e-02,-2.102362897197382341e-02 86 | 4.975635495824654725e-02,-2.246071498526936577e-02 87 | 5.839985769050883013e-02,-2.383384167669361925e-02 88 | 6.766696381101618141e-02,-2.517199061396951237e-02 89 | 7.755867268417285243e-02,-2.649914654279877935e-02 90 | 8.808098049640426808e-02,-2.783729548007467247e-02 91 | 9.924687898496555027e-02,-2.920342662066925318e-02 92 | 1.110723579803244987e-01,-3.060853297302915110e-02 93 | 1.235744066773531991e-01,-3.205661199477132656e-02 94 | 1.367760104573491065e-01,-3.354366622827881228e-02 95 | 1.506961572439928232e-01,-3.505970202950923348e-02 96 | 1.653548343253690434e-01,-3.657973528835659766e-02 97 | 1.807710296251583693e-01,-3.806978761507680969e-02 98 | 1.969577348806159089e-01,-3.948288888267061786e-02 99 | 2.138599850495084831e-01,-4.075607913367097768e-02 100 | 2.312759085221798572e-01,-4.186337489356768693e-02 101 | 2.491655307224604765e-01,-4.280277743355225678e-02 102 | 2.674978713538189723e-01,-4.357628548243316913e-02 103 | 2.862399513909153481e-01,-4.418589776901890587e-02 104 | 3.053597911728140879e-01,-4.463261365771369060e-02 105 | 3.248214135809625036e-01,-4.492342869934721344e-02 106 | 3.445938383188292264e-01,-4.505934225832370493e-02 107 | 3.646390895390531073e-01,-4.504734988547283436e-02 108 | 3.849241882162944273e-01,-4.489244840281580995e-02 109 | 4.054121578675962123e-01,-4.460163336118228711e-02 110 | 4.260680207388101159e-01,-4.417990158259346711e-02 111 | 4.468538009825751001e-01,-4.363424861787902620e-02 112 | 4.677345208447427072e-01,-4.297366874667710862e-02 113 | 4.886722044779520102e-01,-4.220315879100890871e-02 114 | 5.096308747636502101e-01,-4.133271239491682902e-02 115 | 5.305735552188807214e-01,-4.036732638042205001e-02 116 | 5.514622699962823393e-01,-3.931599502716272287e-02 117 | 5.722610419773023205e-01,-3.818571388596852384e-02 118 | 5.929338940433882543e-01,-3.698447787207335968e-02 119 | 6.134438497115833888e-01,-3.571928253630690664e-02 120 | 6.337549318633348694e-01,-3.439712342949883400e-02 121 | 6.538301640156859440e-01,-3.302499610247881801e-02 122 | 6.736365671432967828e-01,-3.161089547048077236e-02 123 | 6.931371647632104116e-01,-3.016081771993012195e-02 124 | 7.122989778500872227e-01,-2.868075903725230552e-02 125 | 7.310880280141829335e-01,-2.717871433768123332e-02 126 | 7.494703368657532616e-01,-2.565968044323809968e-02 127 | 7.674149241082670603e-01,-2.413065290475257738e-02 128 | 7.848898100807885081e-01,-2.259862727305433569e-02 129 | 8.018640144867862363e-01,-2.106860037016457243e-02 130 | 8.183075563941332176e-01,-1.954756774691296384e-02 131 | 8.341914542351063222e-01,-1.804152558972493478e-02 132 | 8.494887251707912146e-01,-1.655647008502592055e-02 133 | 8.641713869978692175e-01,-1.509939678364559910e-02 134 | 8.782134562418301149e-01,-1.367530250760516132e-02 135 | 8.915909481569721518e-01,-1.229018344333004074e-02 136 | 9.042808773619976925e-01,-1.095203450605414935e-02 137 | 9.162592591112050933e-01,-9.664853153394440538e-03 138 | 9.275061061165097431e-01,-8.435634936180588794e-03 139 | 9.380024304542310398e-01,-7.270376040838026806e-03 140 | 9.477272454718798089e-01,-6.174073289387948908e-03 141 | 9.566655607033924813e-01,-5.152722868255788652e-03 142 | 9.648003869538972488e-01,-4.210322235058502026e-03 143 | 9.721187324861386703e-01,-3.353866940625761794e-03 144 | 9.786056068340533987e-01,-2.585355713766044651e-03 145 | 9.842520157180031370e-01,-1.911784105309023360e-03 146 | 9.890459667651372300e-01,-1.334151479658936918e-03 147 | 9.929804644246258416e-01,-8.574546588369796624e-04 148 | 9.960475137812350166e-01,-4.836923716516295323e-04 149 | 9.982421180129437133e-01,-2.158627113156032489e-04 150 | 9.995602796621348984e-01,-5.396567782890081223e-05 151 | 1.000000000000000000e+00,0.000000000000000000e+00 152 | -------------------------------------------------------------------------------- /cparvini/NASAFowler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/cparvini/NASAFowler.jpg -------------------------------------------------------------------------------- /cparvini/junkersFlap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/cparvini/junkersFlap.gif -------------------------------------------------------------------------------- /cparvini/styles/custom.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 129 | 145 | -------------------------------------------------------------------------------- /cparvini/theta_20_plots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barbagroup/AeroPython-studentprojects2015/81d70dd5d67f1fed64fefa05612a5670c0d73219/cparvini/theta_20_plots.jpg --------------------------------------------------------------------------------