Appearance
KBE3D / KBSatellite / getMeanMotion
函数: getMeanMotion()
getMeanMotion(
semimajor:number):MeanMotionResult
通过半长轴计算平均运动,即一天转多少圈
参数
semimajor
number
轨道半长轴(单位:米)
返回
包含弧度/秒和圈/天两种单位的平均运动结果
备注
基于开普勒第三定律,从轨道半长轴推导平均运动。 平均运动描述了卫星绕地球飞行的角速度。
示例
typescript
const result = getMeanMotion(7.0e6);
console.log(result.revPerDay); // 14.12 圈/天