steinhart_hart: rm outdated doc

pull/20/head
Astro 2020-10-11 23:20:56 +02:00
parent d574ccb5f4
commit c005784df5
1 changed files with 0 additions and 4 deletions

View File

@ -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::<kelvin>() + (r / self.r0).get::<ratio>().ln() / self.b;
ThermodynamicTemperature::new::<kelvin>(1.0 / inv_temp)