From c005784df545ab25ad7869ffc2bc5dd0aa34955d Mon Sep 17 00:00:00 2001 From: Astro Date: Sun, 11 Oct 2020 23:20:56 +0200 Subject: [PATCH] steinhart_hart: rm outdated doc --- src/steinhart_hart.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/steinhart_hart.rs b/src/steinhart_hart.rs index faab417..842122e 100644 --- a/src/steinhart_hart.rs +++ b/src/steinhart_hart.rs @@ -25,10 +25,6 @@ pub struct Parameters { impl Parameters { /// Perform the voltage to temperature conversion. - /// - /// Result unit: Kelvin - /// - /// TODO: verify pub fn get_temperature(&self, r: ElectricalResistance) -> ThermodynamicTemperature { let inv_temp = 1.0 / self.t0.get::() + (r / self.r0).get::().ln() / self.b; ThermodynamicTemperature::new::(1.0 / inv_temp)