- Timestamp:
- Mar 24, 2026, 4:18:36 PM (11 days ago)
- File:
-
- 1 edited
-
trunk/BNC/src/combination/bnccomb.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r10820 r10822 30 30 31 31 const double sig0_offAC = 1000.0; 32 const double sig0_offACSat = 100.0; 32 const double sigP_offAC = 1000.0; 33 34 const double sig0_offACSat = 1000.0; 33 35 const double sigP_offACSat = 0.01; 36 34 37 const double sig0_clkSat = 100.0; 38 const double sigP_clkSat = 10.0; //*) White noise may be set to something between a few centimeters and tens of meters. 39 // A large value results in a combination that is equivalent to a single-epoch combination algorithm. 35 40 36 41 const double sigObs = 0.05; … … 51 56 if (type == offACgnss) { 52 57 epoSpec = true; 53 sig0 = sig0_offAC; 54 sigP = sig0; 58 sig0 = sig0_offAC; // 1000.0 59 sigP = sig0; // 1000.0 55 60 } 56 61 else if (type == offACSat) { 57 62 epoSpec = false; 58 sig0 = sig0_offACSat; 59 sigP = sigP_offACSat; 60 } 63 sig0 = sig0_offACSat; // 100.0 64 sigP = sigP_offACSat; // 0.01 65 } 66 // combined clock 61 67 else if (type == clkSat) { 62 68 epoSpec = true; 63 sig0 = sig0_clkSat; 64 sigP = sig0; 65 } 69 sig0 = sig0_clkSat; // 100.0 70 sigP = sigP_clkSat; // 10.0 71 72 } 73 66 74 } 67 75 … … 1224 1232 " Clk 1 %15.4f" 1225 1233 " Vel 3 %15.4f %15.4f %15.4f" 1226 " CoM 3 %15.4f %15.4f %15.4f" 1227 " YawAngle %1.4f", 1234 " CoM 3 %15.4f %15.4f %15.4f", 1235 // " YawAngle %1.4f", 1228 1236 apc(1), apc(2), apc(3), 1229 1237 xc(4) * t_CST::c, 1230 1238 vv(1), vv(2), vv(3), 1231 com(1), com(2), com(3), 1232 corr->_satYawAngle); 1239 com(1), com(2), com(3) 1240 // corr->_satYawAngle 1241 ); 1233 1242 outLines += hlp; 1234 1243 hlp.clear();
Note:
See TracChangeset
for help on using the changeset viewer.
