mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 08:30:37 -04:00
10 lines
218 B
Python
10 lines
218 B
Python
from thermocouples_reference import thermocouples
|
|
|
|
typeK = thermocouples['K']
|
|
print(f"typeK={typeK}")
|
|
|
|
t1 = typeK.emf_mVC(42, Tref=0)
|
|
print(f"t1={t1}")
|
|
|
|
t2 = typeK.emf_mVC([-3.14159, 42, 54], Tref=0)
|
|
print(f"t2={t2}")
|