Versions Compared

Key

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

...

  1. Pull data from the csv file
  2. Convert mass to gravitational force on the rocket, in rocket coordinates. To convert forces from Earth coordinates to rocket coordinates, you need to transform the forces to the new coordinate system. You can read more about transformation matrices for stresses here. We use the 2D transformation matrix for stresses because stresses are just scaled forces (force/area), and because we’re looking at a slice of the rocket with the axial and transverse loads. We’re ignoring hoop stresses because they are not as significant, and this will simplify the analysis.
  3. Use the accelerations and mass to find the total force on the rocket. Subtract the weight, thrust, and drag from this total force to get the aero forces on the rocket.
  4. Sum forces to calculate the compressive force and convert to pounds so we can test it on Imperial imperial machines 😊
  5. Include a 1.5 safety factor per this NASA design document. Aerospace standard for unmanned spacecraft is 1.25, but we’re using 1.5 because we expect variation in our wet layups.
  6. Use this data to graph the forces on the rocket.
  7. You can calculate the stresses on the rocket by dividing the force per unit area.

...