Changeset 10770 in ntrip for trunk/BNC/src/combination


Ignore:
Timestamp:
Oct 27, 2025, 10:19:36 AM (6 weeks ago)
Author:
stuerze
Message:

FIXED: Bug in Clock Combination

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10764 r10770  
    13101310    double dC_att = corr->_diffYaw / (2 * M_PI);
    13111311    dC_att *= corr->_lambdaIF;
    1312 
    1313     ll(iObs) = (corr->_clkCorr._dClk * t_CST::c - corr->_satCodeBiasIF - dC_orb - dC_att) - DotProduct(AA.Row(iObs), x0);
     1312    double dC_apriori_corr =  dC_orb + dC_att;
     1313
     1314    ll(iObs) = ((corr->_clkCorr._dClk * t_CST::c) + dC_apriori_corr - corr->_satCodeBiasIF) - DotProduct(AA.Row(iObs), x0);
    13141315
    13151316    PP(iObs, iObs) *= 1.0 / (corr->_weightFactor * corr->_weightFactor);
Note: See TracChangeset for help on using the changeset viewer.