IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5968


Ignore:
Timestamp:
Jan 11, 2006, 11:15:27 AM (21 years ago)
Author:
Paul Price
Message:

Adding tidal correction.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/eoc_testing.txt

    r5908 r5968  
    1321329. Earth rotation
    133133
    134 (a) Generate the transformation:
    135 
    136     psSphereRot *earthRot = psSphereRot_TEOtoCEO(time); // This is TEO->CEO
     134(a) Get the tidal correction:
     135
     136    psEarthPole *tidalCorr = psEOC_PolarTideCorr(time);
     137
     138(b) Generate the transformation:
     139
     140    psSphereRot *earthRot = psSphereRot_TEOtoCEO(time, tidalCorr); // This is TEO->CEO
    137141
    138142Check that the rotation quaternion of earthRot is:
     
    145149Within psSphereRot_TEOtoCEO, the Earth rotation angle should be 428251.4641536639 degrees
    146150
    147 (b) Apply the rotation to the position:
     151(c) Apply the rotation to the position:
    148152
    149153    psSphereRot *earthRotInv = psSphereRotInvert(earthRot); // This is CEO->TEO
     
    167171    earthPM->y += nutationCorr->y;
    168172    earthPM->s += nutationCorr->s;
     173
     174Add the tidal correction:
     175
     176    earthPM->x += tidalCorr->x;
     177    earthPM->y += tidalCorr->y;
    169178
    170179Check that:
Note: See TracChangeset for help on using the changeset viewer.