Skip to content

Commit

Permalink
Merge branch 'develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sofie-0 committed Jul 14, 2022
2 parents c7c5ae5 + a3b8af4 commit 1979784
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions trunk/SUAVE/Input_Output/OpenVSP/vsp_propeller.py
Expand Up @@ -256,9 +256,9 @@ def make_header_text(vsp_bem,prop):
Y = np.round(prop.origin[0][1],5)
Z = np.round(prop.origin[0][2],5)
rotations = np.dot(prop.body_to_prop_vel(),np.array([-1,0,0])) # The sign is because props point opposite flow
Xn = np.round(rotations[0],5)
Yn = np.round(rotations[1],5)
Zn = np.round(rotations[2],5)
Xn = np.round(rotations[0][0],5)
Yn = np.round(rotations[0][1],5)
Zn = np.round(rotations[0][2],5)

beta_3_4 = np.interp(prop.tip_radius*0.75,prop.radius_distribution,beta)

Expand Down

0 comments on commit 1979784

Please sign in to comment.