<< CL_fr_locOrbMat Coordinates and frames CL_fr_qsw2inertial >>

CelestLab >> Coordinates and frames > CL_fr_lvlhMat

CL_fr_lvlhMat

Inertial frame to LVLH local orbital frame transformation matrix

Calling Sequence

M = CL_fr_lvlhMat(pos_car,vel_car)

Description

Parameters

pos_car:

satellite's position vector relative to the inertial frame [m] (3xN)

vel_car:

satellite's velocity vector relative to the inertial frame [m/s] (3xN)

M :

inertial frame to LVLH local frame transformation matrix (3x3xN)

Bibliography

Authors

See also

Examples

// Inertial to LVLH :
pos_car = [[3500.e3;2500.e3;5800.e3] , [4500.e3;2100.e3;6800.e3]];
vel_car = [[1.e3;3.e3;7.e3] , [2.e3;3.e3;6.e3]];
[M] = CL_fr_lvlhMat(pos_car,vel_car)
pos_lvlh = M*pos_car;

// LVLH to inertial :
pos_car = M'*pos_lvlh;

Report an issue
<< CL_fr_locOrbMat Coordinates and frames CL_fr_qsw2inertial >>