This commit is contained in:
xyy
2026-05-29 15:32:13 +08:00
parent 11afabb641
commit a888691151
5 changed files with 897 additions and 102 deletions

View File

@@ -59,6 +59,8 @@ public class TestParameters
public double ReferenceConductivity { get; set; } = 0.606;
public CalibrationCoefficients CalibrationCoefficients { get; set; } = new();
}
public class AppSettings
@@ -74,4 +76,7 @@ public class CalibrationCoefficients
public ushort PressureProtection { get; set; }
public ushort TemperatureCoefficient { get; set; }
public ushort ResistanceCoefficient { get; set; }
public double ThermalConductivityCorrection { get; set; } = 0.606;
public double ThermalDiffusivityCorrection { get; set; } = 19.9;
}