Skip to content

Commit

Permalink
Adds NACA-RM-A50K27 wind tunnel data to study, for comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdsharpe committed Jun 15, 2024
1 parent d17797f commit 0ad9da1
Show file tree
Hide file tree
Showing 4 changed files with 1,405 additions and 123 deletions.

Large diffs are not rendered by default.

Binary file not shown.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import pandas as pd
from pathlib import Path

file = Path(__file__).parent / "NACA-RM-A50K27.xlsx"

CL = pd.read_excel(file, sheet_name="CL")
CD = pd.read_excel(file, sheet_name="CD")
Cm = pd.read_excel(file, sheet_name="CM")

from scipy import interpolate
CL_to_alpha= interpolate.interp1d(
CL["CL"],
CL["alpha"],
fill_value="extrapolate"
)

Cm['alpha'] = CL_to_alpha(Cm['CL'])

0 comments on commit 0ad9da1

Please sign in to comment.