User Guide | Developer Docs | FAQ | Contact | Legal notice
JSBSim is a multi-platform, general purpose object-oriented Flight Dynamics Model (FDM) written in C++. The FDM is essentially the physics & math model that defines the movement of an aircraft, rocket, etc., under the forces and moments applied to it using the various control mechanisms and from the forces of nature. JSBSim can be run in a standalone batch mode flight simulator (no graphical displays) for testing and study, or integrated with FlightGear or other flight simulator.
Features include:
- Nonlinear 6 DoF (Degree of Freedom)
- Fully configurable flight control system, aerodynamics, propulsion, landing gear arrangement, etc. through XML-based text file format.
- Accurate Earth model including:
- Rotational effects on the equations of motion (Coriolis and centrifugal acceleration modeled).
- Oblate spherical shape and geodetic coordinates according to the WGS84 geodetic system.
- Atmosphere modeled according to the International Standard Atmosphere (1976).
- Configurable data output formats to screen, file, socket, or any combination of those.
- A Python module which provides the exact same features than the C++ library
In 2015, the NASA performed some verification check cases on 7 flight dynamics software including JSBSim (the other 6 being NASA in-house software). The results showed that the 7 simulation tools "were good enough to indicate agreement between a majority of simulation tools for all cases published. Most of the remaining differences are explained and could be reduced with further effort."
JSBSim is used in a range of projects among which:
- Flight simulation: FlightGear, OutTerra, Skybolt Engine
- SITL (Software In The Loop) Drone Autopilot testing : ArduPilot, PX4 Autopilot, Paparazzi
- Machine Learning Aircraft control: gym-jsbsim
- DARPA Virtual Air Combat Competition where one of the AI went undefeated in five rounds of mock air combat against an Air Force fighter (see the video on YouTube).
JSBSim is also used in academic and industry research (more than 600 citations referenced by Google Scholar as of November 2020).
A Windows installer JSBSim-1.1.6-setup.exe
is available in the release section. It installs the 2 executables along with aircraft data and some example scripts:
JSBSim.exe
which runs FDM simulations.aeromatic.exe
which builds aircraft definitions from Question/Answer interface
Both executables are console line command.
Debian packages for Ubuntu Linux "Xenial" 16.04 LTS, "Bionic" 18.04 LTS and "Focal" 20.04 LTS for 64 bits platform are also available in the JSBSim project release section. There are 3 packages:
JSBSim_1.1.6-320.amd64.deb
which installs the executablesJSBSim
andaeromatic
JSBSim-devel_1.1.6-320.amd64.deb
which installs the development resources (headers and libraries)python3-JSBSim_1.1.6-320.amd64.deb
which installs the Python 3.6 module of JSBSim
JSBSim provides binary packages for its Python module on Windows, Mac OSX and Linux platforms for several Python versions (3.6, 3.7, 3.8 and 3.9). These can be installed using either pip
or conda
.
Binary packages a.k.a. known as wheel packages are available from the Python Package Index (PyPI), a repository of software for the Python programming language.
Installing jsbsim
using pip
can be achieved with:
> pip install jsbsim
Check the pip documentation for more details.
Note that wheel packages for Linux meet the ManyLinux packages requirements and as such are compatible with all the major Linux distributions.
Conda is an open-source package management system and environment management system that runs on Windows, macOS, and Linux. The JSBSim conda package is available from conda-forge
, a community led collection of recipes, build infrastructure and distributions for the conda package manager.
Installing jsbsim
from the conda-forge
channel can be achieved by adding conda-forge
to your channels with:
> conda config --add channels conda-forge
Once the conda-forge
channel has been enabled, jsbsim
can be installed with:
> conda install jsbsim
It is possible to list all of the versions of jsbsim
available on your platform with:
> conda search jsbsim --channel conda-forge
At the moment, JSBSim do not provide binaries for platforms other than Windows 64 bits and Ubuntu 64 bits. If you fall in this category you should follow the instructions in the developer docs to build JSBSim on your platform.
You can get aircraft data and example scripts by downloading either the zip package or the tar.gz package.
Once you have downloaded (or built) the binaries and unzipped the aircraft data. Go to the root of the data package and make sure the executable is accessible from there.
You can then run an FDM simulation with the following command:
> JSBSim.exe --script=scripts/c1721.xml
More options are available if you run:
> JSBSim.exe --help
A first place to look at for JSBSim documentation resources is http://jsbsim.sourceforge.net/documentation.html. This link points to the official JSBSim Reference Manual, a PDF which is the best source of information for users and developers.
However, due to the nature of the development of the project (JSBSim sources are updated often, sometimes even daily), several new features that are available in the software are not yet documented in the reference manual. Starting from March 2018 a new effort is underway to deliver an up-to-date documentation web site. You can browse the new JSBSim Online Reference Manual by going to: https://jsbsim-team.github.io/jsbsim-reference-manual. The online manual is under construction and as a first milestone it will incorporate all the non-outdated material contained in the original PDF Reference Manual. The online manual web site is based on the GitHub Pages technology and its sources are available here. Eventually, the PDF Reference Manual will be superseded by the online manual, which is designed to be updated collaboratively as well as in efficient and timely fashion.
JSBSim can be interfaced or integrated to your application via a C++ API. The following code illustrates how JSBSim could be called by a small program, with execution being controlled by a script:
#include <FGFDMExec.h>
int main(int argc, char **argv)
{
JSBSim::FGFDMExec FDMExec;
FDMExec.LoadScript(SGPath(argv[1]));
FDMExec.RunIC();
bool result = true;
while (result) result = FDMExec.Run();
}
The API is described in more details in the C++ API documentation
JSBSim can also be used as a Python module. The following code provides a simple example of how to interface with JSBSim using the Python programming language:
import jsbsim
fdm = jsbsim.FGFDMExec('.', None)
fdm.load_script('scripts/c1721.xml')
fdm.run_ic()
while fdm.run():
pass
A more elaborate example is JSBSim.py, the Python version of JSBSim.exe
.
Q: I would like to visualize the aircraft model in FlightGear while running the FDM with the JSBSim executable. How do I proceed ?
A: We are assuming that FlightGear is installed on your platform. If it is not, please follow the instructions on the FlightGear website.
You will need to launch separately FlightGear and JSBSim from a console. In the example below, you will execute the script ShortS23_2.xml so you might need to install the Short Empire aircraft. This is optional however and any aircraft can be used for visualization even if it does not correspond to the FDM.
First, run FlightGear and tell it that the flight dynamics will be provided thru a socket by an external program. It is assumed that the executable of FlightGear is fgfs
(see the FlightGear docs for details on the parameters of --native-fdm
argument).
> fgfs --fdm=null --native-fdm=socket,in,60,,5550,udp --aircraft=Short_Empire --airport=SP01
Once FlightGear is launched, you will see the aircraft standing still.
Now we will run JSBSim and tell it that it must send the flight dynamics data to a socket with the FlightGear protocol
> JSBSim scripts/Short_S23_2.xml data_output/flightgear.xml --realtime --nice
The parameters describing the protocol are detailed in data_output/flightgear.xml
. The flag --realtime
requests JSBSim to execute in real time. Otherwise JSBSim will run as fast as it can and the flight will look like it is played fast forward. The flag --nice
tells JSBSim to use as few CPU power as possible. This is an optional flag but since we requested --realtime
, JSBSim will spend a considerable amount of time idling, waiting for the next time step.
At the this stage, the two executables are interacting and FlightGear produces the visualization of the flight dynamics simulated by JSBSim.
For more information on JSBSim, you can contact the development team on the mailing list jsbsim-devel@lists.sourceforge.net or submit tickets on https://github.com/JSBSim-Team/jsbsim/issues
We are also on Facebook: https://www.facebook.com/jsbsim/
JSBSim is open source and is licensed under the LGPL 2.1 license. The license is included in the source code in the file COPYING
No proprietary code is included. All code included within JSBSim has been developed on a volunteer basis using publicly available information, and is often directly linked to a particular textbook, for educational reference. In some cases, code of a generic nature has been donated back to the project.
Likewise, the aircraft models included in this project and distribution do not include any proprietary, sensitive, or classified data. All data is derived from textbooks (such as Stevens and Lewis "Aircraft Control and Simulation" and Sutton's "Rocket Propulsion Elements"), freely available technical reports (see: http://ntrs.nasa.gov and http://www.aiaa.org), or other public data (such as the FAA web site). Aircraft models included in the JSBSim distribution and with names corresponding to existing commercial or military aircraft are approximations crafted using publicly available information, and are for educational or entertainment uses only.