ENTITY coordinated_universal_time_offset
(* SCHEMA STRUCTURAL_FRAME_SCHEMA; *)
(* Modified for LPM/6 *)
ENTITY coordinated_universal_time_offset;
hour_offset : hour_in_day;
minute_offset : OPTIONAL minute_in_hour;
sense : ahead_or_behind;
DERIVE
actual_minute_offset: INTEGER := NVL(minute_offset,0);
WHERE
WRC23: { 0 <= hour_offset < 24 };
WRC24: { 0 <= actual_minute_offset <= 59 };
WRC25: NOT (((hour_offset <> 0) OR (actual_minute_offset <>0)) AND (sense = exact));
END_ENTITY; (* STEP Part 41 2nd edition *)
Explicit Attributes
Entity coordinated_universal_time_offset has the following local and inherited explicit attributes:
Attribute | Type | Defined By |
---|
hour_offset | hour_in_day (INTEGER) | coordinated_universal_time_offset |
minute_offset | minute_in_hour (INTEGER) | coordinated_universal_time_offset |
sense | ahead_or_behind (ENUM) | coordinated_universal_time_offset |
|
Derived Attributes
Entity coordinated_universal_time_offset has the following local and inherited derived attributes:
Attribute | Type | Defined By |
---|
actual_minute_offset | INTEGER | coordinated_universal_time_offset |
|
Inverse Attributes
No Inverse AttributesSupertypes
No supertypesSubtypes
No subtypesReferenced By
Entity coordinated_universal_time_offset and its supertypes are referenced by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2023-03-25T00:11:38-04:00