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)