Click or drag to resize

StationParametersModified Class

Sent by a process endpoint to indicate that an operator has modified a generic parameter or configuration setting. This does not apply to settings related to recipes, which are handled by the RecipeModified event.

Generic Example

{
  "ModifiedParameters": [
    {
      "$type": "CFX.Structures.GenericParameter, CFX",
      "Name": "Torque1",
      "Value": "35.6"
    }
  ]
}

Example fore Solder Reflow Oven

{
  "ModifiedParameters": [
    {
      "$type": "CFX.Structures.SolderReflow.ReflowOvenParameter, CFX",
      "ConveyorSpeedSetpoint": 50.0,
      "ConveyorWidth": 25.0,
      "ZoneParameters": [
        {
          "Zone": {
            "ReflowZoneType": "PreHeat",
            "StageSequence": 1,
            "StageName": "Zone1",
            "StageType": "Work"
          },
          "Setpoints": [
            {
              "SubZone": "Top",
              "SetpointType": "Temperature",
              "Setpoint": 220.0
            },
            {
              "SubZone": "Bottom",
              "SetpointType": "Temperature",
              "Setpoint": 220.0
            }
          ]
        },
        {
          "Zone": {
            "ReflowZoneType": "Soak",
            "StageSequence": 2,
            "StageName": "Zone2",
            "StageType": "Work"
          },
          "Setpoints": [
            {
              "SubZone": "Top",
              "SetpointType": "Temperature",
              "Setpoint": 200.0
            },
            {
              "SubZone": "Bottom",
              "SetpointType": "Temperature",
              "Setpoint": 220.0
            }
          ]
        },
        {
          "Zone": {
            "ReflowZoneType": "Reflow",
            "StageSequence": 3,
            "StageName": "Zone3",
            "StageType": "Work"
          },
          "Setpoints": [
            {
              "SubZone": "Top",
              "SetpointType": "Temperature",
              "Setpoint": 200.0
            },
            {
              "SubZone": "Bottom",
              "SetpointType": "Temperature",
              "Setpoint": 220.0
            },
            {
              "SubZone": "WholeZone",
              "SetpointType": "O2",
              "Setpoint": 500.0
            },
            {
              "SubZone": "WholeZone",
              "SetpointType": "Vacuum",
              "Setpoint": 2.0
            },
            {
              "SubZone": "WholeZone",
              "SetpointType": "VacuumHoldTime",
              "Setpoint": 5.0
            }
          ]
        },
        {
          "Zone": {
            "ReflowZoneType": "Cool",
            "StageSequence": 4,
            "StageName": "Zone4",
            "StageType": "Work"
          },
          "Setpoints": [
            {
              "SubZone": "Top",
              "SetpointType": "Temperature",
              "Setpoint": 105.0
            },
            {
              "SubZone": "Bottom",
              "SetpointType": "Temperature",
              "Setpoint": 105.0
            }
          ]
        }
      ]
    }
  ]
}
Inheritance Hierarchy
SystemObject
  CFXCFXMessage
    CFX.ResourcePerformanceStationParametersModified

Namespace: CFX.ResourcePerformance
Assembly: CFX (in CFX.dll) Version: 1.7.3
Syntax
public class StationParametersModified : CFXMessage

The StationParametersModified type exposes the following members.

Constructors
 NameDescription
Public methodStationParametersModified Default Constructor
Top
Properties
 NameDescription
Public propertyModifiedParameters A list of the paramters that have been modified, along with their new values. The Parameter structure is a dynamic structure, and may be of differing types depending on the type of endpoint.
Top
See Also