Significance: Static Margin
The distance between the Neutral Point (X_np) and the actual Center of Gravity (X_cg), usually expressed as a percentage of the Mean Aerodynamic Chord (MAC), is called the Static Margin (SM):
SM = (X_np - X_cg) / MAC
Positive SM (X_cg forward of X_np): Statically stable. Larger SM means greater stability but potentially heavier control forces.
Zero SM (X_cg at X_np): Neutrally stable.
Negative SM (X_cg aft of X_np): Statically unstable. Requires continuous active control (by pilot or flight control system) to maintain equilibrium.
Knowing the NP location is critical for:
Safety: Defining safe forward and aft CoG limits for loading the aircraft. Flying with the CoG aft of the NP can lead to loss of control.
Handling Qualities: The static margin significantly influences how the aircraft feels to the pilot (control forces, responsiveness).
Control System Design: For unstable or marginally stable aircraft, the flight control system must be designed considering the negative or low static margin.
Flight Test Proposal using OpenFlight Simulator
This test aims to estimate the Neutral Point location by finding the CoG position where the pitching moment coefficient derivative with respect to angle of attack (Cm_alpha) becomes zero.
1. Setup:
constants:
# Mass properties
aircraft_mass: 600 # Mass of the aircraft in kilograms
radius_of_giration_pitch: 3.5 # Radius of gyration about the pitch axis in meters
radius_of_giration_yaw: 4 # Radius of gyration about the yaw axis in meters
radius_of_giration_roll: 4 # Radius of gyration about the roll axis in meters
principal_axis_pitch_up_DEG: -2 # Pitch angle of the principal axis in degrees (nose-down attitude)
x_CoG: 1.5 # Longitudinal position of the center of gravity (CoG) in meters from the aircraft reference point (typically the nose)
# Geometric references
x_wing_aerodynamic_center: 2.0 # Position of the wing's aerodynamic center along the longitudinal axis in meters from the aircraft reference point (typically the nose)
reference_area: 18.2 # Reference wing area in square meters
reference_span: 10.5 # Reference wing span in meters
AR: 13.8 # Aspect ratio of the wing
Oswald_factor: 0.8 # Oswald efficiency factor (indicates aerodynamic efficiency)
wing_mean_aerodynamic_chord: 1.35 # Mean aerodynamic chord of the wing in meters
Sideslip_drag_K_factor: 2 # Factor to multiply CS^2 to calculate sideslip-induced drag coefficient
...
# AIRCRAFT PARAMETERS
aircraft_name: "SF25B.yaml" # Name of the aircraft aerodynamic data file in \🏭_HANGAR\📜_Aero_data
# FLIGHT TEST PARAMETERS
initial_velocity: 32 # Initial velocity in m/s
initial_altitude: 500 # Initial altitude in m
# FLIGHT RECORDING PARAMETERS
start_flight_data_recording_at: 3 # start recording in seconds after start of flight
finish_flight_data_recording_at: 30 # finish recording in seconds
# VISUALIZATION PARAMETERS
scenery_complexity: 0 # 0 = four checkered quadrants (good for old GPUs), 1 = low, 2 = medium or 3 = high detail
show_force_vectors: "true"
show_velocity_vectors: "true"
show_trajectory: "true" # "true" or "false", to show the trajectory of the aircraft
2. Procedure (Iterative):
3. Data Analysis (OPTIONAL IN THIS FLIGHT TEST AS IT WILL TAKE A LONG TIME):
For each recorded CSV file (each CoG position):
Load Data: Load the CSV into the Flight Data Visualization tool or other analysis software.
(OPTIONAL, use Excel or similar) Plot Cm vs. Alpha: Plot the pitching moment coefficient due to stiffness (CM_pitch_from_aero_stiffness) against the Angle of Attack (alpha_DEG). Focus on the data points immediately following the disturbance, around the trim AoA.
(OPTIONAL) Estimate Cm_alpha: Determine the slope of the linear portion of this Cm vs. Alpha plot. This slope represents Cm_alpha for that specific CoG position. A negative slope indicates stability, zero slope indicates neutral stability, and a positive slope indicates instability.
(OPTIONAL) Plot Cm_alpha vs. CoG: Create a final plot showing the estimated Cm_alpha values (Y-axis) against the corresponding x_CoG positions (X-axis, expressed in meters or as %MAC).
Identify Neutral Point: Draw a best-fit line through the plotted points. The point where this line crosses the Cm_alpha = 0 axis is the estimated Neutral Point (X_np) location.
Online Resources:
This experimental approach provides a practical method to estimate a critical stability parameter of the simulated aircraft. Remember to perform the CoG changes incrementally and observe the aircraft's behavior carefully at each step.