trick/trick_sims/SIM_splashdown
jmpenn ee2f824550
Disable unneeded SimObjects from default_trick_sys.sm in Trick exampl… (#1719)
* Disable unneeded SimObjects from default_trick_sys.sm in Trick example sims.

* Take out unit test disable. Add some S_defines I forgot.
2024-05-23 10:12:27 -05:00
..
Images Add documentation to example simulation: SIM_splashdown #1289 2022-06-16 18:27:20 -05:00
models Refactoring of CrewModule Graphics client in SIM_splashdown #1322 2022-07-27 16:07:50 -05:00
Modified_data Initial commit of SIM_splashdown. #1266 2022-05-20 15:20:45 -05:00
RUN_test Improvements to SIM_splashdown code while writing documentation. #1289 2022-06-16 18:44:49 -05:00
README.md Fix broken links in SIM_splashdown README.md. #1289 2022-06-17 10:53:36 -05:00
S_define Disable unneeded SimObjects from default_trick_sys.sm in Trick exampl… (#1719) 2024-05-23 10:12:27 -05:00
S_overrides.mk Initial commit of SIM_splashdown. #1266 2022-05-20 15:20:45 -05:00

SIM_splashdown

SIM_splashdown is a simulation of a space craft crew module dropping into a body of water.

Crew Module Picture

Building the Simulation

In the SIM_splashdown directory, type trick-CP to build the simulation executable. When it's complete, you should see:

=== Simulation make complete ===

Now cd into models/CrewModuleGraphics/ and type mvn package. This builds the graphics client for the simulation.

Running the Simulation

In the SIM_splashdown directory:

% S_main_*.exe RUN_test/input.py

The Sim Control Panel, and a graphics client called "CM Display" should appear.

Click the Start on the Trick Sim Control Panel.

Click and drag the mouse on the display to change the viewing orientation.

The black and white center of gravity symbol indicates the center of gravity of the vehicle.

The blue and white center of gravity symbol indicates the center of gravity of the water that is displaced by the vehicle, that is: the center of buoyancy.

Dynamics Model

Vehicle State

The vehicle state is defined by the following variables. These are calculated by numerically integrating force, velocity, torque, and body rotation rate over time.

Linear momentum

The linear momentum of the vehicle is determined by integrating the total force on the vehicle over time.

linear_momentum_equation

  • crewModule.dyn.momentum ( double[3] )

Position

The position of the vehicle is determined by integrating the linear velocity of the vehicle over time.

position_equation

  • crewModule.dyn.position ( double[3] )

Angular momentum

The angular momentum of the vehicle is determined by integrating the total torque of the vehicle over time.

angular_momentum_equation

  • crewModule.dyn.angular_momentum ( double[3] )

Body rotation

The body rotation matrix of the vehicle is determined by integrating the body rotation rate matrix of the vehicle over time.

body_rotation_equation

  • crewModule.dyn.R ( double[3][3] )

Vehicle State Derivatives and Dependencies

Total Force

The total force acting on the crew module is the sum of the force of gravity, the force of buoyancy, and the force of drag.

F_total_equation

  • crewModule.dyn.force_total ( double[3] )

Force of Gravity

By Newtons 2nd Law, the force of gravity on the vehicle is the mass of the vehicle times the acceleration of gravity.

F_gravity_equation

  • crewModule.dyn.force_gravity ( double[3] )

Acceleration of Gravity

In this simulation the acceleration is fixed at:

acceleration_of_gravity_equation

Vehicle Mass

Default value of the vehicle mass is:

mass_vehicle_equation

  • crewModule.dyn.mass_vehicle ( double )

Force of Buoyancy

Buoyancy is a force on an object, that opposes gravity, by a fluid within which its immersed. This force is equal to the mass of the displaced water times the acceleration of gravity.

F_buoyancy_equation

  • crewModule.dyn.force_buoyancy ( double[3] )

Drag force

This drag force is not accurate. It's simply opposes the linear velocity, as a means of sapping energy from the system.

Force_drag_equation

  • crewModule.dyn.force_drag ( double[3] )

Displaced Mass

The displaced mass of the water is equal to the density of water times its displaced volume.

mass_displaced_equation

  • crewModule.dyn.mass_displaced (double)

Density of Water

Default value is the density of sea water:

density_of_water_equation

  • crewModule.dyn.density_of_water (double)

Total Torque

The total torque acting on the crew module is the sum of the buoyancy torque, and drag torque.

torque_total_equation

  • crewModule.dyn.torque_total (double[3])

Buoyancy Torque

The force of buoyancy acts on the center of buoyancy, that is: the center of mass of the displaced water. So the torque on the vehicle due to buoyancy is:

Equation 5

  • crewModule.dyn.torque_buoyancy (double[3])

Drag Torque

We won't even pretend this drag torque is accurate. It's simply opposes the angular velocity, as a means of sapping energy from the system, to settle the rocking of the crew module.

Equation 6

  • crewModule.dyn.torque_drag (double[3])

Angular Velocity

The angular velocity of the vehicle is a function of the angular momentum, the vehicle inertia tensor and the vehicle body rotation.

Equation 7

where:

Equation 8

  • crewModule.dyn.angular_velocity (double[3])

Body Rotation Rate

The body rotation rate is the product of the skew-symetric-matrix form of the angular velocity, and the body rotation matrix.

Equation 9

  • crewModule.dyn.Rdot (double[3][3])

Linear Velocity

The linear velocity of the vehicle is the linear momentum of the vehicle divided by its mass.

Equation 10

  • crewModule.dyn.velocity (double[3])

Inertia Tensor

Default value is:

Equation 10

  • crewModule.dyn.I_body (double[3][3])

The following convenience function:

crewModule.dyn.init_inertia_tensor(double A, double B, double C);

sets the diagonal elements as follows:

I_body[0][0] = mass_vehicle * (B*B + C*C);
I_body[1][1] = mass_vehicle * (A*A + C*C);
I_body[2][2] = mass_vehicle * (A*A + B*B);

All other I_body elements are set to 0.


Displaced Volume

The displaced volume is the volume that is 1) within the vehicle and 2) within the body of water.

Equation 11

  • crewModule.dyn.volume_displaced (double)

Center of Buoyancy

The center of buoyancy is the center of gravity of the displaced volume of water.

Equation 12

  • crewModule.dyn.center_of_buoyancy (double[3])

Vehicle Shape

In this simulation, the shape of the crew module is defined by a sphere, a cone, and a plane, as shown in the picture below.

Equation 12

bool CrewModuleShape::containsPoint(double (&test_point)[3]) returns true if the given point is 1) in the sphere, 2) in the cone, and 3) on the correct side of the plane.

The pseudo-function inside(double p[3]) used in the integrals above represents logic that determines whether a point is within the displaced volume of water. A point is within the displaced volume if 1) it is within the crew module volume, that is containsPoint returns true, and 2) it is below the surface of the water, that is the z component of the point is less than 0.