-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPolar_parser.py
37 lines (30 loc) · 994 Bytes
/
Polar_parser.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import pandas as pd
def parse_text(text):
data = []
columns = []
lines = text.strip().split('\n')
for line in lines:
if line.startswith("Beta"):
columns = line.split()
elif not line.strip():
break
else:
data.append(line.split()[:len(columns)])
df = pd.DataFrame(data, columns=columns)
df = df.astype({col: float for col in df.columns})
return df
def polar_parser(file_path):
with open(file_path, 'r') as file:
data = file.readlines()
data_str = ''.join(data)
df = parse_text(data_str)
df_selected = df[["AoA" , "CDtot" ]]
df_selected['AoA'] = df_selected['AoA']*3.14/180
return df_selected
if __name__ == "__main__":
file_path = "C:/Users/Rayaan_Ghosh/Desktop/Airbus/OpenVSP/assignment-5_DegenGeom.polar"
with open(file_path, 'r') as file:
data = file.readlines()
data_str = ''.join(data)
df = parse_text(data_str)
print("Data Frame:")