Unlimited learning, half price | 50% off
Get 50% off unlimited learning

pipenostics (version 0.2.0)

k_c: Covert to Kelvin scale

Description

Convert temperature measured in Celsius- or Fahrenheit-scale to Kelvin (K).

Usage

k_c(x)

k_f(x)

Value

temperature in Kelvin-scale, [K]. Type: assert_double.

Arguments

x

temperature in initial scale:

Type: assert_double.

See Also

c_k and f_k for converting from Kelvin-scale.

Other units: c_k(), f_k(), inch_mm(), kgf_mpa(), loss_flux(), mm_inch(), mpa_kgf(), mpa_psi(), psi_mpa()

Examples

Run this code
 library(pipenostics)

# Convert from Celsius to Kelvin:
k_c(c(-273.15, 100))
# [1]  0  373.15

# Convert from Fahrenheit to Kelvin:
k_f(c(-459.67, 212))
# [1]  0  373.15

Run the code above in your browser using DataLab