mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
19 lines
349 B
Plaintext
19 lines
349 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Ruthberg
|
|
* Calculates the speed of sound for a given temperature
|
|
*
|
|
* Arguments:
|
|
* temperature - degrees celsius <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* speed of sound - m/s <NUMBER>
|
|
*
|
|
* Example:
|
|
* 0 call ace_weather_fnc_calculateSpeedOfSound
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
(331.3 * sqrt(1 + (_this / 273.15)))
|