Yun Lin
Yun Lin
I had same doute on this issue. The usage on t_/dt_ changed on commit 'add loop_rate api to plugins', 6e65a69c287c05551a9f770267d7e5ceb4c9888a, but the message didn't given out any though on why...
@shaun-d-anderson @esquires Hi, any idea on this?
> What interesting me is that the SimpleCar model will work smoothly with this change. If i change the t_/dt_ back to temp_t/motion_dt, the SimpleCar model will behave strangely: >...
To avoid implicitly type conversion from double to int. I assume motion_multiplier_ is suppose to be type of int.
According to the following , motion_multiplier should be int. ``` (1) src/simcontrol/SimControl.cpp for (int i = 0; i < mp_->motion_multiplier(); i++) { (2) ./docs/source/overview/xml-tags.rst : - ``motion_multiplier`` : set to...
> Hi Just install pytz ! > > pip install pytz 😉 Works for me. thx Why we not adding a dependency to install_requires in setup.py?
> downgrade to **Pymongo** 3.12.1 This fix [another issue](https://github.com/nesdis/djongo/issues/585) for me.
I create a temperary fix for this issues: ### Methods 1. Move the static variable(message, debug_level and other stuff) in FGJSBBase into a standalone struct CommonData. 2. Add a reference...
Patch with unhandled static var, with comment 'FMPS' ```diff diff --git a/src/initialization/FGTrimAnalysis.cpp b/src/initialization/FGTrimAnalysis.cpp index 9d8d2220..2678c8af 100644 --- a/src/initialization/FGTrimAnalysis.cpp +++ b/src/initialization/FGTrimAnalysis.cpp @@ -1812,7 +1812,7 @@ double Objective::myCostFunctionFull(Vector & x) // x...
Thanks for the quick responce on this. Yes, the temporary fix is bad idea, and definitly not the right way to go. It's just a day saver for me at...