Website Path: Home >> New Mays

New Mays Model Rocket




Media:




Purpose:

The purpose of this project is nothing special: Simply to expand on a previous project of mine and have fun/learn some things along the way while doing it. Mission Accomplished!



Requirements:

I generated a simple list of requirements for this project. Due to time constraints and priority, not all were met. However, at a high level, they helped me guide the design and write the flight software. Some of these requirements were then used as success checks within the Monte-Carlo simulation environment.

  • Req. 1: Design, build, and fly a TVC + Aft Fin controlled model rocket with all avionics, flight software, and flight hardware created completely from scratch.
  • Req. 2: Write a fully non-linear 6DOF monte-carlo simulation that builds and integrates the flight software for testing purposes.
  • Req. 3: Write the flight software in C/C++ as a library of software capabilitites, and use the Arduino environment as a wrapper to pull in and compile the flight binary.
  • Req. 4: Retain boost stability & attitude control on ascent utilizing weighted pseudoinverse control allocation.
  • Req. 5: Deploy a parachute and have the vehicle return to the ground safely for another launch attempt.



Flight Software Documentation:

The following PDF documents describe the flight software capabilities that were written for this project. The term "Flight Manager" refers to the main flight computer software that is responsible for igniting the pyros, actuating the TVC, actuating the aft fins, and deploying the parachute.



Databooks:

The following PDF documents describe the aspects of the hardware and monte-carlo desktop simulation of New Mays.



Launch Schedule:


M1
(Mission 1)
Test Flight: Meant to validate modeling, controls, hardware, aerodynamics, and nominal SW operation.
Schedule Goal: March 16 2025



Matlab/Simulink Monte-Carlo Simulation

The Monte-Carlo simulation was developed in Matlab/Simulink and included an entire infastructure of SW that initialized, parallelized, post-processed, and plotted the results from flight software and plant model integrated simulations. Below is a top-level of the simulink code. For more information on the simulation, check out the above linked Databooks or contact me directly.



Flight Software & Architecture

The flight software was originally written in Simulink for prototyping, but then was transformed (manually due to home license) to C/C++ for actual integration with hardware. Tooling was developed to auto-code the interface document into nested C-struct arrays of bus/gain elements for easier integration. The entire flight software package was written as a C++ class object and referenced within the kernal runner for generating the binary. For more information, check out the above linked databooks or contact me directly.



Main Flight Computer (MFC)

The flight computer was designed in KiCAD and printed using a 3rd party PCB manufacturer. Originally developed as a hat for the arduino DUE, it quickly became apparent that more computing power was needed to perform the necessary flight logic, sensor reads, and wireless communications. The arduino DUO was replaced with a Teensy 4.1 to serve as the main flight brain. The flight software on this board runs at 100Hz. Below is a top view picture of the trivial PCB design.



Integrated Ground Station (IGS)

Using Tkinter and pyuic5, I developed an integrated ground station (IGS) where I could wirelessly connect my laptop to the vehicle using 2 Xbee radios. IGS was able to configure the serial ports, log IO telemetry, command tests and launch sequences, and send/receive the wireless duplex telemetry packets based on calculated/verified CRC checks. If IGS put the flight computer into a manual model, IGS would have direct control of all the rocket's effectors and pyro channels (see NMSW01 - Flight Manager Sequencer for more information on the Sequencer software capability).



SRM & Hotfire

I wanted to characterize the SRM I would be using for the first flight test (which in this case was a Cesaroni G33). I developed a launch pad with load cells that could record thrust data over time, capturing the timeseries thrust profile and pyro-ignition delay time. This data was then used as a baseline set for the Monte-Carlo integrated non-linear simulation and linear stability analysis. More information about this SRM and Hotfire is detailed in NM08 - Solid Rocket Motor Databook .



Thrust Vector Assembly Effector

The thrust vector assembly (TVA) is a 3D printed machanism used to vector thrust from an SRM. As the SRM produced thrust, the TVA is able to tilt the SRM in such a way that torques are generated in the rocket's body frame. These torques, if correctly applied, can maintain control over the rocket's state. The TVA is an assembly of 3 parts: outer gimbal, inner gimbal, and SRM sleeve. The outer gimbal controls the pitch axis of the SRM, and the inner gimbal controls the yaw axis of the SRM. The below figure illustrates a CAD rendering of the TVA. Included in the figure is the gimbal coordinate system (GCS) and TVA coordinate system (TCS). The GCS is attached to the outer gimbal and conveniently aligned with the vehicle fabrication frame (FAB). The TCS moves with the SRM sleeve but is nominally aligned with the GCS. The outer gimbal contains the fixed attachment points that fix the assembly into the vehicle. The outer gimbal contains an electro-mechanical servo actuator (servo) to rotate the inner gimbal along the Y^GCS axis of rotation, or θ. The inner gimbal contains a separate servo that rotates the SRM sleeve along the Z^TCA axis of rotation, or ψ. When there is thrust produced in the X^TCS direction, these two sequential rotations can be used to generate a set of desired body pitch and yaw torques. More information about the TVA, including the mathematical model and simulation architecture, is detailed in NM10 - Thrust Vector Assembly Databook.



Aft Fin Effectors

The aft fins are 3D printed fins with a symmetric airfoil (NACA 0008). This fin design uses actuator control rods to manipulate the angle of the fin relative to the vehicle’s body. Due to the design of the New Mays vehicle, there was not enough space within the outer mold line (OML) of the vehicle to have these actuating components retained within given the space taken up by the TVA. There is a future design where the servos themselves are retained inside the vehicle aft of the avionics bay, but for SN01 this design is sufficient.
These aft fins are used for all axes control during boost. More information about the aft fins, including the mathematical model and simulation architecture, is detailed in NM11 - Aft Fin Databook.



Stability Analysis

The stability analysis was performed using an in-house tool I made called @StabilityCore. It was used to run and assess the stability of the system at various points using monte-carlo simulation artifacts. For each simulated monte-carlo index, it generated a set of operating points at specific points in time that the tool used to parameterize the closed loop system and provide me with controller artifacts, such as gain and phase margin, or timeseries step reponses.



Boost Control & Allocation Scheme

The following block diagram describes the GNC and Allocation architecture of the New Mays model rocket. While the Guidance and Control portions of this model rocket are trivial (simple PD control), the allocation block is of more academic interest.

The allocation block uses a Weighted Least Squares Pseudo-Inverse Control Allocation (WLS-PCA) algorithm, which is a typical algorithm used to combine/blend control effort from multiple effectors. Below is the equation that describes how the control and weight matrices are used in combination with a desired angular acceleration to provide the solution to an actuator control vector, u.
More about the GNC structure and this algorithm is described in NMSW05 - Flight Manager Guidance, Control, and Allocation.



Learnings & Conclusion

TODO...