Macro calculating commands

<< Click to Display Table of Contents >>

Navigation:  Macros > Macro commands and parameters >

Macro calculating commands

A calculation command is used to perform a particular calculation on the network. Parameters are used to indicate the settings.  

 

See:

Load flow

IEC 60909

Fault analysis

Selectivity

Ripple

Reliability

 

Almost all objects have the attribute 'Result'. This is a text, containing the value 'NO' if no calculation results are available. After successful completion of a calculation this attribute contains the values:

'LF': loadflow result available

'IEC': IEC 60909 result available

'FA': Fault Analysis result available

'REL': Reliability analysis results available

 

This is used to test if a calculation has been carried out successfully. E.g.:

 if( Node('MyNode').Result, =, 'LF' )

         ...

 end

 

See also:

Alteration: changing the network or variables

Arithmetic functions: functions for rounding, square, logarithm an goniometry

Procedures: user defined procedures

Conditional actions: executing or skipping parts of a macro, depending on a value

Loops: repeatedly executing or skipping parts of a macro, depending on a value

Reporting: entering data into Excel cells or formatting them

Input: reading from spreadsheets for a macro execution

Network actions: saving networks modified by the macro

 

Back to Commands and Parameters.