Changeset 8483 in ntrip for trunk/BNC/src/ephemeris.cpp


Ignore:
Timestamp:
Sep 17, 2018, 2:53:30 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
  • trunk/BNC/src/ephemeris.cpp

    r8456 r8483  
    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}
     
    964972  xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
    965973
     974  xc[4] = _clock_bias;
     975  xc[5] = _clock_drift;
     976  xc[6] = _clock_driftrate;
     977
    966978  // Velocity
    967979  // --------
     
    13061318
    13071319  xc[3] = _agf0 + _agf1 * dt;
     1320
     1321  xc[4] = _agf0;
     1322  xc[5] = _agf1;
     1323  xc[6] = 0.0;
    13081324
    13091325  return success;
     
    16571673  xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
    16581674
     1675  xc[4] = _clock_bias;
     1676  xc[5] = _clock_drift;
     1677  xc[6] = _clock_driftrate;
     1678
    16591679  // dotC  = _clock_drift + _clock_driftrate*tc
    16601680  //       - 4.442807633e-10*_e*sqrt(a0)*cos(E) * dEdM * n;
Note: See TracChangeset for help on using the changeset viewer.