Skip to content

Commit

Permalink
Removing aerodynamic modelling (it requires a major rewriting and
Browse files Browse the repository at this point in the history
testing to be compliant to PASEOS).
  • Loading branch information
Gabriele Meoni committed Feb 13, 2024
1 parent 624966d commit 1d7df19
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions paseos/attitude/attitude_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,8 @@ def compute_disturbance_torque(self, position, velocity, euler_angles, current_t
raise NotImplementedError("Models for torque disturbances are implemented only for Earth as a central body.")

if TorqueDisturbanceModel.Aerodynamic in self._actor.attitude_disturbances:
T += compute_aerodynamic_torque(
position,
velocity,
self._actor.geometric_model.mesh,
self.actor_attitude_in_rad,
current_temperature_K,
)
raise ValueError("Aerodynamic torque disturbance model is not implemented.")

if TorqueDisturbanceModel.Gravitational in self._actor.attitude_disturbances:
# Extract nadir vectors in different reference systems
nadir_vector_in_rpy = eci_to_rpy(self._nadir_vector(), position, velocity)
Expand Down

0 comments on commit 1d7df19

Please sign in to comment.