Source code for TirePolynomial
import Tire
[docs]class TirePolynomial(Tire.Tire):
'''TirePolynomial'''
def __init__():
self.k = 40000
def PlotTire(self):
# ''' Returns the handle of the curve'''
# alpha = (0:0.1:15)*pi/180
# Fy = - self.Characteristic(alpha)
# p = plot(alpha*180/pi,Fy)
# grid on; box on;
# xlabel('Slip angle [deg]')
# ylabel('Lateral force [N]')
pass
def Characteristic(self, alpha, varargin):
# Fy = - self.k * alpha
pass