mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
333 B
Plaintext
19 lines
333 B
Plaintext
/*
|
|
* 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
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
(331.3 + (0.6 * _this))
|