Skip to content

Commit

Permalink
cleanup nomenclature
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdsharpe committed Mar 24, 2024
1 parent 58ab1fb commit 2a63841
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"s_kulfan_TE_thickness": df["kulfan_TE_thickness"] * 50,
"s_sin_2a" : np.sind(2 * df["alpha"]),
"s_cos_a" : np.cosd(df["alpha"]),
"s_cos2_a" : 1 - np.cosd(df["alpha"]) ** 2,
"s_1mcos2_a" : 1 - np.cosd(df["alpha"]) ** 2,
"s_Re" : (np.log(df["Re"]) - 12.5) / 3.5,
# No mach
"s_n_crit" : (df["n_crit"] - 9) / 4.5,
Expand Down
2 changes: 1 addition & 1 deletion training/gen2_architecture/training_data/load_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"s_kulfan_TE_thickness": df["kulfan_TE_thickness"] * 50,
"s_sin_2a" : np.sind(2 * df["alpha"]),
"s_cos_a" : np.cosd(df["alpha"]),
"s_cos2_a" : 1 - np.cosd(df["alpha"]) ** 2,
"s_1mcos2_a" : 1 - np.cosd(df["alpha"]) ** 2,
"s_Re" : (np.log(df["Re"]) - 12.5) / 3.5,
# No mach
"s_n_crit" : (df["n_crit"] - 9) / 4.5,
Expand Down

0 comments on commit 2a63841

Please sign in to comment.