Use of aerodynamics

Attention

This page is only compatible for Tudatpy version >= 0.7. See thrust and rotation refactor for more information on this page for older versions.

When including aerodynamics in the orbit propagation, it may often be desirable to have the aerodynamic properties of the vehicle depend on the vehicle’s state, and its interaction with the environment. This is the case for ascent and entry for instance. Also, control surface deflections may be needed to modify the vehicle’s behaviour. Both options are included in Tudat, and the interfaces are described below.

An aerodynamic acceleration combines various environment properties for its computation:

  • Atmosphere model for the central body, used to compute the density \(\rho\). Depending on the selected atmosphere models, this density may be dependent on altitude only, or on time and the vehicle’s position (e.g. altitude, latitude, longitude)

  • Aerodynamic coefficients of the body. The aerodynamic coefficients may be defined in the aerodynamic frame (\([C_{D}, C_{S}, C_{L}]\)) or the body-fixed frame (\([C_{X}, C_{Y}, C_{Z}]\)). These coefficients may be a function of any number of independent variables (see AerodynamicCoefficientsIndependentVariables for available dependencies).

  • The orientation of the vehicle w.r.t. the inertial frame. This is required to rotate the acceleration to the inertial frame from the aerodynamic or body-fixed frame (see Aerodynamic coefficients). See below for details on typical approaches in the context of aerodynamics

  • The current state of the vehicle (taken from the state vector during propagation) is needed to compute the altitude (typical input for density), the latitude, longitude, vertical and trajectory frames, which are used to transform the acceleration to an inertial frame, and may also have an influence on the aerodynamic coefficients (for instance, if they are Mach number dependent).

  • The current deflection of control surfaces (if the vehicle is equipped with control surfaces). The definition of, and interaction with, control surfaces is discussed in more detail below

Below, some issues specific to the setup of a simulation using aerodynamics are presented. A number of considerations related to concurrent thrust and aerodynamic forces are provided here

Vehicle orientation

A rotation model for the vehicle undergoing aerodynamic acceleration is required, which is used to provide the rotation from aerodynamic to inertial frame \(\mathbf{R}^{(I/A)}\) or from body-fixed to inertial frame \(\mathbf{R}^{(I/B)}\) (depending on the frame in which the aerodynamic coefficients are calculated). Depending on the models that are used, one or more of the angles \(\alpha\), \(\beta\) and \(\sigma\) (angle of attack, sideslip angle, bank angle) are required.

For the determination of the matrix \(\mathbf{R}^{(I/B)}\), we can distinguish three different approaches in the context of aerodynamics:

  • The vehicle has a rotation model defined using the aerodynamic_angle_based() (or, related, the zero_pitch_moment_aerodynamic_angle_based()) model. By using one of these functions, the rotation between inertial and body-fixed frame is defined by a user-provided input of the angles \(\alpha\), \(\beta\) and \(\sigma\), in combination with quantities computed from the vehicle’s current translational state w.r.t. its central body (see aerodynamic_angle_based() for details).

  • The vehicle has any other rotation model defined, in this case the angles \(\alpha\), \(\beta\) and \(\sigma\) are computed from the \(\mathbf{R}^{(I/B)}\) matrix produced by this rotation model.

  • The rotational dynamics of the vehicle is propagated, and the orientation of the vehicle is taken from the current rotational state. The angles \(\alpha\), \(\beta\) and \(\sigma\) are then computed from the current rotational state of the vehicle.

The first option, in which the user provides models for the angles \(\alpha\), \(\beta\) and \(\sigma\) directly, is discussed in more detail here, as this is a model typically applied for applications driven by aerodynamics (such as re-entry). Particularly, we will discuss a number of ways in which to define aerodynamic angles directly through the aerodynamic_angle_based().

Constant angles

In simple simulations, a user may want to define a constant \(\alpha\), \(\beta\) and/or \(\sigma\). The code block below gives an example on how to do this (\(\alpha=40^{\circ}\), \(\beta=0^{\circ}\) and \(\sigma=20^{\circ}\)):

# Define constant angles
angle_of_attack = np.deg2rad( 40.0 )
bank_angle = np.deg2rad( 20.0 )
# Define angle function (required for input to rotation settings)
        angle_function = lambda time : np.ndarray([angle_of_attack, 0.0, bank_angle])
# Create settings for rotation model
rotation_model_settings = environment_setup.rotation_model.aerodynamic_angle_based(
    central_body="Earth",
    target_frame = "VehicleFixed",
    angle_funcion = angle_function )

This defines settings for the rotation model, which can then be assigned the body settings, see Overriding existing settings objects, or used directly to update the rotation model, see Addition of properties to a body. The above will not result in a constant \(\mathbf{R}^{(I/B)}\) rotation matrix, since the vehicle’s translational state will still change over time, leading to a change in the orientation of the trajectory frame (see aerodynamic_angle_based()). What the above will do is define the vehicle to have a constant orientation w.r.t. the oncoming flow. Note that if the above function is used without angle_funcion input, the three angles will be set to 0.

Alternatively, the angle of attack may be defined based on pitch trim, so that the value of \(\alpha\) is found for which \(C_{m}=0\). This requires \(\alpha\)-dependent aerodynamic moment coefficients to be defined). When doing so, the sideslip and bank angle are left free and are 0 by default. However, a user may specify these angles as follows”

# Define constant angles
bank_angle = np.deg2rad( 20.0 )
# Define angle function (required for input to rotation settings)
        angle_function = lambda time : np.ndarray([0.0, bank_angle])
# Create settings for rotation model
rotation_model_settings = environment_setup.rotation_model.zero_pitch_moment_aerodynamic_angle_based(
    central_body="Earth",
    target_frame = "VehicleFixed",

Note that the angle_function now returns only two angles, instead of the three angles in the previous example, as the \(\alpha\) is no longer user-specified.

Time- and environment-dependent angles

A more complicated algorithm to compute the aerodynamic angles may be defined using custom models. Below, a simple example (depending only on time) is provided for illustraive purposes. A discussion of the definition of more complex models (depending on state, environment, time, etc.) is describe on the dedicated Custom models page.

class LinearTimeAerodynamicGuidance:

    def __init__(self, angle_of_attack_rate, sideslip_angle_rate, bank_angle_rate, reference_time ):
	
	# Define members
        self.angle_of_attack_rate = angle_of_attack_rate
	self.sideslip_angle_rate = sideslip_angle_rate
	self.bank_angle_rate = bank_angle_rate
	self.reference_time = reference_time

    def get_current_aerodynamic_angles(self, current_time: float):

	if( current_time == current_time ):

            # Update the class to the current time
            angle_of_attack = self.angle_of_attack_rate * ( current_time - self.reference_time )
            sideslip_angle = self.sideslip_angle_rate * ( current_time - self.reference_time )
            bank_angle = self.bank_angle_rate * ( current_time - self.reference_time )


# Define angle function (required for input to rotation settings)   
guidance_class = LinearTimeAerodynamicGuidance( 
	angle_of_attack_rate = np.deg2rad( 0.01 ), 
	sideslip_angle_rate = 0.0,
	bank_angle_rate = np.deg2rad( 0.2 ),
	reference_time = 10.0 * tudatpy.constants.JULIAN_YEAR )

# Create settings for rotation model from guidance class
rotation_model_settings = environment_setup.rotation_model.aerodynamic_angle_based(
        central_body="Earth",
        target_frame = "VehicleFixed",
        angle_funcion = guidance_class.get_current_aerodynamic_angles ) 

The above example will apply the model \(\alpha=\dot{\alpha}(t-t_{0})\) (and similar for \(\sigma\)), so that the angles vary linearly over time.

Control surfaces

For a high-fidelity vehicle entry/ascent trajectory propagation, it will often be necessary to include control surface deflections in the numerical propagation. How to define and use the aerodynamic influence of control surfaces is discussed here. The control surfaces of a vehicle influence is behaviour by incrementing the aerodynamic forces and moments. In Tudat, each control surface is defined by:

  • A dedicated aerodynamic coefficient interface

  • A name (which is used to reference the specific control surface)

  • A current deflection (initiated at 0)

A control surface is created as follows:

If a body has \(N\) control surfaces assigned to it, the coefficient increments will be added to the total coefficients during each time step, without any required user interaction. User interaction with the control surfaces is typically limited to definig an algorithm defining theit deflections as a function of time.

TODO: write documentation for implementation in Tudat