source: ntrip/trunk/BNC/src/PPP/pppFilter.cpp@ 9974

Last change on this file since 9974 was 9974, checked in by stuerze, 14 months ago

minor changes for test

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 27.7 KB
Line 
1/* -------------------------------------------------------------------------
2 * BKG NTRIP Client
3 * -------------------------------------------------------------------------
4 *
5 * Class: t_pppFilter
6 *
7 * Purpose: Filter Adjustment
8 *
9 * Author: L. Mervart
10 *
11 * Created: 29-Jul-2014
12 *
13 * Changes:
14 *
15 * -----------------------------------------------------------------------*/
16
17#include <iostream>
18#include <iomanip>
19#include <cmath>
20#include <newmat.h>
21#include <newmatio.h>
22#include <newmatap.h>
23
24#include "pppFilter.h"
25#include "bncutils.h"
26#include "pppParlist.h"
27#include "pppObsPool.h"
28#include "pppStation.h"
29
30using namespace BNC_PPP;
31using namespace std;
32
33// Constructor
34////////////////////////////////////////////////////////////////////////////
35t_pppFilter::t_pppFilter(t_pppObsPool *obsPool) {
36 _numSat = 0;
37 _obsPool = obsPool;
38 _refPrn = t_prn();
39 _datumTrafo = new t_datumTrafo();
40}
41
42// Destructor
43////////////////////////////////////////////////////////////////////////////
44t_pppFilter::~t_pppFilter() {
45 delete _datumTrafo;
46}
47
48// Process Single Epoch
49////////////////////////////////////////////////////////////////////////////
50t_irc t_pppFilter::processEpoch() {
51 _numSat = 0;
52 const double maxSolGap = 60.0;
53
54 // Vector of all Observations
55 // --------------------------
56 t_pppObsPool::t_epoch *epoch = _obsPool->lastEpoch();
57 if (!epoch) {
58 return failure;
59 }
60 vector<t_pppSatObs*> &allObs = epoch->obsVector();
61
62 // Time of the Epoch
63 // -----------------
64 _epoTime = epoch->epoTime();
65
66 if (!_firstEpoTime.valid() || !_lastEpoTimeOK.valid()
67 || (maxSolGap > 0.0 && _epoTime - _lastEpoTimeOK > maxSolGap)) {
68 _firstEpoTime = _epoTime;
69 }
70
71 string epoTimeStr = string(_epoTime);
72
73 const QMap<char, t_pppRefSat*> &refSatMap = epoch->refSatMap();
74
75 //--
76 // Set Parameters
77 if (_parlist.set(_epoTime, allObs, refSatMap) != success) {
78 return failure;
79 }
80
81 if (OPT->_obsModelType == OPT->DCMcodeBias ||
82 OPT->_obsModelType == OPT->DCMphaseBias) {
83#ifdef BNC_DEBUG_PPP
84 _parlist.printParams(_epoTime);
85#endif
86 }
87 // Status Vector, Variance-Covariance Matrix
88 // -----------------------------------------
89 ColumnVector xFltOld = _xFlt;
90 SymmetricMatrix QFltOld = _QFlt;
91 setStateVectorAndVarCovMatrix(xFltOld, QFltOld);
92
93 // Pre-Process Satellite Systems separately
94 // ----------------------------------------
95 bool preProcessing = false;
96 if (OPT->_obsModelType == OPT->DCMcodeBias ||
97 OPT->_obsModelType == OPT->DCMphaseBias) {
98 preProcessing = true;
99 const QList<char> &usedSystems = _parlist.usedSystems();
100 for (int iSys = 0; iSys < usedSystems.size(); iSys++) {
101 char sys = usedSystems[iSys];
102 _refPrn.set(sys, 0);
103 if (OPT->_refSatRequired) {
104 _refPrn = refSatMap[sys]->prn();
105 }
106 vector<t_pppSatObs*> obsVector;
107 for (unsigned jj = 0; jj < allObs.size(); jj++) {
108 if (allObs[jj]->prn().system() == sys) {
109 obsVector.push_back(allObs[jj]);
110 }
111 }
112 if (iSys == 0) {
113 _datumTrafo->setFirstSystem(sys);
114 }
115 if (processSystem(OPT->LCs(sys), obsVector, _refPrn,
116 epoch->pseudoObsIono(), preProcessing) != success) {
117 LOG << sys << ": processSystem != success (pre-processing)" << endl;
118 _xFlt = xFltOld;
119 _QFlt = QFltOld;
120 _obsPool->deleteLastEpoch();
121 restoreState(2);
122 return failure;
123 }
124 }
125 // refSat change required?
126 // -----------------------
127 if (_obsPool->refSatChangeRequired()) {
128 _xFlt = xFltOld;
129 _QFlt = QFltOld;
130 return success;
131 } else if (!_obsPool->refSatChangeRequired()) {
132 initDatumTransformation(allObs, epoch->pseudoObsIono());
133 }
134 }
135
136 // Process Satellite Systems separately
137 // ------------------------------------
138 preProcessing = false;
139 const QList<char> &usedSystems = _parlist.usedSystems();
140 for (int iSys = 0; iSys < usedSystems.size(); iSys++) {
141 char sys = usedSystems[iSys];
142 _refPrn.set(sys, 0);
143 if (OPT->_refSatRequired) {
144 _refPrn = refSatMap[sys]->prn();
145 }
146 unsigned int num = 0;
147 vector<t_pppSatObs*> obsVector;
148 for (unsigned jj = 0; jj < allObs.size(); jj++) {
149 if (allObs[jj]->prn().system() == sys) {
150 obsVector.push_back(allObs[jj]);
151 ++num;
152 }
153 }
154 if (iSys == 0 && OPT->_obsModelType == OPT->UncombPPP) {
155 _datumTrafo->setFirstSystem(sys);
156 }
157 LOG << epoTimeStr << " SATNUM " << sys << ' ' << right << setw(2) << num
158 << endl;
159 if (processSystem(OPT->LCs(sys), obsVector, _refPrn, epoch->pseudoObsIono(),
160 preProcessing) != success) {
161 LOG << "processSystem != success (fin-processing)" << endl;
162 if (OPT->_obsModelType == OPT->DCMcodeBias ||
163 OPT->_obsModelType == OPT->DCMphaseBias) {
164 _xFlt = xFltOld;
165 _QFlt = QFltOld;
166 _obsPool->deleteLastEpoch();
167 restoreState(3);
168 }
169 return failure;
170 }
171 }
172
173 // close epoch processing
174 // ----------------------
175 cmpDOP(allObs, refSatMap);
176 _parlist.printResult(_epoTime, _QFlt, _xFlt);
177 _lastEpoTimeOK = _epoTime; // remember time of last successful epoch processing
178 return success;
179}
180
181// Process Selected LCs
182////////////////////////////////////////////////////////////////////////////
183t_irc t_pppFilter::processSystem(const vector<t_lc::type> &LCs,
184 const vector<t_pppSatObs*> &obsVector, const t_prn &refPrn,
185 bool pseudoObsIonoAvailable, bool preProcessing) {
186 LOG.setf(ios::fixed);
187 char sys = refPrn.system();
188
189 // Detect Cycle Slips
190 // ------------------
191 if (detectCycleSlips(LCs, obsVector, refPrn, preProcessing) != success) {
192 return failure;
193 }
194 if (preProcessing && _obsPool->refSatChangeRequired(sys)) {
195 return success;
196 }
197
198 ColumnVector xSav = _xFlt;
199 SymmetricMatrix QSav = _QFlt;
200 string epoTimeStr = string(_epoTime);
201 const vector<t_pppParam*> &params = _parlist.params();
202 unsigned nPar = _parlist.nPar();
203
204 unsigned usedLCs = LCs.size();
205 if (OPT->_pseudoObsIono && !pseudoObsIonoAvailable) {
206 usedLCs -= 1; // GIM not used
207 }
208 // max Obs
209 unsigned maxObs = obsVector.size() * usedLCs;
210
211 if (OPT->_pseudoObsIono && pseudoObsIonoAvailable) {
212 maxObs -= 1; // pseudo obs iono with respect to refSat
213 }
214
215 // Outlier Detection Loop
216 // ----------------------
217 for (unsigned iOutlier = 0; iOutlier < maxObs; iOutlier++) {
218
219 if (iOutlier > 0) {
220 _xFlt = xSav;
221 _QFlt = QSav;
222 }
223
224 // First-Design Matrix, Terms Observed-Computed, Weight Matrix
225 // -----------------------------------------------------------
226 Matrix AA(maxObs, nPar);
227 ColumnVector ll(maxObs);
228 DiagonalMatrix PP(maxObs);
229 PP = 0.0;
230
231 int iObs = -1;
232 vector<t_pppSatObs*> usedObs;
233 vector<t_lc::type> usedTypes;
234
235 // Real Observations
236 // =================
237 double nSat = 0;
238 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
239 t_pppSatObs *obs = obsVector[ii];
240 if (iOutlier == 0 && !preProcessing) {
241 obs->resetOutlier();
242 }
243 if (!obs->outlier()) {
244 nSat++;
245 for (unsigned jj = 0; jj < usedLCs; jj++) {
246 const t_lc::type tLC = LCs[jj];
247 if (tLC == t_lc::GIM) {
248 continue;
249 }
250 ++iObs;
251 usedObs.push_back(obs);
252 usedTypes.push_back(tLC);
253 for (unsigned iPar = 0; iPar < nPar; iPar++) {
254 const t_pppParam *par = params[iPar];
255 AA[iObs][iPar] = par->partial(_epoTime, obs, tLC, refPrn);
256 }
257 ll[iObs] = obs->obsValue(tLC) - obs->cmpValue(tLC)
258 - DotProduct(_x0, AA.Row(iObs + 1));
259 PP[iObs] = 1.0 / (obs->sigma(tLC) * obs->sigma(tLC));
260 }
261 }
262 }
263
264 // Check number of observations
265 // ----------------------------
266 if (iObs == -1) {
267 LOG << " number of observations == -1\n";
268 return failure;
269 }
270
271 if ((!iOutlier) &&
272 (OPT->_obsModelType == OPT->DCMcodeBias ||
273 OPT->_obsModelType == OPT->DCMphaseBias) && (!preProcessing)) {
274 _datumTrafo->updateIndices(sys, iObs + 1);
275 _datumTrafo->prepareAA(AA.SubMatrix(1, iObs + 1, 1, _parlist.nPar()), 1);
276 }
277
278 // Pseudo Obs Iono
279 // ================
280 if (OPT->_pseudoObsIono && pseudoObsIonoAvailable) {
281 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
282 t_pppSatObs *obs = obsVector[ii];
283 if (!obs->outlier()) {
284 for (unsigned jj = 0; jj < usedLCs; jj++) {
285 const t_lc::type tLC = LCs[jj];
286 if (tLC == t_lc::GIM && !obs->isReference()) {
287 ++iObs;
288 } else {
289 continue;
290 }
291 usedObs.push_back(obs);
292 usedTypes.push_back(tLC);
293 for (unsigned iPar = 0; iPar < nPar; iPar++) {
294 const t_pppParam *par = params[iPar];
295 AA[iObs][iPar] = par->partial(_epoTime, obs, tLC, refPrn);
296 }
297 ll[iObs] = obs->obsValue(tLC) - obs->cmpValue(tLC)
298 - DotProduct(_x0, AA.Row(iObs + 1));
299 PP[iObs] = 1.0 / (obs->sigma(tLC) * obs->sigma(tLC));
300 }
301 }
302 }
303 }
304
305 // Truncate matrices
306 // -----------------
307 AA = AA.Rows(1, iObs + 1);
308 ll = ll.Rows(1, iObs + 1);
309 PP = PP.SymSubMatrix(1, iObs + 1);
310
311 // Kalman update step
312 // ------------------
313 kalman(AA, ll, PP, _QFlt, _xFlt);
314
315 // Check Residuals
316 // ---------------
317 ColumnVector vv = AA * _xFlt - ll;
318 double maxOutlier = 0.0;
319 int maxOutlierIndex = -1;
320 t_lc::type maxOutlierLC = t_lc::dummy;
321 for (unsigned ii = 0; ii < usedObs.size(); ii++) {
322 const t_lc::type tLC = usedTypes[ii];
323 double res = fabs(vv[ii]);
324 if (res > usedObs[ii]->maxRes(tLC)) {
325 if (res > fabs(maxOutlier)) {
326 maxOutlier = vv[ii];
327 maxOutlierIndex = ii;
328 maxOutlierLC = tLC;
329 }
330 }
331 }
332
333 // Mark outlier or break outlier detection loop
334 // --------------------------------------------
335 if (maxOutlierIndex > -1) {
336 t_pppSatObs *obs = usedObs[maxOutlierIndex];
337 t_pppParam *par = 0;
338 for (unsigned iPar = 0; iPar < nPar; iPar++) {
339 t_pppParam *hlp = params[iPar];
340 if (hlp->type() == t_pppParam::amb && hlp->prn() == obs->prn()
341 && hlp->tLC() == usedTypes[maxOutlierIndex]) {
342 par = hlp;
343 }
344 }
345 if (preProcessing) {
346 // for refSats no ambiguity parameter exists
347 if ((obs->prn() == refPrn)
348 && (t_lc::toString(maxOutlierLC) == "l1" ||
349 t_lc::toString(maxOutlierLC) == "l2")) {
350 _obsPool->setRefSatChangeRequired(sys, true);
351 LOG << epoTimeStr << " Outlier ("
352 << ((preProcessing) ? "pre-processing) " : "fin-processing) ")
353 << t_lc::toString(maxOutlierLC) << ' ' << obs->prn().toString()
354 << ' ' << setw(8) << setprecision(4) << maxOutlier << endl;
355 break;
356 } else {
357 obs->setOutlier();
358 }
359 } else { // fin-processing
360 LOG << epoTimeStr << " Outlier " << t_lc::toString(maxOutlierLC) << ' '
361 << obs->prn().toString() << ' ' << setw(8) << setprecision(4)
362 << maxOutlier << endl;
363 if (par) {
364 //if ( par->ambResetCandidate() || (OPT->_obsModelType == OPT->DCMcodeBias || OPT->_obsModelType == OPT->DCMphaseBias) ) {
365 resetAmb(par->prn(), obsVector, &QSav, &xSav);
366 //}
367 //else {
368 // par->setAmbResetCandidate();
369 // obs->setOutlier();
370 //}
371 }
372 else {
373 obs->setOutlier();
374 }
375 }
376 }
377 // Print Residuals
378 // ---------------
379 else {
380 if (!preProcessing) {
381 for (unsigned jj = 0; jj < LCs.size(); jj++) {
382 for (unsigned ii = 0; ii < usedObs.size(); ii++) {
383 const t_lc::type tLC = usedTypes[ii];
384 t_pppSatObs *obs = usedObs[ii];
385 if (tLC == LCs[jj]) {
386 obs->setRes(tLC, vv[ii]);
387 LOG << epoTimeStr << " RES " << left << setw(3)
388 << t_lc::toString(tLC) << right << ' '
389 << obs->prn().toString();
390 LOG << setw(9) << setprecision(4) << vv[ii] << endl;
391 }
392 }
393 }
394 }
395 break;
396 }
397 }
398 return success;
399}
400
401// Cycle-Slip Detection
402////////////////////////////////////////////////////////////////////////////
403t_irc t_pppFilter::detectCycleSlips(const vector<t_lc::type> &LCs,
404 const vector<t_pppSatObs*> &obsVector, const t_prn &refPrn,
405 bool preProcessing) {
406 const double SLIP = 100.0;
407 char sys = refPrn.system();
408 string epoTimeStr = string(_epoTime);
409 const vector<t_pppParam*> &params = _parlist.params();
410 unsigned nPar = _parlist.nPar();
411
412 for (unsigned ii = 0; ii < LCs.size(); ii++) {
413 const t_lc::type &tLC = LCs[ii];
414 if (t_lc::includesPhase(tLC)) {
415 for (unsigned iObs = 0; iObs < obsVector.size(); iObs++) {
416 const t_pppSatObs *obs = obsVector[iObs];
417
418 // Check set Slips and Jump Counters
419 // ---------------------------------
420 bool slip = false;
421
422 // in pre-processing only the reference satellite has to be checked
423 if (preProcessing && obs->prn() != refPrn) {
424 continue;
425 }
426
427 if (obs->slip()) {
428 LOG << epoTimeStr << "cycle slip set (obs) " << obs->prn().toString()
429 << endl;
430 slip = true;
431 }
432
433 if (_slips[obs->prn()]._obsSlipCounter != -1
434 && _slips[obs->prn()]._obsSlipCounter != obs->slipCounter()) {
435 LOG << epoTimeStr << "cycle slip set (obsSlipCounter) "
436 << obs->prn().toString() << endl;
437 slip = true;
438 }
439 if (!preProcessing) {
440 _slips[obs->prn()]._obsSlipCounter = obs->slipCounter();
441 }
442 if (_slips[obs->prn()]._biasJumpCounter != -1
443 && _slips[obs->prn()]._biasJumpCounter != obs->biasJumpCounter()) {
444 LOG << epoTimeStr << "cycle slip set (biasJumpCounter) "
445 << obs->prn().toString() << endl;
446 slip = true;
447 }
448 if (!preProcessing) {
449 _slips[obs->prn()]._biasJumpCounter = obs->biasJumpCounter();
450 }
451 // Slip Set
452 // --------
453 if (slip) {
454 if (preProcessing) {
455 _obsPool->setRefSatChangeRequired(sys, true);
456 } else {
457 resetAmb(obs->prn(), obsVector);
458 }
459 }
460 // Check Pre-Fit Residuals
461 /* -----------------------
462 else {
463 if (refPrn != t_prn()) {
464 return success;
465 }
466 ColumnVector AA(nPar);
467 for (unsigned iPar = 0; iPar < nPar; iPar++) {
468 const t_pppParam *par = params[iPar];
469 AA[iPar] = par->partial(_epoTime, obs, tLC, refPrn);
470 }
471 double ll = obs->obsValue(tLC) - obs->cmpValue(tLC)
472 - DotProduct(_x0, AA);
473 double vv = DotProduct(AA, _xFlt) - ll;
474 if (fabs(vv) > SLIP) {
475 LOG << epoTimeStr << " cycle slip detected " << t_lc::toString(tLC)
476 << ' ' << obs->prn().toString() << ' ' << setw(8)
477 << setprecision(4) << vv << endl;
478 if (preProcessing) {
479 _obsPool->setRefSatChangeRequired(sys, true);
480 } else {
481 resetAmb(obs->prn(), obsVector);
482 }
483 }
484 }*/
485 }
486 }
487 }
488 return success;
489}
490
491// Reset Ambiguity Parameter (cycle slip)
492////////////////////////////////////////////////////////////////////////////
493t_irc t_pppFilter::resetAmb(t_prn prn, const vector<t_pppSatObs*> &obsVector,
494 SymmetricMatrix *QSav, ColumnVector *xSav) {
495
496 t_irc irc = failure;
497 vector<t_pppParam*> &params = _parlist.params();
498 for (unsigned iPar = 0; iPar < params.size(); iPar++) {
499 t_pppParam *par = params[iPar];
500 if (par->type() == t_pppParam::amb && par->prn() == prn) {
501 int ind = par->indexNew();
502 t_lc::type tLC = par->tLC();
503 LOG << string(_epoTime) << " RESET " << par->toString() << endl;
504 delete par;
505 par = new t_pppParam(t_pppParam::amb, prn, tLC, &obsVector);
506 par->setIndex(ind);
507 params[iPar] = par;
508 for (unsigned ii = 1; ii <= params.size(); ii++) {
509 _QFlt(ii, ind + 1) = 0.0;
510 if (QSav) {
511 (*QSav)(ii, ind + 1) = 0.0;
512 }
513 }
514 _QFlt(ind + 1, ind + 1) = par->sigma0() * par->sigma0();
515 if (QSav) {
516 (*QSav)(ind + 1, ind + 1) = _QFlt(ind + 1, ind + 1);
517 }
518 _xFlt[ind] = 0.0;
519 if (xSav) {
520 (*xSav)[ind] = _xFlt[ind];
521 }
522 _x0[ind] = par->x0();
523 irc = success;
524 }
525 }
526
527 return irc;
528}
529
530// Add infinite noise to iono
531////////////////////////////////////////////////////////////////////////////
532t_irc t_pppFilter::addNoiseToPar(t_pppParam::e_type parType, char sys) {
533 t_irc irc = failure;
534 vector<t_pppParam*> &params = _parlist.params();
535 for (unsigned iPar = 0; iPar < params.size(); iPar++) {
536 t_pppParam *par = params[iPar];
537 if (par->type() == parType && par->prn().system() == sys) {
538 int ind = par->indexNew();
539 LOG << string(_epoTime) << " ADD NOISE TO " << par->toString() << endl;
540 par->setIndex(ind);
541 _QFlt(ind + 1, ind + 1) = par->sigma0() * par->sigma0();
542 irc = success;
543 }
544 }
545
546 return irc;
547}
548
549// Compute various DOP Values
550////////////////////////////////////////////////////////////////////////////
551void t_pppFilter::cmpDOP(const vector<t_pppSatObs*> &obsVector,
552 const QMap<char, t_pppRefSat*> &refSatMap) {
553
554 _dop.reset();
555
556 try {
557 const unsigned numPar = 4;
558 Matrix AA(obsVector.size(), numPar);
559 _numSat = 0;
560 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
561 t_pppSatObs *obs = obsVector[ii];
562 char sys = obs->prn().system();
563 t_prn refPrn = t_prn();
564 if (OPT->_refSatRequired) {
565 refPrn = refSatMap[sys]->prn();
566 }
567 if (obs->isValid() && !obs->outlier()) {
568 ++_numSat;
569 for (unsigned iPar = 0; iPar < numPar; iPar++) {
570 const t_pppParam *par = _parlist.params()[iPar];
571 AA[_numSat - 1][iPar] = par->partial(_epoTime, obs, t_lc::c1, refPrn);
572 }
573 }
574 }
575 if (_numSat < 4) {
576 return;
577 }
578 AA = AA.Rows(1, _numSat);
579 SymmetricMatrix NN;
580 NN << AA.t() * AA;
581 SymmetricMatrix QQ = NN.i();
582
583 _dop.H = sqrt(QQ(1, 1) + QQ(2, 2));
584 _dop.V = sqrt(QQ(3, 3));
585 _dop.P = sqrt(QQ(1, 1) + QQ(2, 2) + QQ(3, 3));
586 _dop.T = sqrt(QQ(4, 4));
587 _dop.G = sqrt(QQ(1, 1) + QQ(2, 2) + QQ(3, 3) + QQ(4, 4));
588 } catch (...) {
589 }
590}
591
592//
593////////////////////////////////////////////////////////////////////////////
594void t_pppFilter::predictCovCrdPart(const SymmetricMatrix &QFltOld) {
595
596 const vector<t_pppParam*> &params = _parlist.params();
597 if (params.size() < 3) {
598 return;
599 }
600
601 bool first = (params[0]->indexOld() < 0);
602
603 SymmetricMatrix Qneu(3);
604 Qneu = 0.0;
605 for (unsigned ii = 0; ii < 3; ii++) {
606 const t_pppParam *par = params[ii];
607 if (first) {
608 Qneu[ii][ii] = par->sigma0() * par->sigma0();
609 } else {
610 Qneu[ii][ii] = par->noise() * par->noise();
611 }
612 }
613
614 const t_pppStation *sta = PPP_CLIENT->staRover();
615 SymmetricMatrix Qxyz(3);
616 covariNEU_XYZ(Qneu, sta->ellApr().data(), Qxyz);
617
618 if (first) {
619 _QFlt.SymSubMatrix(1, 3) = Qxyz;
620 } else {
621 double dt = _epoTime - _firstEpoTime;
622 if (dt < OPT->_seedingTime) {
623 _QFlt.SymSubMatrix(1, 3) = QFltOld.SymSubMatrix(1, 3);
624 } else {
625 _QFlt.SymSubMatrix(1, 3) = QFltOld.SymSubMatrix(1, 3) + Qxyz;
626 }
627 }
628}
629
630//
631////////////////////////////////////////////////////////////////////////////
632void t_pppFilter::setStateVectorAndVarCovMatrix(const ColumnVector &xFltOld,
633 const SymmetricMatrix &QFltOld) {
634
635 const vector<t_pppParam*> &params = _parlist.params();
636 unsigned nPar = params.size();
637
638 _QFlt.ReSize(nPar);
639 _QFlt = 0.0;
640 _xFlt.ReSize(nPar);
641 _xFlt = 0.0;
642 _x0.ReSize(nPar);
643 _x0 = 0.0;
644
645 for (unsigned ii = 0; ii < nPar; ii++) {
646 t_pppParam *par1 = params[ii];
647 if (QFltOld.size() == 0) {
648 par1->resetIndex();
649 }
650 _x0[ii] = par1->x0();
651 int iOld = par1->indexOld();
652 if (iOld < 0) {
653 _QFlt[ii][ii] = par1->sigma0() * par1->sigma0(); // new parameter
654 } else {
655 _QFlt[ii][ii] = QFltOld[iOld][iOld] + par1->noise() * par1->noise();
656 _xFlt[ii] = xFltOld[iOld];
657 for (unsigned jj = 0; jj < ii; jj++) {
658 t_pppParam *par2 = params[jj];
659 int jOld = par2->indexOld();
660 if (jOld >= 0) {
661 _QFlt[ii][jj] = QFltOld(iOld + 1, jOld + 1);
662 }
663 }
664 }
665 }
666 predictCovCrdPart(QFltOld);
667}
668
669// Compute datum transformation
670////////////////////////////////////////////////////////////////////////////
671t_irc t_pppFilter::datumTransformation(
672 const QMap<char, t_pppRefSat*> &refSatMap) {
673
674 // get last epoch
675 t_pppObsPool::t_epoch *epoch = _obsPool->lastEpoch();
676 if (!epoch) {
677 LOG << "t_pppFilter::datumTransformation: !lastEpoch" << endl;
678 return failure;
679 }
680 _epoTime = epoch->epoTime();
681 LOG.setf(ios::fixed);
682 LOG << string(_epoTime) << " DATUM TRANSFORMATION " << endl;
683
684 vector<t_pppSatObs*> &allObs = epoch->obsVector();
685
686 const QMap<char, t_pppRefSat*> &refSatMapLastEpoch = epoch->refSatMap();
687
688 bool pseudoObsIono = epoch->pseudoObsIono();
689
690 // reset old and set new refSats in last epoch (ambiguities/GIM)
691 // =============================================================
692 if (resetRefSatellitesLastEpoch(allObs, refSatMap, refSatMapLastEpoch)
693 != true) {
694 LOG << "datumTransformation: resetRefSatellitesLastEpoch != success"
695 << endl;
696 return failure;
697 }
698
699 if (OPT->_obsModelType == OPT->UncombPPP) {
700 _obsPool->putEpoch(_epoTime, allObs, pseudoObsIono, refSatMap);
701 return success;
702 }
703
704 // set AA2
705 // =======
706 if (_parlist.set(_epoTime, allObs, refSatMap) != success) {
707 return failure;
708 }
709
710#ifdef BNC_DEBUG_PPP
711 _parlist.printParams(_epoTime);
712#endif
713
714 const QList<char> &usedSystems = _parlist.usedSystems();
715 for (int iSys = 0; iSys < usedSystems.size(); iSys++) {
716 char sys = usedSystems[iSys];
717 t_prn refPrn = refSatMap[sys]->prn();
718 vector<t_pppSatObs*> obsVector;
719 for (unsigned jj = 0; jj < allObs.size(); jj++) {
720 if (allObs[jj]->prn().system() == sys) {
721 allObs[jj]->resetOutlier();
722 obsVector.push_back(allObs[jj]);
723 }
724 }
725 if (iSys == 0) {
726 _datumTrafo->setFirstSystem(sys);
727 }
728 vector<t_lc::type> LCs = OPT->LCs(sys);
729 unsigned usedLCs = LCs.size();
730 if (OPT->_pseudoObsIono && !pseudoObsIono) {
731 usedLCs -= 1; // GIM not used
732 }
733 // max Obs
734 unsigned maxObs = obsVector.size() * usedLCs;
735
736 if (OPT->_pseudoObsIono && pseudoObsIono) {
737 maxObs -= 1; // pseudo obs iono with respect to refSat
738 }
739
740 const vector<t_pppParam*> &params = _parlist.params();
741 unsigned nPar = _parlist.nPar();
742
743 Matrix AA(maxObs, nPar);
744
745 // Real Observations
746 // -----------------
747 int iObs = -1;
748 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
749 t_pppSatObs *obs = obsVector[ii];
750 for (unsigned jj = 0; jj < usedLCs; jj++) {
751 const t_lc::type tLC = LCs[jj];
752 if (tLC == t_lc::GIM) {
753 continue;
754 }
755 ++iObs;
756 for (unsigned iPar = 0; iPar < nPar; iPar++) {
757 const t_pppParam *par = params[iPar];
758 AA[iObs][iPar] = par->partial(_epoTime, obs, tLC, refPrn);
759 }
760 }
761 }
762
763 if (!iObs) {
764 continue;
765 }
766 _datumTrafo->updateIndices(sys, iObs + 1); //LOG << "AA Ncols/Nrows: " << AA.Ncols() << "/" << AA.Nrows() << " nPar: " << nPar << endl; //LOG << "AA.SubMatrix(1 .. " << iObs+1 << " , 1 .. " << nPar << ")" << endl;
767 if (_datumTrafo->prepareAA(AA.SubMatrix(1, iObs + 1, 1, nPar), 2)
768 != success) {
769 return failure;
770 }
771 }
772 _datumTrafo->updateNumObs();
773
774 // Datum Transformation
775 // ====================
776#ifdef BNC_DEBUG_PPP
777 //LOG << "AA1\n"; _datumTrafo->printMatrix(_datumTrafo->AA1(), _datumTrafo->numObs(), _datumTrafo->numPar());
778 //LOG << "AA2\n"; _datumTrafo->printMatrix(_datumTrafo->AA2(), _datumTrafo->numObs(), _datumTrafo->numPar());
779#endif
780 if (_datumTrafo->computeTrafoMatrix() != success) {
781 return failure;
782 }
783#ifdef BNC_DEBUG_PPP
784 //LOG << "D21" << endl; _datumTrafo->printMatrix(_datumTrafo->D21(), _datumTrafo->numObs(), _datumTrafo->numPar());
785#endif
786 ColumnVector xFltOld = _xFlt;
787 SymmetricMatrix QFltOld = _QFlt;
788
789 _QFlt << _datumTrafo->D21() * QFltOld * _datumTrafo->D21().t();
790 _xFlt = _datumTrafo->D21() * xFltOld;
791
792#ifdef BNC_DEBUG_PPP
793 LOG << "xFltOld:\n" << xFltOld << endl;
794 LOG << "xFlt :\n" << _xFlt << endl;
795#endif
796
797 // Reset Ambiguities after Datum Transformation
798 // ============================================
799 for (int iSys = 0; iSys < usedSystems.size(); iSys++) {
800 char sys = usedSystems[iSys];
801 t_prn refPrnOld = refSatMapLastEpoch[sys]->prn();
802 t_prn refPrnNew = refSatMap[sys]->prn();
803 if (refPrnNew != refPrnOld) {
804 resetAmb(refPrnOld, allObs);/*
805 if (resetAmb(refPrnOld, allObs) == success) {
806 if (OPT->_obsModelType == OPT->DCMcodeBias) {
807 addNoiseToPar(t_pppParam::ion, sys);
808 } else if (OPT->_obsModelType == OPT->DCMphaseBias) {
809 if (sys == 'G') {
810 addNoiseToPar(t_pppParam::pBiasG1, sys);
811 addNoiseToPar(t_pppParam::pBiasG2, sys);
812 } else if (sys == 'R') {
813 addNoiseToPar(t_pppParam::pBiasR1, sys);
814 addNoiseToPar(t_pppParam::pBiasR2, sys);
815 } else if (sys == 'E') {
816 addNoiseToPar(t_pppParam::pBiasE1, sys);
817 addNoiseToPar(t_pppParam::pBiasE2, sys);
818 } else if (sys == 'C') {
819 addNoiseToPar(t_pppParam::pBiasC1, sys);
820 addNoiseToPar(t_pppParam::pBiasC2, sys);
821 }
822 }
823 }*/
824 }
825 }
826
827 // switch AA2 to AA1
828 // =================
829 _datumTrafo->switchAA();
830
831 _obsPool->putEpoch(_epoTime, allObs, pseudoObsIono, refSatMap);
832
833 return success;
834}
835
836// Init datum transformation
837////////////////////////////////////////////////////////////////////////////
838void t_pppFilter::initDatumTransformation(
839 const std::vector<t_pppSatObs*> &allObs, bool pseudoObsIono) {
840 unsigned trafoObs = 0;
841 const QList<char> &usedSystems = _parlist.usedSystems();
842 for (int iSys = 0; iSys < usedSystems.size(); iSys++) {
843 char sys = usedSystems[iSys];
844 int satNum = 0;
845 for (unsigned jj = 0; jj < allObs.size(); jj++) {
846 if (allObs[jj]->prn().system() == sys) {
847 satNum++;
848 }
849 }
850 // all LCs
851 unsigned realUsedLCs = OPT->LCs(sys).size();
852 // exclude pseudo obs GIM
853 if (OPT->_pseudoObsIono && !pseudoObsIono) {
854 realUsedLCs -= 1;
855 }
856
857 trafoObs += satNum * realUsedLCs;
858
859 if (OPT->_pseudoObsIono && pseudoObsIono) {
860 trafoObs -= 1; // pseudo obs iono with respect to refSat
861 }
862 }
863 _datumTrafo->setNumObs(trafoObs);
864 _datumTrafo->setNumPar(_parlist.nPar());
865 _datumTrafo->initAA();
866}
867
868//
869//////////////////////////////////////////////////////////////////////////////
870bool t_pppFilter::resetRefSatellitesLastEpoch(
871 std::vector<t_pppSatObs*> &obsVector,
872 const QMap<char, t_pppRefSat*> &refSatMap,
873 const QMap<char, t_pppRefSat*> &refSatMapLastEpoch) {
874 bool resetRefSat;
875 // reference satellite definition per system
876 const QList<char> &usedSystems = _parlist.usedSystems();
877 for (int iSys = 0; iSys < usedSystems.size(); iSys++) {
878 resetRefSat = false;
879 char sys = usedSystems[iSys];
880 t_prn newPrn = refSatMap[sys]->prn();
881 t_prn oldPrn = refSatMapLastEpoch[sys]->prn();
882#ifdef BNC_DEBUG_PPP
883 if (oldPrn != newPrn) {
884 LOG << "oldRef: " << oldPrn.toString() << " => newRef " << newPrn.toString() << endl;
885 }
886#endif
887 vector<t_pppSatObs*>::iterator it = obsVector.begin();
888 while (it != obsVector.end()) {
889 t_pppSatObs *satObs = *it;
890 if (satObs->prn() == newPrn) {
891 resetRefSat = true;
892 satObs->setAsReference();
893 } else if (satObs->prn() == oldPrn) {
894 satObs->resetReference();
895 }
896 it++;
897 }
898 if (!resetRefSat) {
899 _obsPool->setRefSatChangeRequired(sys, true);
900 return resetRefSat;
901 }
902 }
903 return resetRefSat;
904}
Note: See TracBrowser for help on using the repository browser.