source: ntrip/trunk/BNC/src/PPP/pppFilter.h@ 9504

Last change on this file since 9504 was 9504, checked in by stuerze, 3 years ago

update regarding PPP

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 5.2 KB
Line 
1#ifndef FILTER_H
2#define FILTER_H
3
4#include <vector>
5#include <newmat.h>
6#include "pppInclude.h"
7#include "pppParlist.h"
8#include "bnctime.h"
9#include "t_prn.h"
10#include "pppClient.h"
11
12namespace BNC_PPP {
13
14class t_pppParlist;
15class t_pppObsPool;
16class t_pppSatObs;
17
18class t_pppFilter {
19 public:
20 t_pppFilter(t_pppObsPool* obsPool);
21 ~t_pppFilter();
22
23 t_irc processEpoch();
24
25 const ColumnVector& x() const {return _xFlt;}
26 const SymmetricMatrix& Q() const {return _QFlt;}
27
28 t_irc datumTransformation();
29 void initDatumTransformation(const std::vector<t_pppSatObs*>& allObs, bool pseudoObsIono);
30 unsigned setTrafoObs();
31
32 int numSat() const {return _numSat;}
33 double HDOP() const {return _dop.H;}
34 double HDOV() const {return _dop.V;}
35 double PDOP() const {return _dop.P;}
36 double GDOP() const {return _dop.G;}
37 double trp() const {
38 const std::vector<t_pppParam*>& par = _parlist.params();
39 for (unsigned ii = 0; ii < par.size(); ++ii) {
40 if (par[ii]->type() == t_pppParam::trp) {
41 return x()[ii];
42 }
43 }
44 return 0.0;
45 };
46 double trpStdev() const {
47 const std::vector<t_pppParam*>& par = _parlist.params();
48 for (unsigned ii = 0; ii < par.size(); ++ii) {
49 if (par[ii]->type() == t_pppParam::trp) {
50 return sqrt(Q()[ii][ii]);
51 }
52 }
53 return 0.0;
54 };
55
56 private:
57 class t_slip {
58 public:
59 t_slip() {
60 _slip = false;
61 _obsSlipCounter = -1;
62 _biasJumpCounter = -1;
63 }
64 bool _slip;
65 int _obsSlipCounter;
66 int _biasJumpCounter;
67 };
68
69 class t_dop {
70 public:
71 t_dop() {reset();}
72 void reset() {H = V = P = T = G = 0.0;}
73 double H;
74 double V;
75 double P;
76 double T;
77 double G;
78 };
79
80 class t_datumTrafo {
81 public:
82 t_datumTrafo () {initIndices();}
83 ~t_datumTrafo (){}
84
85 void initIndices() {_firstRow = 1; _lastRow = 0;}
86 void updateIndices(char sys, int maxObsSys) {
87 if (firstSystem(sys)) {
88 initIndices();
89 }
90 else {
91 _firstRow = _lastRow + 1;
92 }
93 _lastRow += maxObsSys;//LOG << sys << " updateIndices: lastRow: " << _lastRow << "\n" ;
94 };
95
96 void setFirstSystem(char firstSys) { _firstSys = firstSys;}
97 bool firstSystem(char sys) {
98 if (_firstSys == sys) {
99 return true;
100 }
101 return false;
102 }
103 void setNumObs(int maxObs) {_maxObs = maxObs;}
104 void setNumPar(int numPar) {_numPar = numPar;}
105 int numPar() {return _numPar;}
106 int numObs() {return _maxObs;}
107 void updateNumObs() {
108 _maxObs = _lastRow;
109 _AA1 = _AA1.SubMatrix(1, _lastRow, 1, _numPar);
110 _AA2 = _AA2.SubMatrix(1, _lastRow, 1, _numPar);
111 }
112
113 const Matrix& AA1() {return _AA1;}
114 const Matrix& AA2() {return _AA2;}
115 const Matrix& D21() {return _D21;}
116
117 void initAA() {
118 _AA1.ReSize(_maxObs, _numPar); _AA1 = 0.0;
119 _AA2.ReSize(_maxObs, _numPar); _AA2 = 0.0;
120 _D21.ReSize(_numPar, _numPar); _D21 = 0.0;
121 }
122 void prepareAA(const Matrix& AA, int ind) {
123 Matrix* Prep = &_AA2;
124 if (ind == 1) {
125 Prep = &_AA1;
126 }
127 Prep->SubMatrix(_firstRow, _lastRow, 1, _numPar) << AA;
128 }
129 void switchAA() {
130 _AA1 = _AA2;
131 }
132 t_irc computeTrafoMatrix() {
133 if (((_AA2.t() * _AA2)).Determinant() == 0.0) {
134 LOG << "(_AA2.t() * _AA2).inv() is singular" << std::endl;
135 return failure;
136 }
137 _D21 = ((_AA2.t() * _AA2).i()) * _AA2.t() * _AA1;
138 return success;
139 }
140
141 void printMatrix(const Matrix& X, int nRow, int nCol) {
142 for (int rr = 0; rr < nRow; rr++) {
143 for (int cc = 0; cc < nCol; cc++) {
144 LOG << std::setw(6) << std::setprecision(3) << X[rr][cc] << " ;";
145 }
146 LOG << std::endl;
147 }
148 LOG << std::endl;
149 }
150 private:
151 int _firstRow;
152 int _lastRow;
153 Matrix _AA1;
154 Matrix _AA2;
155 Matrix _D21;
156 char _firstSys;
157 int _maxObs;
158 int _numPar;
159 QMap<char, t_prn> _refSatMapPseudoObs;
160 };
161
162 t_irc processSystem(const std::vector<t_lc::type>& LCs,
163 const std::vector<t_pppSatObs*>& obsVector,
164 const t_prn& refPrn,
165 bool pseudoObsIonoAvailable,
166 bool preProcessing);
167
168 t_irc detectCycleSlips(const std::vector<t_lc::type>& LCs,
169 const std::vector<t_pppSatObs*>& obsVector,
170 const t_prn& refPrn,
171 bool preProcessing);
172
173 t_irc resetAmb(t_prn prn, const std::vector<t_pppSatObs*>& obsVector,
174 SymmetricMatrix* QSav = 0, ColumnVector* xSav = 0);
175
176 void cmpDOP(const std::vector<t_pppSatObs*>& obsVector);
177
178 void predictCovCrdPart(const SymmetricMatrix& QFltOld);
179
180 t_irc addNoiseToIono(char sys);
181
182 bool resetRefSatellitesLastEpoch(std::vector<t_pppSatObs*>& obsVector);
183
184 bncTime _epoTime;
185 t_pppParlist _parlist;
186 t_pppParlist _parlist_sav;
187 t_pppObsPool* _obsPool;
188 t_datumTrafo* _datumTrafo;
189 SymmetricMatrix _QFlt;
190 ColumnVector _xFlt;
191 ColumnVector _x0;
192 t_slip _slips[t_prn::MAXPRN+1];
193 int _numSat;
194 t_dop _dop;
195 bncTime _firstEpoTime;
196 bncTime _lastEpoTimeOK;
197 t_prn _refPrn;
198};
199
200}
201
202#endif
Note: See TracBrowser for help on using the repository browser.