Changeset 2429 in ntrip for trunk/BNS/bnseph.cpp


Ignore:
Timestamp:
Apr 15, 2010, 1:42:35 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bnseph.cpp

    r2285 r2429  
    454454    tc += (GPSweek - _GPSweek) * secPerWeek;
    455455  }
    456   xc(4) = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc
    457           - 4.442807633e-10 * _e * sqrt(a0) *sin(E);
     456  xc(4) = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
    458457
    459458  // Velocity
     
    480479
    481480  vv(3)  = sini    *doty  + yp*cosi      *doti;
     481
     482  // Relativistic Correction
     483  // -----------------------
     484  //  xc(4) -= 4.442807633e-10 * _e * sqrt(a0) *sin(E);
     485  const static double c_vel = 299792458.0;
     486  xc(4) -= 2.0 * DotProduct(xc.Rows(1,3),vv) / c_vel / c_vel;
    482487}
    483488
Note: See TracChangeset for help on using the changeset viewer.