Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

View file
name2 Calculating Static Friction (updated modelFeb 10)[1836].pdf

Code Block
languagepy
# Calculating Static Friction (for ana 89.5 inch rotor)
import math

#variables
m = 297 #kg
g = 9.81 #m/s^2
r_wheel = 0.2792 #m
r_rotor_effective = 0.08575041048004 #m
mu = 0.42


ff_max = m*g*math.sin(0.191986)
ff_bp = (ff_max*r_wheel)/r_rotor_effective 
f_clamp = ff_bp/mu 
t_brake_req = ff_bp * r_rotor_effective
t_brake_per_wheel = t_brake_req/2

print(f"Braking torque required per wheel is {t_brake_per_wheel}")

View file
name2 Actual Braking Torque Achieved [1838](Updated Feb 10).pdf

Code Block
languagepy
# Calculating Actual Braking Torque Achieved (for an 89.5 inch rotor)

braking_radius_in = 34.376126
lever_force_lbs = 8065

t_brake_actual = 2.69*braking_radius_in*lever_force_lbs
t_brake_nm = t_brake_actual*(0.11298482933333)

print(f'Theoretical braking torque generated per wheel is {t_brake_nm} N/m')

View file
nameASC Regulation 10.6A [1775](Updated Feb 10).pdf

Code Block
languagepy
# Calculations for ASC Regulation 10.6A (must be able to withstand pushing force of 10% of vehicles weight when parking brake is activated)

m = 297 #kg

f_push = 0.1*m*9.81
effective_rotor_radius = 0.08575041048004 #m

t_brake_actual = 164163.1703917601402021539 #N#n/m per wheel

f_brake = t_brake_actual / effective_rotor_radius

print(f"Braking force generated is {f_brake} per wheel")