ARCHIVED: Superceded by airfoil routines in CCBlade.jl
Airfoil pre-processing tools, polar generation, and post-processing (splining of multi-dimensional lookup airfoil tables). Includes calls to Xfoil, AirfoilPreppy, and the interpolations packages.
- Python 3
- matplotlib
- mpmath
- scipy
The airfoilprep.py package (wrapped by the AirfoilPrep.jl package) is written in Python 3.8, so make sure that the Python version linked to PyCall.jl is 3.8. After installing PyCall (] add PyCall), you can do this by running the following:
import Pkg
Pkg.add("PyCall")
ENV["PYTHON"] = "path/to/your/python3"
Pkg.build("PyCall")
Then close and reopen the Julia REPL, and run:
import PyCall
PyCall.pyversion
which should reveal your Python version:
v"3.8"