• General
  • Api Documentation

    Show / Hide Table of Contents
    • OmicronLab.MaterialAnalyzer.AutomationInterface
      • BaseFdsResult
      • BasePdcResult
      • CombinedFrequencySweepSettingsImplementation
      • FdsFrequencySweepSettingsImplementation
      • FrequencySweepSettingsBase
      • FrequencySweepSettingsFactory
      • MeasurementImplementation
      • MeasurementSettingsImplementation
      • PdcFrequencySweepSettingsImplementation
      • PreMeasurementImplementation
      • RecorderFdsResultImplementation
      • RecorderImplementation
      • RecorderPdcResultImplementation
      • ReferenceMeasurementImplementation
      • Spectano100
    • OmicronLab.MaterialAnalyzer.AutomationInterface.DataTypes
      • Complex
    • OmicronLab.MaterialAnalyzer.AutomationInterface.DataTypes.Interfaces
      • IComplex
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Enumerations
      • ApplyState
      • DeviceStatus
      • ExecutionState
      • FdsPdcConversionTime
      • LogLevel
      • MeasurementMode
      • NoiseSuppression
      • PreMeasurementDelayType
      • PreMeasurementState
      • QualityCheckState
      • ReconnectionState
      • RecorderState
      • ResultType
      • StopState
      • TestCellType
      • Trend
      • UploadState
    • OmicronLab.MaterialAnalyzer.AutomationInterface.EventHelper
      • DeviceEvents
      • FrequencySweepMeasurementEvents
      • PreMeasurementEvents
      • RecorderEvents
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Extensions
      • CommonExtension
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces
      • DeviceEventDelegates
      • DeviceEventDelegates.DeviceStatusChangedDelegate
      • DeviceEventDelegates.RuntimeErrorDelegate
      • SpectanoDevice
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces.MeasurementModes.Recording
      • Recorder
      • RecorderEventDelegates
      • RecorderEventDelegates.FdsResultAvailableDelegate
      • RecorderEventDelegates.PdcResultAvailableDelegate
      • RecorderEventDelegates.RecorderStatusChangedDelegate
      • Recording
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces.MeasurementModes.Recording.Results
      • RecorderFdsResult
      • RecorderPdcResult
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces.MeasurementModes.Sweep
      • Sweep
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces.MeasurementModes.Sweep.FrequencySweep
      • FrequencySweepEventDelegates
      • FrequencySweepEventDelegates.ExecutionProgressUpdateDelegate
      • FrequencySweepEventDelegates.NewFdsResultAvailableDelegate
      • FrequencySweepEventDelegates.NewPdcResultAvailableDelegate
      • FrequencySweepMeasurement
      • Results
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces.MeasurementModes.Sweep.FrequencySweep.PreMeasurements
      • PreMeasurement
      • PreMeasurementEventDelegates
      • PreMeasurementEventDelegates.QualityCheckStateDelegate
      • PreMeasurementEventDelegates.TimeDelayAndCurrentCheckerStateDelegate
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces.MeasurementModes.Sweep.FrequencySweep.ReferenceMeasurement
      • ReferenceMeasurement
      • ReferenceMeasurements
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces.MeasurementModes.Sweep.FrequencySweep.Settings
      • CombinedFrequencySweepSettings
      • CustomCombinedFrequencySweepSettings
      • CustomFdsFrequencySweepSettings
      • CustomPdcFrequencySweepSettings
      • FdsFrequencySweepSettings
      • FrequencySweepSettings
      • MeasurementSettings
      • PdcFrequencySweepSettings
    • OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces.TestCells
      • CylindricalElectrodesWithGuardRing
      • CylindricalElectrodesWithoutGuardRing
      • DiskElectrodesWithGuardRing
      • DiskElectrodesWithoutGuardRing
      • Dsh100
      • OtherTestCell
      • TestCell
      • TestCellSample
      • TestCellSampleReference
    • SpectanoAIExample
      • Program

    Interface PreMeasurement

    Interface describing Pre-measurement settings.

    Namespace: OmicronLab.MaterialAnalyzer.AutomationInterface.Interfaces.MeasurementModes.Sweep.FrequencySweep.PreMeasurements
    Assembly: OmicronLab.MaterialAnalyzer.AutomationInterface.dll (1.60.627.0)
    Syntax
    public interface PreMeasurement

    Properties

    CheckNoiseAndConnectivityProblems

    Gets or sets a value indicating whether check noise and connectivity problems is activated.

    Declaration
    bool CheckNoiseAndConnectivityProblems { get; set; }
    Property Value
    Type Description
    System.Boolean

    DelayCurrentThreshold

    Gets or sets the current threshold in A. Valid range: 1fA to 1A.

    Declaration
    double DelayCurrentThreshold { get; set; }
    Property Value
    Type Description
    System.Double

    DelayTime

    Gets or sets the pre measurement delay time in seconds. Valid range: 0s to 3600s.

    Declaration
    int DelayTime { get; set; }
    Property Value
    Type Description
    System.Int32

    EnableCurrentThreshold

    Gets or sets a value indicating whether the current threshold is activated.

    Declaration
    bool EnableCurrentThreshold { get; set; }
    Property Value
    Type Description
    System.Boolean

    EnableDelayTime

    Gets or sets a value indicating whether if the pre measurement delay time is enabled.

    Declaration
    bool EnableDelayTime { get; set; }
    Property Value
    Type Description
    System.Boolean

    Methods

    AbortPreMeasurement()

    Aborts the pre measurement.

    Declaration
    void AbortPreMeasurement()

    AbortPreMeasurementAsync()

    Aborts the pre measurement asynchronous.

    Declaration
    Task AbortPreMeasurementAsync()
    Returns
    Type Description
    Task
    Remarks

    This function is not visible via COM.

    Events

    QualityCheckerState

    Occurs when the quality check will be done.

    Declaration
    event PreMeasurementEventDelegates.QualityCheckStateDelegate QualityCheckerState
    Event Type
    Type Description
    PreMeasurementEventDelegates.QualityCheckStateDelegate

    TimeDelayAndCurrentCheckerState

    Occurs during time delay and current checks.

    Declaration
    event PreMeasurementEventDelegates.TimeDelayAndCurrentCheckerStateDelegate TimeDelayAndCurrentCheckerState
    Event Type
    Type Description
    PreMeasurementEventDelegates.TimeDelayAndCurrentCheckerStateDelegate
    Remarks

    Depending on the PreMeasurementDelayType the parameter value and valueThreshold holds:

    • Actual elapsed time and total time in seconds in case of TimeDelay
    • Actual measured current and current threshold in case of CurrentCheck
    Back to top Generated by DocFX