Shown below are ODEs for the angular velocity measures wx, wy, wz
for the spinning-book (shown right) along with the commands to
Input initial values and numerical integration parameters and to
Output and Plot wx, wy, wz via the ODE command.
|
|
Constant Ixx = 1 kg*m^2, Iyy = 2 kg*m^2, Izz = 3 kg*m^2
Variable wx', wy', wz'
wx' = (Iyy-Izz) * wy * wz / Ixx
wy' = (Izz-Ixx) * wx * wz / Iyy
wz' = (Ixx-Iyy) * wx * wy / Izz
Input wx = 0.2 rad/sec, wy = 7.0 rad/sec, wz = 0.2 rad/sec
Input tFinal = 4 sec, tStep = 0.02 sec
OutputPlot t sec, wx rad/sec, wy rad/sec, wz rad/sec
ODE() CoupledODESFirstOrder
|
Note: The prime symbol ' denotes differentiation with respect to t.
Note: Commands may be entered from a text file, e.g., CoupledODEs.txt.
Note: Change CoupledODEs to CoupledODEs.m to auto-generate a MATLAB® .m file.
Note: MotionGenesis™ forms and solves these dynamics equations here.
Note: Video and information about 3D spin-stability and Dzhanibekov effect here.
|
|
|
|