::pulse::SetVariableValues

Sets the value of the specified variable.

Syntax
::pulse::SetVariableValues {variableNames variableValues}
Type
Pulse Python API command.
Description
Sets the value of the specified variables. The listed variables must be defined in the process prior to running this command.
Inputs
variableNames: The names of the variable.
variableValues: The values to be assigned to the variable.
Version History
2022.1

Example

#Load Pulse API
set api_dir $::env(ALTAIR_PULSE_API)
set tcl_dir [file join $api_dir "tcl"]
lappend ::auto_path $tcl_dir
package require pulse

::pulse::SetVariableValues {a b} {5.0 10}