plt.plot(x, spline(x, nu=1), '--', label='1st derivative') plt.plot(x, spline(x, nu=2), '--', label='2nd derivative') plt.plot(x, spline(x, nu=3), '--', label='3rd ...
This project implements cubic spline interpolation and numerical integration methods in Python to study the aerodynamics of a 2D airfoil. It reconstructs a smooth airfoil profile from discrete ...