@Emiliano Thank you for your response.
I have noticed that adding an AttitudeProvider override in initializing Maneuver
like you suggested (Case 1) v/s not adding any attitude override (Case 2) is not changing the results in my case.
Case 1:
offset_frame = LofOffset(frame, LOFType.QSW)
customManeuver = Maneuver(offset_frame, maneuverTrigger, customPropulsionModel)
propagator_num.addForceModel(customManeuver)
Case 2:
customManeuver = Maneuver(None, maneuverTrigger, customPropulsionModel)
propagator_num.addForceModel(customManeuver)
Probably this is because of how i have set up my customPropulsionModel? This is just a speculation as I am not clear on how the prescribed maneuver attitude is supposed to work.
In my understanding, prescribing None as attitude provider should apply the maneuver in the default attitude of the spacecraft, whereas prescribing an attitude provider should change the maneuver attitude to align with the prescribed one (QSW == RTN in this case).
As shown below, in my customPropulsionModel, I transform my RTN thrust vector to the spacecraft frame (irrespective of the attitude provide prescribed for the maneuvers). Is this why prescribing a maneuver attitude is not working in my case?
def getThrustVector(self, s):
'''
Get thrust vector in spacecraft frame
'''
thrust_vec_RTN = self.thrustDirectionProvider.computeThrust(s)
Rotate_RTN_to_ECI = LOFType.QSW.rotationFromInertial(s.getPVCoordinates()).revert()
thrust_vector_ECI = Rotate_RTN_to_ECI.applyTo(Vector3D(thrust_vec_RTN[0], thrust_vec_RTN[1], thrust_vec_RTN[2]))
rotation_ECI_to_scFrame = s.getAttitude().getRotation()
thrust_vector_scFrame = rotation_ECI_to_scFrame.applyTo(thrust_vector_ECI)
return thrust_vector_scFrame
def getAcceleration(self, s, maneuverAttitude, params):
'''
get the acceleration vector in spacecraft frame
'''
thrust_vector = self.getThrustVector(s)
acceleration = thrust_vector.scalarMultiply(1.0 / s.getMass())
return acceleration
def getDirection(self, s):
'''
Get thrust direction in spacecraft frame
'''
thrust_vector_scFrame = self.getThrustVector(s)
thrust_mag = thrust_vector_scFrame.getNorm()
direction_scFrame = thrust_vector_scFrame.scalarMultiply(1.0/thrust_mag)
return direction_scFrame
My ultimate goal is to define a fixed attitude to my spacecraft during the maneuvers.