[2898] | 1 | /* -------------------------------------------------------------------------
|
---|
| 2 | * BKG NTRIP Client
|
---|
| 3 | * -------------------------------------------------------------------------
|
---|
| 4 | *
|
---|
| 5 | * Class: bncComb
|
---|
| 6 | *
|
---|
| 7 | * Purpose: Combinations of Orbit/Clock Corrections
|
---|
| 8 | *
|
---|
| 9 | * Author: L. Mervart
|
---|
| 10 | *
|
---|
| 11 | * Created: 22-Jan-2011
|
---|
| 12 | *
|
---|
| 13 | * Changes:
|
---|
| 14 | *
|
---|
| 15 | * -----------------------------------------------------------------------*/
|
---|
| 16 |
|
---|
[2933] | 17 | #include <newmatio.h>
|
---|
[2921] | 18 | #include <iomanip>
|
---|
[2898] | 19 |
|
---|
| 20 | #include "bnccomb.h"
|
---|
| 21 | #include "bncapp.h"
|
---|
[2927] | 22 | #include "cmbcaster.h"
|
---|
[2910] | 23 | #include "bncsettings.h"
|
---|
[2933] | 24 | #include "bncmodel.h"
|
---|
[2988] | 25 | #include "bncutils.h"
|
---|
[2898] | 26 |
|
---|
| 27 | using namespace std;
|
---|
| 28 |
|
---|
| 29 | // Constructor
|
---|
| 30 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2933] | 31 | cmbParam::cmbParam(cmbParam::parType typeIn, int indexIn,
|
---|
| 32 | const QString& acIn, const QString& prnIn) {
|
---|
| 33 | type = typeIn;
|
---|
| 34 | index = indexIn;
|
---|
| 35 | AC = acIn;
|
---|
| 36 | prn = prnIn;
|
---|
| 37 | xx = 0.0;
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | // Destructor
|
---|
| 41 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 42 | cmbParam::~cmbParam() {
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | // Partial
|
---|
| 46 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 47 | double cmbParam::partial(const QString& acIn, t_corr* corr) {
|
---|
| 48 |
|
---|
[2934] | 49 | if (type == AC_offset) {
|
---|
| 50 | if (AC == acIn) {
|
---|
| 51 | return 1.0;
|
---|
| 52 | }
|
---|
| 53 | }
|
---|
| 54 | else if (type == Sat_offset) {
|
---|
[2933] | 55 | if (AC == acIn && prn == corr->prn) {
|
---|
| 56 | return 1.0;
|
---|
| 57 | }
|
---|
| 58 | }
|
---|
| 59 | else if (type == clk) {
|
---|
| 60 | if (prn == corr->prn) {
|
---|
| 61 | return 1.0;
|
---|
| 62 | }
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | return 0.0;
|
---|
| 66 | }
|
---|
| 67 |
|
---|
[2990] | 68 | //
|
---|
| 69 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 70 | QString cmbParam::toString() const {
|
---|
[2933] | 71 |
|
---|
[2990] | 72 | QString outStr;
|
---|
| 73 |
|
---|
| 74 | if (type == AC_offset) {
|
---|
[2992] | 75 | outStr = "AC offset " + AC;
|
---|
[2990] | 76 | }
|
---|
| 77 | else if (type == Sat_offset) {
|
---|
[2992] | 78 | outStr = "Sat Offset " + AC + " " + prn;
|
---|
[2990] | 79 | }
|
---|
| 80 | else if (type == clk) {
|
---|
[2992] | 81 | outStr = "Clk Corr " + prn;
|
---|
[2990] | 82 | }
|
---|
[2933] | 83 |
|
---|
[2990] | 84 | return outStr;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
[2933] | 87 | // Constructor
|
---|
| 88 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2898] | 89 | bncComb::bncComb() {
|
---|
[2910] | 90 |
|
---|
| 91 | bncSettings settings;
|
---|
| 92 |
|
---|
| 93 | QStringList combineStreams = settings.value("combineStreams").toStringList();
|
---|
[2918] | 94 |
|
---|
| 95 | if (combineStreams.size() >= 2) {
|
---|
[2910] | 96 | QListIterator<QString> it(combineStreams);
|
---|
| 97 | while (it.hasNext()) {
|
---|
| 98 | QStringList hlp = it.next().split(" ");
|
---|
[2918] | 99 | cmbAC* newAC = new cmbAC();
|
---|
| 100 | newAC->mountPoint = hlp[0];
|
---|
| 101 | newAC->name = hlp[1];
|
---|
| 102 | newAC->weight = hlp[2].toDouble();
|
---|
| 103 |
|
---|
| 104 | _ACs[newAC->mountPoint] = newAC;
|
---|
[2910] | 105 | }
|
---|
| 106 | }
|
---|
[2927] | 107 |
|
---|
| 108 | _caster = new cmbCaster();
|
---|
[2990] | 109 | connect(this, SIGNAL(newMessage(QByteArray,bool)),
|
---|
| 110 | ((bncApp*)qApp), SLOT(slotMessage(const QByteArray,bool)));
|
---|
[2933] | 111 |
|
---|
| 112 | // Initialize Parameters
|
---|
| 113 | // ---------------------
|
---|
| 114 | int nextPar = 0;
|
---|
[2991] | 115 | QMapIterator<QString, cmbAC*> it(_ACs);
|
---|
| 116 | while (it.hasNext()) {
|
---|
| 117 | it.next();
|
---|
| 118 | cmbAC* AC = it.value();
|
---|
| 119 | _params.push_back(new cmbParam(cmbParam::AC_offset, ++nextPar, AC->name, ""));
|
---|
| 120 | }
|
---|
| 121 | it.toFront();
|
---|
| 122 | while (it.hasNext()) {
|
---|
| 123 | it.next();
|
---|
| 124 | cmbAC* AC = it.value();
|
---|
| 125 | for (int iGps = 1; iGps <= 32; iGps++) {
|
---|
| 126 | QString prn = QString("G%1").arg(iGps, 2, 10, QChar('0'));
|
---|
| 127 | _params.push_back(new cmbParam(cmbParam::Sat_offset, ++nextPar, AC->name, prn));
|
---|
| 128 | }
|
---|
| 129 | }
|
---|
[2933] | 130 | for (int iGps = 1; iGps <= 32; iGps++) {
|
---|
| 131 | QString prn = QString("G%1").arg(iGps, 2, 10, QChar('0'));
|
---|
| 132 | _params.push_back(new cmbParam(cmbParam::clk, ++nextPar, "", prn));
|
---|
| 133 | }
|
---|
| 134 |
|
---|
| 135 | unsigned nPar = _params.size();
|
---|
| 136 | _QQ.ReSize(nPar);
|
---|
| 137 | _QQ = 0.0;
|
---|
| 138 |
|
---|
[2934] | 139 | _sigACOff = 100.0;
|
---|
| 140 | _sigSatOff = 100.0;
|
---|
| 141 | _sigClk = 100.0;
|
---|
[2933] | 142 |
|
---|
| 143 | for (int iPar = 1; iPar <= _params.size(); iPar++) {
|
---|
| 144 | cmbParam* pp = _params[iPar-1];
|
---|
[2934] | 145 | if (pp->type == cmbParam::AC_offset) {
|
---|
| 146 | _QQ(iPar,iPar) = _sigACOff * _sigACOff;
|
---|
[2933] | 147 | }
|
---|
[2934] | 148 | else if (pp->type == cmbParam::Sat_offset) {
|
---|
| 149 | _QQ(iPar,iPar) = _sigSatOff * _sigSatOff;
|
---|
[2933] | 150 | }
|
---|
[2934] | 151 | else if (pp->type == cmbParam::clk) {
|
---|
| 152 | _QQ(iPar,iPar) = _sigClk * _sigClk;
|
---|
| 153 | }
|
---|
[2933] | 154 | }
|
---|
[2898] | 155 | }
|
---|
| 156 |
|
---|
| 157 | // Destructor
|
---|
| 158 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 159 | bncComb::~bncComb() {
|
---|
[2918] | 160 | QMapIterator<QString, cmbAC*> it(_ACs);
|
---|
| 161 | while (it.hasNext()) {
|
---|
| 162 | it.next();
|
---|
| 163 | delete it.value();
|
---|
| 164 | }
|
---|
[2927] | 165 | delete _caster;
|
---|
[2898] | 166 | }
|
---|
| 167 |
|
---|
[2928] | 168 | // Read and store one correction line
|
---|
[2898] | 169 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 170 | void bncComb::processCorrLine(const QString& staID, const QString& line) {
|
---|
[2906] | 171 | QMutexLocker locker(&_mutex);
|
---|
[2913] | 172 |
|
---|
[2918] | 173 | // Find the relevant instance of cmbAC class
|
---|
| 174 | // -----------------------------------------
|
---|
| 175 | if (_ACs.find(staID) == _ACs.end()) {
|
---|
| 176 | return;
|
---|
| 177 | }
|
---|
| 178 | cmbAC* AC = _ACs[staID];
|
---|
| 179 |
|
---|
| 180 | // Read the Correction
|
---|
| 181 | // -------------------
|
---|
[2913] | 182 | t_corr* newCorr = new t_corr();
|
---|
| 183 | if (!newCorr->readLine(line) == success) {
|
---|
| 184 | delete newCorr;
|
---|
| 185 | return;
|
---|
| 186 | }
|
---|
| 187 |
|
---|
[2924] | 188 | // Reject delayed corrections
|
---|
| 189 | // --------------------------
|
---|
| 190 | if (_processedBeforeTime.valid() && newCorr->tt < _processedBeforeTime) {
|
---|
| 191 | delete newCorr;
|
---|
| 192 | return;
|
---|
| 193 | }
|
---|
| 194 |
|
---|
[2986] | 195 | // Check the IOD
|
---|
| 196 | //--------------
|
---|
| 197 | if (_eph.find(newCorr->prn) == _eph.end()) {
|
---|
| 198 | delete newCorr;
|
---|
| 199 | return;
|
---|
| 200 | }
|
---|
| 201 | else {
|
---|
| 202 | t_eph* lastEph = _eph[newCorr->prn]->last;
|
---|
| 203 | t_eph* prevEph = _eph[newCorr->prn]->prev;
|
---|
| 204 | if (prevEph && prevEph->IOD() == newCorr->iod) {
|
---|
| 205 | switchToLastEph(lastEph, prevEph, newCorr);
|
---|
| 206 | }
|
---|
| 207 | else if (!lastEph || lastEph->IOD() != newCorr->iod) {
|
---|
| 208 | delete newCorr;
|
---|
| 209 | return;
|
---|
| 210 | }
|
---|
| 211 | }
|
---|
| 212 |
|
---|
[2924] | 213 | // Process all older Epochs (if there are any)
|
---|
| 214 | // -------------------------------------------
|
---|
| 215 | const double waitTime = 5.0; // wait 5 sec
|
---|
| 216 | _processedBeforeTime = newCorr->tt - waitTime;
|
---|
| 217 |
|
---|
[2927] | 218 | QList<cmbEpoch*> epochsToProcess;
|
---|
| 219 |
|
---|
| 220 | QMapIterator<QString, cmbAC*> itAC(_ACs);
|
---|
| 221 | while (itAC.hasNext()) {
|
---|
| 222 | itAC.next();
|
---|
| 223 | cmbAC* AC = itAC.value();
|
---|
| 224 |
|
---|
| 225 | QMutableListIterator<cmbEpoch*> itEpo(AC->epochs);
|
---|
| 226 | while (itEpo.hasNext()) {
|
---|
| 227 | cmbEpoch* epoch = itEpo.next();
|
---|
| 228 | if (epoch->time < _processedBeforeTime) {
|
---|
| 229 | epochsToProcess.append(epoch);
|
---|
| 230 | itEpo.remove();
|
---|
| 231 | }
|
---|
| 232 | }
|
---|
| 233 | }
|
---|
| 234 |
|
---|
| 235 | if (epochsToProcess.size()) {
|
---|
| 236 | processEpochs(epochsToProcess);
|
---|
| 237 | }
|
---|
| 238 |
|
---|
[2920] | 239 | // Check Modulo Time
|
---|
| 240 | // -----------------
|
---|
| 241 | const int moduloTime = 10;
|
---|
| 242 | if (int(newCorr->tt.gpssec()) % moduloTime != 0.0) {
|
---|
| 243 | delete newCorr;
|
---|
| 244 | return;
|
---|
| 245 | }
|
---|
| 246 |
|
---|
[2918] | 247 | // Find/Create the instance of cmbEpoch class
|
---|
| 248 | // ------------------------------------------
|
---|
| 249 | cmbEpoch* newEpoch = 0;
|
---|
| 250 | QListIterator<cmbEpoch*> it(AC->epochs);
|
---|
| 251 | while (it.hasNext()) {
|
---|
| 252 | cmbEpoch* hlpEpoch = it.next();
|
---|
| 253 | if (hlpEpoch->time == newCorr->tt) {
|
---|
| 254 | newEpoch = hlpEpoch;
|
---|
| 255 | break;
|
---|
| 256 | }
|
---|
| 257 | }
|
---|
| 258 | if (newEpoch == 0) {
|
---|
[2927] | 259 | newEpoch = new cmbEpoch(AC->name);
|
---|
[2918] | 260 | newEpoch->time = newCorr->tt;
|
---|
| 261 | AC->epochs.append(newEpoch);
|
---|
| 262 | }
|
---|
[2924] | 263 |
|
---|
| 264 | // Merge or add the correction
|
---|
| 265 | // ---------------------------
|
---|
[2918] | 266 | if (newEpoch->corr.find(newCorr->prn) != newEpoch->corr.end()) {
|
---|
[2919] | 267 | newEpoch->corr[newCorr->prn]->readLine(line); // merge (multiple messages)
|
---|
[2918] | 268 | }
|
---|
[2919] | 269 | else {
|
---|
| 270 | newEpoch->corr[newCorr->prn] = newCorr;
|
---|
| 271 | }
|
---|
[2898] | 272 | }
|
---|
| 273 |
|
---|
[2928] | 274 | // Send results to caster
|
---|
| 275 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 276 | void bncComb::dumpResults(const bncTime& resTime,
|
---|
| 277 | const QMap<QString, t_corr*>& resCorr) {
|
---|
| 278 |
|
---|
| 279 | _caster->open();
|
---|
| 280 |
|
---|
| 281 | unsigned year, month, day;
|
---|
| 282 | resTime.civil_date (year, month, day);
|
---|
| 283 | double GPSweeks = resTime.gpssec();
|
---|
| 284 |
|
---|
| 285 | struct ClockOrbit co;
|
---|
| 286 | memset(&co, 0, sizeof(co));
|
---|
| 287 | co.GPSEpochTime = (int)GPSweeks;
|
---|
| 288 | co.GLONASSEpochTime = (int)fmod(GPSweeks, 86400.0)
|
---|
| 289 | + 3 * 3600 - gnumleap(year, month, day);
|
---|
| 290 | co.ClockDataSupplied = 1;
|
---|
| 291 | co.OrbitDataSupplied = 1;
|
---|
| 292 | co.SatRefDatum = DATUM_ITRF;
|
---|
| 293 |
|
---|
| 294 | QMapIterator<QString, t_corr*> it(resCorr);
|
---|
| 295 | while (it.hasNext()) {
|
---|
| 296 | it.next();
|
---|
| 297 | t_corr* corr = it.value();
|
---|
| 298 |
|
---|
[2931] | 299 | struct ClockOrbit::SatData* sd = 0;
|
---|
[2928] | 300 | if (corr->prn[0] == 'G') {
|
---|
| 301 | sd = co.Sat + co.NumberOfGPSSat;
|
---|
| 302 | ++co.NumberOfGPSSat;
|
---|
| 303 | }
|
---|
| 304 | else if (corr->prn[0] == 'R') {
|
---|
| 305 | sd = co.Sat + CLOCKORBIT_NUMGPS + co.NumberOfGLONASSSat;
|
---|
| 306 | ++co.NumberOfGLONASSSat;
|
---|
| 307 | }
|
---|
| 308 |
|
---|
| 309 | if (sd != 0) {
|
---|
| 310 | sd->ID = corr->prn.mid(1).toInt();
|
---|
| 311 | sd->IOD = corr->iod;
|
---|
[2930] | 312 | sd->Clock.DeltaA0 = corr->dClk * t_CST::c;
|
---|
[2928] | 313 | sd->Orbit.DeltaRadial = corr->rao(1);
|
---|
| 314 | sd->Orbit.DeltaAlongTrack = corr->rao(2);
|
---|
| 315 | sd->Orbit.DeltaCrossTrack = corr->rao(3);
|
---|
| 316 | sd->Orbit.DotDeltaRadial = corr->dotRao(1);
|
---|
| 317 | sd->Orbit.DotDeltaAlongTrack = corr->dotRao(2);
|
---|
| 318 | sd->Orbit.DotDeltaCrossTrack = corr->dotRao(3);
|
---|
| 319 | }
|
---|
| 320 |
|
---|
| 321 | delete corr;
|
---|
| 322 | }
|
---|
| 323 |
|
---|
| 324 | if ( _caster->usedSocket() &&
|
---|
| 325 | (co.NumberOfGPSSat > 0 || co.NumberOfGLONASSSat > 0) ) {
|
---|
| 326 | char obuffer[CLOCKORBIT_BUFFERSIZE];
|
---|
| 327 | int len = MakeClockOrbit(&co, COTYPE_AUTO, 0, obuffer, sizeof(obuffer));
|
---|
| 328 | if (len > 0) {
|
---|
| 329 | _caster->write(obuffer, len);
|
---|
| 330 | }
|
---|
| 331 | }
|
---|
| 332 | }
|
---|
| 333 |
|
---|
[2986] | 334 | // Change the correction so that it refers to last received ephemeris
|
---|
| 335 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 336 | void bncComb::switchToLastEph(const t_eph* lastEph, const t_eph* prevEph,
|
---|
| 337 | t_corr* newCorr) {
|
---|
[2987] | 338 | ColumnVector oldXC(4);
|
---|
| 339 | ColumnVector oldVV(3);
|
---|
| 340 | prevEph->position(newCorr->tt.gpsw(), newCorr->tt.gpssec(),
|
---|
| 341 | oldXC.data(), oldVV.data());
|
---|
[2988] | 342 |
|
---|
[2987] | 343 | ColumnVector newXC(4);
|
---|
| 344 | ColumnVector newVV(3);
|
---|
| 345 | lastEph->position(newCorr->tt.gpsw(), newCorr->tt.gpssec(),
|
---|
| 346 | newXC.data(), newVV.data());
|
---|
[2988] | 347 |
|
---|
| 348 | ColumnVector dX = newXC.Rows(1,3) - oldXC.Rows(1,3);
|
---|
[2989] | 349 | ColumnVector dV = newVV - oldVV;
|
---|
| 350 | double dC = newXC(4) - oldXC(4);
|
---|
| 351 |
|
---|
[2988] | 352 | ColumnVector dRAO(3);
|
---|
| 353 | XYZ_to_RSW(newXC.Rows(1,3), newVV, dX, dRAO);
|
---|
[2989] | 354 |
|
---|
| 355 | ColumnVector dDotRAO(3);
|
---|
| 356 | XYZ_to_RSW(newXC.Rows(1,3), newVV, dV, dDotRAO);
|
---|
| 357 |
|
---|
| 358 | newCorr->iod = lastEph->IOD();
|
---|
| 359 | newCorr->rao += dRAO;
|
---|
| 360 | newCorr->dotRao += dDotRAO;
|
---|
| 361 | newCorr->dClk += dC;
|
---|
[2986] | 362 | }
|
---|
| 363 |
|
---|
[2928] | 364 | // Process Epochs
|
---|
| 365 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2927] | 366 | void bncComb::processEpochs(const QList<cmbEpoch*>& epochs) {
|
---|
[2918] | 367 |
|
---|
[2990] | 368 | _log.clear();
|
---|
| 369 |
|
---|
| 370 | QTextStream out(&_log, QIODevice::WriteOnly);
|
---|
| 371 |
|
---|
[2991] | 372 | out << "Combination:" << endl
|
---|
| 373 | << "------------------------------" << endl;
|
---|
[2990] | 374 |
|
---|
[2933] | 375 | // Predict Parameters Values, Add White Noise
|
---|
| 376 | // ------------------------------------------
|
---|
| 377 | for (int iPar = 1; iPar <= _params.size(); iPar++) {
|
---|
| 378 | cmbParam* pp = _params[iPar-1];
|
---|
[2934] | 379 | if (pp->type == cmbParam::AC_offset || pp->type == cmbParam::clk) {
|
---|
[2933] | 380 | pp->xx = 0.0;
|
---|
| 381 | for (int jj = 1; jj <= _params.size(); jj++) {
|
---|
| 382 | _QQ(iPar, jj) = 0.0;
|
---|
| 383 | }
|
---|
| 384 | }
|
---|
[2934] | 385 | if (pp->type == cmbParam::AC_offset) {
|
---|
| 386 | _QQ(iPar,iPar) = _sigACOff * _sigACOff;
|
---|
| 387 | }
|
---|
| 388 | else if (pp->type == cmbParam::clk) {
|
---|
| 389 | _QQ(iPar,iPar) = _sigClk * _sigClk;
|
---|
| 390 | }
|
---|
[2933] | 391 | }
|
---|
| 392 |
|
---|
[2928] | 393 | bncTime resTime = epochs.first()->time;
|
---|
| 394 | QMap<QString, t_corr*> resCorr;
|
---|
| 395 |
|
---|
[2933] | 396 | int nPar = _params.size();
|
---|
| 397 | int nObs = 0;
|
---|
| 398 |
|
---|
| 399 | ColumnVector x0(nPar);
|
---|
| 400 | for (int iPar = 1; iPar <= _params.size(); iPar++) {
|
---|
| 401 | cmbParam* pp = _params[iPar-1];
|
---|
| 402 | x0(iPar) = pp->xx;
|
---|
| 403 | }
|
---|
| 404 |
|
---|
| 405 | // Count Observations
|
---|
| 406 | // ------------------
|
---|
[2927] | 407 | QListIterator<cmbEpoch*> itEpo(epochs);
|
---|
| 408 | while (itEpo.hasNext()) {
|
---|
| 409 | cmbEpoch* epo = itEpo.next();
|
---|
| 410 | QMapIterator<QString, t_corr*> itCorr(epo->corr);
|
---|
| 411 | while (itCorr.hasNext()) {
|
---|
| 412 | itCorr.next();
|
---|
[2933] | 413 | ++nObs;
|
---|
| 414 | }
|
---|
| 415 | }
|
---|
[2928] | 416 |
|
---|
[2933] | 417 | if (nObs > 0) {
|
---|
| 418 | Matrix AA(nObs, nPar);
|
---|
| 419 | ColumnVector ll(nObs);
|
---|
| 420 | DiagonalMatrix PP(nObs); PP = 1.0;
|
---|
| 421 |
|
---|
| 422 | int iObs = 0;
|
---|
| 423 | QListIterator<cmbEpoch*> itEpo(epochs);
|
---|
| 424 | while (itEpo.hasNext()) {
|
---|
| 425 | cmbEpoch* epo = itEpo.next();
|
---|
| 426 | QMapIterator<QString, t_corr*> itCorr(epo->corr);
|
---|
| 427 |
|
---|
| 428 | while (itCorr.hasNext()) {
|
---|
| 429 | itCorr.next();
|
---|
| 430 | ++iObs;
|
---|
| 431 | t_corr* corr = itCorr.value();
|
---|
| 432 |
|
---|
| 433 | //// beg test
|
---|
| 434 | if (epo->acName == "BKG") {
|
---|
| 435 | resCorr[corr->prn] = new t_corr(*corr);
|
---|
| 436 | }
|
---|
| 437 | //// end test
|
---|
| 438 |
|
---|
| 439 | for (int iPar = 1; iPar <= _params.size(); iPar++) {
|
---|
| 440 | cmbParam* pp = _params[iPar-1];
|
---|
| 441 | AA(iObs, iPar) = pp->partial(epo->acName, corr);
|
---|
| 442 | }
|
---|
| 443 |
|
---|
| 444 | ll(iObs) = corr->dClk * t_CST::c - DotProduct(AA.Row(iObs), x0);
|
---|
[2990] | 445 |
|
---|
[2933] | 446 | delete corr;
|
---|
[2928] | 447 | }
|
---|
[2933] | 448 | }
|
---|
[2928] | 449 |
|
---|
[2933] | 450 | ColumnVector dx;
|
---|
| 451 | bncModel::kalman(AA, ll, PP, _QQ, dx);
|
---|
| 452 | ColumnVector vv = ll - AA * dx;
|
---|
| 453 |
|
---|
| 454 | for (int iPar = 1; iPar <= _params.size(); iPar++) {
|
---|
| 455 | cmbParam* pp = _params[iPar-1];
|
---|
| 456 | pp->xx += dx(iPar);
|
---|
[2935] | 457 | if (pp->type == cmbParam::clk) {
|
---|
[2936] | 458 | if (resCorr.find(pp->prn) != resCorr.end()) {
|
---|
| 459 | resCorr[pp->prn]->dClk = pp->xx / t_CST::c;
|
---|
| 460 | }
|
---|
[2935] | 461 | }
|
---|
[2990] | 462 | out.setRealNumberNotation(QTextStream::FixedNotation);
|
---|
| 463 | out.setFieldWidth(8);
|
---|
| 464 | out.setRealNumberPrecision(4);
|
---|
| 465 | out << pp->toString() << " "
|
---|
[2991] | 466 | << pp->xx << " +- " << sqrt(_QQ(pp->index,pp->index)) << endl;
|
---|
[2918] | 467 | }
|
---|
| 468 | }
|
---|
[2919] | 469 |
|
---|
[2928] | 470 | dumpResults(resTime, resCorr);
|
---|
| 471 |
|
---|
[2990] | 472 | emit newMessage(_log, false);
|
---|
[2918] | 473 | }
|
---|