c_k {pipenostics} | R Documentation |
Convert to Celsius scale
Description
Convert temperature measured in Kelvin- or Fahrenheit-scale to Celsius (°C).
Usage
c_k(x)
c_f(x)
Arguments
x |
temperature in initial scale:
Type: |
Value
temperature in Celsius-scale, [°C]. Type: assert_double
.
See Also
k_c
and f_c
for converting from Celsius-scale.
Other units:
f_k()
,
inch_mm()
,
k_c()
,
kgf_mpa()
,
loss_flux()
,
mm_inch()
,
mpa_kgf()
,
mpa_psi()
,
psi_mpa()
Examples
library(pipenostics)
# Convert from Kelvin to Celsius:
c_k(c(0, 373.15))
# [1] -273.15 100
# Convert from Fahrenheit to Celsius:
c_f(c(-459.67, 212))
# [1] -273.15 100
[Package pipenostics version 0.2.0 Index]