data(thermo)
## examples using convert
# temperature (Kelvin) to degrees C
convert(273.15,'C')
# temperature (degrees C) to Kelvin
convert(100,'K')
# Gibbs energy (cal mol-1) to/from logK
convert(1000,'logK')
convert(1000,'logK',T=373.15)
convert(1,'G')
# Eh (volt) to pe
convert(-1,'pe')
convert(-1,'pe',T=373.15)
# logfO2 to E0 (volt)
convert(-80,'E0')
convert(-80,'E0',pH=5)
convert(-80,'E0',pH=5,logaH2O=-5)
# calorie to/from joule
convert(10,'j')
convert(10,'cal')
# cm3bar to calories
convert(10,'calories')
## examples showing user unit preference
nuts('K') # set temperature units
nuts('J') # set energy units
# return the name of the (E)nergy units
nuts('E')
# print names of all units (NULL return)
nuts()
# defaults
nuts('K'); nuts('bar'); nuts('cal')
Run the code above in your browser using DataLab