This function is used in Python Scripting.

Description

Issues a freeze command on the given analog outputs.

Client Permission Restrictions

Permission Type: DNP3 Management

Client access to this scripting function is blocked to users that do not meet the role/zone requirements for the above permission type. This function is unaffected when run in the Gateway scope.

Syntax

system.dnp3.freezeAnalogs(deviceName, [indexes])

  • Parameters

String deviceName - The name of the DNP3 device driver. 

List indexes - A list of specific indexes on which to issue the freeze command. An empty list can be passed to freeze all analogs. 

  • Returns

Nothing

  • Scope

Gateway, Vision Client, Perspective Session

Code Examples
Code Snippet
# This example shows a request to freeze all analog inputs in the outstation.
system.dnp3.freezeAnalogs("Dnp3", [])
Code Snippet
# This example shows a request to freeze analog inputs at indexes 1, 3, and 5.
system.dnp3.freezeAnalogs("Dnp3", [1, 3, 5])


Keywords

system dnp3 freezeAnalogs, dnp3.freezeAnalogs