Table of Contents

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

SortedList<double, double>

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

SortedList<double, double>

TorqueOffset

Gets the torque offset calculated as the average torque in the zero zone.

public double TorqueOffset { get; }

Property Value

double

ZeroZoneTimeBegin

Gets or sets the start time of the zero torque zone used for offset calculation.

public double ZeroZoneTimeBegin { get; set; }

Property Value

double

ZeroZoneTimeEnd

Gets or sets the end time of the zero torque zone used for offset calculation.

public double ZeroZoneTimeEnd { get; set; }

Property Value

double

Methods

ReadCsv(string)

Reads torque data from a CSV file.

public void ReadCsv(string file)

Parameters

file string

The path to the CSV file containing time-torque data.