Documentation for Axxon PSIM 1.0.0-1.0.1.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

The DoReact method generates actions for the objects. It sends the action to the specified object. The action is transferred directly to the kernel where the object belongs, and not to the whole system. The action is specified using the MsgObject object.

Method call syntax

 function DoReact(msgevent : MsgObject)

Method arguments:

msgevent - Required argument. The action sent to the specified object. It takes the following values:  MsgObject objects created earlier in the script.

Note

Two types of system messages are available in the Axxon PSIM system: events and actions.

The events usually contain some information and are used as notifications sent to all Axxon PSIM kernels connected to each other during the system setup.

The actions are the control commands sent to specific objects. An action is transmitted only to the kernel where the related object belongs, and not to the whole system.

The DoReactStr and DoReact methods are used to generate actions. The NotifyEventStr and NotifyEvent methods are used to generate events.

Usage examples

Problem. When Relay 1 closes, close Relays 2 and 3. When Relay 1 opens, open Relay 2.

 if (Event.SourceType == "GRELE" && Event.SourceId == "1")
{
 var msgevent = Event.Clone();
 if(Event.Action == "ON")
 {
  msgevent.SourceId = "2";
  DoReact(msgevent);
  msgevent.SourceId = "3";
  DoReact(msgevent);
 }
 if(Event.Action == "OFF")
 {
  msgevent.SourceId = "2";
  DoReact(msgevent);
 }
}
  • No labels