Skip to contents

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

Usage

f_k(x)

f_c(x)

Arguments

x

temperature in initial scale:

  • for f_k(x) - in Kelvin-scale, [K]

  • for f_c(x) - in Celsius-scale, [°C]

Type: assert_double.

Value

temperature in Fahrenheit-scale, [°F]. Type: assert_double.

See also

k_f and c_f for converting from Fahrenheit-scale.

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

Examples

 library(pipenostics)

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

# Convert from Celsius to Fahrenheit:
f_c(c(-273.15, 100))
#> [1] -459.67  212.00
# [1]  -459.67, 212