<< CL_fr_J20002ter DEPRECATED CL_fr_ter2J2000 >>

CelestLab >> DEPRECATED > CL_fr_ter2G50

CL_fr_ter2G50

Terrestrial frame to Gamma50 (Veis) vector transformation - DEPRECATED

Calling Sequence

[pos_G50,vel_G50,jacob] = CL_fr_ter2G50(cjd,pos_ter [,vel_ter,ut1_utc])

Description

Parameters

cjd:

modified julian day from 1950.0 (UTC) (1xN or 1x1)

pos_ter:

position vector relative to terrestrial frame [m] (3xN or 3x1)

vel_ter:

(optional) velocity vector relative to terrestrial frame [m/s] (3xN or 3x1)

ut1_utc :

(optional) ut1-utc [seconds] (default is 0) (1xN or 1x1)

pos_G50:

position vector relative to Gamma50 (Veis) [m] (3xN)

vel_G50:

(optional) velocity vector relative to Gamma50 (Veis) [m/s] (3xN)

jacob:

(optional) jacobian of the transformation [d(x,y,z,vx,vy,vz)_G50/d(x,y,z,vx,vy,vz)_ter] (6x6xN)

Authors

Bibliography

See also

Examples

// Conversion of position ter to G50
pos_ter = [[3500.e3;2500.e3;5800.e3] , [4500.e3;2100.e3;6800.e3]];
cjd = [21010 , 21011];
pos_G50=CL_fr_ter2G50(cjd,pos_ter);

// Conversion of position and velocity : ter to G50  + jacobian
pos_ter = [[3500.e3;2500.e3;5800.e3] , [4500.e3;2100.e3;6800.e3]];
vel_ter = [[1.e3;3.e3;7.e3] , [2.e3;3.e3;6.e3]];
cjd = [21010 , 21011];
[pos_G50,vel_G50,jacob]=CL_fr_ter2G50(cjd,pos_ter,vel_ter);

Report an issue
<< CL_fr_J20002ter DEPRECATED CL_fr_ter2J2000 >>