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

Last change on this file since 2862 was 2862, checked in by weber, 13 years ago

Output complete values of averaged XYZ

File size: 36.7 KB
Line 
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>
42#include <cmath>
43#include <newmatio.h>
44#include <sstream>
45
46#include "bncmodel.h"
47#include "bncapp.h"
48#include "bncpppclient.h"
49#include "bancroft.h"
50#include "bncutils.h"
51#include "bncsettings.h"
52#include "bnctides.h"
53
54using namespace std;
55
56const unsigned MINOBS = 4;
57const double MINELE_GPS = 10.0 * M_PI / 180.0;
58const double MINELE_GLO = 10.0 * M_PI / 180.0;
59const double MINELE_GAL = 10.0 * M_PI / 180.0;
60const double MAXRES_CODE_GPS = 10.0;
61const double MAXRES_PHASE_GPS = 0.10;
62const double MAXRES_PHASE_GLO = 0.05;
63const double MAXRES_CODE_GAL = 10.0;
64const double MAXRES_PHASE_GAL = 0.10;
65
66// Constructor
67////////////////////////////////////////////////////////////////////////////
68bncParam::bncParam(bncParam::parType typeIn, int indexIn,
69 const QString& prnIn) {
70 type = typeIn;
71 index = indexIn;
72 prn = prnIn;
73 index_old = 0;
74 xx = 0.0;
75
76}
77
78// Destructor
79////////////////////////////////////////////////////////////////////////////
80bncParam::~bncParam() {
81}
82
83// Partial
84////////////////////////////////////////////////////////////////////////////
85double bncParam::partial(t_satData* satData, bool phase) {
86
87 // Coordinates
88 // -----------
89 if (type == CRD_X) {
90 return (xx - satData->xx(1)) / satData->rho;
91 }
92 else if (type == CRD_Y) {
93 return (xx - satData->xx(2)) / satData->rho;
94 }
95 else if (type == CRD_Z) {
96 return (xx - satData->xx(3)) / satData->rho;
97 }
98
99 // Receiver Clocks
100 // ---------------
101 else if (type == RECCLK) {
102 return 1.0;
103 }
104
105 // Troposphere
106 // -----------
107 else if (type == TROPO) {
108 return 1.0 / sin(satData->eleSat);
109 }
110
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
122 // Ambiguities
123 // -----------
124 else if (type == AMB_L3) {
125 if (phase && satData->prn == prn) {
126 return 1.0;
127 }
128 else {
129 return 0.0;
130 }
131 }
132
133 // Default return
134 // --------------
135 return 0.0;
136}
137
138// Constructor
139////////////////////////////////////////////////////////////////////////////
140bncModel::bncModel(QByteArray staID) {
141
142 _staID = staID;
143
144 bncSettings settings;
145
146 // Observation Sigmas
147 // ------------------
148 _sigP3 = 5.0;
149 if (!settings.value("pppSigmaCode").toString().isEmpty()) {
150 _sigP3 = settings.value("pppSigmaCode").toDouble();
151 }
152 _sigL3 = 0.02;
153 if (!settings.value("pppSigmaPhase").toString().isEmpty()) {
154 _sigL3 = settings.value("pppSigmaPhase").toDouble();
155 }
156
157 // Parameter Sigmas
158 // ----------------
159 _sigCrd0 = 100.0;
160 if (!settings.value("pppSigCrd0").toString().isEmpty()) {
161 _sigCrd0 = settings.value("pppSigCrd0").toDouble();
162 }
163 _sigCrdP = 100.0;
164 if (!settings.value("pppSigCrdP").toString().isEmpty()) {
165 _sigCrdP = settings.value("pppSigCrdP").toDouble();
166 }
167 _sigTrp0 = 0.1;
168 if (!settings.value("pppSigTrp0").toString().isEmpty()) {
169 _sigTrp0 = settings.value("pppSigTrp0").toDouble();
170 }
171 _sigTrpP = 1e-6;
172 if (!settings.value("pppSigTrpP").toString().isEmpty()) {
173 _sigTrpP = settings.value("pppSigTrpP").toDouble();
174 }
175 _sigClk0 = 1000.0;
176 _sigAmb0 = 1000.0;
177 _sigGalileoOffset0 = 1000.0;
178 _sigGalileoOffsetP = 0.0;
179
180 // Quick-Start Mode
181 // ----------------
182 _quickStart = 0;
183 if (settings.value("pppRefCrdX").toString() != "" &&
184 settings.value("pppRefCrdY").toString() != "" &&
185 settings.value("pppRefCrdZ").toString() != "" &&
186 !settings.value("pppQuickStart").toString().isEmpty()) {
187 _quickStart = settings.value("pppQuickStart").toDouble();
188 }
189
190 connect(this, SIGNAL(newMessage(QByteArray,bool)),
191 ((bncApp*)qApp), SLOT(slotMessage(const QByteArray,bool)));
192
193 _usePhase = false;
194 if ( Qt::CheckState(settings.value("pppUsePhase").toInt()) == Qt::Checked) {
195 _usePhase = true;
196 }
197
198 _estTropo = false;
199 if ( Qt::CheckState(settings.value("pppEstTropo").toInt()) == Qt::Checked) {
200 _estTropo = true;
201 }
202
203 _xcBanc.ReSize(4); _xcBanc = 0.0;
204 _ellBanc.ReSize(3); _ellBanc = 0.0;
205
206 int nextPar = 0;
207 _params.push_back(new bncParam(bncParam::CRD_X, ++nextPar, ""));
208 _params.push_back(new bncParam(bncParam::CRD_Y, ++nextPar, ""));
209 _params.push_back(new bncParam(bncParam::CRD_Z, ++nextPar, ""));
210 _params.push_back(new bncParam(bncParam::RECCLK, ++nextPar, ""));
211 if (_estTropo) {
212 _params.push_back(new bncParam(bncParam::TROPO, ++nextPar, ""));
213 }
214 if ( Qt::CheckState(settings.value("pppGalileo").toInt()) == Qt::Checked) {
215 _params.push_back(new bncParam(bncParam::GALILEO_OFFSET, ++nextPar, ""));
216 }
217
218 unsigned nPar = _params.size();
219
220 _QQ.ReSize(nPar);
221
222 _QQ = 0.0;
223
224 for (int iPar = 1; iPar <= _params.size(); iPar++) {
225 bncParam* pp = _params[iPar-1];
226 if (pp->isCrd()) {
227 _QQ(iPar,iPar) = _sigCrd0 * _sigCrd0;
228 }
229 else if (pp->type == bncParam::RECCLK) {
230 _QQ(iPar,iPar) = _sigClk0 * _sigClk0;
231 }
232 else if (pp->type == bncParam::TROPO) {
233 _QQ(iPar,iPar) = _sigTrp0 * _sigTrp0;
234 }
235 else if (pp->type == bncParam::GALILEO_OFFSET) {
236 _QQ(iPar,iPar) = _sigGalileoOffset0 * _sigGalileoOffset0;
237 }
238 }
239
240 // NMEA Output
241 // -----------
242 QString nmeaFileName = settings.value("nmeaFile").toString();
243 if (nmeaFileName.isEmpty()) {
244 _nmeaFile = 0;
245 _nmeaStream = 0;
246 }
247 else {
248 expandEnvVar(nmeaFileName);
249 _nmeaFile = new QFile(nmeaFileName);
250 if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
251 _nmeaFile->open(QIODevice::WriteOnly | QIODevice::Append);
252 }
253 else {
254 _nmeaFile->open(QIODevice::WriteOnly);
255 }
256 _nmeaStream = new QTextStream();
257 _nmeaStream->setDevice(_nmeaFile);
258 }
259}
260
261// Destructor
262////////////////////////////////////////////////////////////////////////////
263bncModel::~bncModel() {
264 delete _nmeaStream;
265 delete _nmeaFile;
266 for (int ii = 0; ii < _posAverage.size(); ++ii) {
267 delete _posAverage[ii];
268 }
269}
270
271// Bancroft Solution
272////////////////////////////////////////////////////////////////////////////
273t_irc bncModel::cmpBancroft(t_epoData* epoData) {
274
275 if (epoData->sizeGPS() < MINOBS) {
276 _log += "bncModel::cmpBancroft: not enough data\n";
277 return failure;
278 }
279
280 Matrix BB(epoData->sizeGPS(), 4);
281
282 QMapIterator<QString, t_satData*> it(epoData->satDataGPS);
283 int iObsBanc = 0;
284 while (it.hasNext()) {
285 ++iObsBanc;
286 it.next();
287 QString prn = it.key();
288 t_satData* satData = it.value();
289 BB(iObsBanc, 1) = satData->xx(1);
290 BB(iObsBanc, 2) = satData->xx(2);
291 BB(iObsBanc, 3) = satData->xx(3);
292 BB(iObsBanc, 4) = satData->P3 + satData->clk;
293 }
294
295 bancroft(BB, _xcBanc);
296
297 // Ellipsoidal Coordinates
298 // ------------------------
299 xyz2ell(_xcBanc.data(), _ellBanc.data());
300
301 // Compute Satellite Elevations
302 // ----------------------------
303 QMutableMapIterator<QString, t_satData*> iGPS(epoData->satDataGPS);
304 while (iGPS.hasNext()) {
305 iGPS.next();
306 t_satData* satData = iGPS.value();
307 cmpEle(satData);
308 if (satData->eleSat < MINELE_GPS) {
309 delete satData;
310 iGPS.remove();
311 }
312 }
313
314 QMutableMapIterator<QString, t_satData*> iGlo(epoData->satDataGlo);
315 while (iGlo.hasNext()) {
316 iGlo.next();
317 t_satData* satData = iGlo.value();
318 cmpEle(satData);
319 if (satData->eleSat < MINELE_GLO) {
320 delete satData;
321 iGlo.remove();
322 }
323 }
324
325 QMutableMapIterator<QString, t_satData*> iGal(epoData->satDataGal);
326 while (iGal.hasNext()) {
327 iGal.next();
328 t_satData* satData = iGal.value();
329 cmpEle(satData);
330 if (satData->eleSat < MINELE_GAL) {
331 delete satData;
332 iGal.remove();
333 }
334 }
335
336 return success;
337}
338
339// Computed Value
340////////////////////////////////////////////////////////////////////////////
341double bncModel::cmpValue(t_satData* satData, bool phase) {
342
343 ColumnVector xRec(3);
344 xRec(1) = x();
345 xRec(2) = y();
346 xRec(3) = z();
347
348 double rho0 = (satData->xx - xRec).norm_Frobenius();
349 double dPhi = t_CST::omega * rho0 / t_CST::c;
350
351 xRec(1) = x() * cos(dPhi) - y() * sin(dPhi);
352 xRec(2) = y() * cos(dPhi) + x() * sin(dPhi);
353 xRec(3) = z();
354
355 tides(_time, xRec);
356
357 satData->rho = (satData->xx - xRec).norm_Frobenius();
358
359 double tropDelay = delay_saast(satData->eleSat) +
360 trp() / sin(satData->eleSat);
361
362 double wind = 0.0;
363 if (phase) {
364 wind = windUp(satData->prn, satData->xx, xRec) * satData->lambda3;
365 }
366
367 double offset = 0.0;
368 if (satData->prn[0] == 'E') {
369 offset = Galileo_offset();
370 }
371
372 return satData->rho + clk() + offset - satData->clk + tropDelay + wind;
373}
374
375// Tropospheric Model (Saastamoinen)
376////////////////////////////////////////////////////////////////////////////
377double bncModel::delay_saast(double Ele) {
378
379 double xyz[3];
380 xyz[0] = x();
381 xyz[1] = y();
382 xyz[2] = z();
383 double ell[3];
384 xyz2ell(xyz, ell);
385 double height = ell[2];
386
387 double pp = 1013.25 * pow(1.0 - 2.26e-5 * height, 5.225);
388 double TT = 18.0 - height * 0.0065 + 273.15;
389 double hh = 50.0 * exp(-6.396e-4 * height);
390 double ee = hh / 100.0 * exp(-37.2465 + 0.213166*TT - 0.000256908*TT*TT);
391
392 double h_km = height / 1000.0;
393
394 if (h_km < 0.0) h_km = 0.0;
395 if (h_km > 5.0) h_km = 5.0;
396 int ii = int(h_km + 1);
397 double href = ii - 1;
398
399 double bCor[6];
400 bCor[0] = 1.156;
401 bCor[1] = 1.006;
402 bCor[2] = 0.874;
403 bCor[3] = 0.757;
404 bCor[4] = 0.654;
405 bCor[5] = 0.563;
406
407 double BB = bCor[ii-1] + (bCor[ii]-bCor[ii-1]) * (h_km - href);
408
409 double zen = M_PI/2.0 - Ele;
410
411 return (0.002277/cos(zen)) * (pp + ((1255.0/TT)+0.05)*ee - BB*(tan(zen)*tan(zen)));
412}
413
414// Prediction Step of the Filter
415////////////////////////////////////////////////////////////////////////////
416void bncModel::predict(t_epoData* epoData) {
417
418 bncSettings settings;
419
420 bool firstCrd = false;
421 if (x() == 0.0 && y() == 0.0 && z() == 0.0) {
422 firstCrd = true;
423 _startTime = QDateTime::currentDateTime();
424 }
425
426 // Use different white noise for Quick-Start mode
427 // ----------------------------------------------
428 double sigCrdP_used = _sigCrdP;
429 if ( _quickStart > 0.0 &&
430 _quickStart > _startTime.secsTo(QDateTime::currentDateTime()) ) {
431 sigCrdP_used = 0.0;
432 }
433
434 // Predict Parameter values, add white noise
435 // -----------------------------------------
436 for (int iPar = 1; iPar <= _params.size(); iPar++) {
437 bncParam* pp = _params[iPar-1];
438
439 // Coordinates
440 // -----------
441 if (pp->type == bncParam::CRD_X) {
442 if (firstCrd) {
443 if (settings.value("pppRefCrdX").toString() != "" &&
444 settings.value("pppRefCrdY").toString() != "" &&
445 settings.value("pppRefCrdZ").toString() != "") {
446 pp->xx = settings.value("pppRefCrdX").toDouble();
447 }
448 else {
449 pp->xx = _xcBanc(1);
450 }
451 }
452 _QQ(iPar,iPar) += sigCrdP_used * sigCrdP_used;
453 }
454 else if (pp->type == bncParam::CRD_Y) {
455 if (firstCrd) {
456 if (settings.value("pppRefCrdX").toString() != "" &&
457 settings.value("pppRefCrdY").toString() != "" &&
458 settings.value("pppRefCrdZ").toString() != "") {
459 pp->xx = settings.value("pppRefCrdY").toDouble();
460 }
461 else {
462 pp->xx = _xcBanc(2);
463 }
464 }
465 _QQ(iPar,iPar) += sigCrdP_used * sigCrdP_used;
466 }
467 else if (pp->type == bncParam::CRD_Z) {
468 if (firstCrd) {
469 if (settings.value("pppRefCrdX").toString() != "" &&
470 settings.value("pppRefCrdY").toString() != "" &&
471 settings.value("pppRefCrdZ").toString() != "") {
472 pp->xx = settings.value("pppRefCrdZ").toDouble();
473 }
474 else {
475 pp->xx = _xcBanc(3);
476 }
477 }
478 _QQ(iPar,iPar) += sigCrdP_used * sigCrdP_used;
479 }
480
481 // Receiver Clocks
482 // ---------------
483 else if (pp->type == bncParam::RECCLK) {
484 pp->xx = _xcBanc(4);
485 for (int jj = 1; jj <= _params.size(); jj++) {
486 _QQ(iPar, jj) = 0.0;
487 }
488 _QQ(iPar,iPar) = _sigClk0 * _sigClk0;
489 }
490
491 // Tropospheric Delay
492 // ------------------
493 else if (pp->type == bncParam::TROPO) {
494 _QQ(iPar,iPar) += _sigTrpP * _sigTrpP;
495 }
496
497 // Galileo Offset
498 // --------------
499 else if (pp->type == bncParam::GALILEO_OFFSET) {
500 _QQ(iPar,iPar) += _sigGalileoOffsetP * _sigGalileoOffsetP;
501 }
502 }
503
504 // Add New Ambiguities if necessary
505 // --------------------------------
506 if (_usePhase) {
507
508 // Make a copy of QQ and xx, set parameter indices
509 // -----------------------------------------------
510 SymmetricMatrix QQ_old = _QQ;
511
512 for (int iPar = 1; iPar <= _params.size(); iPar++) {
513 _params[iPar-1]->index_old = _params[iPar-1]->index;
514 _params[iPar-1]->index = 0;
515 }
516
517 // Remove Ambiguity Parameters without observations
518 // ------------------------------------------------
519 int iPar = 0;
520 QMutableVectorIterator<bncParam*> it(_params);
521 while (it.hasNext()) {
522 bncParam* par = it.next();
523 bool removed = false;
524 if (par->type == bncParam::AMB_L3) {
525 if (epoData->satDataGPS.find(par->prn) == epoData->satDataGPS.end() &&
526 epoData->satDataGlo.find(par->prn) == epoData->satDataGlo.end() &&
527 epoData->satDataGal.find(par->prn) == epoData->satDataGal.end() ) {
528 removed = true;
529 delete par;
530 it.remove();
531 }
532 }
533 if (! removed) {
534 ++iPar;
535 par->index = iPar;
536 }
537 }
538
539 // Add new ambiguity parameters
540 // ----------------------------
541 QMapIterator<QString, t_satData*> iGPS(epoData->satDataGPS);
542 while (iGPS.hasNext()) {
543 iGPS.next();
544 t_satData* satData = iGPS.value();
545 addAmb(satData);
546 }
547
548 QMapIterator<QString, t_satData*> iGlo(epoData->satDataGlo);
549 while (iGlo.hasNext()) {
550 iGlo.next();
551 t_satData* satData = iGlo.value();
552 addAmb(satData);
553 }
554
555 QMapIterator<QString, t_satData*> iGal(epoData->satDataGal);
556 while (iGal.hasNext()) {
557 iGal.next();
558 t_satData* satData = iGal.value();
559 addAmb(satData);
560 }
561
562 int nPar = _params.size();
563 _QQ.ReSize(nPar); _QQ = 0.0;
564 for (int i1 = 1; i1 <= nPar; i1++) {
565 bncParam* p1 = _params[i1-1];
566 if (p1->index_old != 0) {
567 _QQ(p1->index, p1->index) = QQ_old(p1->index_old, p1->index_old);
568 for (int i2 = 1; i2 <= nPar; i2++) {
569 bncParam* p2 = _params[i2-1];
570 if (p2->index_old != 0) {
571 _QQ(p1->index, p2->index) = QQ_old(p1->index_old, p2->index_old);
572 }
573 }
574 }
575 }
576
577 for (int ii = 1; ii <= nPar; ii++) {
578 bncParam* par = _params[ii-1];
579 if (par->index_old == 0) {
580 _QQ(par->index, par->index) = _sigAmb0 * _sigAmb0;
581 }
582 par->index_old = par->index;
583 }
584 }
585}
586
587// Update Step of the Filter (currently just a single-epoch solution)
588////////////////////////////////////////////////////////////////////////////
589t_irc bncModel::update(t_epoData* epoData) {
590
591 bncSettings settings;
592
593 _log.clear();
594
595 _time = epoData->tt;
596
597 if (settings.value("pppSPP").toString() == "PPP") {
598 _log += "Precise Point Positioning of Epoch "
599 + QByteArray(_time.timestr(1).c_str()) +
600 "\n---------------------------------------------------------------\n";
601 }
602 else {
603 _log += "Single Point Positioning of Epoch "
604 + QByteArray(_time.timestr(1).c_str()) +
605 "\n--------------------------------------------------------------\n";
606 }
607
608 SymmetricMatrix QQsav;
609 ColumnVector dx;
610 ColumnVector vv;
611
612 // Loop over all outliers
613 // ----------------------
614 do {
615
616 // Bancroft Solution
617 // -----------------
618 if (cmpBancroft(epoData) != success) {
619 emit newMessage(_log, false);
620 return failure;
621 }
622
623 // Status Prediction
624 // -----------------
625 predict(epoData);
626
627 // Create First-Design Matrix
628 // --------------------------
629 unsigned nPar = _params.size();
630 unsigned nObs = 0;
631 if (_usePhase) {
632 nObs = 2 * (epoData->sizeGPS() + epoData->sizeGal()) + epoData->sizeGlo();
633 }
634 else {
635 nObs = epoData->sizeGPS() + epoData->sizeGal(); // Glonass code not used
636 }
637
638 if (nObs < nPar) {
639 _log += "bncModel::update: nObs < nPar\n";
640 emit newMessage(_log, false);
641 return failure;
642 }
643
644 Matrix AA(nObs, nPar); // first design matrix
645 ColumnVector ll(nObs); // tems observed-computed
646 DiagonalMatrix PP(nObs); PP = 0.0;
647
648 unsigned iObs = 0;
649
650 // GPS code and (optionally) phase observations
651 // --------------------------------------------
652 QMapIterator<QString, t_satData*> itGPS(epoData->satDataGPS);
653 while (itGPS.hasNext()) {
654 itGPS.next();
655 t_satData* satData = itGPS.value();
656 addObs(iObs, satData, AA, ll, PP);
657 }
658
659 // Glonass phase observations
660 // --------------------------
661 QMapIterator<QString, t_satData*> itGlo(epoData->satDataGlo);
662 while (itGlo.hasNext()) {
663 itGlo.next();
664 t_satData* satData = itGlo.value();
665 addObs(iObs, satData, AA, ll, PP);
666 }
667
668 // Galileo code and (optionally) phase observations
669 // ------------------------------------------------
670 QMapIterator<QString, t_satData*> itGal(epoData->satDataGal);
671 while (itGal.hasNext()) {
672 itGal.next();
673 t_satData* satData = itGal.value();
674 addObs(iObs, satData, AA, ll, PP);
675 }
676
677 // Compute Filter Update
678 // ---------------------
679 QQsav = _QQ;
680
681 kalman(AA, ll, PP, _QQ, dx);
682
683 vv = ll - AA * dx;
684
685 // Print Residuals
686 // ---------------
687 if (true) {
688 ostringstream str;
689 str.setf(ios::fixed);
690
691 QMapIterator<QString, t_satData*> itGPS(epoData->satDataGPS);
692 while (itGPS.hasNext()) {
693 itGPS.next();
694 t_satData* satData = itGPS.value();
695 printRes(vv, str, satData);
696 }
697 QMapIterator<QString, t_satData*> itGlo(epoData->satDataGlo);
698 while (itGlo.hasNext()) {
699 itGlo.next();
700 t_satData* satData = itGlo.value();
701 printRes(vv, str, satData);
702 }
703 QMapIterator<QString, t_satData*> itGal(epoData->satDataGal);
704 while (itGal.hasNext()) {
705 itGal.next();
706 t_satData* satData = itGal.value();
707 printRes(vv, str, satData);
708 }
709 _log += str.str().c_str();
710 }
711
712 } while (outlierDetection(QQsav, vv, epoData->satDataGPS,
713 epoData->satDataGlo, epoData->satDataGal) != 0);
714
715 // Remember the Epoch-specific Results for the computation of means
716 // ----------------------------------------------------------------
717 pppPos* newPos = new pppPos;
718 newPos->time = epoData->tt;
719
720 // Set Solution Vector
721 // -------------------
722 ostringstream strB;
723 strB.setf(ios::fixed);
724 QVectorIterator<bncParam*> itPar(_params);
725 while (itPar.hasNext()) {
726 bncParam* par = itPar.next();
727 par->xx += dx(par->index);
728
729 if (par->type == bncParam::RECCLK) {
730 strB << "\n clk = " << setw(10) << setprecision(3) << par->xx
731 << " +- " << setw(6) << setprecision(3)
732 << sqrt(_QQ(par->index,par->index));
733 }
734 else if (par->type == bncParam::AMB_L3) {
735 strB << "\n amb " << par->prn.toAscii().data() << " = "
736 << setw(10) << setprecision(3) << par->xx
737 << " +- " << setw(6) << setprecision(3)
738 << sqrt(_QQ(par->index,par->index));
739 }
740 else if (par->type == bncParam::TROPO) {
741 double aprTrp = delay_saast(M_PI/2.0);
742 strB << "\n trp = " << par->prn.toAscii().data()
743 << setw(7) << setprecision(3) << aprTrp << " "
744 << setw(6) << setprecision(3) << showpos << par->xx << noshowpos
745 << " +- " << setw(6) << setprecision(3)
746 << sqrt(_QQ(par->index,par->index));
747 newPos->xnt[6] = aprTrp + par->xx;
748 }
749 else if (par->type == bncParam::GALILEO_OFFSET) {
750 strB << "\n offset = " << setw(10) << setprecision(3) << par->xx
751 << " +- " << setw(6) << setprecision(3)
752 << sqrt(_QQ(par->index,par->index));
753 }
754 }
755 strB << '\n';
756 _log += strB.str().c_str();
757 emit newMessage(_log, false);
758
759 // Final Message (both log file and screen)
760 // ----------------------------------------
761 ostringstream strC;
762 strC.setf(ios::fixed);
763 strC << _staID.data() << " PPP "
764 << epoData->tt.timestr(1) << " " << epoData->sizeAll() << " "
765 << setw(14) << setprecision(3) << x() << " +- "
766 << setw(6) << setprecision(3) << sqrt(_QQ(1,1)) << " "
767 << setw(14) << setprecision(3) << y() << " +- "
768 << setw(6) << setprecision(3) << sqrt(_QQ(2,2)) << " "
769 << setw(14) << setprecision(3) << z() << " +- "
770 << setw(6) << setprecision(3) << sqrt(_QQ(3,3));
771
772 // NEU Output
773 // ----------
774 double xyzRef[3];
775
776 if (settings.value("pppRefCrdX").toString() != "" &&
777 settings.value("pppRefCrdY").toString() != "" &&
778 settings.value("pppRefCrdZ").toString() != "") {
779
780 xyzRef[0] = settings.value("pppRefCrdX").toDouble();
781 xyzRef[1] = settings.value("pppRefCrdY").toDouble();
782 xyzRef[2] = settings.value("pppRefCrdZ").toDouble();
783
784 newPos->xnt[0] = x() - xyzRef[0];
785 newPos->xnt[1] = y() - xyzRef[1];
786 newPos->xnt[2] = z() - xyzRef[2];
787
788 double ellRef[3];
789 xyz2ell(xyzRef, ellRef);
790 xyz2neu(ellRef, newPos->xnt, &newPos->xnt[3]);
791
792 strC << " NEU "
793 << setw(8) << setprecision(3) << newPos->xnt[3] << " "
794 << setw(8) << setprecision(3) << newPos->xnt[4] << " "
795 << setw(8) << setprecision(3) << newPos->xnt[5] << endl;
796
797 }
798
799 emit newMessage(QByteArray(strC.str().c_str()), true);
800
801 if (settings.value("pppAverage").toString() == "") {
802 delete newPos;
803 }
804 else {
805
806 _posAverage.push_back(newPos);
807
808 // Time Span for Average Computation
809 // ---------------------------------
810 double tRangeAverage = settings.value("pppAverage").toDouble() * 60.;
811 if (tRangeAverage < 0) {
812 tRangeAverage = 0;
813 }
814 if (tRangeAverage > 86400) {
815 tRangeAverage = 86400;
816 }
817
818 // Compute the Mean
819 // ----------------
820 ColumnVector mean(7); mean = 0.0;
821
822 QMutableVectorIterator<pppPos*> it(_posAverage);
823 while (it.hasNext()) {
824 pppPos* pp = it.next();
825 if ( (epoData->tt - pp->time) >= tRangeAverage ) {
826 delete pp;
827 it.remove();
828 }
829 else {
830 for (int ii = 0; ii < 7; ++ii) {
831 mean[ii] += pp->xnt[ii];
832 }
833 }
834 }
835
836 int nn = _posAverage.size();
837
838 if (nn > 0) {
839
840 mean /= nn;
841
842 // Compute the Deviation
843 // ---------------------
844 ColumnVector std(7); std = 0.0;
845 QVectorIterator<pppPos*> it2(_posAverage);
846 while (it2.hasNext()) {
847 pppPos* pp = it2.next();
848 for (int ii = 0; ii < 7; ++ii) {
849 std[ii] += (pp->xnt[ii] - mean[ii]) * (pp->xnt[ii] - mean[ii]);
850 }
851 }
852 for (int ii = 0; ii < 7; ++ii) {
853 std[ii] = sqrt(std[ii] / nn);
854 }
855
856 ostringstream strD; strD.setf(ios::fixed);
857 strD << _staID.data() << " AVE-XYZ "
858 << epoData->tt.timestr(1) << " "
859// << setw(13) << setprecision(3) << mean[0] << " +- "
860 << setw(13) << setprecision(3) << mean[0] + xyzRef[0] << " +- "
861 << setw(6) << setprecision(3) << std[0] << " "
862// << setw(14) << setprecision(3) << mean[1] << " +- "
863 << setw(14) << setprecision(3) << mean[1] + xyzRef[1] << " +- "
864 << setw(6) << setprecision(3) << std[1] << " "
865// << setw(14) << setprecision(3) << mean[2] << " +- "
866 << setw(14) << setprecision(3) << mean[2] + xyzRef[2] << " +- "
867 << setw(6) << setprecision(3) << std[2];
868 emit newMessage(QByteArray(strD.str().c_str()), true);
869
870 ostringstream strE; strE.setf(ios::fixed);
871 strE << _staID.data() << " AVE-NEU "
872 << epoData->tt.timestr(1) << " "
873 << setw(13) << setprecision(3) << mean[3] << " +- "
874 << setw(6) << setprecision(3) << std[3] << " "
875 << setw(14) << setprecision(3) << mean[4] << " +- "
876 << setw(6) << setprecision(3) << std[4] << " "
877 << setw(14) << setprecision(3) << mean[5] << " +- "
878 << setw(6) << setprecision(3) << std[5];
879
880 emit newMessage(QByteArray(strE.str().c_str()), true);
881
882 if ( Qt::CheckState(settings.value("pppEstTropo").toInt()) == Qt::Checked) {
883 ostringstream strF; strF.setf(ios::fixed);
884 strF << _staID.data() << " AVE-TRP "
885 << epoData->tt.timestr(1) << " "
886 << setw(13) << setprecision(3) << mean[6] << " +- "
887 << setw(6) << setprecision(3) << std[6] << endl;
888 emit newMessage(QByteArray(strF.str().c_str()), true);
889 }
890 }
891 }
892
893 // NMEA Output
894 // -----------
895 double xyz[3];
896 xyz[0] = x();
897 xyz[1] = y();
898 xyz[2] = z();
899 double ell[3];
900 xyz2ell(xyz, ell);
901 double phiDeg = ell[0] * 180 / M_PI;
902 double lamDeg = ell[1] * 180 / M_PI;
903
904 char phiCh = 'N';
905 if (phiDeg < 0) {
906 phiDeg = -phiDeg;
907 phiCh = 'S';
908 }
909 char lamCh = 'E';
910 if (lamDeg < 0) {
911 lamDeg = -lamDeg;
912 lamCh = 'W';
913 }
914
915 string datestr = epoData->tt.datestr(0); // yyyymmdd
916 ostringstream strRMC;
917 strRMC.setf(ios::fixed);
918 strRMC << "GPRMC,"
919 << epoData->tt.timestr(0,0) << ",A,"
920 << setw(2) << setfill('0') << int(phiDeg)
921 << setw(6) << setprecision(3) << setfill('0')
922 << fmod(60*phiDeg,60) << ',' << phiCh << ','
923 << setw(3) << setfill('0') << int(lamDeg)
924 << setw(6) << setprecision(3) << setfill('0')
925 << fmod(60*lamDeg,60) << ',' << lamCh << ",,,"
926 << datestr[6] << datestr[7] << datestr[4] << datestr[5]
927 << datestr[2] << datestr[3] << ",,";
928
929 writeNMEAstr(QString(strRMC.str().c_str()));
930
931 double dop = 2.0; // TODO
932
933 ostringstream strGGA;
934 strGGA.setf(ios::fixed);
935 strGGA << "GPGGA,"
936 << epoData->tt.timestr(0,0) << ','
937 << setw(2) << setfill('0') << int(phiDeg)
938 << setw(10) << setprecision(7) << setfill('0')
939 << fmod(60*phiDeg,60) << ',' << phiCh << ','
940 << setw(3) << setfill('0') << int(lamDeg)
941 << setw(10) << setprecision(7) << setfill('0')
942 << fmod(60*lamDeg,60) << ',' << lamCh
943 << ",1," << setw(2) << setfill('0') << epoData->sizeAll() << ','
944 << setw(3) << setprecision(1) << dop << ','
945 << setprecision(3) << ell[2] << ",M,0.0,M,,";
946
947 writeNMEAstr(QString(strGGA.str().c_str()));
948
949 return success;
950}
951
952// Outlier Detection
953////////////////////////////////////////////////////////////////////////////
954int bncModel::outlierDetection(const SymmetricMatrix& QQsav,
955 const ColumnVector& vv,
956 QMap<QString, t_satData*>& satDataGPS,
957 QMap<QString, t_satData*>& satDataGlo,
958 QMap<QString, t_satData*>& satDataGal) {
959
960 QString prnCode;
961 QString prnPhase;
962 double maxResCode = 0.0;
963 double maxResPhase = 0.0;
964
965 QString prnRemoved;
966 double maxRes;
967
968 int irc = 0;
969
970 // Check Glonass
971 // -------------
972 if (irc == 0) {
973 findMaxRes(vv,satDataGlo, prnCode, maxResCode, prnPhase, maxResPhase);
974 if (maxResPhase > MAXRES_PHASE_GLO) {
975 satDataGlo.remove(prnPhase);
976 prnRemoved = prnPhase;
977 maxRes = maxResPhase;
978 irc = 1;
979 }
980 }
981
982 // Check Galileo
983 // -------------
984 if (irc == 0) {
985 findMaxRes(vv,satDataGal, prnCode, maxResCode, prnPhase, maxResPhase);
986 if (maxResPhase > MAXRES_PHASE_GAL) {
987 satDataGal.remove(prnPhase);
988 prnRemoved = prnPhase;
989 maxRes = maxResPhase;
990 irc = 1;
991 }
992 else if (maxResCode > MAXRES_CODE_GAL) {
993 satDataGal.remove(prnCode);
994 prnRemoved = prnCode;
995 maxRes = maxResCode;
996 irc = 1;
997 }
998 }
999
1000 // Check GPS
1001 // ---------
1002 if (irc == 0) {
1003 findMaxRes(vv,satDataGPS, prnCode, maxResCode, prnPhase, maxResPhase);
1004 if (maxResPhase > MAXRES_PHASE_GPS) {
1005 satDataGPS.remove(prnPhase);
1006 prnRemoved = prnPhase;
1007 maxRes = maxResPhase;
1008 irc = 1;
1009 }
1010 else if (maxResCode > MAXRES_CODE_GPS) {
1011 satDataGPS.remove(prnCode);
1012 prnRemoved = prnCode;
1013 maxRes = maxResCode;
1014 irc = 1;
1015 }
1016 }
1017
1018 if (irc != 0) {
1019 _log += "Outlier " + prnRemoved.toAscii() + " "
1020 + QByteArray::number(maxRes, 'f', 3) + "\n";
1021 _QQ = QQsav;
1022 }
1023
1024 return irc;
1025}
1026
1027//
1028////////////////////////////////////////////////////////////////////////////
1029void bncModel::writeNMEAstr(const QString& nmStr) {
1030
1031 unsigned char XOR = 0;
1032 for (int ii = 0; ii < nmStr.length(); ii++) {
1033 XOR ^= (unsigned char) nmStr[ii].toAscii();
1034 }
1035
1036 QString outStr = '$' + nmStr
1037 + QString("*%1\n").arg(int(XOR), 0, 16).toUpper();
1038
1039 if (_nmeaStream) {
1040 *_nmeaStream << outStr;
1041 _nmeaStream->flush();
1042 }
1043
1044 emit newNMEAstr(outStr.toAscii());
1045}
1046
1047////
1048//////////////////////////////////////////////////////////////////////////////
1049void bncModel::kalman(const Matrix& AA, const ColumnVector& ll,
1050 const DiagonalMatrix& PP,
1051 SymmetricMatrix& QQ, ColumnVector& dx) {
1052
1053 int nObs = AA.Nrows();
1054 int nPar = AA.Ncols();
1055
1056 UpperTriangularMatrix SS = Cholesky(QQ).t();
1057
1058 Matrix SA = SS*AA.t();
1059 Matrix SRF(nObs+nPar, nObs+nPar); SRF = 0;
1060 for (int ii = 1; ii <= nObs; ++ii) {
1061 SRF(ii,ii) = 1.0 / sqrt(PP(ii,ii));
1062 }
1063
1064 SRF.SubMatrix (nObs+1, nObs+nPar, 1, nObs) = SA;
1065 SRF.SymSubMatrix(nObs+1, nObs+nPar) = SS;
1066
1067 UpperTriangularMatrix UU;
1068 QRZ(SRF, UU);
1069
1070 SS = UU.SymSubMatrix(nObs+1, nObs+nPar);
1071 UpperTriangularMatrix SH_rt = UU.SymSubMatrix(1, nObs);
1072 Matrix YY = UU.SubMatrix(1, nObs, nObs+1, nObs+nPar);
1073
1074 UpperTriangularMatrix SHi = SH_rt.i();
1075
1076 Matrix KT = SHi * YY;
1077 SymmetricMatrix Hi; Hi << SHi * SHi.t();
1078
1079 dx = KT.t() * ll;
1080 QQ << (SS.t() * SS);
1081}
1082
1083// Phase Wind-Up Correction
1084///////////////////////////////////////////////////////////////////////////
1085double bncModel::windUp(const QString& prn, const ColumnVector& rSat,
1086 const ColumnVector& rRec) {
1087
1088 double Mjd = _time.mjd() + _time.daysec() / 86400.0;
1089
1090 // First time - initialize to zero
1091 // -------------------------------
1092 if (!_windUpTime.contains(prn)) {
1093 _windUpTime[prn] = Mjd;
1094 _windUpSum[prn] = 0.0;
1095 }
1096
1097 // Compute the correction for new time
1098 // -----------------------------------
1099 else if (_windUpTime[prn] != Mjd) {
1100 _windUpTime[prn] = Mjd;
1101
1102 // Unit Vector GPS Satellite --> Receiver
1103 // --------------------------------------
1104 ColumnVector rho = rRec - rSat;
1105 rho /= rho.norm_Frobenius();
1106
1107 // GPS Satellite unit Vectors sz, sy, sx
1108 // -------------------------------------
1109 ColumnVector sz = -rSat / rSat.norm_Frobenius();
1110
1111 ColumnVector xSun = Sun(Mjd);
1112 xSun /= xSun.norm_Frobenius();
1113
1114 ColumnVector sy = crossproduct(sz, xSun);
1115 ColumnVector sx = crossproduct(sy, sz);
1116
1117 // Effective Dipole of the GPS Satellite Antenna
1118 // ---------------------------------------------
1119 ColumnVector dipSat = sx - rho * DotProduct(rho,sx)
1120 - crossproduct(rho, sy);
1121
1122 // Receiver unit Vectors rx, ry
1123 // ----------------------------
1124 ColumnVector rx(3);
1125 ColumnVector ry(3);
1126
1127 double recEll[3]; xyz2ell(rRec.data(), recEll) ;
1128 double neu[3];
1129
1130 neu[0] = 1.0;
1131 neu[1] = 0.0;
1132 neu[2] = 0.0;
1133 neu2xyz(recEll, neu, rx.data());
1134
1135 neu[0] = 0.0;
1136 neu[1] = -1.0;
1137 neu[2] = 0.0;
1138 neu2xyz(recEll, neu, ry.data());
1139
1140 // Effective Dipole of the Receiver Antenna
1141 // ----------------------------------------
1142 ColumnVector dipRec = rx - rho * DotProduct(rho,rx)
1143 + crossproduct(rho, ry);
1144
1145 // Resulting Effect
1146 // ----------------
1147 double alpha = DotProduct(dipSat,dipRec) /
1148 (dipSat.norm_Frobenius() * dipRec.norm_Frobenius());
1149
1150 if (alpha > 1.0) alpha = 1.0;
1151 if (alpha < -1.0) alpha = -1.0;
1152
1153 double dphi = acos(alpha) / 2.0 / M_PI; // in cycles
1154
1155 if ( DotProduct(rho, crossproduct(dipSat, dipRec)) < 0.0 ) {
1156 dphi = -dphi;
1157 }
1158
1159 _windUpSum[prn] = floor(_windUpSum[prn] - dphi + 0.5) + dphi;
1160 }
1161
1162 return _windUpSum[prn];
1163}
1164
1165//
1166///////////////////////////////////////////////////////////////////////////
1167void bncModel::cmpEle(t_satData* satData) {
1168 ColumnVector rr = satData->xx - _xcBanc.Rows(1,3);
1169 double rho = rr.norm_Frobenius();
1170
1171 double neu[3];
1172 xyz2neu(_ellBanc.data(), rr.data(), neu);
1173
1174 satData->eleSat = acos( sqrt(neu[0]*neu[0] + neu[1]*neu[1]) / rho );
1175 if (neu[2] < 0) {
1176 satData->eleSat *= -1.0;
1177 }
1178 satData->azSat = atan2(neu[1], neu[0]);
1179}
1180
1181//
1182///////////////////////////////////////////////////////////////////////////
1183void bncModel::addAmb(t_satData* satData) {
1184 bool found = false;
1185 for (int iPar = 1; iPar <= _params.size(); iPar++) {
1186 if (_params[iPar-1]->type == bncParam::AMB_L3 &&
1187 _params[iPar-1]->prn == satData->prn) {
1188 found = true;
1189 break;
1190 }
1191 }
1192 if (!found) {
1193 bncParam* par = new bncParam(bncParam::AMB_L3,
1194 _params.size()+1, satData->prn);
1195 _params.push_back(par);
1196 par->xx = satData->L3 - cmpValue(satData, true);
1197 }
1198}
1199
1200//
1201///////////////////////////////////////////////////////////////////////////
1202void bncModel::addObs(unsigned& iObs, t_satData* satData,
1203 Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP) {
1204
1205 // Code Observations
1206 // -----------------
1207 if (satData->system() != 'R') {
1208 ++iObs;
1209 ll(iObs) = satData->P3 - cmpValue(satData, false);
1210 PP(iObs,iObs) = 1.0 / (_sigP3 * _sigP3);
1211 for (int iPar = 1; iPar <= _params.size(); iPar++) {
1212 AA(iObs, iPar) = _params[iPar-1]->partial(satData, false);
1213 }
1214 satData->indexCode = iObs;
1215 }
1216
1217 // Phase Observations
1218 // ------------------
1219 if (_usePhase) {
1220 ++iObs;
1221 ll(iObs) = satData->L3 - cmpValue(satData, true);
1222 PP(iObs,iObs) = 1.0 / (_sigL3 * _sigL3);
1223 for (int iPar = 1; iPar <= _params.size(); iPar++) {
1224 if (_params[iPar-1]->type == bncParam::AMB_L3 &&
1225 _params[iPar-1]->prn == satData->prn) {
1226 ll(iObs) -= _params[iPar-1]->xx;
1227 }
1228 AA(iObs, iPar) = _params[iPar-1]->partial(satData, true);
1229 }
1230 satData->indexPhase = iObs;
1231 }
1232}
1233
1234//
1235///////////////////////////////////////////////////////////////////////////
1236void bncModel::printRes(const ColumnVector& vv,
1237 ostringstream& str, t_satData* satData) {
1238 if (satData->indexPhase) {
1239 str << _time.timestr(1)
1240 << " RES " << satData->prn.toAscii().data() << " L3 "
1241 << setw(9) << setprecision(4) << vv(satData->indexPhase);
1242 if (satData->indexCode) {
1243 str << " P3 " << setw(9) << setprecision(4) << vv(satData->indexCode);
1244 }
1245 str << endl;
1246 }
1247}
1248
1249//
1250///////////////////////////////////////////////////////////////////////////
1251void bncModel::findMaxRes(const ColumnVector& vv,
1252 const QMap<QString, t_satData*>& satData,
1253 QString& prnCode, double& maxResCode,
1254 QString& prnPhase, double& maxResPhase) {
1255 maxResCode = 0.0;
1256 maxResPhase = 0.0;
1257
1258 QMapIterator<QString, t_satData*> it(satData);
1259 while (it.hasNext()) {
1260 it.next();
1261 t_satData* satData = it.value();
1262 if (satData->indexCode) {
1263 if (fabs(vv(satData->indexCode)) > maxResCode) {
1264 maxResCode = fabs(vv(satData->indexCode));
1265 prnCode = satData->prn;
1266 }
1267 }
1268 if (satData->indexPhase) {
1269 if (fabs(vv(satData->indexPhase)) > maxResPhase) {
1270 maxResPhase = fabs(vv(satData->indexPhase));
1271 prnPhase = satData->prn;
1272 }
1273 }
1274 }
1275}
1276
Note: See TracBrowser for help on using the repository browser.