RRM 3-13 Calcout

From EPICSWIKI
Revision as of 13:02, 9 March 2006 by BenFranksen (talk | contribs) (→‎Output Parameters)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

EPICS Record Reference Manual


Calcout - Calculation Output Record

The Calculation Output or "Calcout" record is similar to the Calc record with the added feature of having outputs (an "output link" and an "output event") which are conditionally executed based on the result of the calculation. This feature allows conditional branching to be implemented within an EPICS database (e.g., process Record_A only if Record_B has a value of 0). The Calcout record is also similar to the Wait record (with additional features) but uses EPICS standard INLINK and OUTLINK fields rather than the DBF_STRING fields used in the Wait record. For new databases, it is recommended that the Calcout record be used instead of the Wait record.

Parameter Fields

The fields in this record fall into these categories:

  • scan parameters
  • read parameters
  • expression parameters
  • output parameters
  • operator display parameters
  • alarm parameters
  • monitor parameters
  • run-time parameters


Scan Parameters

The Calcout record has the standard fields for specifying under what circumstances the record will be processed. These fields are listed in Scan Fields. In addition, Scanning Specification explains how these fields are used. Since the Calcout record supports no direct interfaces to hardware, it cannot be scanned on I/O interrupt, so its SCAN field cannot be I/O Intr.


Read Parameters

The read parameters for the Calcout record consist of 12 input links INPA, INPB, ... INPL. The fields can be database links, channel access links, or constants. If they are links, they must specify another record's field. If they are constants, they will be initialized with the value they are configured with and can be changed via dbPuts. These fields cannot be hardware addresses. In addition, the Calcout record contains the INAV, INBV, . . . INLV fields which indicate the status of the link fields, for example, whether or not the specified PV was found and a link to it established. See Operator Display Parameters for an explanation of these fields.

See Address Specification for information on how to specify database links.


FieldSummaryTypeDCTInitialAccessModifyRec Proc Monitor
INPAInput Link AINLINKYes0NoNoN/A
INPBInput Link BINLINKYes0NoNoN/A
INPCInput Link CINLINKYes0NoNoN/A
INPDInput Link DINLINKYes0NoNoN/A
INPEInput Link EINLINKYes0NoNoN/A
INPFInput Link FINLINKYes0NoNoN/A
INPGInput Link GINLINKYes0NoNoN/A
INPHInput Link HINLINKYes0NoNoN/A
INPIInput Link IINLINKYes0NoNoN/A
INPJInput Link JINLINKYes0NoNoN/A
INPKInput Link KINLINKYes0NoNoN/A
INPLInput Link LINLINKYes0NoNoN/A


Expression

Like the Calc record, the Calcout record has a CALC field in which the developer can enter an infix expression which the record routine will evaluate when it processes the record. The resulting value is placed in the VAL field. This value can then be used by the OOPT field (see Output Parameters) to determine whether or not to write to the output link or post an output event. It can also be the value that is written to the output link. The CALC expression is actually converted to opcode and stored in Reverse Polish Notation in the RPCL field. It is this expression which is actually used to calculate VAL. The Reverse Polish expression is evaluated more efficiently during run-time than an infix expression. CALC can be changed at run-time, and a special record routine will call a function to convert it to Reverse Polish Notation.

The range of expressions supported by the calculation record are separated into operands, algebraic operators, trigonometric operators, relational operators, logical operators, parentheses and commas, and the conditional '?:' operator. The expression can consist of any of these operators, as well as any of the values from the input links which are the operands.


FieldSummaryTypeDCTInitialAccessModifyRec Proc MonitorPP
CALCCalculationSTRING[36]Yes0YesYesYesNo
VALValueDOUBLENo0YesYesYesNo
RPCLReverse PolishNOACCESSNo0NoNoN/ANo

Also, the RNDM unary function can be included as an operand in the expression in order to generate a random number between 0 and 1.


Operands

The expression can use the values retrieved from the INPx links as operands, though constants can be used as operands too. These values retrieved from the input links are stored in the A-L fields. The values to be used in the expression are simply referenced by the field letter. For instance, the value obtained from the INPA link is stored in the field A, and the value obtained from INPB is stored in field B. The field names can be included in the expression which will operate on their respective values, as in A+B.


FieldSummaryTypeDCTInitialAccessModifyRec Proc MonitorPP
AInput Value ADOUBLENo0YesYes/NoYesYes
BInput Value BDOUBLENo0YesYes/NoYesYes
CInput Value CDOUBLENo0YesYes/NoYesYes
DInput Value DDOUBLENo0YesYes/NoYesYes
EInput Value EDOUBLENo0YesYes/NoYesYes
FInput Value FDOUBLENo0YesYes/NoYesYes
GInput Value GDOUBLENo0YesYes/NoYesYes
HInput Value HDOUBLENo0YesYes/NoYesYes
IInput Value IDOUBLENo0YesYes/NoYesYes
JInput Value JDOUBLENo0YesYes/NoYesYes
KInput Value KDOUBLENo0YesYes/NoYesYes
LInput Value LDOUBLENo0YesYes/NoYesYes


Algebraic Operators

  • ABS: Absolute value (unary)
  • SQR: Square root (unary)
  • MIN: Minimum (binary function)
  • MAX: Maximum (binary function)
  • CEIL: Ceiling (unary)
  • FLOOR: Floor (unary)
  • LOG: Log base 10 (unary)
  • LOGE: Natural log (unary)
  • EXP: Exponential function (unary)
  • ^: Exponential (binary)
  • ** : Exponential (binary)
  • + : Addition (binary)
  • - : Subtraction (binary)
  • * : Multiplication (binary)
  • / : Division (binary)
  • % : Modulo (binary)
  • NOT: Negate (unary)

Trigonometric Operators

  • SIN: Sine
  • SINH: Hyperbolic sine
  • ASIN: Arc sine
  • COS: Cosine
  • COSH: Hyperbolic cosine
  • ACOS: Arc cosine
  • TAN: Tangent
  • TANH: Hyperbolic tangent
  • ATAN: Arc tangent

Relational Operators

  • >= : Greater than or equal to
  • > : Greater than
  • <= : Less than or equal to
  • <: Less than
  • # : Not equal to
  • = : Equal to

Logical Operators

  • && : And
  • || : Or
  • ! : Not

Bitwise Operators

  • | : Bitwise Or
  • & : Bitwise And
  • OR : Bitwise Or
  • AND: Bitwise And
  • XOR: Bitwise Exclusive Or
  • ~ : One's Complement
  • << : Left shift
  • >> : Right shift

Parentheses and Comma

The open and close parentheses are supported. Nested parenthesis are supported.

The comma is supported when used to separate the arguments of a binary function.


Conditional Expression

The C language's question mark operator is supported. The format is:

(condition)? True result : False result


Example Expressions

Algebraic

A + B + 10
  • Result is A + B

Relational

(A + B) < (C + D)
  • Result is 1 if (A+B) < (C+D)
  • Result is 0 if (A+B) >= (C+D)

Question Mark

(A+B)<(C+D)?E:F+L+10
  • Result is E if (A+B) < (C+D)
  • Result is F+L+10 if (A+B) >= (C+D)
(A+B)<(C+D)?E
  • Result is E if (A+B) < (C+D)
  • Result is unchanged if (A+B) >= (C+D)

Logical

A&B
  • Causes the following to occur:
    • Convert A to integer
    • Convert B to integer
    • Bit-wise And A and B
    • Convert result to floating point

Output Parameters

These parameters specify and control the output capabilities of the Calcout record. They determine when to write the output, where to write it, and what the output will be. The OUT link specifies the Process Variable to which the result will be written. The OOPT field determines the condition that causes the output link to be written to. It's a menu field that has six choices:

  • Every Time -- write output every time record is processed.
  • On Change -- write output every time VAL changes, i.e., every time the result of the expression changes.
  • When Zero -- when record is processed, write output if VAL is zero.
  • When Non-zero -- when record is processed, write output if VAL is non-zero.
  • Transition To Zero -- when record is processed, write output only if VAL is zero and last value was non-zero.
  • Transition To Non-zero -- when record is processed, write output only if VAL is non-zero and last value was zero.

The DOPT field determines what data is written to the output link when the output is executed. The field is a menu field with two options: Use CALC or Use OCAL. If Use CALC is specified, when the record writes its output it will write the result of the expression in the CALC record, that is, it will write the value of the VAL field. If Use OCAL is specified, the record will instead write the result of the expression in the OCAL field, which is contained in the OVAL field. The OCAL field is exactly like the CALC field and has the same functionality: it can contain the string representation of an expression which is evaluated at run-time. Thus, if necessary, the record can use the result of the CALC expression to determine if data should be written and can use the result of the OCAL expression as the data to write.

If the OEVT field specifies a non-zero integer and the condition in the OOPT field is met, the record will post a corresponding event. If the ODLY field is non-zero, the record pauses for the specified number of seconds before executing the OUT link or posting the output event. During this waiting period the record is "active" and will not be processed again until the wait is over. The field DLYA is equal to 1 during the delay period. The resolution of the delay entry is 1/60 of a second (it uses the VxWorks tickLib).

The IVOA field specifies what action to take with the OUT link if the Calcout record enters an INVALID alarm status. The options are Continue normally, Don't drive outputs, and Set output to IVOV. If the IVOA field is Set output to IVOV, the data entered into the IVOV field is written to the OUT link if the record alarm severity is INVALID.


FieldSummaryTypeDCTInitialAccessModifyRec Proc MonitorPP
OUTOutput SpecificationOUTLINKYes0YesYesN/ANo
OOPTOutput Execute OptionRECCHOICEYes0YesYesNoNo
DOPTOutput Data OptionRECCHOICEYes0YesYesNoNo
OCAL Output CalculationSTRING[36]YesNullYesYesNoNo
OVALOutput ValueDOUBLENo0YesYesYesYes
OEVTEvent To IssueSHORTYes0YesYesNoNo
ODLYOutput Execution DelayFLOATYes0YesYesNoNo
IVOVInvalid Output ActionGBLCHOICEYes0YesYesNoNo
IVOAInvalid Output ValueDOUBLEYes0YesYesNoNo

Operator Display Parameters

These parameters are used to present meaningful data to the operator. Some are also meant to represent the status of the record at run-time. An example of an interactive MEDM display screen that displays the status of the Calcout record is located here.

The EGU field contains a string of up to 16 characters which is supplied by the user and which describes the values being operated upon. The string is retrieved whenever the routine get_units is called. The EGU string is solely for an operator's sake and does not have to be used.

The HOPR and LOPR fields only refer to the limits of the VAL, HIHI, HIGH, LOW, and LOLO fields. PREC controls the precision of the VAL field.

The INAV-INLV fields indicate the status of the link to the PVs specified in the INPA-INPL fields, respectively. The field can have three possible values:

  • Ext PV NC -- the PV wasn't found on this IOC and a Channel Access link hasn't been established.
  • Ext PV OK -- the PV wasn't found on this IOC and a Channel Access link has been established.
  • Local PV -- the PV was found on this IOC.
  • Constant -- the corresponding link field is a constant.

The OUTV field indicates the status of the OUT link. It has the same possible values as the INAV-INLV fields.

The CLCV and OLCV fields indicate the validity of the expression in the CALC and OCAL fields, respectively. If the expression is invalid, the field is set to one.

The DLYA field is set to one during the delay interval specified in ODLY.

See Fields Common to All Record Types for more on the record name (NAME) and description (DESC) fields.


FieldSummaryTypeDCTInitialAccessModifyRec Proc MonitorPP
EGUEngineering UnitsSTRING [16]YesNullYesYesNoNo
PRECDisplay PrecisionSHORTYes0YesYesNoNo
HOPRHigh Operating RangeFLOATYes0YesYesNoNo
LOPRLow Operating RangeFLOATYes0YesYesNoNo
INAVLink Status of INPARECCHOICENo1YesNoNoNo
INBVLink Status of INPBRECCHOICENo1YesNoNoNo
INCVLink Status of INPCRECCHOICENo1YesNoNoNo
INDVLink Status of INPDRECCHOICENo1YesNoNoNo
INEVLink Status of INPERECCHOICENo1YesNoNoNo
INFVLink Status of INPFRECCHOICENo1YesNoNoNo
INGVLink Status of INPGRECCHOICENo1YesNoNoNo
INHVLink Status of INPHRECCHOICENo1YesNoNoNo
INIVLink Status of INPIRECCHOICENo1YesNoNoNo
INJVLink Status of INPJRECCHOICENo1YesNoNoNo
INKVLink Status of INPKRECCHOICENo1YesNoNoNo
INLVLink Status of INPLRECCHOICENo1YesNoNoNo
OUTVOUT PV StatusRECCHOICENo0YesNoNoNo
CLCVCALC ValidLONGNo0YesYesNoNo
OCLVOCAL ValidLONGNo0YesYesNoNo
DLYAOutput Delay ActiveUSHORTNo0YesNoNoNo
NAMERecord NameSTRING [29]Yes0YesNoNoNo
DESCDescriptionSTRING [29]YesNullYesYesNoNo


Alarm Parameters

The possible alarm conditions for the Calc record are the SCAN, READ, Calculation, and limit alarms. The SCAN and READ alarms are called by the record support routines. The Calculation alarm is called by the record processing routine when the CALC expression is an invalid one, upon which an error message is generated.

The following alarm parameters which are configured by the user define the limit alarms for the VAL field and the severity corresponding to those conditions.

The HYST field defines an alarm deadband for each limit. See Alarm Specification for a complete explanation of alarms and these fields. Alarm Fields lists other fields related to a alarms that are common to all record types.


FieldSummaryTypeDCTInitialAccessModifyRec Proc MonitorPP
HIHIHihi Alarm LimitFLOATYes0YesYesNoYes
HIGHHigh Alarm LimitFLOATYes0YesYesNoYes
LOWLow Alarm LimitFLOATYes0YesYesNoYes
LOLOLolo Alarm LimitFLOATYes0YesYesNoYes
HHSVSeverity for a Hihi AlarmGBLCHOICEYes0YesYesNoYes
HSVSeverity for a High AlarmGBLCHOICEYes0YesYesNoYes
LSVSeverity for a Low AlarmGBLCHOICEYes0YesYesNoYes
LLSVSeverity for a Lolo AlarmGBLCHOICEYes0YesYesNoYes
HYSTAlarm DeadbandDOUBLEYes0YesYesNoNo


Monitor Parameters

These parameters are used to determine when to send monitors for the value fields. The monitors are sent when the value field exceeds the last monitored field by the appropriate deadband, the ADEL for archiver monitors and the MDEL field for all other types of monitors. If these fields have a value of zero, every time the value changes, monitors are triggered; if they have a value of -1, every time the record is scanned, monitors are triggered. See Monitor Specification for a complete explanation of monitors.


FieldSummaryTypeDCTInitialAccessModifyRec Proc MonitorPP
ADELArchive DeadbandDOUBLEYes0YesYesNoNo
MDELMonitor, i.e. value change, DeadbandDOUBLEYes0YesYesNoNo


Run-time Parameters

These fields are not configurable using a configuration too and none are modifiable at run-time. They are used to process the record.

The LALM field is used to implement the hysteresis factor for the alarm limits.

The LA-LL fields are used to decide when to trigger monitors for the corresponding fields. For instance, if LA does not equal the value for A, monitors for A are triggered. The MLST and MLST fields are used in the same manner for the VAL field.


FieldSummaryTypeDCTInitialAccessModifyRec Proc MonitorPP
LALMLast Alarmed ValueDOUBLENo0YesNoNoNo
ALSTArchive Last ValueDOUBLENo0YesNoNoNo
MLSTMonitor Last ValueDOUBLENo0YesNoNoNo
LAPrevious Input Value for ADOUBLENo0YesNoNoNo
LBPrevious Input Value for ADOUBLENo0YesNoNoNo
LCPrevious Input Value for ADOUBLENo0YesNoNoNo
LDPrevious Input Value for ADOUBLENo0YesNoNoNo
LEPrevious Input Value for ADOUBLENo0YesNoNoNo
LFPrevious Input Value for ADOUBLENo0YesNoNoNo
LGPrevious Input Value for ADOUBLENo0YesNoNoNo
LHPrevious Input Value for ADOUBLENo0YesNoNoNo
LIPrevious Input Value for ADOUBLENo0YesNoNoNo
LJPrevious Input Value for ADOUBLENo0YesNoNoNo
LKPrevious Input Value for ADOUBLENo0YesNoNoNo
LLPrevious Input Value for ADOUBLENo0YesNoNoNo


Record Support

Record Support Routines

init_record

For each constant input link, the corresponding value field is initialized with the constant value if the input link is CONSTANT or a channel access link is created if the input link is PV_LINK.

A routine postfix is called to convert the infix expression in CALC and OCAL to reverse polish notation. The result is stored in RPCL and ORPC, respectively.

process

See next section.

special

This is called if CALC or OCAL is changed. special calls postfix.

get_value

Fills in the values of struct valueDes so that they refer to VAL.

get_units

Retrieves EGU.

get_precision

Retrieves PREC.

get_graphic_double

Sets the upper display and lower display limits for a field. If the field is VAL, HIHI, HIGH, LOW, or LOLO, the limits are set to HOPR and LOPR, else if the field has upper and lower limits defined they will be used, else the upper and lower maximum values for the field type will be used.

get_control_double

Sets the upper control and the lower control limits for a field. If the field is VAL, HIHI, HIGH, LOW, or LOLO, the limits are set to HOPR and LOPR, else if the field has upper and lower limits defined they will be used, else the upper and lower maximum values for the field type will be used.

get_alarm_double

Sets the following values:

upper_alarm_limit = HIHI
upper_warning_limit = HIGH
lower_warning_limit = LOW
lower_alarm_limit = LOLO


Record Processing

process()

The process() routine implements the following algorithm:


  1. Fetch all arguments.
  2. Call routine calcPerform(), which calculates VAL from the postfix version of the expression given in CALC. If calcPerform() returns success, UDF is set to FALSE.
  3. Check alarms. This routine checks to see if the new VAL causes the alarm status and severity to change. If so, NSEV, NSTA and LALM are set. It also honors the alarm hysteresis factor (HYST). Thus the value must change by at least HYST before the alarm status and severity changes.
  4. Determine if the Output Execution Option (OOPT) is met. If it is met, either execute the output link (and output event) immediately (if ODLY = 0), or schedule a callback after the specified interval. See the explanation for the execOutput() routine below.
  5. Check to see if monitors should be invoked.
    • Alarm monitors are invoked if the alarm status or severity has changed.
    • Archive and value change monitors are invoked if ADEL and MDEL conditions are met.
    • Monitors for A-L are checked whenever other monitors are invoked.
    • NSEV and NSTA are reset to 0.
  6. If no output delay was specified, scan forward link if necessary, set PACT FALSE, and return.


execOutput()

  1. If DOPT field specifies the use of OCAL, call the routine calcPerform for the postfix version of the expression in OCAL. Otherwise, use VAL.
  2. If the Alarm Severity is INVALID, follow the option as designated by the field IVOA.
  3. If the Alarm Severity is not INVALID or IVOA specifies "Continue Normally", put the value of OVAL to the OUT link and post the event in OEVT (if non-zero).
  4. If an output delay was implemented, process the forward link.




EPICS Record Reference Manual - 19 MAY 1998