Bertrand Coconnier
Bertrand Coconnier
Great ! Is the `mex` compiler currently available as well for Windows and MacOS X ?
@mcafaro > On these platforms, only MATLAB and Simulink are installed (no toolboxes) and only releases R2021a and above are available. Actually regarding MacOSX, R2020a and above are supported ([I...
The header file `mclcppclass.h` seems to be missing on the MacOSX installation, whatever the MATLAB version used.
And the header file `mclcppclass.h` seems to be also missing on the Windows installation. Would it be possible to include this header file in `matlab-actions/[email protected]` for both MacOSX and Windows...
> `mclcppclass.h` is part of MATLAB Compiler. Only MATLAB and Simulink are installed on these platforms at the moment. No toolboxes. Well, since we are not using the MATLAB Compiler...
That's an interesting request but it will request quite some work I think. Please be patient 😃.
The program crashes at `src/models/FGGasCell.cpp` line 323 due a division by zero because `GasVolume` is `0.0`. https://github.com/JSBSim-Team/jsbsim/blob/33735db0fb1e4fdf47f253a4215dbe3bb63a8e92/src/models/FGGasCell.cpp#L317-L330 By setting a minimum value of `1E-8` for `Contents` the crash is fixed:...
Setting the minimum content to 10-8 is a workaround to avoid the crash. The mere fact that this formula can empty the balloon until its interior volume is zero makes...
Actually I am now certain the formula is wrong because `AirDensity` should have the same sign than `AirPressure` in the code below: https://github.com/JSBSim-Team/jsbsim/blob/33735db0fb1e4fdf47f253a4215dbe3bb63a8e92/src/models/FGGasCell.cpp#L324-L325 Indeed the computation of $\Delta P$ is...
Hi Anders, > The "standard" pressure in the gas cell is computed for the bottom of the cell (and at least as large as the air pressure). The pressure difference...