AP scope  |  AP module  |  AP contents  |  AP index
Application module: Input output ISO/WD 10303-1459

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 entity definitions
5 Module interpreted model
   5.1 Mapping specification
   5.2 MIM EXPRESS short listing

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

4 Information requirements

This clause specifies the information requirements for the Input output application module. The information requirements are specified as the Application Reference Model (ARM) of this application module.

NOTE 1  A graphical representation of the information requirements is given in Annex C.

NOTE 2  The mapping specification is specified in 5.1. It shows how the information requirements are met by using common resources and constructs defined or imported in the MIM schema of this application module.

The following EXPRESS specification begins the Input_output_arm schema and identifies the necessary external references.

EXPRESS specification:

*)
SCHEMA Input_output_arm;
(*

4.1 Required AM ARMs

The following EXPRESS interface statements specify the elements imported from the ARMs of other application modules.

EXPRESS specification:

*)
USE FROM Product_identification_arm;    --  ISO/TS 10303-1017

USE FROM Product_version_arm;    --  ISO/TS 10303-1018

USE FROM Product_view_definition_arm;    --  ISO/TS 10303-1019

USE FROM Product_view_definition_relationship_arm;    --  ISO/TS 10303-1041
(*

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

Product_identification_arm ISO/TS 10303-1017
Product_version_arm ISO/TS 10303-1018
Product_view_definition_arm ISO/TS 10303-1019
Product_view_definition_relationship_arm ISO/TS 10303-1041

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

4.2 ARM entity definitions

This subclause specifies the ARM entities for this module. Each ARM application entity is an atomic element that embodies a unique application concept and contains attributes specifying the data elements of the entity. The ARM entities and definitions are specified below.

4.2.1 Input_output   EXPRESS-GMapping table

An Input_output is a type of Product. It is a specification for the input output associated with a model used for response to excitation analysis. It is executable in tools that enable the development of a time line that can be used for the discovery and recording of logical errors that would inhibit as-required system execution.

EXPRESS specification:

*)
ENTITY Input_output
  SUBTYPE OF (Product);
END_ENTITY;
(*

4.2.2 Input_output_version   EXPRESS-GMapping table

A Input_output_version is a type of Product_version that identifies a particular version for the input output associated with such a model.

NOTE    This entity is used to record different versions of input output. In this case, the word "version" implies "revision" - that is a particular release of input output for a function based behavior model.

NOTE    The inherited "of_product" attribute has been renamed for purposes of clarity.

EXPRESS specification:

*)
ENTITY Input_output_version
  SUBTYPE OF (Product_version);
  SELF\Product_version.of_product RENAMED version_of : Input_output;
END_ENTITY;
(*

Attribute definitions:

version_of: the Input_output for which the Input_output_version identifies a version.

4.2.3 Input_output_view_definition   EXPRESS-GMapping table

A Input_output_view_definition is a type of Product_view_definition that provides a view of an input output version relevant for one or more application domains. This view collects input output data together for specific engineering purposes.

Some behavior models in a Input_output_view_definition might impact on different disciplines. Multiple Input_output_view_definition objects may be used to present different model based views of a given aspect of behavior input output for each discipline.

EXPRESS specification:

*)
ENTITY Input_output_view_definition
  SUBTYPE OF (Product_view_definition);
  SELF\Product_view_definition.defined_version : Input_output_version;
END_ENTITY;
(*

Attribute definitions:

defined_version: the Input_output_view_definition that the Input_output_view_definition defines.

4.2.4 Input_output_view_definition_relationship   EXPRESS-GMapping table

A Input_output_view_definition_relationship is a type of View_definition_relationship. It is an association between two instances of Input_output_view_definition.

This association represents a relationship between the input output versions, indirectly identified by the instances of Input_output_view_definition, relevant in the definition contexts of the related instances of Input_output_view_definition.

EXPRESS specification:

*)
ENTITY Input_output_view_definition_relationship
  SUBTYPE OF (View_definition_relationship);
  SELF\View_definition_relationship.relating_view RENAMED parent : Input_output_view_definition;
  SELF\View_definition_relationship.related_view RENAMED child : Input_output_view_definition;
END_ENTITY;
(*

Attribute definitions:

parent: one of the instances of Input_output_view_definition

child: the other instance of Input_output_view_definition that is part of the relationship. If one element of the relationship is dependent upon the other, this attribute shall be the dependent one.



*)
END_SCHEMA;  -- Input_output_arm
(*


© ISO — All rights reserved