Application module: Task element ISO/TS 10303-1480:2010-03(E)
© ISO

Cover page
Table of contents
Copyright
Foreword
Introduction
1 Scope
2 Normative references
3 Terms, definitions and abbreviations

4 Information requirements
   4.1 Required AM ARMs
   4.2 ARM type definition
   4.3 ARM entity definitions
5 Module interpreted model
   5.1 Mapping specification
   5.2 MIM EXPRESS short listing
     5.2.1 MIM entity definitions
     5.2.2 MIM subtype constraint definition

A MIM short names
B Information object registration
C ARM EXPRESS-G   EXPRESS-G
D MIM EXPRESS-G   EXPRESS-G
E Computer interpretable listings
Bibliography
Index

5.2 MIM EXPRESS short listing

This clause specifies the EXPRESS schema derived from the mapping table. It uses elements from the common resources or from other application modules and defines the EXPRESS constructs that are specific to this part of ISO 10303.

This clause constitutes the Module Interpreted Module (MIM) of the application module.

This clause also specifies the modifications that apply to the constructs imported from the common resources.

The following restrictions apply to the use, in this schema, of constructs defined in common resources or in application modules:

EXPRESS specification:

*)
SCHEMA Task_element_mim;

USE FROM Activity_method_assignment_mim;    --  ISO/TS 10303-1249

USE FROM Condition_mim;    --  ISO/TS 10303-1253

USE FROM measure_schema    --  ISO 10303-41
  (count_measure);

USE FROM method_definition_schema;    --  ISO 10303-49

USE FROM support_resource_schema    --  ISO 10303-41
  (text);
(*

NOTE 1   The schemas referenced above are specified in the following part of ISO 10303:

Activity_method_assignment_mim ISO/TS 10303-1249
Condition_mim ISO/TS 10303-1253
measure_schema ISO 10303-41
method_definition_schema ISO 10303-49
support_resource_schema ISO 10303-41

NOTE 2   See Annex D, Figures D.1and D.2 for a graphical representation of this schema.

5.2.1 MIM entity definitions

This subclause specifies the MIM entities for this module. The MIM entities and definitions are specified below.

5.2.1.1 concurrent_task_element   EXPRESS-G

A concurrent_task_element is a type of task_element that involves carrying out multiple task_elements during the time taken to perform the longest of the task_elements.

EXPRESS specification:

*)
ENTITY concurrent_task_element
  SUBTYPE OF (task_element);
END_ENTITY;
(*

5.2.1.2 decision_point   EXPRESS-G

A decision_point is a type of task_element and action_method_to_select_from. It requires a decision that determines which further task_element is to be followed.

EXPRESS specification:

*)
ENTITY decision_point
  SUBTYPE OF (action_method_to_select_from, task_element);
DERIVE
  SELF\action_method_to_select_from.number_of_elements : count_measure := 1;
  SELF\action_method.purpose : text := 'decision';
END_ENTITY;
(*

Attribute definitions:

number_of_elements: redeclaration of number_of_elements identifying that 1 of those methods will be executed depending on the condition.

purpose: redeclaration of purpose identifying that this acts as a "decision".

5.2.1.3 end_task   EXPRESS-G

An end_task is a type of task_element that indicates that execution of the parent task is to end.

EXPRESS specification:

*)
ENTITY end_task
  SUBTYPE OF (task_element);
END_ENTITY;
(*

5.2.1.4 exit_loop   EXPRESS-G

An exit_loop is a type of task_element that indicates that execution of the parent looping_element is to end.

EXPRESS specification:

*)
ENTITY exit_loop
  SUBTYPE OF (task_element);
END_ENTITY;
(*

5.2.1.5 looping_element   EXPRESS-G

A looping_element is a type of task_element that involves repeating another task_element

EXPRESS specification:

*)
ENTITY looping_element
  SUBTYPE OF (task_element);
END_ENTITY;
(*

5.2.1.6 start_task   EXPRESS-G

A start_task is a type of task_element that indicates the start point in the execution of the parent task.

EXPRESS specification:

*)
ENTITY start_task
  SUBTYPE OF (task_element);
END_ENTITY;
(*

5.2.1.7 task_element   EXPRESS-G

A task_element is a type of action_method that prescribes how a task or part of a task is to be carried out.

EXPRESS specification:

*)
ENTITY task_element
  SUBTYPE OF (action_method);
END_ENTITY;
(*

5.2.1.8 task_element_relationship   EXPRESS-G

A task_element_relationship is a type of action_method_relationship the specificies the relationship between two task_elements.

EXPRESS specification:

*)
ENTITY task_element_relationship
  SUBTYPE OF (action_method_relationship);
END_ENTITY;
(*

5.2.1.9 task_element_sequence   EXPRESS-G

A task_element_sequence is a type of task_element that involves carrying out a sequence of task_elements in order.

EXPRESS specification:

*)
ENTITY task_element_sequence
  SUBTYPE OF (task_element);
END_ENTITY;
(*

5.2.1.10 task_step   EXPRESS-G

A task_step is a type of task_element that represents one stage within a task and is not further broken down.

EXPRESS specification:

*)
ENTITY task_step
  SUBTYPE OF (task_element);
END_ENTITY;
(*

5.2.2 MIM subtype constraint definition

This subclause specifies the MIM subtype constraint for this module. The subtype constraint places a constraint on the possible super-type / subtype instantiations. The MIM subtype constraint and definition is specified below.

5.2.2.1 restrict_task_method_subtypes   EXPRESS-G

The restrict_task_method_subtypes constraint specifies a constraint that applies to instances of subtypes of task_element.

EXPRESS specification:

*)
SUBTYPE_CONSTRAINT restrict_task_method_subtypes FOR task_element;
  ONEOF (concurrent_task_element,
         end_task,
         exit_loop,
         looping_element,
         task_element_sequence,
         task_step);
END_SUBTYPE_CONSTRAINT;
(*



*)
END_SCHEMA;  -- Task_element_mim
(*


© ISO 2009 — All rights reserved