Changeset 10326 in ntrip for trunk/BNC/src
- Timestamp:
- Feb 2, 2024, 4:59:18 PM (10 months ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r10319 r10326 185 185 AA[iObs][iPar] = par->partial(_epoTime, obs, tLC); 186 186 } 187 double offGlo = 0 ;187 double offGlo = 0.0; 188 188 if (sys == 'R' && tLC != t_lc::MW) { 189 189 offGlo = PPP_CLIENT->offGlo(); 190 190 } 191 double offGal = 0 ;191 double offGal = 0.0; 192 192 if (sys == 'E' && tLC != t_lc::MW) { 193 193 offGal = PPP_CLIENT->offGal(); 194 194 } 195 double offBds = 0 ;195 double offBds = 0.0; 196 196 if (sys == 'C' && tLC != t_lc::MW) { 197 197 offBds = PPP_CLIENT->offBds(); … … 229 229 AA[iObs][iPar] = par->partial(_epoTime, obs, tLC); 230 230 } 231 double offGlo = 0 ;231 double offGlo = 0.0; 232 232 if (sys == 'R' && tLC != t_lc::MW) { 233 233 offGlo = PPP_CLIENT->offGlo(); 234 234 } 235 double offGal = 0 ;235 double offGal = 0.0; 236 236 if (sys == 'E' && tLC != t_lc::MW) { 237 237 offGal = PPP_CLIENT->offGal(); 238 238 } 239 double offBds = 0 ;239 double offBds = 0.0; 240 240 if (sys == 'C' && tLC != t_lc::MW) { 241 241 offBds = PPP_CLIENT->offBds(); … … 326 326 const vector<t_pppSatObs*> &obsVector) { 327 327 328 const double SLIP = 20.0; 328 329 string epoTimeStr = string(_epoTime); 329 330 const vector<t_pppParam*> ¶ms = _parlist->params(); … … 366 367 367 368 // Check Pre-Fit Residuals 368 //=> switched off, because after a millisecond receiver clock jump, a cycle slip is detected for all satellites 369 /* ----------------------- 370 369 // ----------------------- 371 370 else { 372 const double SLIP = 20.0;373 371 ColumnVector AA(params.size()); 374 372 for (unsigned iPar = 0; iPar < params.size(); iPar++) { … … 376 374 AA[iPar] = par->partial(_epoTime, obs, tLC); 377 375 } 378 double offGlo = 0 ;376 double offGlo = 0.0; 379 377 if (sys == 'R' && tLC != t_lc::MW) { 380 378 offGlo = PPP_CLIENT->offGlo(); 381 379 } 382 double offGal = 0 ;380 double offGal = 0.0; 383 381 if (sys == 'E' && tLC != t_lc::MW) { 384 382 offGal = PPP_CLIENT->offGal(); 385 383 } 386 double offBds = 0 ;384 double offBds = 0.0; 387 385 if (sys == 'C' && tLC != t_lc::MW) { 388 386 offBds = PPP_CLIENT->offBds(); … … 396 394 resetAmb(obs->prn(), obsVector, tLC); 397 395 } 398 }*/ 399 } 400 } 401 } 402 396 } 397 } 398 } 399 } 403 400 return success; 404 401 } … … 565 562 predictCovCrdPart(QFltOld, setNeuNoiseToZero); 566 563 } 567 -
trunk/BNC/src/PPP/pppParlist.cpp
r10319 r10326 76 76 const t_pppSatObs* obs = obsVector->at(ii); 77 77 if (obs->prn() == _prn) { 78 double offGlo = 0 ;78 double offGlo = 0.0; 79 79 if (_prn.system() == 'R' && tLC != t_lc::MW) { 80 80 offGlo = PPP_CLIENT->offGlo(); 81 81 } 82 double offGal = 0 ;82 double offGal = 0.0; 83 83 if (_prn.system() == 'E' && tLC != t_lc::MW) { 84 84 offGal = PPP_CLIENT->offGal(); 85 85 } 86 double offBds = 0 ;86 double offBds = 0.0; 87 87 if (_prn.system() == 'C' && tLC != t_lc::MW) { 88 88 offBds = PPP_CLIENT->offBds(); … … 96 96 case offGlo: 97 97 _epoSpec = true; 98 _sigma0 = OPT->_aprSigClk ;98 _sigma0 = OPT->_aprSigClkOff; 99 99 _x0 = PPP_CLIENT->offGlo(); 100 100 break; 101 101 case offGal: 102 102 _epoSpec = true; 103 _sigma0 = OPT->_aprSigClk ;103 _sigma0 = OPT->_aprSigClkOff; 104 104 _x0 = PPP_CLIENT->offGal(); 105 105 break; 106 106 case offBds: 107 107 _epoSpec = true; 108 _sigma0 = OPT->_aprSigClk ;108 _sigma0 = OPT->_aprSigClkOff; 109 109 _x0 = PPP_CLIENT->offBds(); 110 110 break; -
trunk/BNC/src/pppMain.cpp
r10319 r10326 527 527 // ------------------- 528 528 opt->_aprSigClk = 300000.0; 529 opt->_aprSigClkOff = 100.0;529 opt->_aprSigClkOff = 300000.0; 530 530 opt->_aprSigAmb = 10000.0; 531 opt->_aprSigIon = 1 0000000.0;532 opt->_noiseIon = 1 0000000.0;531 opt->_aprSigIon = 1.0e8; 532 opt->_noiseIon = 1.0e8; 533 533 opt->_aprSigCodeBias = 10000.0; 534 534 opt->_noiseCodeBias = 10000.0;
Note:
See TracChangeset
for help on using the changeset viewer.