| 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 |
|
|---|
| 45 | #include "bncmodel.h"
|
|---|
| 46 | #include "bncpppclient.h"
|
|---|
| 47 | #include "bancroft.h"
|
|---|
| 48 | #include "bncutils.h"
|
|---|
| 49 |
|
|---|
| 50 | using namespace std;
|
|---|
| 51 |
|
|---|
| 52 | // Constructor
|
|---|
| 53 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 54 | bncParam::bncParam(bncParam::parType typeIn) {
|
|---|
| 55 | type = typeIn;
|
|---|
| 56 | }
|
|---|
| 57 |
|
|---|
| 58 | // Destructor
|
|---|
| 59 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 60 | bncParam::~bncParam() {
|
|---|
| 61 | }
|
|---|
| 62 |
|
|---|
| 63 | // Partial
|
|---|
| 64 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 65 | double bncParam::partialP3(t_satData* satData) {
|
|---|
| 66 | if (type == CRD_X) {
|
|---|
| 67 | return (x0 - satData->xx(1)) / satData->rho;
|
|---|
| 68 | }
|
|---|
| 69 | else if (type == CRD_Y) {
|
|---|
| 70 | return (x0 - satData->xx(2)) / satData->rho;
|
|---|
| 71 | }
|
|---|
| 72 | else if (type == CRD_Z) {
|
|---|
| 73 | return (x0 - satData->xx(3)) / satData->rho;
|
|---|
| 74 | }
|
|---|
| 75 | else if (type == RECCLK) {
|
|---|
| 76 | return 1.0;
|
|---|
| 77 | }
|
|---|
| 78 | return 0.0;
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 | // Constructor
|
|---|
| 82 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 83 | bncModel::bncModel() {
|
|---|
| 84 | _xcBanc.ReSize(4); _xcBanc = 0.0;
|
|---|
| 85 | _params.push_back(new bncParam(bncParam::CRD_X));
|
|---|
| 86 | _params.push_back(new bncParam(bncParam::CRD_Y));
|
|---|
| 87 | _params.push_back(new bncParam(bncParam::CRD_Z));
|
|---|
| 88 | _params.push_back(new bncParam(bncParam::RECCLK));
|
|---|
| 89 | _ellBanc.ReSize(3);
|
|---|
| 90 | }
|
|---|
| 91 |
|
|---|
| 92 | // Destructor
|
|---|
| 93 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 94 | bncModel::~bncModel() {
|
|---|
| 95 | }
|
|---|
| 96 |
|
|---|
| 97 | // Bancroft Solution
|
|---|
| 98 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 99 | t_irc bncModel::cmpBancroft(t_epoData* epoData) {
|
|---|
| 100 |
|
|---|
| 101 | const unsigned MINOBS = 4;
|
|---|
| 102 |
|
|---|
| 103 | if (epoData->size() < MINOBS) {
|
|---|
| 104 | return failure;
|
|---|
| 105 | }
|
|---|
| 106 |
|
|---|
| 107 | Matrix BB(epoData->size(), 4);
|
|---|
| 108 |
|
|---|
| 109 | QMapIterator<QString, t_satData*> it(epoData->satData);
|
|---|
| 110 | int iObs = 0;
|
|---|
| 111 | while (it.hasNext()) {
|
|---|
| 112 | ++iObs;
|
|---|
| 113 | it.next();
|
|---|
| 114 | QString prn = it.key();
|
|---|
| 115 | t_satData* satData = it.value();
|
|---|
| 116 | BB(iObs, 1) = satData->xx(1);
|
|---|
| 117 | BB(iObs, 2) = satData->xx(2);
|
|---|
| 118 | BB(iObs, 3) = satData->xx(3);
|
|---|
| 119 | BB(iObs, 4) = satData->P3 + satData->clk;
|
|---|
| 120 | }
|
|---|
| 121 |
|
|---|
| 122 | bancroft(BB, _xcBanc);
|
|---|
| 123 |
|
|---|
| 124 | // Set Parameter A Priori Values
|
|---|
| 125 | // -----------------------------
|
|---|
| 126 | QListIterator<bncParam*> itPar(_params);
|
|---|
| 127 | while (itPar.hasNext()) {
|
|---|
| 128 | bncParam* par = itPar.next();
|
|---|
| 129 | if (par->type == bncParam::CRD_X) {
|
|---|
| 130 | par->x0 = _xcBanc(1);
|
|---|
| 131 | }
|
|---|
| 132 | else if (par->type == bncParam::CRD_Y) {
|
|---|
| 133 | par->x0 = _xcBanc(2);
|
|---|
| 134 | }
|
|---|
| 135 | else if (par->type == bncParam::CRD_Z) {
|
|---|
| 136 | par->x0 = _xcBanc(3);
|
|---|
| 137 | }
|
|---|
| 138 | else if (par->type == bncParam::RECCLK) {
|
|---|
| 139 | par->x0 = _xcBanc(4);
|
|---|
| 140 | }
|
|---|
| 141 | }
|
|---|
| 142 |
|
|---|
| 143 | // Ellipsoidal Coordinates
|
|---|
| 144 | // ------------------------
|
|---|
| 145 | xyz2ell(_xcBanc.data(), _ellBanc.data());
|
|---|
| 146 |
|
|---|
| 147 | // Compute Satellite Elevations
|
|---|
| 148 | // ----------------------------
|
|---|
| 149 | QMutableMapIterator<QString, t_satData*> it2(epoData->satData);
|
|---|
| 150 | while (it2.hasNext()) {
|
|---|
| 151 | it2.next();
|
|---|
| 152 | QString prn = it2.key();
|
|---|
| 153 | t_satData* satData = it2.value();
|
|---|
| 154 |
|
|---|
| 155 | ColumnVector dx = satData->xx - _xcBanc.Rows(1,3);
|
|---|
| 156 | double rho = dx.norm_Frobenius();
|
|---|
| 157 |
|
|---|
| 158 | double neu[3];
|
|---|
| 159 | xyz2neu(_ellBanc.data(), dx.data(), neu);
|
|---|
| 160 |
|
|---|
| 161 | satData->eleSat = acos( sqrt(neu[0]*neu[0] + neu[1]*neu[1]) / rho );
|
|---|
| 162 | if (neu[2] < 0) {
|
|---|
| 163 | satData->eleSat *= -1.0;
|
|---|
| 164 | }
|
|---|
| 165 | satData->azSat = atan2(neu[1], neu[0]);
|
|---|
| 166 | }
|
|---|
| 167 |
|
|---|
| 168 | return success;
|
|---|
| 169 | }
|
|---|
| 170 |
|
|---|
| 171 | // Computed Value
|
|---|
| 172 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 173 | double bncModel::cmpValueP3(t_satData* satData) {
|
|---|
| 174 |
|
|---|
| 175 | double rho0 = (satData->xx - _xcBanc.Rows(1,3)).norm_Frobenius();
|
|---|
| 176 |
|
|---|
| 177 | ColumnVector xRec(3);
|
|---|
| 178 | double dPhi = t_CST::omega * rho0 / t_CST::c;
|
|---|
| 179 | xRec(1) = _xcBanc(1) * cos(dPhi) - _xcBanc(2) * sin(dPhi);
|
|---|
| 180 | xRec(2) = _xcBanc(2) * cos(dPhi) + _xcBanc(1) * sin(dPhi);
|
|---|
| 181 | xRec(3) = _xcBanc(3);
|
|---|
| 182 |
|
|---|
| 183 | satData->rho = (satData->xx - xRec).norm_Frobenius();
|
|---|
| 184 |
|
|---|
| 185 | double tropDelay = delay_saast(satData->eleSat);
|
|---|
| 186 |
|
|---|
| 187 | return satData->rho + _xcBanc(4) - satData->clk + tropDelay;
|
|---|
| 188 | }
|
|---|
| 189 |
|
|---|
| 190 | // Tropospheric Model (Saastamoinen)
|
|---|
| 191 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 192 | double bncModel::delay_saast(double Ele) {
|
|---|
| 193 |
|
|---|
| 194 | double height = _ellBanc(3);
|
|---|
| 195 |
|
|---|
| 196 | double pp = 1013.25 * pow(1.0 - 2.26e-5 * height, 5.225);
|
|---|
| 197 | double TT = 18.0 - height * 0.0065 + 273.15;
|
|---|
| 198 | double hh = 50.0 * exp(-6.396e-4 * height);
|
|---|
| 199 | double ee = hh / 100.0 * exp(-37.2465 + 0.213166*TT - 0.000256908*TT*TT);
|
|---|
| 200 |
|
|---|
| 201 | double h_km = height / 1000.0;
|
|---|
| 202 |
|
|---|
| 203 | if (h_km < 0.0) h_km = 0.0;
|
|---|
| 204 | if (h_km > 5.0) h_km = 5.0;
|
|---|
| 205 | int ii = int(h_km + 1);
|
|---|
| 206 | double href = ii - 1;
|
|---|
| 207 |
|
|---|
| 208 | double bCor[6];
|
|---|
| 209 | bCor[0] = 1.156;
|
|---|
| 210 | bCor[1] = 1.006;
|
|---|
| 211 | bCor[2] = 0.874;
|
|---|
| 212 | bCor[3] = 0.757;
|
|---|
| 213 | bCor[4] = 0.654;
|
|---|
| 214 | bCor[5] = 0.563;
|
|---|
| 215 |
|
|---|
| 216 | double BB = bCor[ii-1] + (bCor[ii]-bCor[ii-1]) * (h_km - href);
|
|---|
| 217 |
|
|---|
| 218 | double zen = M_PI/2.0 - Ele;
|
|---|
| 219 |
|
|---|
| 220 | return (0.002277/cos(zen)) * (pp + ((1255.0/TT)+0.05)*ee - BB*(tan(zen)*tan(zen)));
|
|---|
| 221 | }
|
|---|
| 222 |
|
|---|
| 223 | // Update Step of the Filter (currently just a single-epoch solution)
|
|---|
| 224 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 225 | t_irc bncModel::update(t_epoData* epoData) {
|
|---|
| 226 |
|
|---|
| 227 | unsigned nPar = _params.size();
|
|---|
| 228 | unsigned nObs = epoData->size();
|
|---|
| 229 |
|
|---|
| 230 | // Create First-Design Matrix
|
|---|
| 231 | // --------------------------
|
|---|
| 232 | _AA.ReSize(nObs, nPar); // variance-covariance matrix
|
|---|
| 233 | _ll.ReSize(nObs); // tems observed-computed
|
|---|
| 234 |
|
|---|
| 235 | unsigned iObs = 0;
|
|---|
| 236 | QMapIterator<QString, t_satData*> itObs(epoData->satData);
|
|---|
| 237 | while (itObs.hasNext()) {
|
|---|
| 238 | ++iObs;
|
|---|
| 239 | itObs.next();
|
|---|
| 240 | QString prn = itObs.key();
|
|---|
| 241 | t_satData* satData = itObs.value();
|
|---|
| 242 | _ll(iObs) = satData->P3 - cmpValueP3(satData);
|
|---|
| 243 |
|
|---|
| 244 | unsigned iPar = 0;
|
|---|
| 245 | QListIterator<bncParam*> itPar(_params);
|
|---|
| 246 | while (itPar.hasNext()) {
|
|---|
| 247 | ++iPar;
|
|---|
| 248 | bncParam* par = itPar.next();
|
|---|
| 249 | _AA(iObs, iPar) = par->partialP3(satData);
|
|---|
| 250 | }
|
|---|
| 251 | }
|
|---|
| 252 |
|
|---|
| 253 | // Compute Least-Squares Solution
|
|---|
| 254 | // ------------------------------
|
|---|
| 255 | _QQ.ReSize(nPar);
|
|---|
| 256 | _QQ << _AA.t() * _AA;
|
|---|
| 257 | _QQ = _QQ.i();
|
|---|
| 258 | _dx = _QQ * _AA.t() * _ll;
|
|---|
| 259 |
|
|---|
| 260 | // Compute Residuals
|
|---|
| 261 | // -----------------
|
|---|
| 262 | ColumnVector vv = _AA * _dx - _ll;
|
|---|
| 263 |
|
|---|
| 264 | // Set Solution Vector
|
|---|
| 265 | // -------------------
|
|---|
| 266 | _xx.ReSize(nPar);
|
|---|
| 267 | unsigned iPar = 0;
|
|---|
| 268 | QListIterator<bncParam*> itPar(_params);
|
|---|
| 269 | while (itPar.hasNext()) {
|
|---|
| 270 | ++iPar;
|
|---|
| 271 | bncParam* par = itPar.next();
|
|---|
| 272 | _xx(iPar) = par->x0 + _dx(iPar);
|
|---|
| 273 | }
|
|---|
| 274 |
|
|---|
| 275 | return success;
|
|---|
| 276 | }
|
|---|