Parameter set number. Stores locally and will be set, when PressureControl or FlowrateControl method called.

Namespace: EAL.Interfaces.Motion
Assembly: EAL (in EAL.dll) Version: 1.1.5.0 (1.1.5.0)

Syntax

C#
int ParameterSetNo { get; set; }
Visual Basic
Property ParameterSetNo As Integer
	Get
	Set
Visual C++
property int ParameterSetNo {
	int get ();
	void set (int value);
}

Property Value

Type: Int32

Examples

Reading
 Copy imageCopy
private void Sample()
{
   using (IEALConnection ealConnection = new EALConnection())
   {
       // Connects
       ealConnection.Connect("192.168.0.10");
       // Get axis reference
       IAxis axis = ealConnection.Motion.Axes[0];
       // Read parameter Set number which is going to set
       int parameterSetNo = axis.ProcessControl.Configuration.ParameterSetNo;
   }
}
Writing
 Copy imageCopy
private void Sample()
{
    using (IEALConnection ealConnection = new EALConnection())
    {
        // Connects
        ealConnection.Connect("192.168.0.10");     
        // Get axis reference
        IAxis axis = ealConnection.Motion.Axes[0];
        // Set pressure unit as Absolute ( Sets locally)
        axis.ProcessControl.Configuration.PressureUnit = Unit.Absolute;
        // Set injection phase active to true ( Sets locally)
        axis.ProcessControl.Configuration.InjectionPhaseActive = true;
        // Set maximum flow rate value to 1000 ccm/min ( Sets locally)
        axis.ProcessControl.Configuration.MaxFlowrateValue = 1000;
        // Set parameter set number to 1 ( Sets locally)
        axis.ProcessControl.Configuration.ParameterSetNo = 1;
        // Set pump on to true ( Sets locally)
        axis.ProcessControl.Configuration.PumpOn = true;
        // Set volume 01 as 1 ccm ( Sets locally)
        axis.ProcessControl.Configuration.VolumePump01 = 1;
        // Set volume 02 as 1 ccm ( Sets locally)
        axis.ProcessControl.Configuration.VolumePump02 = 1;
        // Sets configuration value and Executes pressure control with command value 100 bar
        axis.ProcessControl.PressureControl(100);
    }
}

See Also