Changeset 7501 in ntrip for trunk


Ignore:
Timestamp:
Oct 12, 2015, 4:59:00 PM (9 years ago)
Author:
stuerze
Message:

Bug fixed within the velocity computation for geostationary BDS satellites

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/ephemeris.cpp

    r7487 r7501  
    14811481  double doty  = dotr*sin(u) + r*cos(u)*dotu;
    14821482
    1483 
    14841483  const double iMaxGEO = 10.0 / 180.0 * M_PI;
    14851484
     
    15501549                                - yp*sini*cosom*doti;
    15511550
    1552     //double vz  = sini    *doty  + yp*cosi      *doti;
    1553 
    1554     ColumnVector V(3);
    1555     V[0]   = cosom  *vx     - cosi*sinom   *vy      // dX / dr
    1556            - xp*sinom*dotom - yp*cosi*cosom*dotom   // dX / dOMEGA
    1557                             + yp*sini*sinom*doti;   // dX / di
    1558 
    1559     V[1]   = sinom  *vx     + cosi*cosom   *vy
    1560            + xp*cosom*dotom - yp*cosi*sinom*dotom
    1561                             - yp*sini*cosom*doti;
    1562 
    1563     V[2]   = sini   *vy     + yp*cosi      *doti;
     1551    double vz  = sini    *doty  + yp*cosi      *doti;
     1552
     1553    ColumnVector V(3); V << vx << vy << vz;
    15641554
    15651555    Matrix RdotZ(3,3);
Note: See TracChangeset for help on using the changeset viewer.