<< CL_ex_meanLyddaneLp DEPRECATED CL_fr_G502J2000Mat >>

CelestLab >> DEPRECATED > CL_fr_G502J2000

CL_fr_G502J2000

Gamma50 (Veis) to EME2000 (J2000) vector transformation - DEPRECATED

Calling Sequence

[pos_J2000,vel_J2000,jacob] = CL_fr_G502J2000(cjd,pos_G50 [,vel_G50,dPsi,dEps,conv_iers])

Description

Parameters

cjd:

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

pos_G50:

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

vel_G50:

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

dPsi :

(optional) Nutation corrections [radians] (default is 0) (1xN or 1x1)

dEps :

(optional) Nutation corrections [radians] (default is 0) (1xN or 1x1)

conv_iers :

(optional) Convention IERS. Only iers 1996 (Lieske/Wahr) is implemented (default is "iers_1996")

pos_J2000:

position vector relative to EME2000 [m] (3xN)

vel_J2000:

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

jacob:

(optional) jacobian of the transformation (6x6xN)

Authors

Bibliography

See also

Examples

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

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

Report an issue
<< CL_ex_meanLyddaneLp DEPRECATED CL_fr_G502J2000Mat >>