misterminis
Technical User
I'm creating a user form to calculate the lift force of a helicopter and the user form always returns a value of 0. Here is my code.
Private Sub calculatelift_Click()
Dim density As Double, velocity As Double, area As Double, lift As Double
'Choosing units for the air density
If kgperm3 Then
p = density
Else
p = density * 2.204622 / 3.2808 / 3.2808 / 3.2808
End If
'Choosing units for the blade velocity
If mpers Then
v = velocity
Else
v = velocity * 0.000621371 / 0.0002778
End If
'Choosing units for the referance area
If m2 Then
a = area
Else
a = area / 3.28 / 3.28
End If
'messaging the force of the lift
forcelift = (0.5 * p * (v ^ 2)) * a * 0.08
MsgBox ("The Force of lift is = " & FormatNumber(forcelift, 1) & "N")
It always reports 0 as the answer.
Thanks
Private Sub calculatelift_Click()
Dim density As Double, velocity As Double, area As Double, lift As Double
'Choosing units for the air density
If kgperm3 Then
p = density
Else
p = density * 2.204622 / 3.2808 / 3.2808 / 3.2808
End If
'Choosing units for the blade velocity
If mpers Then
v = velocity
Else
v = velocity * 0.000621371 / 0.0002778
End If
'Choosing units for the referance area
If m2 Then
a = area
Else
a = area / 3.28 / 3.28
End If
'messaging the force of the lift
forcelift = (0.5 * p * (v ^ 2)) * a * 0.08
MsgBox ("The Force of lift is = " & FormatNumber(forcelift, 1) & "N")
It always reports 0 as the answer.
Thanks