Process control property, which holds all properties and methods which are related to Process control.
Namespace: EAL.Interfaces.MotionAssembly: EAL (in EAL.dll) Version: 1.1.5.0 (1.1.5.0)
Syntax
C# |
---|
IProcessControl ProcessControl { get; } |
Visual Basic |
---|
ReadOnly Property ProcessControl As IProcessControl Get |
Visual C++ |
---|
property IProcessControl^ ProcessControl { IProcessControl^ get (); } |
Property Value
Type: IProcessControl
Examples
Synchronous method
Asynchronous method
![]() | |
---|---|
private void Method01() { using (IEALConnection ealConnection = new EALConnection()) { // Connects ealConnection.Connect("192.168.0.254"); // Gets axis 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); } } |
![]() | |
---|---|
private void Method02() { using (IEALConnection ealConnection = new EALConnection(true)) // Asysnchrounous method { // Connects ealConnection.Connect("192.168.0.10"); // Gets axis 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; // Adds the task to queue, which sets configuration value and Executes pressure control with command value 100 bar axis.ProcessControl.PressureControl(100); // Waits untill queue completes ealConnection.WaitUntilQueueComplete(); } } |