setVariableValue

Sets the value of the specified variable.

Syntax
setVariableValue (variableName, variableValue)
Type
Pulse Python API command.
Description
Sets the value of the specified variable. The listed variables must be defined in the process prior to running this command.
Inputs
variableName: The name of the variable.
variableValue: The value to be assigned to the variable.
Version History
2022.1

Example

#Load Pulse API
apidir = os.environ['ALTAIR_PULSE_API']
path = os.path.join(apidir,"python")
sys.path.append(path)

import pulse

pulse.setVariableValue("vel", 5.0)