Code to generate 4 and 5 digit NACA profiles.
Works with Python 2 and Python 3.
Problems/Improvements: Dirk Gorissen [email protected]
# Get help
python naca.py -h
# Generate points for NACA profile 2412
python naca.py -p 2412
# Generate points for NACA profile 2412 with 300 points
python naca.py -p 2412 -n 300
# Generate points for NACA profile 2412 and display the result
python naca.py -p 2412 -d
# Generate points for NACA profile 2412 with smooth points spacing and display the result
python naca.py -p 2412 -d -s
# Generate points for several profiles
python naca.py -p "2412 23112" -d -s