Sean McLeod

Results 10 comments of Sean McLeod

Example of non-standard ISA day use for turbine engine performance - https://github.com/JSBSim-Team/jsbsim/issues/1249

Yep, and it doesn't matter if there a bunch of commits to get things right, we'll do a squash merge so all the individual commits won't be visible in JSBSim's...

Given we have a lot more context up-front now I think we should then also have a brief explanation section after the output graphs to explain why the graphs look...

I've always been a bit suspicious of the outputs for this example for the +5% cg cases, but have never taken a closer look. Given we're updating the example I'll...

There should be no need to modify the JSBSim source code to implement thrust vectoring. Here is a simple example of thrust vectoring; ```python import jsbsim import math AIRCRAFT_NAME="737" #...

Depending on the level of fidelity you're looking to achieve you may also want to model a reduction in thrust based on the angle of the thrust vectoring nozzle. May...

I came across this NASA report - [ Optimal Pitch Thrust-Vector Angle and Benefits for all Flight Regimes](https://ntrs.nasa.gov/api/citations/20000034897/downloads/20000034897.pdf) Here are their results for cruise for a generic widebody airliner. ![Image](https://github.com/user-attachments/assets/8d19c212-83f4-4032-a5c3-b172485d881a)...

I was trying to point out with the 737 example that all I needed to do in order to get thrust vectoring to work, with no changes what so ever...

Just wondering whether `InitRunning()` should use this instead of 0. ``` ThrottlePos = in.ThrottlePos[EngineNumber]; ```

It rang a bell, just looked it up, based on this commit - https://github.com/JSBSim-Team/jsbsim/commit/a48cf0e6301de42cbb49e9442849caf7e44f8cb5 there is code that specifically sets the throttle position before the engine type specific `InitRunning()` is...