forked from JSBSim-Team/jsbsim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python based example calculating trim envelope (JSBSim-Team#801)
* Python based example calculating trim envelope * Remove unnecessary fdm.run() after fdm.run_ic()
- Loading branch information
1 parent
a8c91ec
commit c05ec2e
Showing
1 changed file
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# TrimEnvelope.py | ||
# | ||
# Calculate the set of trim points for an aircraft over a range of airspeeds | ||
# and range of flight path angles (gamma). The required thrust and AoA is | ||
# indicated via a colormap for each trim point. | ||
# | ||
# Copyright (c) 2023 Sean McLeod | ||
# | ||
# This program is free software; you can redistribute it and/or modify it under | ||
# the terms of the GNU General Public License as published by the Free Software | ||
# Foundation; either version 3 of the License, or (at your option) any later | ||
# version. | ||
# | ||
# This program is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
# details. | ||
# | ||
# You should have received a copy of the GNU General Public License along with | ||
# this program; if not, see <http://www.gnu.org/licenses/> | ||
# | ||
|
||
import jsbsim | ||
import matplotlib.pyplot as plt | ||
import math | ||
|
||
# Path to JSBSim files, location of the folders "aircraft", "engines" and "systems" | ||
PATH_TO_JSBSIM_FILES="../../" | ||
|
||
fdm = jsbsim.FGFDMExec(PATH_TO_JSBSIM_FILES) | ||
|
||
# Load the 737 aircraft model | ||
fdm.load_model('737') | ||
|
||
# Set engines running | ||
fdm['propulsion/engine[0]/set-running'] = 1 | ||
fdm['propulsion/engine[1]/set-running'] = 1 | ||
|
||
# Set alpha range for trim solutions | ||
fdm['aero/alpha-max-rad'] = math.radians(12) | ||
fdm['aero/alpha-min-rad'] = math.radians(-4.0) | ||
|
||
# Trim results | ||
results = [] | ||
|
||
# Iterate over a range of speeds and for each speed a range of flight path angles (gamma) | ||
# and check whether a trim point is possible | ||
for speed in range(120, 460, 10): | ||
for gamma in range(-10, 10, 1): | ||
fdm['ic/h-sl-ft'] = 15000 | ||
fdm['ic/vc-kts'] = speed | ||
fdm['ic/gamma-deg'] = gamma | ||
|
||
# Initialize the aircraft with initial conditions | ||
fdm.run_ic() | ||
|
||
# Trim | ||
try: | ||
fdm['simulation/do_simple_trim'] = 1 | ||
results.append((fdm['velocities/vc-kts'], fdm['aero/alpha-deg'], gamma, fdm['fcs/throttle-cmd-norm[0]'])) | ||
except RuntimeError as e: | ||
# The trim cannot succeed. Just make sure that the raised exception | ||
# is due to the trim failure otherwise rethrow. | ||
if e.args[0] != 'Trim Failed': | ||
raise | ||
|
||
|
||
# Extract the trim results | ||
speed, alpha, gamma, throttle = zip(*results) | ||
|
||
# Plot the trim envelope results, with required thrust and AoA indicated via a colormap | ||
fig, (axThrust, axAoA) = plt.subplots(1, 2) | ||
|
||
# Graph data for each of the sub plots | ||
graph_data = [ ('Thrust', axThrust, throttle), ('AoA', axAoA, alpha) ] | ||
|
||
for title, ax, data in graph_data: | ||
# Scatter plot with airspeed on x-axis, gamma on y-axis and either thrust setting or | ||
# AoA indicated via color map | ||
scatter = ax.scatter(speed, gamma, c=data, cmap='viridis') | ||
cb = fig.colorbar(scatter, ax=ax) | ||
cb.set_label(title) | ||
|
||
# Graph axis range for speed and gamma | ||
ax.set_xlim(100, 460) | ||
ax.set_ylim(-30, 30) | ||
|
||
ax.grid(True, linestyle='-.') | ||
|
||
ax.set_xlabel('IAS (kt)') | ||
ax.set_ylabel('Flight Path Angle $\gamma$ (deg)') | ||
ax.set_title(f'Trim Envelope - {title}') | ||
|
||
plt.show() | ||
|
||
|
||
|