mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
abf0149b1d
* Influences the advanced ballistics transonic instability * Influences the ATragMX range card output
18 lines
284 B
Plaintext
18 lines
284 B
Plaintext
/*
|
|
* Author: Ruthberg
|
|
*
|
|
* Calculates the speed of sound for a given temperature
|
|
*
|
|
* Arguments:
|
|
* temperature - degrees celcius <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* speed of sound - m/s <NUMBER>
|
|
*
|
|
* Return value:
|
|
* None
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
(331.3 + (0.6 * _this))
|