Functions
for constants: Physical Constants |
 |
F_C |
function from adhoc
|
Entrypoint
|
c |
Output with BY
VALUE |
Input |
nothing
|
|
Output |
INTEGER |
constant c
for speed of light [m/s] |
TestSQL
SELECT 299792458 AS ISCORRECT, F_C() FROM RDB$DATABASE; |
  |
F_G |
function from adhoc
|
Entrypoint
|
g |
Output with BY
VALUE |
Input |
nothing
|
|
Output |
DOUBLE |
constant g for
acceleration of gravity [m/s^2] |
TestSQL
SELECT 9.80665 AS ISCORRECT, F_G() FROM RDB$DATABASE; |
  |
F_KELVIN |
function from adhoc
|
Entrypoint
|
k |
Output with BY
VALUE |
Input |
nothing
|
|
Output |
DOUBLE |
constant for
absolute zero = 0 degree Kelvin |
TestSQL
SELECT -273.15 AS ISCORRECT, F_KELVIN() FROM RDB$DATABASE; |
     |