Different ways in which things can be related.

Things exist (citation needed).

Things are either entities (’objects’) or behaviors (’processes’). Things can relate to one another. Things can relate to one-another in infinitely many ways. However there are multiple takes on categorizing and enumerating the ways in which things can relate to one-another, particularly in the realm of MBSE. Here are some categories that have been used in SysML, OPM, and IDEF to bucket the way things can relate.

Note: OPM contains a graphical representation “OPD”, and a textual one “OPL”

Relationship Categories

Composition: A —composed of→ B

An object is made up of smaller objects. Or a a process is made up of smaller processes.

InValidityRelated Properties
SysML, OPM, IDEFObject-to-Object, Process-to-ProcessSource & Destination Multiplicity

Representation:

OPD/OPL

Untitled

SysML

Untitled

IDEF

Untitled

Exhibition: A —exhibits property→ B

An object has an attribute. A process has an attribute.

InValidityRelated Properties
SysML, OPMAny-to-AnyUnit

Representation:

OPD/OPL

Untitled

SysML

Untitled

No graphical notation, instead properties are included

Generalization: A —is a→ B

An thing is a more specific version of another thing.

InValidityRelated Properties
SysML, OPM, IDEFObject-to-Object, Process-to-Process

Representation:

OPD/OPL

Untitled

SysML

Untitled

IDEF

Untitled

Aggregation: A —is a group of→ B

Aggregation is a weaker form of Composition. Composition typically means that the child instance cannot be child to multiple parents via a composite relationship, but it can be a part of multiple parent class instances via an aggregation relationship.

An engine is only in 1 car. It is a composition.

A basketball player may play on several teams, so that relationship would be an aggregation.

I’ve also seen aggregation disambiguated from composition by saying that when the parent class insurance is destroyed, a composition-linked child would also be destroyed, whereas an aggregation-linked child would not be destroyed.

Instantiation: A —is an instance of→ B

An thing is an individual instance of a kind of thing.

InValidityRelated Properties
SysML, OPM, IDEFObject-to-Object, Process-to-Process

Representation:

OPD/OPL

Untitled

SysML

Untitled

No graphical link notation, instead instances are labeled with the Blocks they instantiate.

IDEF

Untitled

Agency: A —handles→ B

An agent of some kind executes the activity B.

| In | Validity | Related Properties | | --- | --- | | SysML, OPM | Object-to-Process | |

Representation:

OPD/OPL

Untitled

SysML

There isn’t just 1 way to denote this is SysML. Nor UML.

Yields: A —yields→ B

A process of some kind results in B

Triggers: A —triggers→ B

An event of some kind triggers a process.

In UML AND OPM. Also maybe SysML in Activity Diagrams?

Supports: A —supports→ B

An object or agent supports a process, but is not modified by it. Instruments in OPM. Mechanisms in IDEF.

Constrains: A —constrains→ B

A characteristic of a thing (or a requirement) constrains another characteristic of a thing (possibly the same thing, possibly different).


Source