- Timestamp:
- Mar 11, 2010, 12:35:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppclient.cpp
r2366 r2367 435 435 ColumnVector dx(3); 436 436 437 ColumnVector raoHlp = cc->rao + cc->dotRao * (tt - cc->tt); 437 double dt = tt - cc->tt; 438 ColumnVector raoHlp = cc->rao + cc->dotRao * dt + cc->dotDotRao * dt * dt; 438 439 439 440 RSW_to_XYZ(xc.Rows(1,3), vv, raoHlp, dx); 440 441 441 442 443 444 xc[3] -= cc->dClk;442 xc[0] -= dx[0]; 443 xc[1] -= dx[1]; 444 xc[2] -= dx[2]; 445 xc[3] -= cc->dClk + cc->dotDClk * dt + cc->dotDotDClk * dt * dt; 445 446 446 447 // Relativistic Correction
Note:
See TracChangeset
for help on using the changeset viewer.