-
Notifications
You must be signed in to change notification settings - Fork 737
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Advanced Ballistics - Drag model revamp & Spin drift correction #5566
Merged
Merged
Changes from 10 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
6763b07
Advanced Ballistics - Drag model revamp
ulteq 7b2cc57
The Mach number is now calculated in relation to the air temperature.
ulteq e8f5532
Improved speed of sound calculation accuracy.
ulteq f338faf
Advanced Ballistics - DLL update
ulteq 681e50e
Advanced Ballistics - Added drag function reference (JBM Ballistics)
ulteq 79ab583
Advanced Ballistics - Fixed calculation error in the spin drift simul…
ulteq 0c62f09
More descriptive variable names
ulteq b307f5f
Minor performance optimizations
ulteq 2779a4e
Fixed some minor issues
ulteq 12c1967
DLL rebuild
ulteq 333f2d0
Utilize new 'toFixed' script command
ulteq 6e1189c
Fixed a typo
ulteq 8b8d4a3
Use correct reference speed for the drag compensation
ulteq 82f5552
Updated all 'airFriction' values to match the new drag model
ulteq ba52cd3
'Default' atmosphere now equals the ICAO standard atmosphere
ulteq 15e33b2
Update reference humidity to meet the ICAO standard
ulteq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
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 |
---|---|---|
|
@@ -118,7 +118,7 @@ while {_TOF < 15 && (_bulletPos select 1) < _targetRange} do { | |
_trueSpeed = vectorMagnitude _trueVelocity; | ||
|
||
if (missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false]) then { | ||
private _drag = parseNumber(("ace_advanced_ballistics" callExtension format["retard:%1:%2:%3", _dragModel, _bc, _trueSpeed])); | ||
private _drag = parseNumber(("ace_advanced_ballistics" callExtension format["retard:%1:%2:%3:%4", _dragModel, _bc, _trueSpeed, _temperature])); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same. |
||
_bulletAccel = (vectorNormalized _trueVelocity) vectorMultiply (-1 * _drag); | ||
} else { | ||
_bulletAccel = _trueVelocity vectorMultiply (_trueSpeed * _airFriction); | ||
|
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 |
---|---|---|
|
@@ -103,7 +103,7 @@ while {_TOF < 6 && (_bulletPos select 1) < _targetRange} do { | |
_trueSpeed = vectorMagnitude _trueVelocity; | ||
|
||
if (_useABConfig) then { | ||
private _drag = parseNumber(("ace_advanced_ballistics" callExtension format["retard:%1:%2:%3", _dragModel, _bc, _trueSpeed])); | ||
private _drag = parseNumber(("ace_advanced_ballistics" callExtension format["retard:%1:%2:%3:%4", _dragModel, _bc, _trueSpeed, _temperature])); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same. |
||
_bulletAccel = (vectorNormalized _trueVelocity) vectorMultiply (-1 * _drag); | ||
} else { | ||
_bulletAccel = _trueVelocity vectorMultiply (_trueSpeed * _airFriction * _airFrictionCoef); | ||
|
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 |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
*/ | ||
#include "script_component.hpp" | ||
|
||
(331.3 + (0.6 * _this)) | ||
(331.3 * sqrt(1 + (_this / 273.15))) |
Large diffs are not rendered by default.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whitespace after
parseNumber
andformat
.