Class TimeVsTorqueSeries
- Namespace
- Hi.MillingForces.Fittings
- Assembly
- HiMech.dll
Represents a time series of torque measurements with compensation capabilities.
public class TimeVsTorqueSeries
- Inheritance
-
TimeVsTorqueSeries
- Inherited Members
- Extension Methods
Properties
CompensatedTimeVsTorque
Gets the torque data with offset compensation applied.
public SortedList<double, double> CompensatedTimeVsTorque { get; }
Property Value
OriginalTimeVsTorque
Gets or sets the original time-torque data pairs, where the key is time and the value is the torque magnitude.
public SortedList<double, double> OriginalTimeVsTorque { get; set; }
Property Value
TorqueOffset
Gets the torque offset calculated as the average torque in the zero zone.
public double TorqueOffset { get; }
Property Value
ZeroZoneTimeBegin
Gets or sets the start time of the zero torque zone used for offset calculation.
public double ZeroZoneTimeBegin { get; set; }
Property Value
ZeroZoneTimeEnd
Gets or sets the end time of the zero torque zone used for offset calculation.
public double ZeroZoneTimeEnd { get; set; }
Property Value
Methods
ReadCsv(string)
Reads torque data from a CSV file.
public void ReadCsv(string file)
Parameters
file
stringThe path to the CSV file containing time-torque data.