source: ntrip/trunk/BNC/bncmodel.cpp@ 3422

Last change on this file since 3422 was 3422, checked in by mervart, 13 years ago
File size: 41.2 KB
RevLine 
[2057]1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: bncParam, bncModel
30 *
31 * Purpose: Model for PPP
32 *
33 * Author: L. Mervart
34 *
35 * Created: 01-Dec-2009
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iomanip>
[2063]42#include <cmath>
[2060]43#include <newmatio.h>
[2113]44#include <sstream>
[2057]45
46#include "bncmodel.h"
[2113]47#include "bncapp.h"
[2058]48#include "bncpppclient.h"
49#include "bancroft.h"
[2063]50#include "bncutils.h"
[2077]51#include "bncsettings.h"
[2580]52#include "bnctides.h"
[2881]53#include "bncantex.h"
[2057]54
55using namespace std;
56
[3420]57const unsigned MINOBS = 5;
[3408]58const double MINELE = 10.0 * M_PI / 180.0;
59const double MAXRES_CODE = 10.0;
[3421]60const double MAXRES_PHASE_GPS = 0.04;
[3419]61const double MAXRES_PHASE_GLONASS = 0.08;
[3408]62const double GLONASS_WEIGHT_FACTOR = 5.0;
[2070]63
[2057]64// Constructor
65////////////////////////////////////////////////////////////////////////////
[2080]66bncParam::bncParam(bncParam::parType typeIn, int indexIn,
67 const QString& prnIn) {
68 type = typeIn;
69 index = indexIn;
70 prn = prnIn;
71 index_old = 0;
72 xx = 0.0;
[3330]73 numEpo = 0;
[2057]74}
75
76// Destructor
77////////////////////////////////////////////////////////////////////////////
78bncParam::~bncParam() {
79}
80
[2060]81// Partial
82////////////////////////////////////////////////////////////////////////////
[2239]83double bncParam::partial(t_satData* satData, bool phase) {
84
[3312]85 Tracer tracer("bncParam::partial");
86
[2239]87 // Coordinates
88 // -----------
[2060]89 if (type == CRD_X) {
[2109]90 return (xx - satData->xx(1)) / satData->rho;
[2060]91 }
92 else if (type == CRD_Y) {
[2109]93 return (xx - satData->xx(2)) / satData->rho;
[2060]94 }
95 else if (type == CRD_Z) {
[2109]96 return (xx - satData->xx(3)) / satData->rho;
[2060]97 }
[2239]98
99 // Receiver Clocks
100 // ---------------
[2265]101 else if (type == RECCLK) {
102 return 1.0;
[2060]103 }
[2239]104
105 // Troposphere
106 // -----------
[2084]107 else if (type == TROPO) {
108 return 1.0 / sin(satData->eleSat);
109 }
[2239]110
[2782]111 // Galileo Offset
112 // --------------
113 else if (type == GALILEO_OFFSET) {
114 if (satData->prn[0] == 'E') {
115 return 1.0;
116 }
117 else {
118 return 0.0;
119 }
120 }
121
[2239]122 // Ambiguities
123 // -----------
[2080]124 else if (type == AMB_L3) {
[2239]125 if (phase && satData->prn == prn) {
[2080]126 return 1.0;
127 }
128 else {
129 return 0.0;
130 }
131 }
[2239]132
133 // Default return
134 // --------------
[2060]135 return 0.0;
136}
137
[2058]138// Constructor
139////////////////////////////////////////////////////////////////////////////
[2113]140bncModel::bncModel(QByteArray staID) {
[2084]141
[2113]142 _staID = staID;
143
[3107]144 connect(this, SIGNAL(newMessage(QByteArray,bool)),
145 ((bncApp*)qApp), SLOT(slotMessage(const QByteArray,bool)));
146
[2648]147 bncSettings settings;
148
[2720]149 // Observation Sigmas
150 // ------------------
151 _sigP3 = 5.0;
152 if (!settings.value("pppSigmaCode").toString().isEmpty()) {
153 _sigP3 = settings.value("pppSigmaCode").toDouble();
154 }
155 _sigL3 = 0.02;
156 if (!settings.value("pppSigmaPhase").toString().isEmpty()) {
[2741]157 _sigL3 = settings.value("pppSigmaPhase").toDouble();
[2720]158 }
[2648]159
[2720]160 // Parameter Sigmas
161 // ----------------
162 _sigCrd0 = 100.0;
163 if (!settings.value("pppSigCrd0").toString().isEmpty()) {
164 _sigCrd0 = settings.value("pppSigCrd0").toDouble();
165 }
166 _sigCrdP = 100.0;
167 if (!settings.value("pppSigCrdP").toString().isEmpty()) {
168 _sigCrdP = settings.value("pppSigCrdP").toDouble();
169 }
170 _sigTrp0 = 0.1;
171 if (!settings.value("pppSigTrp0").toString().isEmpty()) {
172 _sigTrp0 = settings.value("pppSigTrp0").toDouble();
173 }
174 _sigTrpP = 1e-6;
175 if (!settings.value("pppSigTrpP").toString().isEmpty()) {
176 _sigTrpP = settings.value("pppSigTrpP").toDouble();
177 }
[2782]178 _sigClk0 = 1000.0;
179 _sigAmb0 = 1000.0;
180 _sigGalileoOffset0 = 1000.0;
[2784]181 _sigGalileoOffsetP = 0.0;
[2648]182
[2720]183 // Quick-Start Mode
184 // ----------------
185 _quickStart = 0;
[2726]186 if (settings.value("pppRefCrdX").toString() != "" &&
187 settings.value("pppRefCrdY").toString() != "" &&
188 settings.value("pppRefCrdZ").toString() != "" &&
[2720]189 !settings.value("pppQuickStart").toString().isEmpty()) {
[2745]190 _quickStart = settings.value("pppQuickStart").toDouble();
[2720]191 }
192
[3107]193 // Several options
194 // ---------------
[2084]195 _usePhase = false;
196 if ( Qt::CheckState(settings.value("pppUsePhase").toInt()) == Qt::Checked) {
197 _usePhase = true;
198 }
199
200 _estTropo = false;
201 if ( Qt::CheckState(settings.value("pppEstTropo").toInt()) == Qt::Checked) {
202 _estTropo = true;
203 }
204
[3107]205 _useGalileo = false;
[2799]206 if ( Qt::CheckState(settings.value("pppGalileo").toInt()) == Qt::Checked) {
[3107]207 _useGalileo = true;
[2782]208 }
[2073]209
[2125]210 // NMEA Output
211 // -----------
212 QString nmeaFileName = settings.value("nmeaFile").toString();
213 if (nmeaFileName.isEmpty()) {
214 _nmeaFile = 0;
215 _nmeaStream = 0;
216 }
217 else {
218 expandEnvVar(nmeaFileName);
219 _nmeaFile = new QFile(nmeaFileName);
220 if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
221 _nmeaFile->open(QIODevice::WriteOnly | QIODevice::Append);
222 }
223 else {
224 _nmeaFile->open(QIODevice::WriteOnly);
225 }
226 _nmeaStream = new QTextStream();
227 _nmeaStream->setDevice(_nmeaFile);
228 }
[2881]229
[3107]230 // Antenna Name, ANTEX File
231 // ------------------------
[2896]232 _antex = 0;
[2881]233 QString antexFileName = settings.value("pppAntex").toString();
234 if (!antexFileName.isEmpty()) {
235 _antex = new bncAntex();
[2883]236 if (_antex->readFile(antexFileName) != success) {
[2938]237 emit newMessage("wrong ANTEX file", true);
[2887]238 delete _antex;
239 _antex = 0;
[2883]240 }
[2938]241 else {
242 _antennaName = settings.value("pppAntenna").toString();
243 }
[2881]244 }
[3107]245
[3286]246 // Antenna Eccentricities
247 // ----------------------
248 _dN = settings.value("pppRefdN").toDouble();
249 _dE = settings.value("pppRefdE").toDouble();
250 _dU = settings.value("pppRefdU").toDouble();
251
[3107]252 // Bancroft Coordinates
253 // --------------------
254 _xcBanc.ReSize(4); _xcBanc = 0.0;
255 _ellBanc.ReSize(3); _ellBanc = 0.0;
[3408]256
257 // Save copy of data (used in outlier detection)
258 // ---------------------------------------------
259 _epoData_sav = new t_epoData();
[2058]260}
261
[3108]262// Destructor
[3107]263////////////////////////////////////////////////////////////////////////////
[3108]264bncModel::~bncModel() {
265 delete _nmeaStream;
266 delete _nmeaFile;
267 for (int ii = 0; ii < _posAverage.size(); ++ii) {
268 delete _posAverage[ii];
269 }
270 delete _antex;
271 for (int iPar = 1; iPar <= _params.size(); iPar++) {
272 delete _params[iPar-1];
273 }
[3408]274 delete _epoData_sav;
[3108]275}
276
277// Reset Parameters and Variance-Covariance Matrix
278////////////////////////////////////////////////////////////////////////////
[3107]279void bncModel::reset() {
280
[3312]281 Tracer tracer("bncModel::reset");
282
[3107]283 for (int iPar = 1; iPar <= _params.size(); iPar++) {
284 delete _params[iPar-1];
285 }
286 _params.clear();
287
288 int nextPar = 0;
289 _params.push_back(new bncParam(bncParam::CRD_X, ++nextPar, ""));
290 _params.push_back(new bncParam(bncParam::CRD_Y, ++nextPar, ""));
291 _params.push_back(new bncParam(bncParam::CRD_Z, ++nextPar, ""));
292 _params.push_back(new bncParam(bncParam::RECCLK, ++nextPar, ""));
293 if (_estTropo) {
294 _params.push_back(new bncParam(bncParam::TROPO, ++nextPar, ""));
295 }
296 if (_useGalileo) {
297 _params.push_back(new bncParam(bncParam::GALILEO_OFFSET, ++nextPar, ""));
298 }
299
300 _QQ.ReSize(_params.size());
301 _QQ = 0.0;
302 for (int iPar = 1; iPar <= _params.size(); iPar++) {
303 bncParam* pp = _params[iPar-1];
304 pp->xx = 0.0;
305 if (pp->isCrd()) {
306 _QQ(iPar,iPar) = _sigCrd0 * _sigCrd0;
307 }
308 else if (pp->type == bncParam::RECCLK) {
309 _QQ(iPar,iPar) = _sigClk0 * _sigClk0;
310 }
311 else if (pp->type == bncParam::TROPO) {
312 _QQ(iPar,iPar) = _sigTrp0 * _sigTrp0;
313 }
314 else if (pp->type == bncParam::GALILEO_OFFSET) {
315 _QQ(iPar,iPar) = _sigGalileoOffset0 * _sigGalileoOffset0;
316 }
317 }
318}
319
[2058]320// Bancroft Solution
321////////////////////////////////////////////////////////////////////////////
322t_irc bncModel::cmpBancroft(t_epoData* epoData) {
323
[3312]324 Tracer tracer("bncModel::cmpBancroft");
325
[3408]326 if (epoData->sizeSys('G') < MINOBS) {
[2547]327 _log += "bncModel::cmpBancroft: not enough data\n";
[2058]328 return failure;
329 }
330
[3408]331 Matrix BB(epoData->sizeSys('G'), 4);
[2058]332
[3408]333 QMapIterator<QString, t_satData*> it(epoData->satData);
[2791]334 int iObsBanc = 0;
[2058]335 while (it.hasNext()) {
336 it.next();
337 t_satData* satData = it.value();
[3408]338 if (satData->system() == 'G') {
339 ++iObsBanc;
340 QString prn = it.key();
341 BB(iObsBanc, 1) = satData->xx(1);
342 BB(iObsBanc, 2) = satData->xx(2);
343 BB(iObsBanc, 3) = satData->xx(3);
344 BB(iObsBanc, 4) = satData->P3 + satData->clk;
345 }
[2058]346 }
347
348 bancroft(BB, _xcBanc);
349
[2064]350 // Ellipsoidal Coordinates
351 // ------------------------
352 xyz2ell(_xcBanc.data(), _ellBanc.data());
[2063]353
[2064]354 // Compute Satellite Elevations
355 // ----------------------------
[3408]356 QMutableMapIterator<QString, t_satData*> im(epoData->satData);
357 while (im.hasNext()) {
358 im.next();
359 t_satData* satData = im.value();
[2789]360 cmpEle(satData);
[3408]361 if (satData->eleSat < MINELE) {
[2070]362 delete satData;
[3408]363 im.remove();
[2070]364 }
[2064]365 }
366
[2058]367 return success;
368}
[2060]369
370// Computed Value
371////////////////////////////////////////////////////////////////////////////
[2583]372double bncModel::cmpValue(t_satData* satData, bool phase) {
[2060]373
[3312]374 Tracer tracer("bncModel::cmpValue");
375
[2073]376 ColumnVector xRec(3);
377 xRec(1) = x();
378 xRec(2) = y();
379 xRec(3) = z();
[2060]380
[2073]381 double rho0 = (satData->xx - xRec).norm_Frobenius();
[2060]382 double dPhi = t_CST::omega * rho0 / t_CST::c;
383
[2073]384 xRec(1) = x() * cos(dPhi) - y() * sin(dPhi);
385 xRec(2) = y() * cos(dPhi) + x() * sin(dPhi);
386 xRec(3) = z();
387
[2580]388 tides(_time, xRec);
389
[2060]390 satData->rho = (satData->xx - xRec).norm_Frobenius();
391
[2084]392 double tropDelay = delay_saast(satData->eleSat) +
393 trp() / sin(satData->eleSat);
[2060]394
[2583]395 double wind = 0.0;
396 if (phase) {
397 wind = windUp(satData->prn, satData->xx, xRec) * satData->lambda3;
398 }
399
[2783]400 double offset = 0.0;
401 if (satData->prn[0] == 'E') {
402 offset = Galileo_offset();
403 }
404
[2894]405 double phaseCenter = 0.0;
[2938]406 if (_antex) {
407 bool found;
408 phaseCenter = _antex->pco(_antennaName, satData->eleSat, found);
409 if (!found) {
410 emit newMessage("ANTEX: antenna >"
411 + _antennaName.toAscii() + "< not found", true);
412 }
[2894]413 }
414
[3286]415 double antennaOffset = 0.0;
416 if (_dN != 0.0 || _dE != 0.0 || _dU != 0.0) {
[3287]417 double cosa = cos(satData->azSat);
418 double sina = sin(satData->azSat);
419 double cose = cos(satData->eleSat);
420 double sine = sin(satData->eleSat);
421 antennaOffset = -_dN * cosa*cose - _dE * sina*cose - _dU * sine;
[3286]422 }
423
424 return satData->rho + phaseCenter + antennaOffset + clk()
[2894]425 + offset - satData->clk + tropDelay + wind;
[2060]426}
427
[2063]428// Tropospheric Model (Saastamoinen)
429////////////////////////////////////////////////////////////////////////////
[2065]430double bncModel::delay_saast(double Ele) {
[2063]431
[3312]432 Tracer tracer("bncModel::delay_saast");
433
[2769]434 double xyz[3];
435 xyz[0] = x();
436 xyz[1] = y();
437 xyz[2] = z();
438 double ell[3];
439 xyz2ell(xyz, ell);
440 double height = ell[2];
[2063]441
[2064]442 double pp = 1013.25 * pow(1.0 - 2.26e-5 * height, 5.225);
443 double TT = 18.0 - height * 0.0065 + 273.15;
444 double hh = 50.0 * exp(-6.396e-4 * height);
[2063]445 double ee = hh / 100.0 * exp(-37.2465 + 0.213166*TT - 0.000256908*TT*TT);
446
[2064]447 double h_km = height / 1000.0;
[2063]448
449 if (h_km < 0.0) h_km = 0.0;
450 if (h_km > 5.0) h_km = 5.0;
451 int ii = int(h_km + 1);
452 double href = ii - 1;
453
454 double bCor[6];
455 bCor[0] = 1.156;
456 bCor[1] = 1.006;
457 bCor[2] = 0.874;
458 bCor[3] = 0.757;
459 bCor[4] = 0.654;
460 bCor[5] = 0.563;
461
462 double BB = bCor[ii-1] + (bCor[ii]-bCor[ii-1]) * (h_km - href);
463
464 double zen = M_PI/2.0 - Ele;
465
466 return (0.002277/cos(zen)) * (pp + ((1255.0/TT)+0.05)*ee - BB*(tan(zen)*tan(zen)));
467}
468
[2073]469// Prediction Step of the Filter
470////////////////////////////////////////////////////////////////////////////
[3309]471void bncModel::predict(int iPhase, t_epoData* epoData) {
[2073]472
[3312]473 Tracer tracer("bncModel::predict");
474
[3310]475 if (iPhase == 0) {
[2244]476
[3310]477 bncSettings settings;
478
479 _time = epoData->tt; // current epoch time
480
481 _maxSolGap = settings.value("pppMaxSolGap").toDouble();
482
483 bool firstCrd = false;
484 if (!_lastTimeOK.valid() || (_maxSolGap > 0 && _time - _lastTimeOK > _maxSolGap)) {
485 firstCrd = true;
486 _startTime = epoData->tt;
487 reset();
488 }
489
490 // Use different white noise for Quick-Start mode
491 // ----------------------------------------------
492 double sigCrdP_used = _sigCrdP;
493 if ( _quickStart > 0.0 && _quickStart > (epoData->tt - _startTime) ) {
494 sigCrdP_used = 0.0;
495 }
[3106]496
[3310]497 // Predict Parameter values, add white noise
498 // -----------------------------------------
499 for (int iPar = 1; iPar <= _params.size(); iPar++) {
500 bncParam* pp = _params[iPar-1];
501
502 // Coordinates
503 // -----------
504 if (pp->type == bncParam::CRD_X) {
505 if (firstCrd) {
506 if (settings.value("pppRefCrdX").toString() != "" &&
507 settings.value("pppRefCrdY").toString() != "" &&
508 settings.value("pppRefCrdZ").toString() != "") {
509 pp->xx = settings.value("pppRefCrdX").toDouble();
510 }
511 else {
512 pp->xx = _xcBanc(1);
513 }
[2648]514 }
[3310]515 _QQ(iPar,iPar) += sigCrdP_used * sigCrdP_used;
[2244]516 }
[3310]517 else if (pp->type == bncParam::CRD_Y) {
518 if (firstCrd) {
519 if (settings.value("pppRefCrdX").toString() != "" &&
520 settings.value("pppRefCrdY").toString() != "" &&
521 settings.value("pppRefCrdZ").toString() != "") {
522 pp->xx = settings.value("pppRefCrdY").toDouble();
523 }
524 else {
525 pp->xx = _xcBanc(2);
526 }
[2648]527 }
[3310]528 _QQ(iPar,iPar) += sigCrdP_used * sigCrdP_used;
[2244]529 }
[3310]530 else if (pp->type == bncParam::CRD_Z) {
531 if (firstCrd) {
532 if (settings.value("pppRefCrdX").toString() != "" &&
533 settings.value("pppRefCrdY").toString() != "" &&
534 settings.value("pppRefCrdZ").toString() != "") {
535 pp->xx = settings.value("pppRefCrdZ").toDouble();
536 }
537 else {
538 pp->xx = _xcBanc(3);
539 }
[2648]540 }
[3310]541 _QQ(iPar,iPar) += sigCrdP_used * sigCrdP_used;
542 }
543
544 // Receiver Clocks
545 // ---------------
546 else if (pp->type == bncParam::RECCLK) {
547 pp->xx = _xcBanc(4);
548 for (int jj = 1; jj <= _params.size(); jj++) {
549 _QQ(iPar, jj) = 0.0;
[2648]550 }
[3310]551 _QQ(iPar,iPar) = _sigClk0 * _sigClk0;
[2244]552 }
[3310]553
554 // Tropospheric Delay
555 // ------------------
556 else if (pp->type == bncParam::TROPO) {
557 _QQ(iPar,iPar) += _sigTrpP * _sigTrpP;
[2244]558 }
[3310]559
560 // Galileo Offset
561 // --------------
562 else if (pp->type == bncParam::GALILEO_OFFSET) {
563 _QQ(iPar,iPar) += _sigGalileoOffsetP * _sigGalileoOffsetP;
564 }
[2244]565 }
566 }
567
568 // Add New Ambiguities if necessary
569 // --------------------------------
[2083]570 if (_usePhase) {
[2080]571
[2083]572 // Make a copy of QQ and xx, set parameter indices
573 // -----------------------------------------------
574 SymmetricMatrix QQ_old = _QQ;
575
576 for (int iPar = 1; iPar <= _params.size(); iPar++) {
577 _params[iPar-1]->index_old = _params[iPar-1]->index;
578 _params[iPar-1]->index = 0;
579 }
580
581 // Remove Ambiguity Parameters without observations
582 // ------------------------------------------------
583 int iPar = 0;
[3408]584 QMutableVectorIterator<bncParam*> im(_params);
585 while (im.hasNext()) {
586 bncParam* par = im.next();
[2083]587 bool removed = false;
588 if (par->type == bncParam::AMB_L3) {
[3408]589 if (epoData->satData.find(par->prn) == epoData->satData.end()) {
[2083]590 removed = true;
591 delete par;
[3408]592 im.remove();
[2083]593 }
[2080]594 }
[2083]595 if (! removed) {
596 ++iPar;
597 par->index = iPar;
598 }
[2080]599 }
[2083]600
601 // Add new ambiguity parameters
602 // ----------------------------
[3408]603 QMapIterator<QString, t_satData*> it(epoData->satData);
604 while (it.hasNext()) {
605 it.next();
606 t_satData* satData = it.value();
[2789]607 addAmb(satData);
[2080]608 }
[2083]609
610 int nPar = _params.size();
611 _QQ.ReSize(nPar); _QQ = 0.0;
612 for (int i1 = 1; i1 <= nPar; i1++) {
613 bncParam* p1 = _params[i1-1];
614 if (p1->index_old != 0) {
615 _QQ(p1->index, p1->index) = QQ_old(p1->index_old, p1->index_old);
616 for (int i2 = 1; i2 <= nPar; i2++) {
617 bncParam* p2 = _params[i2-1];
618 if (p2->index_old != 0) {
619 _QQ(p1->index, p2->index) = QQ_old(p1->index_old, p2->index_old);
620 }
[2080]621 }
622 }
623 }
[2083]624
625 for (int ii = 1; ii <= nPar; ii++) {
626 bncParam* par = _params[ii-1];
627 if (par->index_old == 0) {
[2720]628 _QQ(par->index, par->index) = _sigAmb0 * _sigAmb0;
[2083]629 }
630 par->index_old = par->index;
[2080]631 }
632 }
[2073]633}
634
[2060]635// Update Step of the Filter (currently just a single-epoch solution)
636////////////////////////////////////////////////////////////////////////////
637t_irc bncModel::update(t_epoData* epoData) {
638
[3312]639 Tracer tracer("bncModel::update");
640
[2473]641 bncSettings settings;
642
[2248]643 _log.clear();
[2124]644
[2827]645 if (settings.value("pppSPP").toString() == "PPP") {
646 _log += "Precise Point Positioning of Epoch "
647 + QByteArray(_time.timestr(1).c_str()) +
648 "\n---------------------------------------------------------------\n";
649 }
650 else {
651 _log += "Single Point Positioning of Epoch "
652 + QByteArray(_time.timestr(1).c_str()) +
[2547]653 "\n--------------------------------------------------------------\n";
[2827]654 }
[2547]655
[3307]656 // Outlier Detection Loop
[2113]657 // ----------------------
[3321]658 if (update_p(epoData) != success) {
[3408]659 emit newMessage(_log, false);
[3307]660 return failure;
661 }
[2080]662
[2670]663 // Remember the Epoch-specific Results for the computation of means
664 // ----------------------------------------------------------------
665 pppPos* newPos = new pppPos;
666 newPos->time = epoData->tt;
667
[2109]668 // Set Solution Vector
669 // -------------------
[2265]670 ostringstream strB;
671 strB.setf(ios::fixed);
[2073]672 QVectorIterator<bncParam*> itPar(_params);
[2060]673 while (itPar.hasNext()) {
674 bncParam* par = itPar.next();
[2265]675
676 if (par->type == bncParam::RECCLK) {
[2798]677 strB << "\n clk = " << setw(10) << setprecision(3) << par->xx
[2124]678 << " +- " << setw(6) << setprecision(3)
679 << sqrt(_QQ(par->index,par->index));
680 }
681 else if (par->type == bncParam::AMB_L3) {
[3330]682 ++par->numEpo;
[2265]683 strB << "\n amb " << par->prn.toAscii().data() << " = "
[2798]684 << setw(10) << setprecision(3) << par->xx
[2124]685 << " +- " << setw(6) << setprecision(3)
[3330]686 << sqrt(_QQ(par->index,par->index))
687 << " nEpo = " << par->numEpo;
[2124]688 }
[2212]689 else if (par->type == bncParam::TROPO) {
[2670]690 double aprTrp = delay_saast(M_PI/2.0);
[2547]691 strB << "\n trp = " << par->prn.toAscii().data()
[2670]692 << setw(7) << setprecision(3) << aprTrp << " "
[2213]693 << setw(6) << setprecision(3) << showpos << par->xx << noshowpos
[2212]694 << " +- " << setw(6) << setprecision(3)
695 << sqrt(_QQ(par->index,par->index));
[2670]696 newPos->xnt[6] = aprTrp + par->xx;
[2212]697 }
[2782]698 else if (par->type == bncParam::GALILEO_OFFSET) {
[2798]699 strB << "\n offset = " << setw(10) << setprecision(3) << par->xx
[2782]700 << " +- " << setw(6) << setprecision(3)
701 << sqrt(_QQ(par->index,par->index));
702 }
[2060]703 }
[2265]704 strB << '\n';
[2547]705 _log += strB.str().c_str();
706 emit newMessage(_log, false);
[2060]707
[2547]708 // Final Message (both log file and screen)
709 // ----------------------------------------
710 ostringstream strC;
711 strC.setf(ios::fixed);
712 strC << _staID.data() << " PPP "
[2599]713 << epoData->tt.timestr(1) << " " << epoData->sizeAll() << " "
[2231]714 << setw(14) << setprecision(3) << x() << " +- "
715 << setw(6) << setprecision(3) << sqrt(_QQ(1,1)) << " "
716 << setw(14) << setprecision(3) << y() << " +- "
717 << setw(6) << setprecision(3) << sqrt(_QQ(2,2)) << " "
718 << setw(14) << setprecision(3) << z() << " +- "
[2124]719 << setw(6) << setprecision(3) << sqrt(_QQ(3,3));
[2113]720
[2370]721 // NEU Output
722 // ----------
[2862]723 double xyzRef[3];
724
[2726]725 if (settings.value("pppRefCrdX").toString() != "" &&
726 settings.value("pppRefCrdY").toString() != "" &&
727 settings.value("pppRefCrdZ").toString() != "") {
[2649]728
[2370]729 xyzRef[0] = settings.value("pppRefCrdX").toDouble();
730 xyzRef[1] = settings.value("pppRefCrdY").toDouble();
731 xyzRef[2] = settings.value("pppRefCrdZ").toDouble();
[2649]732
[2670]733 newPos->xnt[0] = x() - xyzRef[0];
734 newPos->xnt[1] = y() - xyzRef[1];
735 newPos->xnt[2] = z() - xyzRef[2];
[2649]736
737 double ellRef[3];
[2370]738 xyz2ell(xyzRef, ellRef);
[2670]739 xyz2neu(ellRef, newPos->xnt, &newPos->xnt[3]);
[2649]740
[2547]741 strC << " NEU "
[2670]742 << setw(8) << setprecision(3) << newPos->xnt[3] << " "
743 << setw(8) << setprecision(3) << newPos->xnt[4] << " "
[2797]744 << setw(8) << setprecision(3) << newPos->xnt[5] << endl;
[2649]745
[2370]746 }
747
[2547]748 emit newMessage(QByteArray(strC.str().c_str()), true);
749
[2671]750 if (settings.value("pppAverage").toString() == "") {
751 delete newPos;
752 }
753 else {
754
755 _posAverage.push_back(newPos);
[2599]756
[2648]757 // Time Span for Average Computation
758 // ---------------------------------
759 double tRangeAverage = settings.value("pppAverage").toDouble() * 60.;
760 if (tRangeAverage < 0) {
761 tRangeAverage = 0;
762 }
763 if (tRangeAverage > 86400) {
764 tRangeAverage = 86400;
765 }
[2599]766
[2648]767 // Compute the Mean
768 // ----------------
[2670]769 ColumnVector mean(7); mean = 0.0;
[2648]770
[2599]771 QMutableVectorIterator<pppPos*> it(_posAverage);
772 while (it.hasNext()) {
773 pppPos* pp = it.next();
[2648]774 if ( (epoData->tt - pp->time) >= tRangeAverage ) {
[2599]775 delete pp;
776 it.remove();
777 }
[2648]778 else {
[2670]779 for (int ii = 0; ii < 7; ++ii) {
780 mean[ii] += pp->xnt[ii];
[2649]781 }
[2648]782 }
[2599]783 }
[2648]784
785 int nn = _posAverage.size();
786
[2649]787 if (nn > 0) {
[2648]788
[2649]789 mean /= nn;
790
791 // Compute the Deviation
792 // ---------------------
[2670]793 ColumnVector std(7); std = 0.0;
[2649]794 QVectorIterator<pppPos*> it2(_posAverage);
795 while (it2.hasNext()) {
796 pppPos* pp = it2.next();
[2670]797 for (int ii = 0; ii < 7; ++ii) {
798 std[ii] += (pp->xnt[ii] - mean[ii]) * (pp->xnt[ii] - mean[ii]);
[2649]799 }
800 }
[2670]801 for (int ii = 0; ii < 7; ++ii) {
[2649]802 std[ii] = sqrt(std[ii] / nn);
803 }
[3169]804
805 if (settings.value("pppRefCrdX").toString() != "" &&
806 settings.value("pppRefCrdY").toString() != "" &&
807 settings.value("pppRefCrdZ").toString() != "") {
[2649]808
[3169]809 ostringstream strD; strD.setf(ios::fixed);
810 strD << _staID.data() << " AVE-XYZ "
811 << epoData->tt.timestr(1) << " "
812 << setw(13) << setprecision(3) << mean[0] + xyzRef[0] << " +- "
813 << setw(6) << setprecision(3) << std[0] << " "
814 << setw(14) << setprecision(3) << mean[1] + xyzRef[1] << " +- "
815 << setw(6) << setprecision(3) << std[1] << " "
816 << setw(14) << setprecision(3) << mean[2] + xyzRef[2] << " +- "
817 << setw(6) << setprecision(3) << std[2];
818 emit newMessage(QByteArray(strD.str().c_str()), true);
[2649]819
[3169]820 ostringstream strE; strE.setf(ios::fixed);
821 strE << _staID.data() << " AVE-NEU "
822 << epoData->tt.timestr(1) << " "
823 << setw(13) << setprecision(3) << mean[3] << " +- "
824 << setw(6) << setprecision(3) << std[3] << " "
825 << setw(14) << setprecision(3) << mean[4] << " +- "
826 << setw(6) << setprecision(3) << std[4] << " "
827 << setw(14) << setprecision(3) << mean[5] << " +- "
828 << setw(6) << setprecision(3) << std[5];
829 emit newMessage(QByteArray(strE.str().c_str()), true);
[2649]830
[3169]831 if ( Qt::CheckState(settings.value("pppEstTropo").toInt()) == Qt::Checked) {
832 ostringstream strF; strF.setf(ios::fixed);
833 strF << _staID.data() << " AVE-TRP "
834 << epoData->tt.timestr(1) << " "
835 << setw(13) << setprecision(3) << mean[6] << " +- "
836 << setw(6) << setprecision(3) << std[6] << endl;
837 emit newMessage(QByteArray(strF.str().c_str()), true);
838 }
[2726]839 }
[2599]840 }
841 }
842
[2131]843 // NMEA Output
844 // -----------
[2181]845 double xyz[3];
846 xyz[0] = x();
847 xyz[1] = y();
848 xyz[2] = z();
849 double ell[3];
850 xyz2ell(xyz, ell);
851 double phiDeg = ell[0] * 180 / M_PI;
852 double lamDeg = ell[1] * 180 / M_PI;
[2132]853
[2181]854 char phiCh = 'N';
855 if (phiDeg < 0) {
856 phiDeg = -phiDeg;
857 phiCh = 'S';
858 }
859 char lamCh = 'E';
860 if (lamDeg < 0) {
[2563]861 lamDeg = -lamDeg;
862 lamCh = 'W';
[2181]863 }
[2132]864
[2566]865 string datestr = epoData->tt.datestr(0); // yyyymmdd
866 ostringstream strRMC;
867 strRMC.setf(ios::fixed);
868 strRMC << "GPRMC,"
869 << epoData->tt.timestr(0,0) << ",A,"
870 << setw(2) << setfill('0') << int(phiDeg)
871 << setw(6) << setprecision(3) << setfill('0')
872 << fmod(60*phiDeg,60) << ',' << phiCh << ','
873 << setw(3) << setfill('0') << int(lamDeg)
874 << setw(6) << setprecision(3) << setfill('0')
875 << fmod(60*lamDeg,60) << ',' << lamCh << ",,,"
[2569]876 << datestr[6] << datestr[7] << datestr[4] << datestr[5]
877 << datestr[2] << datestr[3] << ",,";
[2566]878
879 writeNMEAstr(QString(strRMC.str().c_str()));
880
[2181]881 double dop = 2.0; // TODO
[2133]882
[2566]883 ostringstream strGGA;
884 strGGA.setf(ios::fixed);
885 strGGA << "GPGGA,"
886 << epoData->tt.timestr(0,0) << ','
887 << setw(2) << setfill('0') << int(phiDeg)
888 << setw(10) << setprecision(7) << setfill('0')
889 << fmod(60*phiDeg,60) << ',' << phiCh << ','
890 << setw(3) << setfill('0') << int(lamDeg)
891 << setw(10) << setprecision(7) << setfill('0')
892 << fmod(60*lamDeg,60) << ',' << lamCh
893 << ",1," << setw(2) << setfill('0') << epoData->sizeAll() << ','
894 << setw(3) << setprecision(1) << dop << ','
[2569]895 << setprecision(3) << ell[2] << ",M,0.0,M,,";
[2181]896
[2566]897 writeNMEAstr(QString(strGGA.str().c_str()));
[2131]898
[3106]899 _lastTimeOK = _time; // remember time of last successful update
[2060]900 return success;
901}
[2112]902
903// Outlier Detection
904////////////////////////////////////////////////////////////////////////////
[3412]905QString bncModel::outlierDetection(int iPhase, const ColumnVector& vv,
906 QMap<QString, t_satData*>& satData) {
[2112]907
[3312]908 Tracer tracer("bncModel::outlierDetection");
909
[3414]910 QString prnGPS;
911 QString prnGlo;
912 double maxResGPS = 0.0;
913 double maxResGlo = 0.0;
914 findMaxRes(vv, satData, prnGPS, prnGlo, maxResGPS, maxResGlo);
[2231]915
[3414]916 if (iPhase == 1) {
917 if (maxResGlo > MAXRES_PHASE_GLONASS) {
918 _log += "Outlier Phase " + prnGlo + " "
919 + QByteArray::number(maxResGlo, 'f', 3) + "\n";
920 return prnGlo;
921 }
922 else if (maxResGPS > MAXRES_PHASE_GPS) {
923 _log += "Outlier Phase " + prnGPS + " "
924 + QByteArray::number(maxResGPS, 'f', 3) + "\n";
925 return prnGPS;
926 }
[2792]927 }
[3414]928 else if (iPhase == 0 && maxResGPS > MAXRES_CODE) {
929 _log += "Outlier Code " + prnGPS + " "
930 + QByteArray::number(maxResGPS, 'f', 3) + "\n";
931 return prnGPS;
[3408]932 }
[3414]933
934 return QString();
[2112]935}
[2130]936
937//
938////////////////////////////////////////////////////////////////////////////
939void bncModel::writeNMEAstr(const QString& nmStr) {
940
[3312]941 Tracer tracer("bncModel::writeNMEAstr");
942
[2130]943 unsigned char XOR = 0;
944 for (int ii = 0; ii < nmStr.length(); ii++) {
945 XOR ^= (unsigned char) nmStr[ii].toAscii();
946 }
[2181]947
948 QString outStr = '$' + nmStr
949 + QString("*%1\n").arg(int(XOR), 0, 16).toUpper();
[2130]950
[2178]951 if (_nmeaStream) {
[2181]952 *_nmeaStream << outStr;
[2178]953 _nmeaStream->flush();
954 }
[2130]955
[2181]956 emit newNMEAstr(outStr.toAscii());
[2130]957}
[2283]958
[3408]959//
[2283]960//////////////////////////////////////////////////////////////////////////////
961void bncModel::kalman(const Matrix& AA, const ColumnVector& ll,
962 const DiagonalMatrix& PP,
963 SymmetricMatrix& QQ, ColumnVector& dx) {
964
[3312]965 Tracer tracer("bncModel::kalman");
966
[2283]967 int nObs = AA.Nrows();
968 int nPar = AA.Ncols();
969
970 UpperTriangularMatrix SS = Cholesky(QQ).t();
971
972 Matrix SA = SS*AA.t();
973 Matrix SRF(nObs+nPar, nObs+nPar); SRF = 0;
974 for (int ii = 1; ii <= nObs; ++ii) {
975 SRF(ii,ii) = 1.0 / sqrt(PP(ii,ii));
976 }
977
978 SRF.SubMatrix (nObs+1, nObs+nPar, 1, nObs) = SA;
979 SRF.SymSubMatrix(nObs+1, nObs+nPar) = SS;
980
981 UpperTriangularMatrix UU;
982 QRZ(SRF, UU);
983
984 SS = UU.SymSubMatrix(nObs+1, nObs+nPar);
985 UpperTriangularMatrix SH_rt = UU.SymSubMatrix(1, nObs);
986 Matrix YY = UU.SubMatrix(1, nObs, nObs+1, nObs+nPar);
987
988 UpperTriangularMatrix SHi = SH_rt.i();
989
990 Matrix KT = SHi * YY;
991 SymmetricMatrix Hi; Hi << SHi * SHi.t();
992
993 dx = KT.t() * ll;
994 QQ << (SS.t() * SS);
995}
[2582]996
997// Phase Wind-Up Correction
998///////////////////////////////////////////////////////////////////////////
999double bncModel::windUp(const QString& prn, const ColumnVector& rSat,
1000 const ColumnVector& rRec) {
1001
[3312]1002 Tracer tracer("bncModel::windUp");
1003
[2582]1004 double Mjd = _time.mjd() + _time.daysec() / 86400.0;
1005
1006 // First time - initialize to zero
1007 // -------------------------------
1008 if (!_windUpTime.contains(prn)) {
1009 _windUpSum[prn] = 0.0;
1010 }
1011
1012 // Compute the correction for new time
1013 // -----------------------------------
[2942]1014 if (!_windUpTime.contains(prn) || _windUpTime[prn] != Mjd) {
[2582]1015 _windUpTime[prn] = Mjd;
1016
1017 // Unit Vector GPS Satellite --> Receiver
1018 // --------------------------------------
1019 ColumnVector rho = rRec - rSat;
1020 rho /= rho.norm_Frobenius();
1021
1022 // GPS Satellite unit Vectors sz, sy, sx
1023 // -------------------------------------
1024 ColumnVector sz = -rSat / rSat.norm_Frobenius();
1025
1026 ColumnVector xSun = Sun(Mjd);
1027 xSun /= xSun.norm_Frobenius();
1028
1029 ColumnVector sy = crossproduct(sz, xSun);
1030 ColumnVector sx = crossproduct(sy, sz);
1031
1032 // Effective Dipole of the GPS Satellite Antenna
1033 // ---------------------------------------------
1034 ColumnVector dipSat = sx - rho * DotProduct(rho,sx)
1035 - crossproduct(rho, sy);
1036
1037 // Receiver unit Vectors rx, ry
1038 // ----------------------------
1039 ColumnVector rx(3);
1040 ColumnVector ry(3);
1041
1042 double recEll[3]; xyz2ell(rRec.data(), recEll) ;
1043 double neu[3];
1044
1045 neu[0] = 1.0;
1046 neu[1] = 0.0;
1047 neu[2] = 0.0;
1048 neu2xyz(recEll, neu, rx.data());
1049
1050 neu[0] = 0.0;
1051 neu[1] = -1.0;
1052 neu[2] = 0.0;
1053 neu2xyz(recEll, neu, ry.data());
1054
1055 // Effective Dipole of the Receiver Antenna
1056 // ----------------------------------------
1057 ColumnVector dipRec = rx - rho * DotProduct(rho,rx)
1058 + crossproduct(rho, ry);
1059
1060 // Resulting Effect
1061 // ----------------
1062 double alpha = DotProduct(dipSat,dipRec) /
1063 (dipSat.norm_Frobenius() * dipRec.norm_Frobenius());
1064
1065 if (alpha > 1.0) alpha = 1.0;
1066 if (alpha < -1.0) alpha = -1.0;
1067
1068 double dphi = acos(alpha) / 2.0 / M_PI; // in cycles
1069
1070 if ( DotProduct(rho, crossproduct(dipSat, dipRec)) < 0.0 ) {
1071 dphi = -dphi;
1072 }
1073
1074 _windUpSum[prn] = floor(_windUpSum[prn] - dphi + 0.5) + dphi;
1075 }
1076
1077 return _windUpSum[prn];
1078}
[2789]1079
1080//
1081///////////////////////////////////////////////////////////////////////////
1082void bncModel::cmpEle(t_satData* satData) {
[3312]1083 Tracer tracer("bncModel::cmpEle");
[2789]1084 ColumnVector rr = satData->xx - _xcBanc.Rows(1,3);
1085 double rho = rr.norm_Frobenius();
1086
1087 double neu[3];
1088 xyz2neu(_ellBanc.data(), rr.data(), neu);
1089
1090 satData->eleSat = acos( sqrt(neu[0]*neu[0] + neu[1]*neu[1]) / rho );
1091 if (neu[2] < 0) {
1092 satData->eleSat *= -1.0;
1093 }
1094 satData->azSat = atan2(neu[1], neu[0]);
1095}
1096
1097//
1098///////////////////////////////////////////////////////////////////////////
1099void bncModel::addAmb(t_satData* satData) {
[3312]1100 Tracer tracer("bncModel::addAmb");
[2789]1101 bool found = false;
1102 for (int iPar = 1; iPar <= _params.size(); iPar++) {
1103 if (_params[iPar-1]->type == bncParam::AMB_L3 &&
1104 _params[iPar-1]->prn == satData->prn) {
1105 found = true;
1106 break;
1107 }
1108 }
1109 if (!found) {
1110 bncParam* par = new bncParam(bncParam::AMB_L3,
1111 _params.size()+1, satData->prn);
1112 _params.push_back(par);
1113 par->xx = satData->L3 - cmpValue(satData, true);
1114 }
1115}
[2790]1116
1117//
1118///////////////////////////////////////////////////////////////////////////
[3309]1119void bncModel::addObs(int iPhase, unsigned& iObs, t_satData* satData,
[2790]1120 Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP) {
1121
[3312]1122 Tracer tracer("bncModel::addObs");
1123
[3316]1124 const double ELEWGHT = 20.0;
[3314]1125 double ellWgtCoef = 1.0;
1126 double eleD = satData->eleSat * 180.0 / M_PI;
1127 if (eleD < ELEWGHT) {
[3317]1128 ellWgtCoef = 1.5 - 0.5 / (ELEWGHT - 10.0) * (eleD - 10.0);
[3314]1129 }
1130
[3408]1131 // Remember Observation Index
1132 // --------------------------
1133 ++iObs;
1134 satData->obsIndex = iObs;
1135
[2791]1136 // Phase Observations
1137 // ------------------
[3309]1138 if (iPhase == 1) {
[2790]1139 ll(iObs) = satData->L3 - cmpValue(satData, true);
[3408]1140 double sigL3 = _sigL3;
[3319]1141 if (satData->system() == 'R') {
[3408]1142 sigL3 *= GLONASS_WEIGHT_FACTOR;
[3319]1143 }
[3408]1144 PP(iObs,iObs) = 1.0 / (sigL3 * sigL3) / (ellWgtCoef * ellWgtCoef);
[2790]1145 for (int iPar = 1; iPar <= _params.size(); iPar++) {
1146 if (_params[iPar-1]->type == bncParam::AMB_L3 &&
1147 _params[iPar-1]->prn == satData->prn) {
1148 ll(iObs) -= _params[iPar-1]->xx;
1149 }
1150 AA(iObs, iPar) = _params[iPar-1]->partial(satData, true);
1151 }
1152 }
[3307]1153
1154 // Code Observations
1155 // -----------------
1156 else {
1157 ll(iObs) = satData->P3 - cmpValue(satData, false);
[3314]1158 PP(iObs,iObs) = 1.0 / (_sigP3 * _sigP3) / (ellWgtCoef * ellWgtCoef);
[3307]1159 for (int iPar = 1; iPar <= _params.size(); iPar++) {
1160 AA(iObs, iPar) = _params[iPar-1]->partial(satData, false);
1161 }
1162 }
[2790]1163}
[2791]1164
1165//
1166///////////////////////////////////////////////////////////////////////////
[3408]1167QByteArray bncModel::printRes(int iPhase, const ColumnVector& vv,
1168 const QMap<QString, t_satData*>& satDataMap) {
1169
[3312]1170 Tracer tracer("bncModel::printRes");
[3408]1171
1172 ostringstream str;
1173 str.setf(ios::fixed);
1174
1175 QMapIterator<QString, t_satData*> it(satDataMap);
1176 while (it.hasNext()) {
1177 it.next();
1178 t_satData* satData = it.value();
1179 if (satData->obsIndex != 0) {
1180 str << _time.timestr(1)
1181 << " RES " << satData->prn.toAscii().data()
1182 << (iPhase ? " L3 " : " P3 ")
1183 << setw(9) << setprecision(4) << vv(satData->obsIndex) << endl;
1184 }
[2791]1185 }
[3408]1186
1187 return QByteArray(str.str().c_str());
[2791]1188}
[2792]1189
1190//
1191///////////////////////////////////////////////////////////////////////////
[3408]1192void bncModel::findMaxRes(const ColumnVector& vv,
[2792]1193 const QMap<QString, t_satData*>& satData,
[3414]1194 QString& prnGPS, QString& prnGlo,
1195 double& maxResGPS, double& maxResGlo) {
[3408]1196
[3312]1197 Tracer tracer("bncModel::findMaxRes");
[2792]1198
[3414]1199 maxResGPS = 0.0;
1200 maxResGlo = 0.0;
[3408]1201
[2792]1202 QMapIterator<QString, t_satData*> it(satData);
1203 while (it.hasNext()) {
1204 it.next();
1205 t_satData* satData = it.value();
[3414]1206 if (satData->obsIndex != 0) {
1207 QString prn = satData->prn;
1208 if (prn[0] == 'R') {
1209 if (fabs(vv(satData->obsIndex)) > maxResGlo) {
1210 maxResGlo = fabs(vv(satData->obsIndex));
1211 prnGlo = prn;
1212 }
1213 }
1214 else {
1215 if (fabs(vv(satData->obsIndex)) > maxResGPS) {
1216 maxResGPS = fabs(vv(satData->obsIndex));
1217 prnGPS = prn;
1218 }
1219 }
[2792]1220 }
1221 }
1222}
1223
[3307]1224// Update Step (private - loop over outliers)
1225////////////////////////////////////////////////////////////////////////////
[3321]1226t_irc bncModel::update_p(t_epoData* epoData) {
[3307]1227
[3312]1228 Tracer tracer("bncModel::update_p");
1229
[3408]1230 // Save Variance-Covariance Matrix, and Status Vector
1231 // --------------------------------------------------
1232 rememberState(epoData);
[3307]1233
[3412]1234 QString lastOutlierPrn;
[3375]1235
[3408]1236 // Try with all satellites, then with all minus one, etc.
1237 // ------------------------------------------------------
[3412]1238 while (selectSatellites(lastOutlierPrn, epoData->satData) == success) {
[3307]1239
[3412]1240 QByteArray strResCode;
1241 QByteArray strResPhase;
1242
1243 // Bancroft Solution
1244 // -----------------
1245 if (cmpBancroft(epoData) != success) {
1246 break;
[3408]1247 }
[3406]1248
[3412]1249 // First update using code observations, then phase observations
1250 // -------------------------------------------------------------
1251 for (int iPhase = 0; iPhase <= (_usePhase ? 1 : 0); iPhase++) {
1252
1253 // Status Prediction
1254 // -----------------
1255 predict(iPhase, epoData);
1256
1257 // Create First-Design Matrix
1258 // --------------------------
1259 unsigned nPar = _params.size();
1260 unsigned nObs = 0;
1261 if (iPhase == 0) {
1262 nObs = epoData->sizeAll() - epoData->sizeSys('R'); // Glonass code not used
[3408]1263 }
[3412]1264 else {
1265 nObs = epoData->sizeAll();
[3409]1266 }
[3412]1267
1268 // Prepare first-design Matrix, vector observed-computed
1269 // -----------------------------------------------------
1270 Matrix AA(nObs, nPar); // first design matrix
1271 ColumnVector ll(nObs); // tems observed-computed
1272 DiagonalMatrix PP(nObs); PP = 0.0;
1273
1274 unsigned iObs = 0;
1275 QMapIterator<QString, t_satData*> it(epoData->satData);
1276 while (it.hasNext()) {
1277 it.next();
1278 t_satData* satData = it.value();
1279 if (iPhase == 1 || satData->system() != 'R') {
1280 QString prn = satData->prn;
1281 addObs(iPhase, iObs, satData, AA, ll, PP);
1282 }
[3408]1283 }
1284
[3412]1285 // Compute Filter Update
1286 // ---------------------
[3422]1287 ColumnVector dx;
[3412]1288 kalman(AA, ll, PP, _QQ, dx);
1289 ColumnVector vv = ll - AA * dx;
1290
1291 // Print Residuals
1292 // ---------------
1293 if (iPhase == 0) {
1294 strResCode = printRes(iPhase, vv, epoData->satData);
[3399]1295 }
[3412]1296 else {
1297 strResPhase = printRes(iPhase, vv, epoData->satData);
1298 }
[3408]1299
[3412]1300 // Check the residuals
1301 // -------------------
1302 lastOutlierPrn = outlierDetection(iPhase, vv, epoData->satData);
[3408]1303
[3412]1304 // No Outlier Detected
1305 // -------------------
1306 if (lastOutlierPrn.isEmpty()) {
[3413]1307
[3422]1308 QVectorIterator<bncParam*> itPar(_params);
1309 while (itPar.hasNext()) {
1310 bncParam* par = itPar.next();
1311 par->xx += dx(par->index);
1312 }
[3413]1313
[3422]1314 if (!_usePhase || iPhase == 1) {
[3413]1315 if (_outlierGPS.size() > 0 || _outlierGlo.size() > 0) {
1316 _log += "Neglected PRNs: ";
[3415]1317 if (!_outlierGPS.isEmpty()) {
1318 _log += _outlierGPS.last() + ' ';
[3413]1319 }
1320 QStringListIterator itGlo(_outlierGlo);
1321 while (itGlo.hasNext()) {
1322 QString prn = itGlo.next();
1323 _log += prn + ' ';
1324 }
1325 }
1326 _log += '\n';
1327
[3408]1328 _log += strResCode + strResPhase;
[3413]1329
[3408]1330 return success;
[3393]1331 }
[3412]1332 }
[3393]1333
[3412]1334 // Outlier Found
1335 // -------------
1336 else {
1337 restoreState(epoData);
1338 break;
1339 }
[3406]1340
[3412]1341 } // for iPhase
[3406]1342
[3412]1343 } // while selectSatellites
[3375]1344
[3412]1345 restoreState(epoData);
[3408]1346 return failure;
[3323]1347}
1348
1349// Remeber Original State Vector and Variance-Covariance Matrix
1350////////////////////////////////////////////////////////////////////////////
[3408]1351void bncModel::rememberState(t_epoData* epoData) {
[3323]1352
1353 _QQ_sav = _QQ;
1354
1355 QVectorIterator<bncParam*> itSav(_params_sav);
1356 while (itSav.hasNext()) {
1357 bncParam* par = itSav.next();
[3322]1358 delete par;
1359 }
[3323]1360 _params_sav.clear();
1361
1362 QVectorIterator<bncParam*> it(_params);
1363 while (it.hasNext()) {
1364 bncParam* par = it.next();
1365 _params_sav.push_back(new bncParam(*par));
1366 }
[3408]1367
1368 _epoData_sav->deepCopy(epoData);
[3307]1369}
[3323]1370
1371// Restore Original State Vector and Variance-Covariance Matrix
1372////////////////////////////////////////////////////////////////////////////
[3408]1373void bncModel::restoreState(t_epoData* epoData) {
[3323]1374
1375 _QQ = _QQ_sav;
1376
1377 QVectorIterator<bncParam*> it(_params);
1378 while (it.hasNext()) {
1379 bncParam* par = it.next();
1380 delete par;
1381 }
1382 _params.clear();
1383
1384 QVectorIterator<bncParam*> itSav(_params_sav);
1385 while (itSav.hasNext()) {
1386 bncParam* par = itSav.next();
1387 _params.push_back(new bncParam(*par));
1388 }
[3408]1389
1390 epoData->deepCopy(_epoData_sav);
[3405]1391}
[3412]1392
1393//
1394////////////////////////////////////////////////////////////////////////////
1395t_irc bncModel::selectSatellites(const QString& lastOutlierPrn,
1396 QMap<QString, t_satData*>& satData) {
1397
1398 // First Call
1399 // ----------
1400 if (lastOutlierPrn.isEmpty()) {
1401 _outlierGPS.clear();
1402 _outlierGlo.clear();
1403 return success;
1404 }
1405
1406 // Second and next trials
1407 // ----------------------
1408 else {
1409
1410 if (lastOutlierPrn[0] == 'R') {
1411 _outlierGlo << lastOutlierPrn;
1412 }
1413
1414 // Remove all Glonass Outliers
1415 // ---------------------------
1416 QStringListIterator it(_outlierGlo);
1417 while (it.hasNext()) {
1418 QString prn = it.next();
1419 if (satData.contains(prn)) {
1420 delete satData.take(prn);
1421 }
1422 }
1423
1424 if (lastOutlierPrn[0] == 'R') {
1425 _outlierGPS.clear();
1426 return success;
1427 }
1428
1429 // GPS Outlier appeared for the first time - try to delete it
1430 // ----------------------------------------------------------
1431 if (_outlierGPS.indexOf(lastOutlierPrn) == -1) {
1432 _outlierGPS << lastOutlierPrn;
1433 if (satData.contains(lastOutlierPrn)) {
1434 delete satData.take(lastOutlierPrn);
1435 }
1436 return success;
1437 }
1438
1439 }
1440
1441 return failure;
1442}
Note: See TracBrowser for help on using the repository browser.