Changeset 8484 in ntrip for branches/BNC_2.12/src/ephemeris.cpp


Ignore:
Timestamp:
Sep 18, 2018, 12:50:00 PM (6 years ago)
Author:
stuerze
Message:

SSR parameter clock rate, clock drift and URA are added within RTNET format

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/ephemeris.cpp

    r8455 r8484  
    368368  double tc = tt - _TOC;
    369369  xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
     370
     371  xc[4] = _clock_bias;
     372  xc[5] = _clock_drift;
     373  xc[6] = _clock_driftrate;
    370374
    371375  // Velocity
     
    651655  xc[3] = -_tau + _gamma * dtClk;
    652656
     657  xc[4] = -_tau;
     658  xc[5] = _gamma;
     659  xc[6] = 0.0;
     660
    653661  return success;
    654662}
     
    963971  xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
    964972
     973  xc[4] = _clock_bias;
     974  xc[5] = _clock_drift;
     975  xc[6] = _clock_driftrate;
     976
    965977  // Velocity
    966978  // --------
     
    13041316
    13051317  xc[3] = _agf0 + _agf1 * dt;
     1318
     1319  xc[4] = _agf0;
     1320  xc[5] = _agf1;
     1321  xc[6] = 0.0;
    13061322
    13071323  return success;
     
    16821698  xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
    16831699
     1700  xc[4] = _clock_bias;
     1701  xc[5] = _clock_drift;
     1702  xc[6] = _clock_driftrate;
     1703
    16841704  // dotC  = _clock_drift + _clock_driftrate*tc
    16851705  //       - 4.442807633e-10*_e*sqrt(a0)*cos(E) * dEdM * n;
Note: See TracChangeset for help on using the changeset viewer.