CU-ICAR Internship – Summer 2019
In Summer 2019, I interned at CU-ICAR as part of the future development cycle for the Clemson Formula SAE Team. The primary goal of the work to create a software tool to understand the effects of vehicle subsystem interactions and identify areas of focus for the team. This tool will be used to generate and optimize vehicle concepts for different design ideologies, allowing the team to select the concept that will yield the most points at Formula SAE Michigan. Our strategy was based on trade-space analysis; we divided the tool into 4 sections, each directly corresponding to the divisions of our team: aerodynamics, chassis, suspension, and powertrain. Each of these sections generates output using distinct models of various stages of automotive performance to build a quasi-static lap-time simulation.
I developed three models for the suspension section: a simplified Pacejka Magic Formula tire model, a force analysis for the links in the suspension, and a roll-center migration simulation. The three models were developed in MATLAB and each model utilized modeFrontier to make use of its multi-objective optimization capabilities.
Pacejka Magic Formula Tire Model
The Pacejka tire model was developed to compare the accuracy of a previously developed 3D spline fit model and extract performance characteristics. Both tire models were developed from experimental data provided by the Tire Testing Consortium (TTC). The 3D spline fits were quickly generated using the csaps function in MATLAB. To generate the Magic Formula fits, I used modeFrontier’s optimization techniques to vary the Magic Formula parameters inside a MATLAB script to find a set of coefficients that have the least root mean squared error (RMSE) to the line of best fit of the experimental tire data. Although this is a very simple model, it laid the foundation for my Capstone project where I have created a more robust Pacejka Magic Formula fitting program. For my Capstone, I’m using MATLAB’s optimization techniques instead of modeFrontier’s to fit the tire data. My program currently can take in many of the TTC’s tire data, demultiplex the data, generate Magic Formula fits, and export the fits for future use, such as comparing tire performance on different wheel sizes, etc. More can be read about my Capstone in my research paper Development and Comparison of Tire Models in a Lap Time Simulation Toolbox.
The figure above represents the Hoosier 18x7.5-10 R25B tire at 12 psi and 0,2,4 degrees of camber. This is simply a snapshot of the data.
Suspension Link Force Minimization
Tiger 20 at 2019 FSAE Michigan Endurance
The Clemson Formula SAE team runs a double-wishbone suspension with one link for steering and one link for the push/pull rod. This is a total of 6 links for each corner of the car. Knowing the direction and the magnitudes of those forces that are going a part/system is critical for accurately sizing the links to withstand the loads while maintaining a low weight. By manipulating the geometry, you can reduce the forces and compliance through each link which makes the car lighter and more predictable. The inputs to the program are the forces/moments at the tire contact patch and the initial suspension pickup points. The program then creates vectors to represent the suspension links and via a series of matrix transformations the program completes the 3D sum of forces and moments to calculate the forces through each link. With this information, the program will then make an informed decision and shift the control arm inboard pickup points along the instant axis that is created between the two inboard control arm points. This works because changing the location of the inboard pickup points along this instant axis does not affect the motion/characteristics of the control arm geometry. modeFrontier was the program that controls the overall minimization problem.
The roll center of a vehicle is the force coupling point at which the unsprung and sprung masses react. An oversimplification of the idea with roll centers is that you want to minimize this point’s movement as much as possible to increase the vehicle’s performance. To do this I created a two-dimensional representation of the vehicle’s front view swing arm (FVSA) geometry in MATLAB. Note that I modeled the front and rear suspensions as two separate programs, which means the front suspension cannot affect the rear and vice versa. Given inputs such as chassis width, kingpin inclination angle, scrub radius, track width, static roll center height, and camber change rate the program first calculates the 2-D representation of the geometry. Then it places suspension in its maximum heave and maximum roll modes and calculates the roll centers for each mode. The result of this is the ability to study how the suspension’s roll center migrates as it exhibits different vehicle attitudes. To take it one step further, I allowed modeFrontier to vary several parameters in hopes to find the suspension geometry which has the smallest roll center migration. The roll center of the 2018 Clemson FSAE car, which finished 18th at FSAE Michigan 2019, migrates roughly 5” at the maximum roll. With this program, we’ve been able to make the 2020 Clemson FSAE car’s roll center migrate 0.2” at the maximum roll.
The figure above represents the front view swing arm plane (FVSA) of the 2020 CUFSAE car in its maximum roll mode.