Click or drag to resize

Updating DRTSettings

The DRTSettings has a property changed. The InductivityTreatment property was introduced, replacing the FitInductivity property. The new property gives access to newer functions implemented into the DRT calculation.

The old functionality is contained in the new property type. If FitInductivity was true, the new value should be set to FitInductivity. If FitInductivity was false, the new value should be set to Ignore. RemoveInductiveDataPoints is a new possible value, that leads to values with positive imaginary part being removed from the high-frequency section of the data.

Prerequisites

No prerequisites for the update are needed.

If the FitInductivity property was used

Perform these steps to update the plugin

  1. Identify where the previous FitInductivity setting value was assigned.

    C#
    settings.FitInductivity = true;

    Replace this with the suitable new option value.

    C#
    settings.InductivityTreatment = InductivityTreatment.FitInductivity;
See Also