Changeset 7262 in ntrip


Ignore:
Timestamp:
Aug 28, 2015, 9:43:55 PM (9 years ago)
Author:
stuerze
Message:

small fixes regrading the infuence of code and phase bias

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r7258 r7262  
    493493  for (it = codeCoeff.begin(); it != codeCoeff.end(); it++) {
    494494    t_frequency::type tFreq = it->first;
    495     dispPart += it->second * (_model._antPCO[tFreq] + _model._codeBias[tFreq] +
     495    dispPart += it->second * (_model._antPCO[tFreq] - _model._codeBias[tFreq] +
    496496                              _model._ionoCodeDelay[tFreq]);
    497497  }
    498498  for (it = phaseCoeff.begin(); it != phaseCoeff.end(); it++) {
    499499    t_frequency::type tFreq = it->first;
    500     dispPart += it->second * (_model._antPCO[tFreq] + _model._phaseBias[tFreq] +
     500    dispPart += it->second * (_model._antPCO[tFreq] - _model._phaseBias[tFreq] +
    501501                              _model._windUp * t_CST::lambda(tFreq, _channel)  -
    502502                              _model._ionoCodeDelay[tFreq]);
Note: See TracChangeset for help on using the changeset viewer.