Orbit
| 41 | |
| 42 | // Orbit |
| 43 | void |
| 44 | Orbit::debug(void) const |
| 45 | { |
| 46 | printf("SAT NAME: %s\n", this->c_info->name); |
| 47 | printf(" Epoch: %d + %g\n", this->c_info->ep_year, this->c_info->ep_day); |
| 48 | printf(" MM: %g rev / day\n", this->c_info->rev); |
| 49 | printf(" dMM/dt: %g rev / day²\n", this->c_info->drevdt); |
| 50 | printf(" d²MM/dt²: %g rev / day³\n", this->c_info->d2revdt2); |
| 51 | printf(" B*: %g\n", this->c_info->bstar); |
| 52 | printf(" Incl: %gº\n", SU_RAD2DEG(this->c_info->eqinc)); |
| 53 | printf(" Ecc: %g\n", this->c_info->ecc); |
| 54 | printf(" Mnan: %gº\n", SU_RAD2DEG(this->c_info->mnan)); |
| 55 | printf(" Argp: %gº\n", SU_RAD2DEG(this->c_info->argp)); |
| 56 | printf(" RAAN: %gº\n", SU_RAD2DEG(this->c_info->ascn)); |
| 57 | printf(" S. axis: %gº\n", this->c_info->smjaxs); |
| 58 | printf(" Norb: %ld\n", this->c_info->norb); |
| 59 | printf(" Satno: %d\n", this->c_info->satno); |
| 60 | } |
| 61 | |
| 62 | // Async thread |
| 63 | void |
nothing calls this directly
no outgoing calls
no test coverage detected