def gravity_pitch(self):
_t_ap_dv = self.target_apoapsis_speed_dv()
_speed = self.vessel_sur_speed()
@jit(nopython=True)
def pitch_calcs():
_pitch = (85 - (1.45 * np.sqrt(_speed))) + (_t_ap_dv / 2)
return _pitch
return pitch_calcs()
评论列表
文章目录