source: ntrip/trunk/BNC/src/PPP/pppClient.cpp@ 9595

Last change on this file since 9595 was 9595, checked in by stuerze, 2 years ago

minor changes

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 23.9 KB
RevLine 
[7237]1/* -------------------------------------------------------------------------
2 * BKG NTRIP Client
3 * -------------------------------------------------------------------------
4 *
5 * Class: t_pppClient
6 *
7 * Purpose: PPP Client processing starts here
8 *
9 * Author: L. Mervart
10 *
11 * Created: 29-Jul-2014
12 *
[7271]13 * Changes:
[7237]14 *
15 * -----------------------------------------------------------------------*/
16
17#include <QThreadStorage>
18
19#include <iostream>
20#include <iomanip>
[8451]21#include <cmath>
[7237]22#include <string.h>
23#include <stdexcept>
24
25#include "pppClient.h"
26#include "pppEphPool.h"
27#include "pppObsPool.h"
28#include "bncconst.h"
29#include "bncutils.h"
30#include "pppStation.h"
31#include "bncantex.h"
32#include "pppFilter.h"
33
34using namespace BNC_PPP;
35using namespace std;
36
37// Global variable holding thread-specific pointers
38//////////////////////////////////////////////////////////////////////////////
39QThreadStorage<t_pppClient*> CLIENTS;
40
41// Static function returning thread-specific pointer
42//////////////////////////////////////////////////////////////////////////////
43t_pppClient* t_pppClient::instance() {
44 return CLIENTS.localData();
45}
46
47// Constructor
48//////////////////////////////////////////////////////////////////////////////
49t_pppClient::t_pppClient(const t_pppOptions* opt) {
50 _output = 0;
51 _opt = new t_pppOptions(*opt);
52 _log = new ostringstream();
53 _ephPool = new t_pppEphPool();
54 _obsPool = new t_pppObsPool();
55 _staRover = new t_pppStation();
[8905]56 _filter = new t_pppFilter(_obsPool);
[7237]57 _tides = new t_tides();
[8905]58 _antex = 0;
[7237]59 if (!_opt->_antexFileName.empty()) {
60 _antex = new bncAntex(_opt->_antexFileName.c_str());
61 }
[8905]62 if (!_opt->_blqFileName.empty()) {
63 if (_tides->readBlqFile(_opt->_blqFileName.c_str()) == success) {
64 //_tides->printAllBlqSets();
65 }
[7237]66 }
[7996]67
[8910]68 if (_opt->_refSatRequired) {
[8912]69 for (unsigned iSys = 0; iSys < _opt->systems().size(); iSys++) {
[9508]70 char sys = _opt->systems()[iSys];
71 _refSatMap[sys] = new t_pppRefSat();
[8905]72 }
[7972]73 }
[9419]74
[9288]75 _offGR = 0.0;
76 _offGE = 0.0;
77 _offGC = 0.0;
[7237]78 CLIENTS.setLocalData(this); // CLIENTS takes ownership over "this"
79}
80
81// Destructor
82//////////////////////////////////////////////////////////////////////////////
83t_pppClient::~t_pppClient() {
84 delete _log;
85 delete _opt;
[8905]86 delete _filter;
[7237]87 delete _ephPool;
88 delete _obsPool;
89 delete _staRover;
[7866]90 if (_antex) {
91 delete _antex;
92 }
[7237]93 delete _tides;
94 clearObs();
[9508]95 QMapIterator<char, t_pppRefSat*> it(_refSatMap);
96 while (it.hasNext()) {
97 it.next();
98 delete it.value();
99 }
100 _refSatMap.clear();
[7237]101}
102
[7271]103//
[7237]104//////////////////////////////////////////////////////////////////////////////
105void t_pppClient::putEphemeris(const t_eph* eph) {
106 const t_ephGPS* ephGPS = dynamic_cast<const t_ephGPS*>(eph);
107 const t_ephGlo* ephGlo = dynamic_cast<const t_ephGlo*>(eph);
108 const t_ephGal* ephGal = dynamic_cast<const t_ephGal*>(eph);
[7271]109 const t_ephBDS* ephBDS = dynamic_cast<const t_ephBDS*>(eph);
[7237]110 if (ephGPS) {
111 _ephPool->putEphemeris(new t_ephGPS(*ephGPS));
112 }
113 else if (ephGlo) {
114 _ephPool->putEphemeris(new t_ephGlo(*ephGlo));
115 }
116 else if (ephGal) {
117 _ephPool->putEphemeris(new t_ephGal(*ephGal));
118 }
[7271]119 else if (ephBDS) {
120 _ephPool->putEphemeris(new t_ephBDS(*ephBDS));
121 }
[7237]122}
123
124//
125//////////////////////////////////////////////////////////////////////////////
126void t_pppClient::putTec(const t_vTec* vTec) {
[7248]127 _obsPool->putTec(new t_vTec(*vTec));
[7237]128}
129
[7271]130//
[7237]131//////////////////////////////////////////////////////////////////////////////
132void t_pppClient::putOrbCorrections(const vector<t_orbCorr*>& corr) {
133 for (unsigned ii = 0; ii < corr.size(); ii++) {
134 _ephPool->putOrbCorrection(new t_orbCorr(*corr[ii]));
135 }
136}
137
[7271]138//
[7237]139//////////////////////////////////////////////////////////////////////////////
140void t_pppClient::putClkCorrections(const vector<t_clkCorr*>& corr) {
141 for (unsigned ii = 0; ii < corr.size(); ii++) {
142 _ephPool->putClkCorrection(new t_clkCorr(*corr[ii]));
143 }
144}
145
[7271]146//
[7237]147//////////////////////////////////////////////////////////////////////////////
148void t_pppClient::putCodeBiases(const vector<t_satCodeBias*>& biases) {
149 for (unsigned ii = 0; ii < biases.size(); ii++) {
150 _obsPool->putCodeBias(new t_satCodeBias(*biases[ii]));
151 }
152}
153
154//
155//////////////////////////////////////////////////////////////////////////////
[7288]156void t_pppClient::putPhaseBiases(const vector<t_satPhaseBias*>& biases) {
157 for (unsigned ii = 0; ii < biases.size(); ii++) {
158 _obsPool->putPhaseBias(new t_satPhaseBias(*biases[ii]));
159 }
160}
161
162//
163//////////////////////////////////////////////////////////////////////////////
[7237]164t_irc t_pppClient::prepareObs(const vector<t_satObs*>& satObs,
165 vector<t_pppSatObs*>& obsVector, bncTime& epoTime) {
[8905]166
[7271]167 // Default
[7237]168 // -------
169 epoTime.reset();
[8956]170 clearObs();
[7237]171
172 // Create vector of valid observations
173 // -----------------------------------
174 for (unsigned ii = 0; ii < satObs.size(); ii++) {
[9567]175 char sys = satObs[ii]->_prn.system();
176 if (_opt->useSystem(sys)) {
[7237]177 t_pppSatObs* pppSatObs = new t_pppSatObs(*satObs[ii]);
178 if (pppSatObs->isValid()) {
179 obsVector.push_back(pppSatObs);
180 }
181 else {
182 delete pppSatObs;
183 }
184 }
185 }
186
187 // Check whether data are synchronized, compute epoTime
188 // ----------------------------------------------------
189 const double MAXSYNC = 0.05; // synchronization limit
190 double meanDt = 0.0;
191 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
192 const t_pppSatObs* satObs = obsVector.at(ii);
193 if (epoTime.undef()) {
194 epoTime = satObs->time();
195 }
196 else {
197 double dt = satObs->time() - epoTime;
198 if (fabs(dt) > MAXSYNC) {
199 LOG << "t_pppClient::prepareObs asynchronous observations" << endl;
200 return failure;
201 }
202 meanDt += dt;
203 }
204 }
205
206 if (obsVector.size() > 0) {
207 epoTime += meanDt / obsVector.size();
208 }
209
210 return success;
211}
212
[8905]213//
214//////////////////////////////////////////////////////////////////////////////
215bool t_pppClient::preparePseudoObs(std::vector<t_pppSatObs*>& obsVector) {
216
217 bool pseudoObsIono = false;
218
[8912]219 if (_opt->_pseudoObsIono) {
[8905]220 vector<t_pppSatObs*>::iterator it = obsVector.begin();
221 while (it != obsVector.end()) {
222 t_pppSatObs* satObs = *it;
[9508]223 char sys = satObs->prn().system();
224 t_pppRefSat* refSat = _refSatMap[sys];
[8905]225 double stecRef = refSat->stecValue();
226 if (stecRef && !satObs->isReference()) {
227 pseudoObsIono = true;
228 satObs->setPseudoObsIono(t_frequency::G1, stecRef);
229 }
230 it++;
231 }
232 }
[9538]233
[8961]234/*
235 vector<t_pppSatObs*>::iterator it = obsVector.begin();
236 while (it != obsVector.end()) {
237 t_pppSatObs* satObs = *it;
238 satObs->printObsMinusComputed();
239 it++;
240 }
241*/
[8905]242 return pseudoObsIono;
243}
244
[9560]245//
246//////////////////////////////////////////////////////////////////////////////
247void t_pppClient::useObsWithCodeBiasesOnly(std::vector<t_pppSatObs*>& obsVector) {
248
249 vector<t_pppSatObs*>::iterator it = obsVector.begin();
250 while (it != obsVector.end()) {
251 t_pppSatObs* pppSatObs = *it;
252 char sys = pppSatObs->prn().system();
253 bool codeBiasesAvailable = false;
254 t_frequency::type fType1 = t_lc::toFreq(sys,t_lc::c1);
255 t_frequency::type fType2 = t_lc::toFreq(sys,t_lc::c2);
256 if (pppSatObs->getCodeBias(fType1) &&
257 pppSatObs->getCodeBias(fType2)) {
258 codeBiasesAvailable = true;
259 }
260 if (codeBiasesAvailable) {
261 ++it;
262 }
263 else {
264 it = obsVector.erase(it);
265 delete pppSatObs;
266 }
267 }
268
269}
270
271
[7237]272// Compute the Bancroft position, check for blunders
273//////////////////////////////////////////////////////////////////////////////
[7271]274t_irc t_pppClient::cmpBancroft(const bncTime& epoTime,
[7237]275 vector<t_pppSatObs*>& obsVector,
276 ColumnVector& xyzc, bool print) {
277
278 t_lc::type tLC = t_lc::dummy;
279
280 while (true) {
281 Matrix BB(obsVector.size(), 4);
282 int iObs = -1;
283 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
284 const t_pppSatObs* satObs = obsVector.at(ii);
[8034]285 if (tLC == t_lc::dummy) {
286 if (satObs->isValid(t_lc::cIF)) {
287 tLC = t_lc::cIF;
[7237]288 }
[8034]289 else if (satObs->isValid(t_lc::c1)) {
290 tLC = t_lc::c1;
[7237]291 }
[8445]292 else if (satObs->isValid(t_lc::c2)) {
[8034]293 tLC = t_lc::c2;
294 }
[7237]295 }
[8912]296 if ( satObs->isValid(tLC) && (!satObs->modelSet() || satObs->eleSat() >= _opt->_minEle) ) {
[8034]297 ++iObs;
298 BB[iObs][0] = satObs->xc()[0];
299 BB[iObs][1] = satObs->xc()[1];
300 BB[iObs][2] = satObs->xc()[2];
301 BB[iObs][3] = satObs->obsValue(tLC) - satObs->cmpValueForBanc(tLC);
302 }
[7237]303 }
[8912]304 if (iObs + 1 < _opt->_minObs) {
[9545]305 LOG << "t_pppClient::cmpBancroft not enough observations: " << iObs + 1 << endl;
[7237]306 return failure;
307 }
308 BB = BB.Rows(1,iObs+1);
309 bancroft(BB, xyzc);
310
311 xyzc[3] /= t_CST::c;
312
313 // Check Blunders
314 // --------------
315 const double BLUNDER = 100.0;
316 double maxRes = 0.0;
317 unsigned maxResIndex = 0;
318 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
319 const t_pppSatObs* satObs = obsVector.at(ii);
[8905]320 if (satObs->isValid() &&
321 satObs->prn().system() == 'G' &&
[8912]322 (!satObs->modelSet() || satObs->eleSat() >= _opt->_minEle) ) {
[7237]323 ColumnVector rr = satObs->xc().Rows(1,3) - xyzc.Rows(1,3);
[8905]324 double res = rr.NormFrobenius() - satObs->obsValue(tLC)
[8453]325 - (satObs->xc()[3] - xyzc[3]) * t_CST::c;
326 if (std::isnan(res) || fabs(res) > maxRes) {
327 std::isnan(res) ?
328 maxRes = res :
[7237]329 maxRes = fabs(res);
330 maxResIndex = ii;
331 }
332 }
333 }
[8453]334 if (!std::isnan(maxRes) && maxRes < BLUNDER) {
[9386]335 if (print && _numEpoProcessing == 1) {
[7237]336 LOG.setf(ios::fixed);
337 LOG << string(epoTime) << " BANCROFT:" << ' '
338 << setw(14) << setprecision(3) << xyzc[0] << ' '
339 << setw(14) << setprecision(3) << xyzc[1] << ' '
340 << setw(14) << setprecision(3) << xyzc[2] << ' '
341 << setw(14) << setprecision(3) << xyzc[3] * t_CST::c << endl << endl;
342 }
343 break;
344 }
345 else {
346 t_pppSatObs* satObs = obsVector.at(maxResIndex);
347 LOG << "t_pppClient::cmpBancroft outlier " << satObs->prn().toString()
348 << " " << maxRes << endl;
349 delete satObs;
350 obsVector.erase(obsVector.begin() + maxResIndex);
351 }
352 }
353
354 return success;
355}
356
[7271]357//
[7237]358//////////////////////////////////////////////////////////////////////////////
359void t_pppClient::initOutput(t_output* output) {
360 _output = output;
361 _output->_numSat = 0;
[7927]362 _output->_hDop = 0.0;
[7237]363 _output->_error = false;
364}
365
[7271]366//
[7237]367//////////////////////////////////////////////////////////////////////////////
368void t_pppClient::clearObs() {
369 for (unsigned ii = 0; ii < _obsRover.size(); ii++) {
370 delete _obsRover.at(ii);
371 }
372 _obsRover.clear();
373}
374
[7271]375//
[7237]376//////////////////////////////////////////////////////////////////////////////
[9585]377void t_pppClient::finish(t_irc irc, int ind) {
[7237]378
[9585]379 LOG << "t_pppClient::finish(" << ind << "): " << irc << endl;
380
[7237]381 clearObs();
382
383 _output->_epoTime = _epoTimeRover;
384
385 if (irc == success) {
386 _output->_xyzRover[0] = _staRover->xyzApr()[0] + _filter->x()[0];
387 _output->_xyzRover[1] = _staRover->xyzApr()[1] + _filter->x()[1];
388 _output->_xyzRover[2] = _staRover->xyzApr()[2] + _filter->x()[2];
389
390 xyz2neu(_staRover->ellApr().data(), _filter->x().data(), _output->_neu);
391
392 copy(&_filter->Q().data()[0], &_filter->Q().data()[6], _output->_covMatrix);
393
394 _output->_trp0 = t_tropo::delay_saast(_staRover->xyzApr(), M_PI/2.0);
395 _output->_trp = _filter->trp();
396 _output->_trpStdev = _filter->trpStdev();
397
[9386]398 _output->_numSat = _filter->numSat();
399 _output->_hDop = _filter->HDOP();
[7237]400 _output->_error = false;
401 }
402 else {
403 _output->_error = true;
[9581]404 if (OPT->_obsModelType == OPT->DCMcodeBias ||
405 OPT->_obsModelType == OPT->DCMphaseBias) {
406 reset();
407 }
[7237]408 }
409 _output->_log = _log->str();
410 delete _log; _log = new ostringstream();
[9545]411
412 return;
[7237]413}
414
[7271]415//
[7237]416//////////////////////////////////////////////////////////////////////////////
417t_irc t_pppClient::cmpModel(t_pppStation* station, const ColumnVector& xyzc,
418 vector<t_pppSatObs*>& obsVector) {
419 bncTime time;
420 time = _epoTimeRover;
[8912]421 station->setName(_opt->_roverName);
422 station->setAntName(_opt->_antNameRover);
[8905]423 station->setEpochTime(time);
[8912]424 if (_opt->xyzAprRoverSet()) {
425 station->setXyzApr(_opt->_xyzAprRover);
[7237]426 }
427 else {
428 station->setXyzApr(xyzc.Rows(1,3));
429 }
[8912]430 station->setNeuEcc(_opt->_neuEccRover);
[7237]431
432 // Receiver Clock
433 // --------------
434 station->setDClk(xyzc[3]);
435
436 // Tides
437 // -----
[8905]438 station->setTideDsplEarth(_tides->earth(time, station->xyzApr()));
439 station->setTideDsplOcean(_tides->ocean(time, station->xyzApr(), station->name()));
[7271]440
[7237]441 // Observation model
442 // -----------------
443 vector<t_pppSatObs*>::iterator it = obsVector.begin();
444 while (it != obsVector.end()) {
445 t_pppSatObs* satObs = *it;
[7254]446 t_irc modelSetup;
[7237]447 if (satObs->isValid()) {
[7254]448 modelSetup = satObs->cmpModel(station);
[7237]449 }
[7254]450 if (satObs->isValid() &&
[8912]451 satObs->eleSat() >= _opt->_minEle &&
[7254]452 modelSetup == success) {
[7237]453 ++it;
454 }
455 else {
456 delete satObs;
457 it = obsVector.erase(it);
458 }
459 }
460
461 return success;
462}
463
[7271]464//
[7237]465//////////////////////////////////////////////////////////////////////////////
466void t_pppClient::processEpoch(const vector<t_satObs*>& satObs, t_output* output) {
467
468 try {
469 initOutput(output);
[8912]470 bool epochReProcessing = false;
[9386]471 _numEpoProcessing = 0;
[9419]472 _historicalRefSats.clear();
473
[8905]474 do {
[9386]475 _numEpoProcessing++;
[9419]476#ifdef BNC_DEBUG_PPP
477 LOG << "_numEpoProcessing " << _numEpoProcessing << endl;
478#endif
[9386]479 if (_obsPool->refSatChanged()) {
[9508]480 if(_filter->datumTransformation(_refSatMap) != success) {
481 LOG << "t_pppFilter::datumTransformation() != success" << endl;
[9545]482 return finish(failure,1);
[9386]483 }
484 else {
[9508]485 LOG << "t_pppFilter::datumTransformation() == success" << endl;
[9527]486 _filter->rememberState(1);
[9386]487 }
[8956]488 }
[8905]489 // Prepare Observations of the Rover
490 // ---------------------------------
491 if (prepareObs(satObs, _obsRover, _epoTimeRover) != success) {
[9545]492 return finish(failure,2);
[7237]493 }
[8905]494
[9386]495 if (_numEpoProcessing == 1) {
496 LOG << "\nPPP of Epoch ";
497 if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover);
498 LOG << "\n---------------------------------------------------------------\n";
499 }
500
[8905]501 for (int iter = 1; iter <= 2; iter++) {
502 ColumnVector xyzc(4); xyzc = 0.0;
503 bool print = (iter == 2);
504 if (cmpBancroft(_epoTimeRover, _obsRover, xyzc, print) != success) {
[9545]505 return finish(failure,3);
[8905]506 }
507 if (cmpModel(_staRover, xyzc, _obsRover) != success) {
[9545]508 return finish(failure,4);
[8905]509 }
510 }
511
[8912]512 if (_opt->_refSatRequired) {
[9386]513 if (handleRefSatellites(_obsRover) != success) {
[9545]514 return finish(failure,6);
[8905]515 }
[9508]516 if (_obsPool->refSatChanged()) {
517 LOG << "t_pppFilter: refSatChanged()" << endl;
[9527]518 epochReProcessing = true;
519 continue;
[9386]520 }
[8905]521 }
[7237]522
[9565]523 // use observations only if satellite code biases are available
524 // ------------------------------------------------------------
[9595]525 if (!_opt->_corrMount.empty()) {
[9584]526 useObsWithCodeBiasesOnly(_obsRover);
527 }
[9560]528
529 if (int(_obsRover.size()) < _opt->_minObs) {
530 LOG << "t_pppClient::processEpoch not enough observations" << endl;
531 return finish(failure,5);
532 }
533
[8956]534 // Prepare Pseudo Observations of the Rover
535 // ----------------------------------------
536 _pseudoObsIono = preparePseudoObs(_obsRover);
537
[8905]538 // Store last epoch of data
539 // ------------------------
[9508]540 _obsPool->putEpoch(_epoTimeRover, _obsRover, _pseudoObsIono, _refSatMap);
[7904]541
[8905]542 // Process Epoch in Filter
543 // -----------------------
[9386]544 if (_filter->processEpoch() != success) {
[9545]545 LOG << "filter->processEpoch() != success" << endl;
546 return finish(failure,7);
[8905]547 }
[8912]548
549 // Epoch re-processing required?
550 // -----------------------------
[9395]551 if (_obsPool->refSatChangeRequired() && //SLIP
552 _opt->_obsModelType != t_pppOptions::UncombPPP) {
[9545]553 LOG << "pppClient: _obsPool->refSatChangeRequired() " << endl;
[8912]554 epochReProcessing = true;
[8956]555 _obsPool->deleteLastEpoch();
[9527]556 _filter->restoreState(0);
[9386]557 setHistoricalRefSats();
[8912]558 }
559 else {
560 epochReProcessing = false;
[9537]561 if (OPT->_obsModelType == OPT->DCMcodeBias ||
562 OPT->_obsModelType == OPT->DCMphaseBias) {
563 _filter->rememberState(0);
564 }
[8912]565 }
566 } while (epochReProcessing);
[9431]567
[7237]568 }
569 catch (Exception& exc) {
570 LOG << exc.what() << endl;
[9545]571 return finish(failure,8);
[7237]572 }
573 catch (t_except msg) {
574 LOG << msg.what() << endl;
[9545]575 return finish(failure,9);
[7237]576 }
577 catch (const char* msg) {
578 LOG << msg << endl;
[9545]579 return finish(failure,10);
[7237]580 }
581 catch (...) {
582 LOG << "unknown exception" << endl;
[9545]583 return finish(failure,11);
[7237]584 }
[9545]585 return finish(success,12);
[7237]586}
587
[7271]588//
[7237]589////////////////////////////////////////////////////////////////////////////
590double lorentz(const ColumnVector& aa, const ColumnVector& bb) {
591 return aa[0]*bb[0] + aa[1]*bb[1] + aa[2]*bb[2] - aa[3]*bb[3];
592}
593
[7271]594//
[7237]595////////////////////////////////////////////////////////////////////////////
596void t_pppClient::bancroft(const Matrix& BBpass, ColumnVector& pos) {
597
598 if (pos.Nrows() != 4) {
599 pos.ReSize(4);
600 }
601 pos = 0.0;
602
603 for (int iter = 1; iter <= 2; iter++) {
604 Matrix BB = BBpass;
605 int mm = BB.Nrows();
606 for (int ii = 1; ii <= mm; ii++) {
607 double xx = BB(ii,1);
608 double yy = BB(ii,2);
609 double traveltime = 0.072;
610 if (iter > 1) {
611 double zz = BB(ii,3);
[7271]612 double rho = sqrt( (xx-pos(1)) * (xx-pos(1)) +
613 (yy-pos(2)) * (yy-pos(2)) +
[7237]614 (zz-pos(3)) * (zz-pos(3)) );
615 traveltime = rho / t_CST::c;
616 }
617 double angle = traveltime * t_CST::omega;
618 double cosa = cos(angle);
619 double sina = sin(angle);
620 BB(ii,1) = cosa * xx + sina * yy;
621 BB(ii,2) = -sina * xx + cosa * yy;
622 }
[7271]623
[7237]624 Matrix BBB;
625 if (mm > 4) {
626 SymmetricMatrix hlp; hlp << BB.t() * BB;
627 BBB = hlp.i() * BB.t();
628 }
629 else {
630 BBB = BB.i();
631 }
632 ColumnVector ee(mm); ee = 1.0;
633 ColumnVector alpha(mm); alpha = 0.0;
634 for (int ii = 1; ii <= mm; ii++) {
[7271]635 alpha(ii) = lorentz(BB.Row(ii).t(),BB.Row(ii).t())/2.0;
[7237]636 }
637 ColumnVector BBBe = BBB * ee;
638 ColumnVector BBBalpha = BBB * alpha;
639 double aa = lorentz(BBBe, BBBe);
640 double bb = lorentz(BBBe, BBBalpha)-1;
641 double cc = lorentz(BBBalpha, BBBalpha);
642 double root = sqrt(bb*bb-aa*cc);
643
[7271]644 Matrix hlpPos(4,2);
[7237]645 hlpPos.Column(1) = (-bb-root)/aa * BBBe + BBBalpha;
646 hlpPos.Column(2) = (-bb+root)/aa * BBBe + BBBalpha;
647
648 ColumnVector omc(2);
649 for (int pp = 1; pp <= 2; pp++) {
650 hlpPos(4,pp) = -hlpPos(4,pp);
[7271]651 omc(pp) = BB(1,4) -
[7237]652 sqrt( (BB(1,1)-hlpPos(1,pp)) * (BB(1,1)-hlpPos(1,pp)) +
653 (BB(1,2)-hlpPos(2,pp)) * (BB(1,2)-hlpPos(2,pp)) +
[7271]654 (BB(1,3)-hlpPos(3,pp)) * (BB(1,3)-hlpPos(3,pp)) ) -
[7237]655 hlpPos(4,pp);
656 }
657 if ( fabs(omc(1)) > fabs(omc(2)) ) {
658 pos = hlpPos.Column(2);
659 }
660 else {
661 pos = hlpPos.Column(1);
662 }
663 }
664}
665
[7972]666//
667//////////////////////////////////////////////////////////////////////////////
[8956]668void t_pppClient::setRefSatellites(std::vector<t_pppSatObs*>& obsVector) {
669 // reference satellite definition per system
670 for (unsigned iSys = 0; iSys < _opt->systems().size(); iSys++) {
[9490]671 t_irc refSatReDefinition = success;
[9386]672 char sys = _opt->systems()[iSys];
[8956]673 bool refSatDefined = false;
[9508]674 t_pppRefSat* refSat = _refSatMap[sys];
[8956]675 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
676 t_pppSatObs* satObs = obsVector.at(ii);
[9386]677 if (satObs->eleSat() < _opt->_minEle) {
678 continue;
679 }
[8956]680 // reference satellite is unchanged
[9395]681 // ================================
[9508]682 if ( !_obsPool->refSatChangeRequired(sys) && refSat->prn() == satObs->prn()) {
[8956]683 refSatDefined = true;
684 obsVector[ii]->setAsReference();
685 }
686 // reference satellite has changed
[9395]687 // ===============================
688 else if ( _obsPool->refSatChangeRequired(sys) && refSat->prn() != satObs->prn()) {
[9386]689 if (satObs->prn().system() == sys) {
[9395]690 if (!_historicalRefSats[sys].contains(satObs->prn())) {
691 refSatDefined = true;
692 obsVector[ii]->setAsReference();
693 refSat->setPrn(satObs->prn());
694 }
695 else if ( _historicalRefSats[sys].contains(satObs->prn())) {
696 refSatReDefinition = failure;
697 }
[8956]698 }
699 }
700 if (refSatDefined) {
701 if (OPT->_pseudoObsIono) {
702 refSat->setStecValue(satObs->getIonoCodeDelay(t_frequency::G1));
703 }
704 break;
705 }
706 }
[9490]707
[9398]708 // all available satellites were already tried to use
[9395]709 if ((!refSatDefined) && (refSatReDefinition == failure)) {
710 refSat->setPrn(t_prn(sys, 99));
[9398]711 _obsPool->setRefSatChangeRequired(sys, false);
712 return;
[9395]713 }
714
[8956]715 // reference satellite has to be initialized
[9395]716 // =========================================
[8956]717 if (!refSatDefined) {
718 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
719 t_pppSatObs* satObs = obsVector.at(ii);
720 if (satObs->eleSat() < _opt->_minEle) {
721 continue;
722 }
[9583]723 if (satObs->prn().system() == sys &&
724 !_historicalRefSats[sys].contains(satObs->prn())) {
[8956]725 obsVector[ii]->setAsReference();
726 refSat->setPrn(satObs->prn());
727 if (OPT->_pseudoObsIono) {
728 refSat->setStecValue(satObs->getIonoCodeDelay(t_frequency::G1));
729 }
730 refSatDefined = true;
731 break;
732 }
733 }
734 }
[9395]735
[9398]736 // no observations for that system
737 // ===============================
738 if (!refSatDefined) {
[9386]739 refSat->setPrn(t_prn());
740 }
[9398]741 _obsPool->setRefSatChangeRequired(sys, false); // done or impossible
[8956]742 }
[9398]743
744 return;
[9386]745}
[8956]746
[9386]747//
748//////////////////////////////////////////////////////////////////////////////
749t_irc t_pppClient::handleRefSatellites(std::vector<t_pppSatObs*>& obsVector) {
750
751 // set refSats in current epoch
752 // ============================
753 setRefSatellites(obsVector); // current epoch
754 LOG.setf(ios::fixed);
[9508]755 t_pppObsPool::t_epoch* epoch = _obsPool->lastEpoch();
756 const QMap<char, t_pppRefSat*>& refSatMapLastEpoch = epoch->refSatMap();
[9527]757
[9508]758 QMapIterator<char, t_pppRefSat*> it(_refSatMap);
[9386]759 while (it.hasNext()) {
760 it.next();
761 char sys = it.key();
762 t_prn prn = it.value()->prn();
[9508]763 t_prn refSatLastEpochPrn = t_prn();
764 if (epoch) {
765 refSatLastEpochPrn = refSatMapLastEpoch[sys]->prn();
766 }
[9395]767 if (prn.number() == 0) { // no obs for that system available
768 continue;
769 }
770 else if (prn.number() == 99) { // refSat re-definition not possible
[9490]771 LOG << " => refSat re-definition impossible: " << sys << endl;
[9386]772 return failure;
773 }
[9432]774 QString str;
[9508]775 if (prn == refSatLastEpochPrn || refSatLastEpochPrn == t_prn() ) {
[9386]776 _obsPool->setRefSatChanged(sys, false);
777 str = " SET ";
778 }
779 else {
780 _obsPool->setRefSatChanged(sys, true);
781 str = " RESET ";
782 }
783 LOG << string(_epoTimeRover) << str.toStdString() << " REFSAT " << sys << ": " << prn.toString() << endl;
784 }
785 return success;
[8956]786}
787
[9386]788void t_pppClient::setHistoricalRefSats() {
[9508]789 QMapIterator<char, t_pppRefSat*> it(_refSatMap);
[9386]790 while (it.hasNext()) {
791 it.next();
792 t_prn prn = it.value()->prn();
793 char sys = prn.system();
[9548]794 if (_obsPool->refSatChangeRequired(sys)) {
[9386]795 _historicalRefSats[sys].append(prn);
796 }
[9508]797 }
798}
[9386]799
[8956]800//
801//////////////////////////////////////////////////////////////////////////////
[9548]802void t_pppClient::reset() {LOG << "t_pppClient::reset()" << endl;
[7972]803
804 // to delete old orbit and clock corrections
805 delete _ephPool;
806 _ephPool = new t_pppEphPool();
807
808 // to delete old code biases
809 delete _obsPool;
810 _obsPool = new t_pppObsPool();
[8905]811
812 // to delete all parameters
813 delete _filter;
814 _filter = new t_pppFilter(_obsPool);
815
[7996]816}
Note: See TracBrowser for help on using the repository browser.