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