{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# SysML v2 JupyterBook\n",
    "\n",
    "This Jupyter Notebook is an exploration of SysML v2 from the user perspective. It shows some SysML v2 basics, but mainly focuses on the special features compared to SysML v1 and how they can be used. For a detailed introduction to the textual syntax of SysML v2, I recommend the following PDF: [Introduction to the SysML v2 Language Textual Notation](https://github.com/Systems-Modeling/SysML-v2-Release/blob/master/doc/Intro%20to%20the%20SysML%20v2%20Language.pdf).\n",
    "\n",
    "**Please note: This is work in progress. You will see sketchy stuff. If you have any comments, contact me: [tim@mbse4u.com](mailto:tim@mbse4u.com).**\n",
    "\n",
    "## Table of Contents\n",
    "* [Modeling with SysML v2](#sysmlv2mod)\n",
    "    * [Introduction](#sysmlv2modintroduction)\n",
    "    * [Example and first steps](#sysmlv2modexample)\n",
    "    * [Parts and PartDefinitions](#sysmlv2modparts)\n",
    "    * [Putting the parts together](#sysmlv2modconnect)\n",
    "    * [Modeling Interfaces](#sysmlv2modinterfaces)\n",
    "    * [Modeling variants](#sysmlv2modvariants)\n",
    "    * [Modeling requirements](#sysmlv2modrequirements)\n",
    "    * [Mapping from SysML v1 to SysML v2](#sysmlv2modv1mapping)\n",
    "    * [Libraries for the eVehicle example](#sysmlv2modlibrary)\n",
    "* [SysML v2 MBSE Methodologies JupyterBook](#sysmlv2modmethodologies)\n",
    "    * [SYSMOD with SysML v2](#sysmlv2sysmod)\n",
    "        * [System Idea and System Objectives](#sysmlv2sysmodidea)\n",
    "        * [System Context](#sysmlv2sysmodcontext)\n",
    "    * [FAS with SysML v2](#sysmlv2fas)\n",
    "    * [VAMOS (Variant Modeling with SysML](#sysmlv2vamos)\n",
    "\n",
    "# Modeling with SysML v2<a name=\"sysmlv2mod\"></a>\n",
    "\n",
    "## Introduction<a name=\"sysmlv2modintroduction\"></a>\n",
    "\n",
    "This section provides \n",
    "\n",
    "* a brief introduction of the modeling with SysML v2,\n",
    "* with a special focus on what is different compared to SysML v1.\n",
    "\n",
    "It is not (yet) a complete SysML v2 tutorial. It uses the SysML v2 pilot implementation which is not intended as full modeling tool for industrial application. \n",
    "\n",
    "## Example and first steps<a name=\"sysmlv2modexample\"></a>\n",
    "\n",
    "The simple example system is the following electrical vehicle:\n",
    "\n",
    "![Electrical HSUV](lego-evehicle.jpg)\n",
    "\n",
    "Let's start with a logical architecture of the vehicle. A first major difference compared to SysML is that there is a textual syntax for SysML v2.\n",
    "The following cell shows the textual SysML v2 syntax of the logical architecture. The package statement defines the namespace of our architecture. The architecture itself is a simple hierarchical set of parts."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_LogicalArchitecture (5c3623ba-2bbf-43e1-b0e5-fbb7126d7d9b)\n"
      ]
     },
     "execution_count": 6,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_LogicalArchitecture {\n",
    "    part eVehicle {    \n",
    "        part body;\n",
    "        part battery;\n",
    "        part engine;\n",
    "        part frontAxis;\n",
    "        part rearAxis;\n",
    "        part frontWheel[2];\n",
    "        part rearWheel[2];\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Run the cell above to create the real model. The text above is only the textual syntax of SysML v2. The show command provides a deep insight into the model structure:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 85,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_LogicalArchitecture (76692bb7-ae0c-4f26-9ff0-45cb083e7474)\n",
       "  [Import] Package eVehicle_Definitions (13ab3067-79ba-4b36-b0ec-9a2455c43fb1)\n",
       "  [Membership] PartUsage eVehicle (4b1f0203-ed9b-46e1-93a7-5c1d18f634b4)\n",
       "    [Subsetting] PartUsage parts (210455cc-0a23-429e-9e49-95acce6c7873)\n",
       "    [FeatureMembership] PartUsage body (024078d4-0770-4463-aae2-8e719418e84b)\n",
       "      [Subsetting] PartUsage parts (210455cc-0a23-429e-9e49-95acce6c7873)\n",
       "    [FeatureMembership] PartUsage battery (424c8834-3081-41bc-9c7b-50d742c262a1)\n",
       "      [Subsetting] PartUsage parts (210455cc-0a23-429e-9e49-95acce6c7873)\n",
       "    [FeatureMembership] PartUsage engine (d532d210-ecd4-42da-ae40-68efe9b00196)\n",
       "      [Subsetting] PartUsage parts (210455cc-0a23-429e-9e49-95acce6c7873)\n",
       "    [FeatureMembership] PartUsage frontAxis (88292f1b-8e8f-4257-91be-c5cc1bcc7f26)\n",
       "      [Subsetting] PartUsage parts (210455cc-0a23-429e-9e49-95acce6c7873)\n",
       "    [FeatureMembership] PartUsage rearAxis (0f8be90b-1c95-45e1-9c7d-fd696f36dc55)\n",
       "      [Subsetting] PartUsage parts (210455cc-0a23-429e-9e49-95acce6c7873)\n",
       "    [FeatureMembership] PartUsage frontWheel (544633d7-17af-4945-a964-e689e999e4e0)\n",
       "      [FeatureTyping] PartDefinition Wheel (38f9638f-d02a-4839-a2e3-d75d1482c48d)\n",
       "      [Subsetting] PartUsage parts (210455cc-0a23-429e-9e49-95acce6c7873)\n",
       "      [FeatureMembership] MultiplicityRange (c2685a7f-07d6-42a4-b25b-f718a5b9bead)\n",
       "        [Redefinition] MultiplicityRange (9492ec5c-54a6-476e-89ee-d6797ce5f96c)\n",
       "        [FeatureMembership] LiteralInteger (daf6910f-4c14-4e74-b13b-6b99a89a6da1)\n",
       "          [ReturnParameterMembership] Feature $result (5081c478-3632-4bdf-b1d7-1b16248e6ef6)\n",
       "    [FeatureMembership] PartUsage rearWheel (28b858ea-f602-4d63-8614-696634c85db4)\n",
       "      [FeatureTyping] PartDefinition Wheel (38f9638f-d02a-4839-a2e3-d75d1482c48d)\n",
       "      [Subsetting] PartUsage parts (210455cc-0a23-429e-9e49-95acce6c7873)\n",
       "      [FeatureMembership] MultiplicityRange (5a450f99-45cd-42f3-8592-8eb15558df96)\n",
       "        [Redefinition] MultiplicityRange (9492ec5c-54a6-476e-89ee-d6797ce5f96c)\n",
       "        [FeatureMembership] LiteralInteger (2180d5b9-d6dd-4a48-a2db-b7963c83e8d9)\n",
       "          [ReturnParameterMembership] Feature $result (6edf8788-b982-4e0c-b827-d128bec28c3b)\n"
      ]
     },
     "execution_count": 85,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%show eVehicle_LogicalArchitecture"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "More convenient for the common model user, of course, is the graphical notation presented after the execution of the following cell:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"226px\" preserveAspectRatio=\"none\" style=\"width:825px;height:226px;\" version=\"1.1\" viewBox=\"0 0 825 226\" width=\"825px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,228,6,235,29.6094,803,29.6094,803,214,16,214,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"235\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"206\" x=\"20\" y=\"22.5332\">eVehicle_LogicalArchitecture</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"81\" x=\"338.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"361.5\" y=\"59.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"75\" x=\"341.5\" y=\"74.5508\">eVehicle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"339.5\" x2=\"418.5\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"60\" x=\"32\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"44.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"54\" x=\"35\" y=\"182.5508\">body: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33\" x2=\"91\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"70\" x=\"127\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"144.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"64\" x=\"130\" y=\"182.5508\">battery: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"128\" x2=\"196\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"72\" x=\"232\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"250.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"66\" x=\"235\" y=\"182.5508\">engine: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"233\" x2=\"303\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E6\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"80\" x=\"339\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"361.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"74\" x=\"342\" y=\"182.5508\">frontAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"340\" x2=\"418\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E7\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"78\" x=\"454\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"475.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"72\" x=\"457\" y=\"182.5508\">rearAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"455\" x2=\"531\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"93\" x=\"567.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"596.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"87\" x=\"570.5\" y=\"182.5508\">frontWheel: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"568.5\" x2=\"659.5\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E9\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"91\" x=\"695.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"723.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"85\" x=\"698.5\" y=\"182.5508\">rearWheel: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"696.5\" x2=\"785.5\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[209b3feb70ccb6233bfe1053d122c12c]\n",
       "reverse link E2 to E3--><path d=\"M325.374,81.029 C270.503,95.967 183.159,121.366 110,150 C104.149,152.2902 98.019,154.9865 92.1719,157.7116 \" fill=\"none\" id=\"E2&lt;-E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"338.258,77.552,331.423,75.2536,326.6725,80.6788,333.5075,82.9772,338.258,77.552\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[9618e71518536f8baf3342ff6fdab317]\n",
       "reverse link E2 to E4--><path d=\"M326.754,92.521 C286.675,112.099 232.441,138.5911 197.337,155.7387 \" fill=\"none\" id=\"E2&lt;-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"338.439,86.813,331.2922,85.8522,327.6565,92.0796,334.8033,93.0405,338.439,86.813\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[4e1a83fab71cdb913c109063314ae896]\n",
       "reverse link E2 to E5--><path d=\"M345.314,99.168 C328.265,115.45 307.949,134.8509 292.422,149.6784 \" fill=\"none\" id=\"E2&lt;-E5\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"354.915,90,347.8132,91.2506,346.2361,98.2872,353.338,97.0365,354.915,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[ce036f65110ae2351ccce5a81dc2e928]\n",
       "reverse link E2 to E6--><path d=\"M379,103.338 C379,118.681 379,136.098 379,149.6784 \" fill=\"none\" id=\"E2&lt;-E6\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"379,90,375,96,379,102,383,96,379,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[1c72b32696d764168c30777981ec3f66]\n",
       "reverse link E2 to E7--><path d=\"M413.596,99.168 C431.106,115.45 451.972,134.8509 467.918,149.6784 \" fill=\"none\" id=\"E2&lt;-E7\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"403.736,90,405.4059,97.0151,412.5236,98.1718,410.8537,91.1567,403.736,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[65f962d72b3a6bed1ede4f3c867e43a4]\n",
       "reverse link E2 to E8--><path d=\"M431.521,90.69 C472.265,109.069 528.214,134.3052 567.383,151.9729 \" fill=\"none\" id=\"E2&lt;-E8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"419.666,85.343,423.4907,91.4562,430.6047,90.277,426.78,84.1638,419.666,85.343\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"552.3956\" y=\"144.6955\">2</text><!--MD5=[4a91eb351f2fb42055d99b719d3dd418]\n",
       "reverse link E2 to E9--><path d=\"M432.868,80.578 C493.029,96.061 593.11,122.769 678,150 C683.654,151.8138 689.556,153.8178 695.383,155.8641 \" fill=\"none\" id=\"E2&lt;-E9\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"419.928,77.263,424.7472,82.6273,431.5524,80.2419,426.7332,74.8777,419.928,77.263\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"680.555\" y=\"149.2069\">2</text><!--MD5=[b4d2cbc63e6fe8a97201b609dfee7ddf]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_LogicalArchitecture\" as E1   {\r\n",
       "comp usage \"eVehicle: Part\" as E2  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"body: Part\" as E3  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Part\" as E4  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"engine: Part\" as E5  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontAxis: Part\" as E6  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearAxis: Part\" as E7  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontWheel: Part\" as E8  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearWheel: Part\" as E9  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "E2 *- - E3\r\n",
       "E2 *- - E4\r\n",
       "E2 *- - E5\r\n",
       "E2 *- - E6\r\n",
       "E2 *- - E7\r\n",
       "E2 *- - \"2\"E8\r\n",
       "E2 *- - \"2\"E9\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 2,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicle_LogicalArchitecture"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The diagram is only a view, and not an editor. A graphical editor is not provided in the pilot implementation. Future SysML v2 modeling tools will certainly offer graphical editors."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Changes to SysML v1\n",
    "\n",
    "SysML v2 is a complete new language with a different foundation than SysML v1. Therefore, there are plenty of differences. Here, I highlight only the changes that are most relevant to the modeler.\n",
    "\n",
    "If I had modeled the eHSUV in SysML v1, I would have had to first define blocks and then part properties whose types are the blocks.\n",
    "\n",
    "![eVehicle in SysML v1](evehicle-logical-architecture-sysmlv1.jpg)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The following SysML v2 model describes the mapping of SysML v1 concepts to SysML v2 concepts. The formal transformation specification from SysML v1 to v2 is, of course, much more detailed. The following mapping is human-readable, but somewhat less precise. The current implementation of SysML v2 does not provide the allocate relationship yet, which I would like to use for the mapping. Instead, I use the dependency relationship. The mapping only describes the model elements I used so far. A complete mapping of all elements covered in this book are described in chapter [Mapping from SysML v1 to SysML v2](#sysmlv2modv1mapping)."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 98,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package SysMLv1ToSysMLv2MappingLibrary (4a1e975c-3fad-4ec6-888e-4f41f75f09a9)\n",
       "Package SysMLv1ToSysMLv2Mapping (c82d16f0-73a9-48cc-94ff-89533503a62c)\n"
      ]
     },
     "execution_count": 98,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package SysMLv1ToSysMLv2MappingLibrary {\n",
    "    part def SysMLModelElement;\n",
    "}\n",
    "\n",
    "package SysMLv1ToSysMLv2Mapping {\n",
    "    \n",
    "    import SysMLv1ToSysMLv2MappingLibrary::*;\n",
    "    \n",
    "    part SysMLv1 {\n",
    "        part Block:SysMLModelElement;\n",
    "        part Dependency:SysMLModelElement;\n",
    "        part Package:SysMLModelElement;\n",
    "        part PartProperty:SysMLModelElement;\n",
    "    }\n",
    "    \n",
    "    part SysMLv2 {\n",
    "        part Dependency:SysMLModelElement;\n",
    "        part Package:SysMLModelElement;\n",
    "        part Part:SysMLModelElement;\n",
    "        part PartDefinition:SysMLModelElement;\n",
    "    }\n",
    "    \n",
    "    // Mapping SysML v1 to SysML v2\n",
    "    dependency from SysMLv1::Block to SysMLv2::PartDefinition;\n",
    "    dependency from SysMLv1::Dependency to SysMLv2::Dependency;\n",
    "    dependency from SysMLv1::Package to SysMLv2::Package;\n",
    "    dependency from SysMLv1::PartProperty to SysMLv2::Part;\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 68,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"340px\" preserveAspectRatio=\"none\" style=\"width:1110px;height:340px;\" version=\"1.1\" viewBox=\"0 0 1110 340\" width=\"1110px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,224,6,231,29.6094,1088,29.6094,1088,328,16,328,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"231\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"202\" x=\"20\" y=\"22.5332\">SysMLv1ToSysMLv2Mapping</text><!--MD5=[e4f7fae6ed58524ba242bb0b0d3be6b7]\n",
       "cluster E2--><rect fill=\"#F8F8F8\" height=\"102\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"1024\" x=\"40\" y=\"50\"/><rect fill=\"#FFFFFF\" height=\"68.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"1018\" x=\"43\" y=\"80.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"40\" x2=\"1064\" y1=\"77.6094\" y2=\"77.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"91\" x=\"506.5\" y=\"68.5332\">SysMLv1: Part</text><!--MD5=[168fadf3d0c3fd93dd5d6da1b1d7ab76]\n",
       "cluster E7--><rect fill=\"#F8F8F8\" height=\"102\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"1021\" x=\"40\" y=\"202\"/><rect fill=\"#FFFFFF\" height=\"68.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"1015\" x=\"43\" y=\"232.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"40\" x2=\"1061\" y1=\"229.6094\" y2=\"229.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"91\" x=\"505\" y=\"220.5332\">SysMLv2: Part</text><g id=\"E1.E2.E3\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"193\" x=\"56.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"56.5\" x2=\"249.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"173\" x=\"66.5\" y=\"105.5332\">Block: SysMLModelElement</text></g><g id=\"E1.E2.E4\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"239\" x=\"284.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"284.5\" x2=\"523.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"219\" x=\"294.5\" y=\"105.5332\">Dependency: SysMLModelElement</text></g><g id=\"E1.E2.E5\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"214\" x=\"559\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"559\" x2=\"773\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"194\" x=\"569\" y=\"105.5332\">Package: SysMLModelElement</text></g><g id=\"E1.E2.E6\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"239\" x=\"808.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"808.5\" x2=\"1047.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"219\" x=\"818.5\" y=\"105.5332\">PartProperty: SysMLModelElement</text></g><g id=\"E1.E7.E8\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"239\" x=\"335.5\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"335.5\" x2=\"574.5\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"219\" x=\"345.5\" y=\"257.5332\">Dependency: SysMLModelElement</text></g><g id=\"E1.E7.E9\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"214\" x=\"610\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"610\" x2=\"824\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"194\" x=\"620\" y=\"257.5332\">Package: SysMLModelElement</text></g><g id=\"E1.E7.E10\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"185\" x=\"859.5\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"859.5\" x2=\"1044.5\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"165\" x=\"869.5\" y=\"257.5332\">Part: SysMLModelElement</text></g><g id=\"E1.E7.E11\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"244\" x=\"56\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"56\" x2=\"300\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"224\" x=\"66\" y=\"257.5332\">PartDefinition: SysMLModelElement</text></g><!--MD5=[f5a5d64cf1fdea3f6e4287312c54c5b6]\n",
       "link E3 to E11--><path d=\"M157.017,136.1 C161.263,161.577 167.982,201.89 172.669,230.014 \" fill=\"none\" id=\"E3-&gt;E11\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"173.993,237.96,175.6365,229.5756,169.7182,230.5623,173.993,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"166\" y=\"182.4951\">«depend»</text><!--MD5=[353cdda3e1e05fc02373f055b6f604ae]\n",
       "link E4 to E8--><path d=\"M412.194,136.1 C420.893,161.686 434.68,202.237 444.248,230.375 \" fill=\"none\" id=\"E4-&gt;E8\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"446.826,237.96,447.0906,229.4201,441.4101,231.3518,446.826,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"428\" y=\"182.4951\">«depend»</text><!--MD5=[d1c41c8d5bc2693e99768999e620dfa1]\n",
       "link E5 to E9--><path d=\"M674.194,136.1 C682.893,161.686 696.68,202.237 706.248,230.375 \" fill=\"none\" id=\"E5-&gt;E9\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"708.826,237.96,709.0906,229.4201,703.4101,231.3518,708.826,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"690\" y=\"182.4951\">«depend»</text><!--MD5=[2f1affa2f9b946a245c11677681ac30c]\n",
       "link E6 to E10--><path d=\"M931.856,136.1 C935.932,161.577 942.382,201.89 946.882,230.014 \" fill=\"none\" id=\"E6-&gt;E10\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"948.154,237.96,949.8519,229.5864,943.9273,230.5347,948.154,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"940\" y=\"182.4951\">«depend»</text><!--MD5=[f416acf9248113dd87a709fe26d4982a]\n",
       "@startuml\r\n",
       "skinparam ranksep 8\r\n",
       "skinparam rectangle {\r\n",
       " backgroundColor<<block>> LightGreen\r\n",
       "}\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"SysMLv1ToSysMLv2Mapping\" as E1   {\r\n",
       "rec usage \"SysMLv1: Part\" as E2  {\r\n",
       "rec usage \"Block: SysMLModelElement\" as E3  {\r\n",
       "}\r\n",
       "rec usage \"Dependency: SysMLModelElement\" as E4  {\r\n",
       "}\r\n",
       "rec usage \"Package: SysMLModelElement\" as E5  {\r\n",
       "}\r\n",
       "rec usage \"PartProperty: SysMLModelElement\" as E6  {\r\n",
       "}\r\n",
       "}\r\n",
       "rec usage \"SysMLv2: Part\" as E7  {\r\n",
       "rec usage \"Dependency: SysMLModelElement\" as E8  {\r\n",
       "}\r\n",
       "rec usage \"Package: SysMLModelElement\" as E9  {\r\n",
       "}\r\n",
       "rec usage \"Part: SysMLModelElement\" as E10  {\r\n",
       "}\r\n",
       "rec usage \"PartDefinition: SysMLModelElement\" as E11  {\r\n",
       "}\r\n",
       "}\r\n",
       "E3 ..>> E11 : <<depend>>\r\n",
       "E4 ..>> E8 : <<depend>>\r\n",
       "E5 ..>> E9 : <<depend>>\r\n",
       "E6 ..>> E10 : <<depend>>\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 68,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz SysMLv1ToSysMLv2Mapping"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Parts and PartDefinitions<a name=\"sysmlv2modparts\"></a>\n",
    "\n",
    "In SysML v2, you can define parts without types. However, you could define types if you like. A type can be used to reuse definitions. I extend our example and add a property to the wheel to specify the size. The type of the attribute is Integer. I skip units for now. The textual syntax allows the keyword *attribute* or *value*. I prefer *value*."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 49,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_LogicalArchitecture (0a92252a-e270-4d19-aab7-b017bdfaf8a9)\n"
      ]
     },
     "execution_count": 49,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_LogicalArchitecture {\n",
    "    \n",
    "    import ScalarValues::Integer;\n",
    "    \n",
    "    part eVehicle {    \n",
    "        part body;\n",
    "        part battery;\n",
    "        part engine;\n",
    "        part frontAxis;\n",
    "        part rearAxis;\n",
    "        part frontWheel[2] {\n",
    "            value size : Integer;\n",
    "        }\n",
    "        part rearWheel[2] {\n",
    "            value size : Integer;\n",
    "        }\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Run the cell with the SysML v2 model, and visualize the model. If you also would like to see the model structure, execute the %show command."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"240px\" preserveAspectRatio=\"none\" style=\"width:825px;height:240px;\" version=\"1.1\" viewBox=\"0 0 825 240\" width=\"825px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,228,6,235,29.6094,803,29.6094,803,228,16,228,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"235\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"206\" x=\"20\" y=\"22.5332\">eVehicle_LogicalArchitecture</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"67\" x=\"586.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"587.5\" y=\"59.457\">«dataType»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"38\" x=\"601\" y=\"74.5508\">Integer</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"587.5\" x2=\"652.5\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"81\" x=\"338.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"361.5\" y=\"59.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"75\" x=\"341.5\" y=\"74.5508\">eVehicle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"339.5\" x2=\"418.5\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"60\" x=\"32\" y=\"157\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"44.5\" y=\"174.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"54\" x=\"35\" y=\"189.5508\">body: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33\" x2=\"91\" y1=\"197.1875\" y2=\"197.1875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"70\" x=\"127\" y=\"157\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"144.5\" y=\"174.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"64\" x=\"130\" y=\"189.5508\">battery: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"128\" x2=\"196\" y1=\"197.1875\" y2=\"197.1875\"/><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E6\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"72\" x=\"232\" y=\"157\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"250.5\" y=\"174.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"66\" x=\"235\" y=\"189.5508\">engine: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"233\" x2=\"303\" y1=\"197.1875\" y2=\"197.1875\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E7\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"80\" x=\"339\" y=\"157\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"361.5\" y=\"174.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"74\" x=\"342\" y=\"189.5508\">frontAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"340\" x2=\"418\" y1=\"197.1875\" y2=\"197.1875\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"78\" x=\"454\" y=\"157\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"475.5\" y=\"174.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"72\" x=\"457\" y=\"189.5508\">rearAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"455\" x2=\"531\" y1=\"197.1875\" y2=\"197.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E9\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"93\" x=\"567.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"596.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"87\" x=\"570.5\" y=\"182.5508\">frontWheel: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"568.5\" x2=\"659.5\" y1=\"190.1875\" y2=\"190.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"59\" x=\"573.5\" y=\"205.6064\">size: Integer</text><!--MD5=[96f4274e9e20536e775497830990834d]\n",
       "class E10--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E10\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"91\" x=\"695.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"723.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"85\" x=\"698.5\" y=\"182.5508\">rearWheel: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"696.5\" x2=\"785.5\" y1=\"190.1875\" y2=\"190.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"59\" x=\"701.5\" y=\"205.6064\">size: Integer</text><!--MD5=[4672eba38e49728da53d11aeb285b987]\n",
       "reverse link E3 to E4--><path d=\"M325.49,79.148 C270.105,92.716 181.802,117.162 110,150 C104.012,152.7384 97.871,156.0983 92.0666,159.5668 \" fill=\"none\" id=\"E3&lt;-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"338.15,76.095,331.3796,73.6127,326.4843,78.9076,333.2547,81.3899,338.15,76.095\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[191cde3d490a3f6d7bb551fe3ddca469]\n",
       "reverse link E3 to E5--><path d=\"M326.412,92.836 C294.08,108.913 251.915,130.225 215,150 C209.222,153.0955 203.133,156.4513 197.224,159.7596 \" fill=\"none\" id=\"E3&lt;-E5\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"338.291,86.945,331.1385,86.0274,327.5405,92.2767,334.693,93.1944,338.291,86.945\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[1026b4b93417a13aa8999a858998add2]\n",
       "reverse link E3 to E6--><path d=\"M347.008,99.569 C328.995,117.906 306.929,140.369 290.7,156.891 \" fill=\"none\" id=\"E3&lt;-E6\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"356.27,90.14,349.2119,91.6173,347.8609,98.7008,354.919,97.2234,356.27,90.14\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[85760999379eecfd2565a9fecdca67e4]\n",
       "reverse link E3 to E7--><path d=\"M379,103.167 C379,120.78 379,141.435 379,156.891 \" fill=\"none\" id=\"E3&lt;-E7\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"379,90.14,375,96.14,379,102.14,383,96.14,379,90.14\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[4cb75b73ec3682b8f7f8edc9cc86126a]\n",
       "reverse link E3 to E8--><path d=\"M411.601,99.315 C430.148,117.699 452.942,140.293 469.687,156.891 \" fill=\"none\" id=\"E3&lt;-E8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"402.345,90.14,403.79,97.2048,410.8671,98.5883,409.4222,91.5234,402.345,90.14\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[f7e0269b2e2fed3d07255bf4c5cf9d61]\n",
       "reverse link E3 to E9--><path d=\"M431.521,92.255 C472.265,111.847 528.214,138.75 567.383,157.5844 \" fill=\"none\" id=\"E3&lt;-E9\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"419.666,86.554,423.3402,92.7589,430.4809,91.7538,426.8067,85.5489,419.666,86.554\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"552.3956\" y=\"150.0983\">2</text><!--MD5=[622114938c97d4dd2a5a002a72a9cb82]\n",
       "reverse link E3 to E10--><path d=\"M432.876,78.969 C493.439,93.107 594.254,118.707 678,150 C683.674,152.1201 689.535,154.5565 695.293,157.1047 \" fill=\"none\" id=\"E3&lt;-E10\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"419.85,75.96,424.7952,81.2083,431.5418,78.6621,426.5966,73.4138,419.85,75.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"680.4506\" y=\"149.543\">2</text><!--MD5=[e98863524cf6f7525097ff8eeedf8307]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_LogicalArchitecture\" as E1   {\r\n",
       "comp def \"Integer\" as E2  <<(T,blue)dataType>> {\r\n",
       "}\r\n",
       "comp usage \"eVehicle: Part\" as E3  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"body: Part\" as E4  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Part\" as E5  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"engine: Part\" as E6  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontAxis: Part\" as E7  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearAxis: Part\" as E8  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontWheel: Part\" as E9  <<(T,blue)part>> {\r\n",
       "size: Integer\r\n",
       "}\r\n",
       "comp usage \"rearWheel: Part\" as E10  <<(T,blue)part>> {\r\n",
       "size: Integer\r\n",
       "}\r\n",
       "E3 *- - E4\r\n",
       "E3 *- - E5\r\n",
       "E3 *- - E6\r\n",
       "E3 *- - E7\r\n",
       "E3 *- - E8\r\n",
       "E3 *- - \"2\"E9\r\n",
       "E3 *- - \"2\"E10\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 14,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicle_LogicalArchitecture"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Although it is still very simple, the model already smells of reuse. The size attribute is currently defined twice. Now, we define a type respectively PartDefinition *Wheel* and specify that as the type of Parts. "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicleDefinitions (bf5b8d43-4f6c-47d1-8c41-b80b7978518a)\n",
       "Package eVehicle_LogicalArchitecture (85567e94-df2b-4967-b589-11e10e914c50)\n"
      ]
     },
     "execution_count": 1,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicleDefinitions {\n",
    "\n",
    "    import ScalarValues::Integer;   \n",
    "    \n",
    "    part def Wheel {\n",
    "        value size : Integer;\n",
    "    }\n",
    "}\n",
    "\n",
    "package eVehicle_LogicalArchitecture {\n",
    "\n",
    "    import eVehicleDefinitions::*;\n",
    "    \n",
    "    part eVehicle {    \n",
    "        part body;\n",
    "        part battery;\n",
    "        part engine;\n",
    "        part frontAxis;\n",
    "        part rearAxis;\n",
    "        part frontWheel : Wheel[2];\n",
    "        part rearWheel : Wheel[2];\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"132px\" preserveAspectRatio=\"none\" style=\"width:244px;height:132px;\" version=\"1.1\" viewBox=\"0 0 244 132\" width=\"244px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,167,6,174,29.6094,222,29.6094,222,120,16,120,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"174\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"145\" x=\"20\" y=\"22.5332\">eVehicle_Definitions</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"67\" x=\"138.5\" y=\"49\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"139.5\" y=\"66.457\">«dataType»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"38\" x=\"153\" y=\"81.5508\">Integer</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"139.5\" x2=\"204.5\" y1=\"89.1875\" y2=\"89.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E3\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"71\" x=\"32.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"40.5\" y=\"59.457\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"50.5\" y=\"74.5508\">Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33.5\" x2=\"102.5\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"59\" x=\"38.5\" y=\"97.6064\">size: Integer</text><!--MD5=[371b71c21fa9e3a2ef3b90ac3732c26e]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_Definitions\" as E1   {\r\n",
       "comp def \"Integer\" as E2  <<(T,blue)dataType>> {\r\n",
       "}\r\n",
       "comp def \"Wheel\" as E3  <<(T,blue)part def>> {\r\n",
       "size: Integer\r\n",
       "}\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 7,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicle_Definitions"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"226px\" preserveAspectRatio=\"none\" style=\"width:850px;height:226px;\" version=\"1.1\" viewBox=\"0 0 850 226\" width=\"850px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,228,6,235,29.6094,828,29.6094,828,214,16,214,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"235\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"206\" x=\"20\" y=\"22.5332\">eVehicle_LogicalArchitecture</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"81\" x=\"338.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"361.5\" y=\"59.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"75\" x=\"341.5\" y=\"74.5508\">eVehicle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"339.5\" x2=\"418.5\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"60\" x=\"32\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"44.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"54\" x=\"35\" y=\"182.5508\">body: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33\" x2=\"91\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"70\" x=\"127\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"144.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"64\" x=\"130\" y=\"182.5508\">battery: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"128\" x2=\"196\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"72\" x=\"232\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"250.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"66\" x=\"235\" y=\"182.5508\">engine: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"233\" x2=\"303\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E6\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"80\" x=\"339\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"361.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"74\" x=\"342\" y=\"182.5508\">frontAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"340\" x2=\"418\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E7\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"78\" x=\"454\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"475.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"72\" x=\"457\" y=\"182.5508\">rearAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"455\" x2=\"531\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"106\" x=\"567\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"602.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"100\" x=\"570\" y=\"182.5508\">frontWheel: Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"568\" x2=\"672\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E9\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"104\" x=\"708\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"742.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"98\" x=\"711\" y=\"182.5508\">rearWheel: Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"709\" x2=\"811\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[209b3feb70ccb6233bfe1053d122c12c]\n",
       "reverse link E2 to E3--><path d=\"M325.374,81.029 C270.503,95.967 183.159,121.366 110,150 C104.149,152.2902 98.019,154.9865 92.1719,157.7116 \" fill=\"none\" id=\"E2&lt;-E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"338.258,77.552,331.423,75.2536,326.6725,80.6788,333.5075,82.9772,338.258,77.552\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[9618e71518536f8baf3342ff6fdab317]\n",
       "reverse link E2 to E4--><path d=\"M326.754,92.521 C286.675,112.099 232.441,138.5911 197.337,155.7387 \" fill=\"none\" id=\"E2&lt;-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"338.439,86.813,331.2922,85.8522,327.6565,92.0796,334.8033,93.0405,338.439,86.813\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[4e1a83fab71cdb913c109063314ae896]\n",
       "reverse link E2 to E5--><path d=\"M345.314,99.168 C328.265,115.45 307.949,134.8509 292.422,149.6784 \" fill=\"none\" id=\"E2&lt;-E5\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"354.915,90,347.8132,91.2506,346.2361,98.2872,353.338,97.0365,354.915,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[ce036f65110ae2351ccce5a81dc2e928]\n",
       "reverse link E2 to E6--><path d=\"M379,103.338 C379,118.681 379,136.098 379,149.6784 \" fill=\"none\" id=\"E2&lt;-E6\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"379,90,375,96,379,102,383,96,379,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[1c72b32696d764168c30777981ec3f66]\n",
       "reverse link E2 to E7--><path d=\"M413.596,99.168 C431.106,115.45 451.972,134.8509 467.918,149.6784 \" fill=\"none\" id=\"E2&lt;-E7\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"403.736,90,405.4059,97.0151,412.5236,98.1718,410.8537,91.1567,403.736,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[65f962d72b3a6bed1ede4f3c867e43a4]\n",
       "reverse link E2 to E8--><path d=\"M431.59,90.131 C471.855,107.841 527.141,132.1573 567.406,149.8676 \" fill=\"none\" id=\"E2&lt;-E8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"419.61,84.862,423.4917,90.9392,430.5944,89.6935,426.7127,83.6163,419.61,84.862\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"552.1672\" y=\"142.6553\">2</text><!--MD5=[4a91eb351f2fb42055d99b719d3dd418]\n",
       "reverse link E2 to E9--><path d=\"M432.616,80.192 C494.999,95.787 600.954,123.043 691,150 C696.444,151.6296 702.105,153.397 707.741,155.2034 \" fill=\"none\" id=\"E2&lt;-E9\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"419.612,76.952,424.4671,82.2838,431.2561,79.8528,426.401,74.521,419.612,76.952\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"692.8999\" y=\"148.9418\">2</text><!--MD5=[557b53f8916cd2c926c742bd9cf3d957]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_LogicalArchitecture\" as E1   {\r\n",
       "comp usage \"eVehicle: Part\" as E2  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"body: Part\" as E3  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Part\" as E4  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"engine: Part\" as E5  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontAxis: Part\" as E6  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearAxis: Part\" as E7  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontWheel: Wheel\" as E8  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearWheel: Wheel\" as E9  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "E2 *- - E3\r\n",
       "E2 *- - E4\r\n",
       "E2 *- - E5\r\n",
       "E2 *- - E6\r\n",
       "E2 *- - E7\r\n",
       "E2 *- - \"2\"E8\r\n",
       "E2 *- - \"2\"E9\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 16,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicle_LogicalArchitecture"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The attribute size itself can also be defined and reused for several attribute usages. It is a common concept in SysML v2 to separate  definition of elements and usage of elements. SysML v1 also follows this concept, but not as consequent as SysML v2. For example, SysML v1 does not provide a separate attribute definition.\n",
    "\n",
    "The attribute definition is not mandatory and only partly useful in this example, because the size is only used at one place. But I added it anyhow as an example for attribute definitions. The keyword *attribute* can be omitted as for example in the definition of the *size* attribute. Alternatively, the keyword *value* can be used instead of *attribute*."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {
    "jupyter": {
     "source_hidden": true
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_Definitions (d70a8a62-b9ee-48e4-ad83-0ddfbf74cd92)\n",
       "Package eVehicle_LogicalArchitecture (dd4b3fad-565a-4770-9998-0c0a66335376)\n"
      ]
     },
     "execution_count": 16,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_Definitions {\n",
    "   \n",
    "    attribute def WheelSize {\n",
    "        import ScalarValues::Integer;\n",
    "        size : Integer;\n",
    "    }\n",
    "    \n",
    "    part def Wheel {\n",
    "        attribute sizeOfWheel : WheelSize;\n",
    "    }\n",
    "}\n",
    "\n",
    "package eVehicle_LogicalArchitecture {   \n",
    "    \n",
    "    import eVehicle_Definitions::*;\n",
    "    \n",
    "    part eVehicle {    \n",
    "        part body;\n",
    "        part battery;\n",
    "        part engine;\n",
    "        part frontAxis;\n",
    "        part rearAxis;\n",
    "        part frontWheel : Wheel[2];\n",
    "        part rearWheel : Wheel[2];\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"240px\" preserveAspectRatio=\"none\" style=\"width:276px;height:240px;\" version=\"1.1\" viewBox=\"0 0 276 240\" width=\"276px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,167,6,174,29.6094,254,29.6094,254,228,16,228,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"174\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"145\" x=\"20\" y=\"22.5332\">eVehicle_Definitions</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E2\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"81\" x=\"156.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"157.5\" y=\"59.457\">«attribute def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"58\" x=\"168\" y=\"74.5508\">WheelSize</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"157.5\" x2=\"236.5\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"59\" x=\"162.5\" y=\"97.6064\">size: Integer</text><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"67\" x=\"163.5\" y=\"164\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"164.5\" y=\"181.457\">«dataType»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"38\" x=\"178\" y=\"196.5508\">Integer</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"164.5\" x2=\"229.5\" y1=\"204.1875\" y2=\"204.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E4\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"89\" x=\"32.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"49.5\" y=\"59.457\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"59.5\" y=\"74.5508\">Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33.5\" x2=\"120.5\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"77\" x=\"38.5\" y=\"97.6064\">size: WheelSize</text><!--MD5=[209b3feb70ccb6233bfe1053d122c12c]\n",
       "reverse link E2 to E3--><path d=\"M197,119.53 C197,134.732 197,151.0349 197,163.8067 \" fill=\"none\" id=\"E2&lt;-E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"197\" cy=\"112.282\" fill=\"#FFFFFF\" rx=\"8\" ry=\"8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"197\" x2=\"197\" y1=\"120.282\" y2=\"104.282\"/><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"189\" x2=\"205\" y1=\"112.282\" y2=\"112.282\"/><!--MD5=[6c4c2c4f81c09816d5de7c9e310ac6e5]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_Definitions\" as E1   {\r\n",
       "comp def \"WheelSize\" as E2  <<(T,blue)attribute def>> {\r\n",
       "size: Integer\r\n",
       "}\r\n",
       "comp def \"Integer\" as E3  <<(T,blue)dataType>> {\r\n",
       "}\r\n",
       "comp def \"Wheel\" as E4  <<(T,blue)part def>> {\r\n",
       "size: WheelSize\r\n",
       "}\r\n",
       "E2 +- - E3\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 19,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicle_Definitions"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"226px\" preserveAspectRatio=\"none\" style=\"width:850px;height:226px;\" version=\"1.1\" viewBox=\"0 0 850 226\" width=\"850px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,228,6,235,29.6094,828,29.6094,828,214,16,214,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"235\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"206\" x=\"20\" y=\"22.5332\">eVehicle_LogicalArchitecture</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"81\" x=\"338.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"361.5\" y=\"59.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"75\" x=\"341.5\" y=\"74.5508\">eVehicle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"339.5\" x2=\"418.5\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"60\" x=\"32\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"44.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"54\" x=\"35\" y=\"182.5508\">body: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33\" x2=\"91\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"70\" x=\"127\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"144.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"64\" x=\"130\" y=\"182.5508\">battery: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"128\" x2=\"196\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"72\" x=\"232\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"250.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"66\" x=\"235\" y=\"182.5508\">engine: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"233\" x2=\"303\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E6\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"80\" x=\"339\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"361.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"74\" x=\"342\" y=\"182.5508\">frontAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"340\" x2=\"418\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E7\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"78\" x=\"454\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"475.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"72\" x=\"457\" y=\"182.5508\">rearAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"455\" x2=\"531\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"106\" x=\"567\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"602.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"100\" x=\"570\" y=\"182.5508\">frontWheel: Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"568\" x2=\"672\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E9\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"104\" x=\"708\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"742.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"98\" x=\"711\" y=\"182.5508\">rearWheel: Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"709\" x2=\"811\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[209b3feb70ccb6233bfe1053d122c12c]\n",
       "reverse link E2 to E3--><path d=\"M325.374,81.029 C270.503,95.967 183.159,121.366 110,150 C104.149,152.2902 98.019,154.9865 92.1719,157.7116 \" fill=\"none\" id=\"E2&lt;-E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"338.258,77.552,331.423,75.2536,326.6725,80.6788,333.5075,82.9772,338.258,77.552\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[9618e71518536f8baf3342ff6fdab317]\n",
       "reverse link E2 to E4--><path d=\"M326.754,92.521 C286.675,112.099 232.441,138.5911 197.337,155.7387 \" fill=\"none\" id=\"E2&lt;-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"338.439,86.813,331.2922,85.8522,327.6565,92.0796,334.8033,93.0405,338.439,86.813\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[4e1a83fab71cdb913c109063314ae896]\n",
       "reverse link E2 to E5--><path d=\"M345.314,99.168 C328.265,115.45 307.949,134.8509 292.422,149.6784 \" fill=\"none\" id=\"E2&lt;-E5\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"354.915,90,347.8132,91.2506,346.2361,98.2872,353.338,97.0365,354.915,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[ce036f65110ae2351ccce5a81dc2e928]\n",
       "reverse link E2 to E6--><path d=\"M379,103.338 C379,118.681 379,136.098 379,149.6784 \" fill=\"none\" id=\"E2&lt;-E6\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"379,90,375,96,379,102,383,96,379,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[1c72b32696d764168c30777981ec3f66]\n",
       "reverse link E2 to E7--><path d=\"M413.596,99.168 C431.106,115.45 451.972,134.8509 467.918,149.6784 \" fill=\"none\" id=\"E2&lt;-E7\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"403.736,90,405.4059,97.0151,412.5236,98.1718,410.8537,91.1567,403.736,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[65f962d72b3a6bed1ede4f3c867e43a4]\n",
       "reverse link E2 to E8--><path d=\"M431.59,90.131 C471.855,107.841 527.141,132.1573 567.406,149.8676 \" fill=\"none\" id=\"E2&lt;-E8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"419.61,84.862,423.4917,90.9392,430.5944,89.6935,426.7127,83.6163,419.61,84.862\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"552.1672\" y=\"142.6553\">2</text><!--MD5=[4a91eb351f2fb42055d99b719d3dd418]\n",
       "reverse link E2 to E9--><path d=\"M432.616,80.192 C494.999,95.787 600.954,123.043 691,150 C696.444,151.6296 702.105,153.397 707.741,155.2034 \" fill=\"none\" id=\"E2&lt;-E9\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"419.612,76.952,424.4671,82.2838,431.2561,79.8528,426.401,74.521,419.612,76.952\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"692.8999\" y=\"148.9418\">2</text><!--MD5=[557b53f8916cd2c926c742bd9cf3d957]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_LogicalArchitecture\" as E1   {\r\n",
       "comp usage \"eVehicle: Part\" as E2  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"body: Part\" as E3  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Part\" as E4  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"engine: Part\" as E5  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontAxis: Part\" as E6  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearAxis: Part\" as E7  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontWheel: Wheel\" as E8  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearWheel: Wheel\" as E9  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "E2 *- - E3\r\n",
       "E2 *- - E4\r\n",
       "E2 *- - E5\r\n",
       "E2 *- - E6\r\n",
       "E2 *- - E7\r\n",
       "E2 *- - \"2\"E8\r\n",
       "E2 *- - \"2\"E9\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 18,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicle_LogicalArchitecture"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Putting the parts together<a name=\"sysmlv2modconnect\"></a>\n",
    "\n",
    "By now the model only defines the breakdown structure of the vehicle. There is no definition yet of how the parts are connected. The next example model *eVehicle_LogicalArchitecture* connects the parts in a meaningful way.\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_LogicalArchitecture (d9e0e944-5b16-4067-9987-b819e369c4a7)\n"
      ]
     },
     "execution_count": 18,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_LogicalArchitecture {\n",
    "       \n",
    "    import eVehicleDefinitions::*;\n",
    "    \n",
    "    part eVehicle {    \n",
    "        part body;\n",
    "        part battery;\n",
    "        part engine;\n",
    "        part frontAxis;\n",
    "        part rearAxis;\n",
    "        part frontWheel : Wheel[2];\n",
    "        part rearWheel : Wheel[2];\n",
    "        \n",
    "        connect battery to engine;\n",
    "        connect engine to frontAxis;\n",
    "        connect frontAxis to frontWheel;\n",
    "        connect rearAxis to rearWheel;\n",
    "        connect body to battery;\n",
    "        connect body to engine;\n",
    "        connect body to frontAxis;\n",
    "        connect body to rearAxis;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"352px\" preserveAspectRatio=\"none\" style=\"width:364px;height:352px;\" version=\"1.1\" viewBox=\"0 0 364 352\" width=\"364px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><rect fill=\"#F8F8F8\" height=\"334\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"345\" x=\"7\" y=\"7\"/><rect fill=\"#FFFFFF\" height=\"300.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"339\" x=\"10\" y=\"37.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"7\" x2=\"352\" y1=\"34.6094\" y2=\"34.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"135.5\" y=\"25.5332\">eVehicle: Part</text><g id=\"E1.E2\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"85\" x=\"140.5\" y=\"275\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"140.5\" x2=\"225.5\" y1=\"302.6094\" y2=\"302.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"150.5\" y=\"294.5332\">body: Part</text></g><g id=\"E1.E3\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"98\" x=\"238\" y=\"217\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"238\" x2=\"336\" y1=\"244.6094\" y2=\"244.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"78\" x=\"248\" y=\"236.5332\">battery: Part</text></g><g id=\"E1.E4\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"97\" x=\"229.5\" y=\"159\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"229.5\" x2=\"326.5\" y1=\"186.6094\" y2=\"186.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"77\" x=\"239.5\" y=\"178.5332\">engine: Part</text></g><g id=\"E1.E5\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"108\" x=\"176\" y=\"101\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"176\" x2=\"284\" y1=\"128.6094\" y2=\"128.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"186\" y=\"120.5332\">frontAxis: Part</text></g><g id=\"E1.E6\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"105\" x=\"23.5\" y=\"217\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"23.5\" x2=\"128.5\" y1=\"244.6094\" y2=\"244.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"85\" x=\"33.5\" y=\"236.5332\">rearAxis: Part</text></g><g id=\"E1.E7\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"137\" x=\"161.5\" y=\"43\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"161.5\" x2=\"298.5\" y1=\"70.6094\" y2=\"70.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"117\" x=\"171.5\" y=\"62.5332\">frontWheel: Wheel</text></g><g id=\"E1.E8\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"134\" x=\"23\" y=\"159\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"23\" x2=\"157\" y1=\"186.6094\" y2=\"186.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"114\" x=\"33\" y=\"178.5332\">rearWheel: Wheel</text></g><!--MD5=[f0cdf4548168e5211fb3a02bf679d63a]\n",
       "link E4 to E3--><path d=\"M281.869,209.074 C282.288,211.683 282.715,214.338 283.134,216.946 \" fill=\"none\" id=\"E4-E3\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[1c62de2aa5b76f0fb657ff8443a1a700]\n",
       "link E5 to E4--><path d=\"M250.635,151.074 C252.871,153.683 255.147,156.338 257.383,158.946 \" fill=\"none\" id=\"E5-E4\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[4d1e63f6c5cc89ece832f1e02a2fb60c]\n",
       "link E7 to E5--><path d=\"M230,93.074 C230,95.683 230,98.338 230,100.946 \" fill=\"none\" id=\"E7-E5\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[c5e8897d989ce984f93528998a7150fe]\n",
       "link E8 to E6--><path d=\"M83.9815,209.074 C83.3293,211.683 82.6655,214.338 82.0134,216.946 \" fill=\"none\" id=\"E8-E6\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[05d275557350bfb9b23a4ef7222b4c39]\n",
       "link E3 to E2--><path d=\"M242.291,267.074 C236.786,270.0385 231.169,273.0628 225.695,276.0106 \" fill=\"none\" id=\"E3-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[185131fc0dcab0a4505a2ebe144e961b]\n",
       "link E4 to E2--><path d=\"M229.339,208.538 C225.973,211.138 222.808,213.957 220,217 C204.854,233.414 195.084,257.0765 189.41,274.7682 \" fill=\"none\" id=\"E4-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[15ebcb19ae302d9b601edb458606d402]\n",
       "link E5 to E2--><path d=\"M214.09,151.023 C203.512,168.503 190.576,193.187 185,217 C180.519,236.134 180.288,258.4674 181.027,274.9908 \" fill=\"none\" id=\"E5-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[2351f337d6de0f557b50152ba70847b5]\n",
       "link E6 to E2--><path d=\"M121.999,267.074 C128.116,270.2756 134.367,273.5471 140.423,276.7165 \" fill=\"none\" id=\"E6-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[df1f860b4f243f3ef5c23c4b4db4dcd8]\n",
       "@startuml\r\n",
       "skinparam ranksep 8\r\n",
       "skinparam rectangle {\r\n",
       " backgroundColor<<block>> LightGreen\r\n",
       "}\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "rec usage \"eVehicle: Part\" as E1  {\r\n",
       "rec usage \"body: Part\" as E2  {\r\n",
       "}\r\n",
       "rec usage \"battery: Part\" as E3  {\r\n",
       "}\r\n",
       "rec usage \"engine: Part\" as E4  {\r\n",
       "}\r\n",
       "rec usage \"frontAxis: Part\" as E5  {\r\n",
       "}\r\n",
       "rec usage \"rearAxis: Part\" as E6  {\r\n",
       "}\r\n",
       "rec usage \"frontWheel: Wheel\" as E7  {\r\n",
       "}\r\n",
       "rec usage \"rearWheel: Wheel\" as E8  {\r\n",
       "}\r\n",
       "}\r\n",
       "E4 -[thickness=3]- E3\r\n",
       "E5 -[thickness=3]- E4\r\n",
       "E7 -[thickness=3]- E5\r\n",
       "E8 -[thickness=3]- E6\r\n",
       "E3 -[thickness=3]- E2\r\n",
       "E4 -[thickness=3]- E2\r\n",
       "E5 -[thickness=3]- E2\r\n",
       "E6 -[thickness=3]- E2\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 23,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=interconnection eVehicle_LogicalArchitecture::eVehicle"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Modeling interfaces<a name=\"sysmlv2modinterfaces\"></a>\n",
    "\n",
    "The interaction points are defined by ports in SysML v2, similar to SysML v1. The following extended example defines the interaction points between the engine and the battery. The connection is changed to connect the ports instead of the parts."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_LogicalArchitecture (ff608f69-3f82-4b20-bf6f-e92cbc7dea68)\n"
      ]
     },
     "execution_count": 19,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_LogicalArchitecture {\n",
    "       \n",
    "    import eVehicleDefinitions::*;\n",
    "    \n",
    "    part eVehicle {    \n",
    "        part body;\n",
    "        part battery {\n",
    "            port powerOut;\n",
    "        }\n",
    "        part engine {\n",
    "            port powerIn;\n",
    "        }\n",
    "        part frontAxis;\n",
    "        part rearAxis;\n",
    "        part frontWheel : Wheel[2];\n",
    "        part rearWheel : Wheel[2];\n",
    "        \n",
    "        connect battery::powerOut to engine::powerIn;\n",
    "        connect engine to frontAxis;\n",
    "        connect frontAxis to frontWheel;\n",
    "        connect rearAxis to rearWheel;\n",
    "        connect body to battery;\n",
    "        connect body to engine;\n",
    "        connect body to frontAxis;\n",
    "        connect body to rearAxis;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 28,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"388px\" preserveAspectRatio=\"none\" style=\"width:554px;height:388px;\" version=\"1.1\" viewBox=\"0 0 554 388\" width=\"554px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><rect fill=\"#F8F8F8\" height=\"370\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"535\" x=\"7\" y=\"7\"/><rect fill=\"#FFFFFF\" height=\"336.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"529\" x=\"10\" y=\"37.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"7\" x2=\"542\" y1=\"34.6094\" y2=\"34.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"230.5\" y=\"25.5332\">eVehicle: Part</text><!--MD5=[d5e69f78d87373223dbae638b30a9c99]\n",
       "cluster E3--><rect fill=\"#F8F8F8\" height=\"110\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"118\" x=\"400\" y=\"185\"/><rect fill=\"#FFFFFF\" height=\"76.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"112\" x=\"403\" y=\"215.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"400\" x2=\"518\" y1=\"212.6094\" y2=\"212.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"78\" x=\"420\" y=\"204.5332\">battery: Part</text><!--MD5=[de5ec2e2e8f62f467e546659f5068c88]\n",
       "cluster E5--><rect fill=\"#F8F8F8\" height=\"93\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"117\" x=\"210\" y=\"126\"/><rect fill=\"#FFFFFF\" height=\"59.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"111\" x=\"213\" y=\"156.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"210\" x2=\"327\" y1=\"153.6094\" y2=\"153.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"77\" x=\"230\" y=\"145.5332\">engine: Part</text><g id=\"E1.E2\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"85\" x=\"181.5\" y=\"311\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"181.5\" x2=\"266.5\" y1=\"338.6094\" y2=\"338.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"191.5\" y=\"330.5332\">body: Part</text></g><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"95\" x=\"370.5\" y=\"163.9238\">powerOut: Port</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"412\" y=\"179\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"83\" x=\"267.5\" y=\"104.9238\">powerIn: Port</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"303\" y=\"120\"/><g id=\"E1.E7\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"108\" x=\"86\" y=\"101\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"86\" x2=\"194\" y1=\"128.6094\" y2=\"128.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"96\" y=\"120.5332\">frontAxis: Part</text></g><g id=\"E1.E8\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"105\" x=\"44.5\" y=\"236\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"44.5\" x2=\"149.5\" y1=\"263.6094\" y2=\"263.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"85\" x=\"54.5\" y=\"255.5332\">rearAxis: Part</text></g><g id=\"E1.E9\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"137\" x=\"71.5\" y=\"43\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"71.5\" x2=\"208.5\" y1=\"70.6094\" y2=\"70.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"117\" x=\"81.5\" y=\"62.5332\">frontWheel: Wheel</text></g><g id=\"E1.E10\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"134\" x=\"23\" y=\"160\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"23\" x2=\"157\" y1=\"187.6094\" y2=\"187.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"114\" x=\"33\" y=\"179.5332\">rearWheel: Wheel</text></g><!--MD5=[f667431f98296947986a1a7595a31603]\n",
       "link E6 to E4--><path d=\"M315.173,130.228 C334.358,140.261 392.803,170.823 411.895,180.808 \" fill=\"none\" id=\"E6-E4\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[4d1e63f6c5cc89ece832f1e02a2fb60c]\n",
       "link E7 to E5--><path d=\"M194.334,148.354 C196.918,149.269 199.483,150.155 202,151 C205.0675,152.0295 207.5963,152.754 209.8527,153.3342 C209.8879,153.3433 209.9231,153.3523 209.9582,153.3613 \" fill=\"none\" id=\"E7-E5\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[cf04703ca05eebef50f1cfe8b03e143b]\n",
       "link E9 to E7--><path d=\"M140,93.074 C140,95.683 140,98.338 140,100.946 \" fill=\"none\" id=\"E9-E7\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[211124029f8d90d89da20960a30e5017]\n",
       "link E10 to E8--><path d=\"M92.292,210.23 C93.074,218.492 93.947,227.722 94.727,235.968 \" fill=\"none\" id=\"E10-E8\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[05d275557350bfb9b23a4ef7222b4c39]\n",
       "link E3 to E2--><path d=\"M409.9718,295.077 C409.4709,295.411 408.9676,295.7417 408.462,296.0685 C404.4179,298.6831 400.2328,301.056 396,303 C354.597,322.0149 302.662,329.7331 266.751,332.8646 \" fill=\"none\" id=\"E3-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[15ebcb19ae302d9b601edb458606d402]\n",
       "link E5 to E2--><path d=\"M268.3162,219.1554 C268.2043,219.448 268.0919,219.7418 267.979,220.0368 C267.7533,220.6269 267.5257,221.2218 267.2964,221.8214 C266.8376,223.0205 266.3718,224.2381 265.8997,225.4723 C264.9554,227.9408 263.9856,230.4757 262.9963,233.0618 C261.0176,238.2341 258.9605,243.6115 256.8713,249.0729 C248.5143,270.9183 239.6435,294.1065 233.226,310.882 \" fill=\"none\" id=\"E5-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[583832df87f4419a098336a29a52fa00]\n",
       "link E7 to E2--><path d=\"M168.494,151.368 C170.526,153.812 172.4,156.368 174,159 C203.785,207.992 216.425,275.393 221.29,310.8884 \" fill=\"none\" id=\"E7-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[f1f3f9f2fc535e6147756cb86a7f2e32]\n",
       "link E8 to E2--><path d=\"M138.937,286.105 C152.809,294.079 168.239,302.9482 182.108,310.9201 \" fill=\"none\" id=\"E8-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[ab9aff8306ed253b82d91507f82f0a1b]\n",
       "@startuml\r\n",
       "skinparam ranksep 8\r\n",
       "skinparam rectangle {\r\n",
       " backgroundColor<<block>> LightGreen\r\n",
       "}\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "rec usage \"eVehicle: Part\" as E1  {\r\n",
       "rec usage \"body: Part\" as E2  {\r\n",
       "}\r\n",
       "rec usage \"battery: Part\" as E3  {\r\n",
       "portin \"powerOut: Port\" as E4  <<port>> \r\n",
       "}\r\n",
       "rec usage \"engine: Part\" as E5  {\r\n",
       "portin \"powerIn: Port\" as E6  <<port>> \r\n",
       "}\r\n",
       "rec usage \"frontAxis: Part\" as E7  {\r\n",
       "}\r\n",
       "rec usage \"rearAxis: Part\" as E8  {\r\n",
       "}\r\n",
       "rec usage \"frontWheel: Wheel\" as E9  {\r\n",
       "}\r\n",
       "rec usage \"rearWheel: Wheel\" as E10  {\r\n",
       "}\r\n",
       "}\r\n",
       "E6 -[thickness=3]- E4\r\n",
       "E7 -[thickness=3]- E5\r\n",
       "E9 -[thickness=3]- E7\r\n",
       "E10 -[thickness=3]- E8\r\n",
       "E3 -[thickness=3]- E2\r\n",
       "E5 -[thickness=3]- E2\r\n",
       "E7 -[thickness=3]- E2\r\n",
       "E8 -[thickness=3]- E2\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 28,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=interconnection eVehicle_LogicalArchitecture::eVehicle"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The ports *powerIn* and *powerOut* have no types respectively the SysML v2 library element *Port* as default type. The consistent usage/definition pattern applies here as well. The port is a usage. With a PortDef the interaction point can be defined. In this example it is a good candidate for a model library.\n",
    "\n",
    "The port only specifies the interaction point. The interface defines the connection between interaction points. The *PowerOutPort* is conjugated for the *consumerPort* port."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicleLibrary (51306574-6576-4a15-b56c-b00db80676de)\n"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicleLibrary {\n",
    "    \n",
    "    import ScalarValues::Integer;\n",
    "    \n",
    "    attribute def ElectricEnergy;\n",
    "    \n",
    "    port def PowerOutPort {\n",
    "        out energy : ElectricEnergy;\n",
    "    }\n",
    "    \n",
    "    interface def PowerInterface {\n",
    "        end supplierPort : PowerOutPort;\n",
    "        end consumerPort : ~PowerOutPort;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"299px\" preserveAspectRatio=\"none\" style=\"width:621px;height:299px;\" version=\"1.1\" viewBox=\"0 0 621 299\" width=\"621px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,131,6,138,29.6094,599,29.6094,599,287,16,287,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"138\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"109\" x=\"20\" y=\"22.5332\">eVehicleLibrary</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"67\" x=\"389.5\" y=\"223\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"390.5\" y=\"240.457\">«dataType»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"38\" x=\"404\" y=\"255.5508\">Integer</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"390.5\" x2=\"455.5\" y1=\"263.1875\" y2=\"263.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"84\" x=\"499\" y=\"78.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"501.5\" y=\"95.957\">«attribute def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"78\" x=\"502\" y=\"111.0508\">ElectricEnergy</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"500\" x2=\"582\" y1=\"118.6875\" y2=\"118.6875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"81\" x=\"382.5\" y=\"78.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"383.5\" y=\"95.957\">«attribute def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"47\" x=\"399.5\" y=\"111.0508\">Capacity</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"383.5\" x2=\"462.5\" y1=\"118.6875\" y2=\"118.6875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"121\" x=\"226.5\" y=\"71.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"259.5\" y=\"88.957\">«port def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"76\" x=\"249\" y=\"104.0508\">PowerOutPort</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"227.5\" x2=\"346.5\" y1=\"111.6875\" y2=\"111.6875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"109\" x=\"232.5\" y=\"127.1064\">energy: ElectricEnergy</text><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"121.3672\" id=\"E6\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"159\" x=\"32.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"71.5\" y=\"59.457\">«interface def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"82\" x=\"71\" y=\"74.5508\">PowerInterface</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33.5\" x2=\"190.5\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"147\" x=\"38.5\" y=\"115.4424\">consumerPort: ~PowerOutPort</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"92\" x=\"38.5\" y=\"129.2783\">:&gt;&gt;Interface::target</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"131\" x=\"38.5\" y=\"143.1143\">supplierPort: PowerOutPort</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"98\" x=\"38.5\" y=\"156.9502\">:&gt;&gt;Interface::source</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"33.5\" x2=\"99.5\" y1=\"97.1055\" y2=\"97.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"99.5\" y=\"101.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"124.5\" x2=\"190.5\" y1=\"97.1055\" y2=\"97.1055\"/><!--MD5=[185131fc0dcab0a4505a2ebe144e961b]\n",
       "link E4 to E2--><path d=\"M423,126.712 C423,147.207 423,177.629 423,202.62 \" fill=\"none\" id=\"E4-&gt;E2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"none\" points=\"430,202.798,423,222.7977,416,202.798,430,202.798\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[a60dc537520600984d24399e586b466c]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicleLibrary\" as E1   {\r\n",
       "comp def \"Integer\" as E2  <<(T,blue)dataType>> {\r\n",
       "}\r\n",
       "comp def \"ElectricEnergy\" as E3  <<(T,blue)attribute def>> {\r\n",
       "}\r\n",
       "comp def \"Capacity\" as E4  <<(T,blue)attribute def>> {\r\n",
       "}\r\n",
       "comp def \"PowerOutPort\" as E5  <<(T,blue)port def>> {\r\n",
       "energy: ElectricEnergy\r\n",
       "}\r\n",
       "comp def \"PowerInterface\" as E6  <<(T,blue)interface def>> {\r\n",
       "- -ports- -\r\n",
       "consumerPort: ~PowerOutPort\\n//:>>Interface::target// \r\n",
       "supplierPort: PowerOutPort\\n//:>>Interface::source// \r\n",
       "}\r\n",
       "E4 - -|> E2\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicleLibrary"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Next, the definitions of the port and the interface are applied to the model. **Do not forget to run the eVehicle_Definitions and eVehicleLibrary in section [Libraries for the eVehicle example](#sysmlv2modlibrary).**"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_LogicalArchitecture (9c26478f-36cf-409c-ba7d-05d3c264c6e5)\n"
      ]
     },
     "execution_count": 20,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_LogicalArchitecture {\n",
    "       \n",
    "    import eVehicleDefinitions::*;\n",
    "    import eVehicleLibrary::*;\n",
    "    \n",
    "    part eVehicle {    \n",
    "        part body;\n",
    "        part battery {\n",
    "            attribute capacity : BatteryCapacity;\n",
    "            port powerOut : PowerOutPort;\n",
    "        }\n",
    "        part engine {\n",
    "            port powerIn : ~PowerOutPort;\n",
    "        }\n",
    "        part frontAxis;\n",
    "        part rearAxis;\n",
    "        part frontWheel : Wheel[2];\n",
    "        part rearWheel : Wheel[2];\n",
    "        \n",
    "        interface : PowerInterface connect \n",
    "            supplierPort => battery::powerOut to \n",
    "            consumerPort => engine::powerIn;\n",
    "        connect engine to frontAxis;\n",
    "        connect frontAxis to frontWheel;\n",
    "        connect rearAxis to rearWheel;\n",
    "        connect body to battery;\n",
    "        connect body to engine;\n",
    "        connect body to frontAxis;\n",
    "        connect body to rearAxis;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 94,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"388px\" preserveAspectRatio=\"none\" style=\"width:554px;height:388px;\" version=\"1.1\" viewBox=\"0 0 554 388\" width=\"554px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><rect fill=\"#F8F8F8\" height=\"370\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"535\" x=\"7\" y=\"7\"/><rect fill=\"#FFFFFF\" height=\"336.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"529\" x=\"10\" y=\"37.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"7\" x2=\"542\" y1=\"34.6094\" y2=\"34.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"230.5\" y=\"25.5332\">eVehicle: Part</text><!--MD5=[d5e69f78d87373223dbae638b30a9c99]\n",
       "cluster E3--><rect fill=\"#F8F8F8\" height=\"110\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"118\" x=\"400\" y=\"185\"/><rect fill=\"#FFFFFF\" height=\"76.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"112\" x=\"403\" y=\"215.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"400\" x2=\"518\" y1=\"212.6094\" y2=\"212.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"78\" x=\"420\" y=\"204.5332\">battery: Part</text><!--MD5=[de5ec2e2e8f62f467e546659f5068c88]\n",
       "cluster E5--><rect fill=\"#F8F8F8\" height=\"93\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"117\" x=\"210\" y=\"126\"/><rect fill=\"#FFFFFF\" height=\"59.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"111\" x=\"213\" y=\"156.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"210\" x2=\"327\" y1=\"153.6094\" y2=\"153.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"77\" x=\"230\" y=\"145.5332\">engine: Part</text><g id=\"E1.E2\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"85\" x=\"181.5\" y=\"311\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"181.5\" x2=\"266.5\" y1=\"338.6094\" y2=\"338.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"191.5\" y=\"330.5332\">body: Part</text></g><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"157\" x=\"339.5\" y=\"163.9238\">powerOut: PowerOutPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"412\" y=\"179\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"153\" x=\"232.5\" y=\"104.9238\">powerIn: ~PowerOutPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"303\" y=\"120\"/><g id=\"E1.E7\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"108\" x=\"86\" y=\"101\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"86\" x2=\"194\" y1=\"128.6094\" y2=\"128.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"96\" y=\"120.5332\">frontAxis: Part</text></g><g id=\"E1.E8\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"105\" x=\"44.5\" y=\"236\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"44.5\" x2=\"149.5\" y1=\"263.6094\" y2=\"263.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"85\" x=\"54.5\" y=\"255.5332\">rearAxis: Part</text></g><g id=\"E1.E9\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"137\" x=\"71.5\" y=\"43\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"71.5\" x2=\"208.5\" y1=\"70.6094\" y2=\"70.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"117\" x=\"81.5\" y=\"62.5332\">frontWheel: Wheel</text></g><g id=\"E1.E10\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"134\" x=\"23\" y=\"160\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"23\" x2=\"157\" y1=\"187.6094\" y2=\"187.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"114\" x=\"33\" y=\"179.5332\">rearWheel: Wheel</text></g><!--MD5=[f667431f98296947986a1a7595a31603]\n",
       "link E6 to E4--><path d=\"M315.173,130.228 C334.358,140.261 392.803,170.823 411.895,180.808 \" fill=\"none\" id=\"E6-E4\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[4d1e63f6c5cc89ece832f1e02a2fb60c]\n",
       "link E7 to E5--><path d=\"M194.334,148.354 C196.918,149.269 199.483,150.155 202,151 C205.0675,152.0295 207.5963,152.754 209.8527,153.3342 C209.8879,153.3433 209.9231,153.3523 209.9582,153.3613 \" fill=\"none\" id=\"E7-E5\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[cf04703ca05eebef50f1cfe8b03e143b]\n",
       "link E9 to E7--><path d=\"M140,93.074 C140,95.683 140,98.338 140,100.946 \" fill=\"none\" id=\"E9-E7\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[211124029f8d90d89da20960a30e5017]\n",
       "link E10 to E8--><path d=\"M92.292,210.23 C93.074,218.492 93.947,227.722 94.727,235.968 \" fill=\"none\" id=\"E10-E8\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[05d275557350bfb9b23a4ef7222b4c39]\n",
       "link E3 to E2--><path d=\"M409.9718,295.077 C409.4709,295.411 408.9676,295.7417 408.462,296.0685 C404.4179,298.6831 400.2328,301.056 396,303 C354.597,322.0149 302.662,329.7331 266.751,332.8646 \" fill=\"none\" id=\"E3-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[15ebcb19ae302d9b601edb458606d402]\n",
       "link E5 to E2--><path d=\"M268.3162,219.1554 C268.2043,219.448 268.0919,219.7418 267.979,220.0368 C267.7533,220.6269 267.5257,221.2218 267.2964,221.8214 C266.8376,223.0205 266.3718,224.2381 265.8997,225.4723 C264.9554,227.9408 263.9856,230.4757 262.9963,233.0618 C261.0176,238.2341 258.9605,243.6115 256.8713,249.0729 C248.5143,270.9183 239.6435,294.1065 233.226,310.882 \" fill=\"none\" id=\"E5-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[583832df87f4419a098336a29a52fa00]\n",
       "link E7 to E2--><path d=\"M168.494,151.368 C170.526,153.812 172.4,156.368 174,159 C203.785,207.992 216.425,275.393 221.29,310.8884 \" fill=\"none\" id=\"E7-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[f1f3f9f2fc535e6147756cb86a7f2e32]\n",
       "link E8 to E2--><path d=\"M138.937,286.105 C152.809,294.079 168.239,302.9482 182.108,310.9201 \" fill=\"none\" id=\"E8-E2\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[06ea76498fc3d30330a0c1e379fef06d]\n",
       "@startuml\r\n",
       "skinparam ranksep 8\r\n",
       "skinparam rectangle {\r\n",
       " backgroundColor<<block>> LightGreen\r\n",
       "}\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "rec usage \"eVehicle: Part\" as E1  {\r\n",
       "rec usage \"body: Part\" as E2  {\r\n",
       "}\r\n",
       "rec usage \"battery: Part\" as E3  {\r\n",
       "portin \"powerOut: PowerOutPort\" as E4  <<port>> \r\n",
       "}\r\n",
       "rec usage \"engine: Part\" as E5  {\r\n",
       "portin \"powerIn: ~PowerOutPort\" as E6  <<port>> \r\n",
       "}\r\n",
       "rec usage \"frontAxis: Part\" as E7  {\r\n",
       "}\r\n",
       "rec usage \"rearAxis: Part\" as E8  {\r\n",
       "}\r\n",
       "rec usage \"frontWheel: Wheel\" as E9  {\r\n",
       "}\r\n",
       "rec usage \"rearWheel: Wheel\" as E10  {\r\n",
       "}\r\n",
       "}\r\n",
       "E6 -[thickness=3]- E4\r\n",
       "E7 -[thickness=3]- E5\r\n",
       "E9 -[thickness=3]- E7\r\n",
       "E10 -[thickness=3]- E8\r\n",
       "E3 -[thickness=3]- E2\r\n",
       "E5 -[thickness=3]- E2\r\n",
       "E7 -[thickness=3]- E2\r\n",
       "E8 -[thickness=3]- E2\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 94,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=interconnection eVehicle_LogicalArchitecture::eVehicle"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Modeling variants<a name=\"sysmlv2modvariants\"></a>\n",
    "\n",
    "SysML v2 provides model elements for variants. This is a new feature compared to SysML v2. Following the typical approach of SysML, these are only generic concepts, but they form the foundation for tools to provide functions for them and for language extensions to be defined.\n",
    "\n",
    "The electrical vehicle model is extended with different types of batteries and engines. First, we extend the *eVehicleDefinitions* and *eVehicleLibrary*, and define a part definition for the battery. The complete library can be found in section [Libraries for the eVehicle example](#sysmlv2modlibrary)."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicleLibrary (8756a65a-a48f-4b80-91a6-43a04906f4fb)\n",
       "Package eVehicleDefinitions (1dcfeb37-79d5-4fc7-8992-8c27890cd5a2)\n"
      ]
     },
     "execution_count": 1,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicleLibrary {\n",
    "    \n",
    "    import ScalarValues::Integer;\n",
    "    \n",
    "    attribute def ElectricEnergy;\n",
    "    attribute def BatteryCapacity :> ScalarValues::Integer;\n",
    "    \n",
    "    port def PowerOutPort {\n",
    "        out energy : ElectricEnergy;\n",
    "    }\n",
    "    \n",
    "    interface def PowerInterface {\n",
    "        end supplierPort : PowerOutPort;\n",
    "        end consumerPort : ~PowerOutPort;\n",
    "    }\n",
    "}\n",
    "\n",
    "package eVehicleDefinitions {\n",
    "\n",
    "    import eVehicleLibrary::*;   \n",
    "    \n",
    "    part def Wheel {\n",
    "        value size : Integer;\n",
    "    }\n",
    "    \n",
    "    part def Battery {\n",
    "        value capacity : BatteryCapacity;\n",
    "    }\n",
    "    \n",
    "    part def Engine;\n",
    "}"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The new part definition of the *Battery* is now used in the eVehicle architecture."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 68,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_LogicalArchitecture (018276f1-ac3b-4f10-8e86-ee4ca277ed3e)\n"
      ]
     },
     "execution_count": 68,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_LogicalArchitecture {\n",
    "    \n",
    "    import eVehicleDefinitions::*;\n",
    "    import eVehicleLibrary::*;\n",
    "    \n",
    "    part eVehicle {    \n",
    "        value maxSpeed :Speed = 142;\n",
    "        part body;\n",
    "        part battery : Battery {\n",
    "            value redefines capacity = 42;\n",
    "            port powerOut : PowerOutPort;\n",
    "        }\n",
    "        part engine : Engine {\n",
    "            port powerIn : ~PowerOutPort;\n",
    "        }\n",
    "        part frontAxis;\n",
    "        part rearAxis;\n",
    "        part frontWheel : Wheel[2];\n",
    "        part rearWheel : Wheel[2];\n",
    "        \n",
    "        interface : PowerInterface connect \n",
    "            supplierPort => battery::powerOut to \n",
    "            consumerPort => engine::powerIn;\n",
    "        connect engine to frontAxis;\n",
    "        connect frontAxis to frontWheel;\n",
    "        connect rearAxis to rearWheel;\n",
    "        connect body to battery;\n",
    "        connect body to engine;\n",
    "        connect body to frontAxis;\n",
    "        connect body to rearAxis;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 71,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"286px\" preserveAspectRatio=\"none\" style=\"width:1004px;height:286px;\" version=\"1.1\" viewBox=\"0 0 1004 286\" width=\"1004px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,228,6,235,29.6094,982,29.6094,982,274,16,274,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"235\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"206\" x=\"20\" y=\"22.5332\">eVehicle_LogicalArchitecture</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"81\" x=\"492.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"515.5\" y=\"59.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"75\" x=\"495.5\" y=\"74.5508\">eVehicle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"493.5\" x2=\"572.5\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"60\" x=\"32\" y=\"180\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"44.5\" y=\"197.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"54\" x=\"35\" y=\"212.5508\">body: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33\" x2=\"91\" y1=\"220.1875\" y2=\"220.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"107.5313\" id=\"E4\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"163\" x=\"127.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"191.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"169.5\" y=\"182.5508\">battery: Battery</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"128.5\" x2=\"289.5\" y1=\"190.1875\" y2=\"190.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"148\" x=\"133.5\" y=\"205.6064\">capacity: BatteryCapacity= 42;</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"96\" x=\"133.5\" y=\"219.4424\">:&gt;&gt;Battery::capacity</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"123\" x=\"133.5\" y=\"251.1143\">powerOut: PowerOutPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"128.5\" x2=\"196.5\" y1=\"232.7773\" y2=\"232.7773\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"196.5\" y=\"236.7783\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"221.5\" x2=\"289.5\" y1=\"232.7773\" y2=\"232.7773\"/><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E6\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"132\" x=\"326\" y=\"164\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"374.5\" y=\"181.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"83\" x=\"350.5\" y=\"196.5508\">engine: Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"327\" x2=\"457\" y1=\"204.1875\" y2=\"204.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"120\" x=\"332\" y=\"237.4424\">powerIn: ~PowerOutPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"327\" x2=\"379.5\" y1=\"219.1055\" y2=\"219.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"379.5\" y=\"223.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"404.5\" x2=\"457\" y1=\"219.1055\" y2=\"219.1055\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"80\" x=\"493\" y=\"180\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"515.5\" y=\"197.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"74\" x=\"496\" y=\"212.5508\">frontAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"494\" x2=\"572\" y1=\"220.1875\" y2=\"220.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E9\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"78\" x=\"608\" y=\"180\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"629.5\" y=\"197.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"72\" x=\"611\" y=\"212.5508\">rearAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"609\" x2=\"685\" y1=\"220.1875\" y2=\"220.1875\"/><!--MD5=[96f4274e9e20536e775497830990834d]\n",
       "class E10--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E10\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"106\" x=\"721\" y=\"180\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"756.5\" y=\"197.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"100\" x=\"724\" y=\"212.5508\">frontWheel: Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"722\" x2=\"826\" y1=\"220.1875\" y2=\"220.1875\"/><!--MD5=[1dd1bfd58a279cf63c5f349dbc8fc6a1]\n",
       "class E11--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E11\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"104\" x=\"862\" y=\"180\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"896.5\" y=\"197.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"98\" x=\"865\" y=\"212.5508\">rearWheel: Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"863\" x2=\"965\" y1=\"220.1875\" y2=\"220.1875\"/><!--MD5=[209b3feb70ccb6233bfe1053d122c12c]\n",
       "reverse link E2 to E3--><path d=\"M479.184,66.946 C395.03,69.093 229.552,82.45 110,150 C97.1383,157.267 85.8622,169.23 77.4766,179.954 \" fill=\"none\" id=\"E2&lt;-E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"492.217,66.688,486.1386,62.8081,480.2194,66.9267,486.2977,70.8065,492.217,66.688\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[9618e71518536f8baf3342ff6fdab317]\n",
       "reverse link E2 to E4--><path d=\"M479.959,84.43 C434.065,100.035 366.258,124.354 309,150 C302.993,152.691 296.845,155.585 290.697,158.583 \" fill=\"none\" id=\"E2&lt;-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"492.296,80.265,485.3319,78.3938,480.9261,84.1024,487.8902,85.9737,492.296,80.265\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[ce036f65110ae2351ccce5a81dc2e928]\n",
       "reverse link E2 to E6--><path d=\"M499.722,99.098 C479.642,118.465 453.915,143.281 432.638,163.803 \" fill=\"none\" id=\"E2&lt;-E6\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"509.081,90.071,501.9856,91.3575,500.4441,98.4019,507.5395,97.1154,509.081,90.071\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[65f962d72b3a6bed1ede4f3c867e43a4]\n",
       "reverse link E2 to E8--><path d=\"M533,103.095 C533,127.415 533,158.776 533,179.816 \" fill=\"none\" id=\"E2&lt;-E8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"533,90.071,529,96.071,533,102.071,537,96.071,533,90.071\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[4a91eb351f2fb42055d99b719d3dd418]\n",
       "reverse link E2 to E9--><path d=\"M560.728,100.079 C581.426,124.772 609.191,157.895 627.567,179.816 \" fill=\"none\" id=\"E2&lt;-E9\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"552.339,90.071,553.128,97.2388,560.0479,99.2674,559.2589,92.0995,552.339,90.071\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[711ca45a9d2d52e8f9099142e409bd9b]\n",
       "reverse link E2 to E10--><path d=\"M585.751,89.365 C620.29,104.786 665.914,126.651 704,150 C718.425,158.843 733.501,169.982 745.952,179.763 \" fill=\"none\" id=\"E2&lt;-E10\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"573.562,83.985,577.4356,90.0674,584.5399,88.8311,580.6663,82.7487,573.562,83.985\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"730.8678\" y=\"169.0184\">2</text><!--MD5=[4707ab6d7598e99e3d49e48452b527e3]\n",
       "reverse link E2 to E11--><path d=\"M586.657,74.661 C650.69,85.269 759.791,108.048 845,150 C860.856,157.806 876.631,169.548 889.087,179.997 \" fill=\"none\" id=\"E2&lt;-E11\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"573.702,72.58,578.9912,77.4815,585.5499,74.4843,580.2607,69.5828,573.702,72.58\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"874.8062\" y=\"169.3124\">2</text><!--MD5=[6cf9989208e08cc7c277c2b3d426a065]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_LogicalArchitecture\" as E1   {\r\n",
       "comp usage \"eVehicle: Part\" as E2  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"body: Part\" as E3  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Battery\" as E4  <<(T,blue)part>> {\r\n",
       "capacity: BatteryCapacity= 42; \\n//:>>Battery::capacity// \r\n",
       "- -ports- -\r\n",
       "powerOut: PowerOutPort\r\n",
       "}\r\n",
       "comp usage \"engine: Engine\" as E6  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "powerIn: ~PowerOutPort\r\n",
       "}\r\n",
       "comp usage \"frontAxis: Part\" as E8  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearAxis: Part\" as E9  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontWheel: Wheel\" as E10  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearWheel: Wheel\" as E11  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "E2 *- - E3\r\n",
       "E2 *- - E4\r\n",
       "E2 *- - E6\r\n",
       "E2 *- - E8\r\n",
       "E2 *- - E9\r\n",
       "E2 *- - \"2\"E10\r\n",
       "E2 *- - \"2\"E11\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 71,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz eVehicle_LogicalArchitecture"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Now, the model is prepared to add variability. We define two battery kinds with different capacities, and two engine kinds."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 53,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_VariantModel (676ce442-82a2-4473-ac7f-d50fe825fd71)\n"
      ]
     },
     "execution_count": 53,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_VariantModel {\n",
    "    \n",
    "    import eVehicle_LogicalArchitecture::*;\n",
    "    \n",
    "    \n",
    "    package eVehicle_Configurations {\n",
    "\n",
    "        import eVehicle_Variations::*;\n",
    "        \n",
    "        part eVehicleStandard :> eVehicleVariations {\n",
    "            part redefines engine :> standardEngine;\n",
    "            part redefines battery :> batteryLow;\n",
    "        }\n",
    "        part eVehiclePremium :> eVehicleVariations {\n",
    "            part redefines engine :> powerEngine;\n",
    "            part redefines battery :> batteryHigh;\n",
    "        }\n",
    "        part INVALIDeVehicle :> eVehicleVariations {\n",
    "            part redefines engine :> powerEngine;\n",
    "            part redefines battery :> batteryLow;\n",
    "        }\n",
    "    }\n",
    "    \n",
    "    package eVehicle_Variations {\n",
    "        \n",
    "        import eVehicle_Variants::*;\n",
    "        \n",
    "        abstract part eVehicleVariations :> eVehicle {\n",
    "        \n",
    "            variation part redefines battery : Battery {\n",
    "                variant part batterLow;\n",
    "                variant part batteryHigh;  \n",
    "            }\n",
    "            variation part redefines engine : Engine {\n",
    "                variant part standardEngine;\n",
    "                variant part powerEngine;\n",
    "            }\n",
    "        \n",
    "            abstract constraint { (battery == batteryLow & engine == standardEngine) ^ (battery == batteryHigh) }\n",
    "        }\n",
    "    }   \n",
    "    \n",
    "    package eVehicle_Variants {\n",
    "        \n",
    "        part batteryLow : Battery {\n",
    "            value redefines capacity = 40;\n",
    "        }\n",
    "        part batteryHigh : Battery {\n",
    "            value redefines capacity = 40;\n",
    "        }\n",
    "    \n",
    "        part powerEngine : Engine;\n",
    "        part standardEngine : Engine;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 91,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"316px\" preserveAspectRatio=\"none\" style=\"width:600px;height:316px;\" version=\"1.1\" viewBox=\"0 0 600 316\" width=\"600px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[43c9051892ef23e1a46a86907403d788]\n",
       "class E1--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E1\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"136\" x=\"226.5\" y=\"7\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"277\" y=\"24.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"130\" x=\"229.5\" y=\"39.5508\">eVehicleVariations: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"227.5\" x2=\"361.5\" y1=\"47.1875\" y2=\"47.1875\"/><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"63.2813\" id=\"E2\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"85\" x=\"158\" y=\"116\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"61\" x=\"170\" y=\"133.457\">«variation»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"183\" y=\"148.5508\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"161\" y=\"163.6445\">battery: Battery</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"159\" x2=\"242\" y1=\"171.2813\" y2=\"171.2813\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"103\" x=\"7\" y=\"257\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"41\" y=\"274.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"97\" x=\"10\" y=\"289.5508\">batterLow: Battery</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"8\" x2=\"109\" y1=\"297.1875\" y2=\"297.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"111\" x=\"145\" y=\"257\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"183\" y=\"274.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"105\" x=\"148\" y=\"289.5508\">batteryHigh: Battery</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"146\" x2=\"255\" y1=\"297.1875\" y2=\"297.1875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"63.2813\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"89\" x=\"316\" y=\"116\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"61\" x=\"330\" y=\"133.457\">«variation»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"343\" y=\"148.5508\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"83\" x=\"319\" y=\"163.6445\">engine: Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"317\" x2=\"404\" y1=\"171.2813\" y2=\"171.2813\"/><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E6\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"139\" x=\"291\" y=\"257\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"343\" y=\"274.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"133\" x=\"294\" y=\"289.5508\">standardEngine: Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"292\" x2=\"429\" y1=\"297.1875\" y2=\"297.1875\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E7\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"124\" x=\"465.5\" y=\"257\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"510\" y=\"274.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"118\" x=\"468.5\" y=\"289.5508\">powerEngine: Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"466.5\" x2=\"588.5\" y1=\"297.1875\" y2=\"297.1875\"/><!--MD5=[a523cb2a0b79ecf9065ad8783f96c320]\n",
       "reverse link E1 to E2--><path d=\"M266.875,65.649 C253.797,81.58 238.293,100.465 225.559,115.976 \" fill=\"none\" id=\"E1&lt;-E2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"275.478,55.171,268.5792,57.2701,267.8634,64.4456,274.7623,62.3465,275.478,55.171\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[2720a5a1f2c3fca2055b230370638851]\n",
       "link E2 to E3--><path d=\"M159.789,186.201 C137.997,206.3817 111.519,230.901 91.1018,249.8089 \" fill=\"none\" id=\"E2-E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"83.5956,256.7601,91.5037,253.5256,87.4269,249.1233,83.5956,256.7601\" style=\"stroke: #383838; stroke-width: 1.0;\"/><path d=\"M159.2022,175.2171 A9,9 0 0 0 170.6947 187.6278\" fill=\"none\" style=\"stroke: #383838; stroke-width: 1.5;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"51\" x=\"135.5\" y=\"223.4951\">«variant»</text><!--MD5=[4d03bb2d0377dc85ccfab60ff574652b]\n",
       "link E2 to E4--><path d=\"M200.5,189.474 C200.5,207.8149 200.5,229.1687 200.5,246.5293 \" fill=\"none\" id=\"E2-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"200.5,256.7601,203.5,248.7601,197.5,248.7601,200.5,256.7601\" style=\"stroke: #383838; stroke-width: 1.0;\"/><path d=\"M192.0428,182.4092 A9,9 0 0 0 208.9572 182.4092\" fill=\"none\" style=\"stroke: #383838; stroke-width: 1.5;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"51\" x=\"201.5\" y=\"223.4951\">«variant»</text><!--MD5=[33238bef88d6431a141d8bc8fb12bca0]\n",
       "reverse link E1 to E5--><path d=\"M314.428,66.572 C323.497,82.305 334.137,100.763 342.905,115.976 \" fill=\"none\" id=\"E1&lt;-E5\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"307.856,55.171,307.3872,62.3668,313.8492,65.5672,314.318,58.3714,307.856,55.171\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[9120cf2e5df3bff93db8f754bbbc09b4]\n",
       "link E5 to E6--><path d=\"M360.5,189.474 C360.5,207.8149 360.5,229.1687 360.5,246.5293 \" fill=\"none\" id=\"E5-E6\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"360.5,256.7601,363.5,248.7601,357.5,248.7601,360.5,256.7601\" style=\"stroke: #383838; stroke-width: 1.0;\"/><path d=\"M352.0428,182.4092 A9,9 0 0 0 368.9572 182.4092\" fill=\"none\" style=\"stroke: #383838; stroke-width: 1.5;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"51\" x=\"361.5\" y=\"223.4951\">«variant»</text><!--MD5=[3a9b96bfbf6b6ad89c494e81751bda47]\n",
       "link E5 to E7--><path d=\"M407.659,185.634 C433.827,206.2397 465.911,231.5035 490.295,250.7035 \" fill=\"none\" id=\"E5-E7\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"498.249,256.9669,493.8191,249.661,490.1075,254.3752,498.249,256.9669\" style=\"stroke: #383838; stroke-width: 1.0;\"/><path d=\"M396.8394,187.8796 A9,9 0 0 0 407.305 174.5916\" fill=\"none\" style=\"stroke: #383838; stroke-width: 1.5;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"51\" x=\"460.5\" y=\"223.4951\">«variant»</text><!--MD5=[374c726a35f49900e66ceedc2746b8bb]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "comp usage \"eVehicleVariations: Part\" as E1  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Battery\" as E2  <<variation>>\\n <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"batterLow: Battery\" as E3  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"batteryHigh: Battery\" as E4  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"engine: Engine\" as E5  <<variation>>\\n <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"standardEngine: Engine\" as E6  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"powerEngine: Engine\" as E7  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "E1 *- - E2\r\n",
       "E2 )- ->> E3 : <<variant>>\r\n",
       "E2 )- ->> E4 : <<variant>>\r\n",
       "E1 *- - E5\r\n",
       "E5 )- ->> E6 : <<variant>>\r\n",
       "E5 )- ->> E7 : <<variant>>\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 91,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicle_VariantModel::eVehicle_Variations::eVehicleVariations"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 84,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"226px\" preserveAspectRatio=\"none\" style=\"width:768px;height:226px;\" version=\"1.1\" viewBox=\"0 0 768 226\" width=\"768px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,195,6,202,29.6094,746,29.6094,746,214,16,214,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"202\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"173\" x=\"20\" y=\"22.5332\">eVehicle_Configurations</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"131\" x=\"548.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"596.5\" y=\"59.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"125\" x=\"551.5\" y=\"74.5508\">eVehicleStandard: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"549.5\" x2=\"678.5\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"89\" x=\"520.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"547.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"83\" x=\"523.5\" y=\"182.5508\">engine: Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"521.5\" x2=\"608.5\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"85\" x=\"644.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"669.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"647.5\" y=\"182.5508\">battery: Battery</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"645.5\" x2=\"728.5\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"132\" x=\"291\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"339.5\" y=\"59.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"126\" x=\"294\" y=\"74.5508\">eVehiclePremium: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"292\" x2=\"422\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E6\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"89\" x=\"276.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"303.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"83\" x=\"279.5\" y=\"182.5508\">engine: Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"277.5\" x2=\"364.5\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E7\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"85\" x=\"400.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"425.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"403.5\" y=\"182.5508\">battery: Battery</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"401.5\" x2=\"484.5\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"126\" x=\"99\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"144.5\" y=\"59.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"120\" x=\"102\" y=\"74.5508\">INVALIDeVehicle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"100\" x2=\"224\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E9\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"89\" x=\"32.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"59.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"83\" x=\"35.5\" y=\"182.5508\">engine: Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33.5\" x2=\"120.5\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[96f4274e9e20536e775497830990834d]\n",
       "class E10--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E10\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"85\" x=\"156.5\" y=\"150\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"181.5\" y=\"167.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"159.5\" y=\"182.5508\">battery: Battery</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"157.5\" x2=\"240.5\" y1=\"190.1875\" y2=\"190.1875\"/><!--MD5=[209b3feb70ccb6233bfe1053d122c12c]\n",
       "reverse link E2 to E3--><path d=\"M597.851,101.935 C590.604,117.611 582.251,135.6823 575.781,149.6784 \" fill=\"none\" id=\"E2&lt;-E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"603.368,90,597.2193,93.7674,598.332,100.8922,604.4807,97.1247,603.368,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[9618e71518536f8baf3342ff6fdab317]\n",
       "reverse link E2 to E4--><path d=\"M637.42,101.007 C648.361,116.894 661.109,135.4052 670.939,149.6784 \" fill=\"none\" id=\"E2&lt;-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"629.84,90,629.949,97.2103,636.6466,99.8828,636.5376,92.6726,629.84,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[85d356282659285ab4b2cfe2f634dd2b]\n",
       "reverse link E5 to E6--><path d=\"M344.977,102.402 C339.69,117.969 333.627,135.8209 328.921,149.6784 \" fill=\"none\" id=\"E5&lt;-E6\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"349.189,90,343.4721,94.3951,345.3302,101.3627,351.0472,96.9676,349.189,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[452b418e7f8a40397a49b8c0a78acc5b]\n",
       "reverse link E5 to E7--><path d=\"M384.216,100.545 C397.188,116.534 412.386,135.2666 424.079,149.6784 \" fill=\"none\" id=\"E5&lt;-E7\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"375.661,90,376.3346,97.1796,383.221,99.3191,382.5474,92.1396,375.661,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[22f5b4bae7e060dce8a1c8021efdb95b]\n",
       "reverse link E8 to E9--><path d=\"M135.101,100.545 C122.279,116.534 107.258,135.2666 95.7013,149.6784 \" fill=\"none\" id=\"E8&lt;-E9\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"143.556,90,136.6818,92.1783,136.0486,99.3615,142.9228,97.1832,143.556,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[82b7655495be5c02ec58611e6ac45fcc]\n",
       "reverse link E8 to E10--><path d=\"M174.357,102.402 C179.791,117.969 186.022,135.8209 190.859,149.6784 \" fill=\"none\" id=\"E8&lt;-E10\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"170.028,90,168.2287,96.983,173.9826,101.3297,175.7818,94.3466,170.028,90\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[d39a82f4ec9b2bf9819b5699a7edf2bc]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_Configurations\" as E1   {\r\n",
       "comp usage \"eVehicleStandard: Part\" as E2  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"engine: Engine\" as E3  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Battery\" as E4  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"eVehiclePremium: Part\" as E5  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"engine: Engine\" as E6  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Battery\" as E7  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"INVALIDeVehicle: Part\" as E8  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"engine: Engine\" as E9  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Battery\" as E10  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "E2 *- - E3\r\n",
       "E2 *- - E4\r\n",
       "E5 *- - E6\r\n",
       "E5 *- - E7\r\n",
       "E8 *- - E9\r\n",
       "E8 *- - E10\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 84,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicle_VariantModel::eVehicle_Configurations"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Avoiding the \"variability model explosion\"\n",
    "\n",
    "When modeling variability with SysML v1, the model can easily explode, i.e., a small variability can lead to the need to model many model elements. I change a bit the structure of the vehicle, for example, I define the wheels as parts of the axis. I also remove the part definition Wheel and define a some lug bolts of the wheels. Finally, we have a deep nested structure: eVehicle owns axis owns wheel owns lug bolt."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 30,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_LogicalArchitecture_ExplosionExample (6e11aba2-e881-4e07-a6c9-e206039f7ace)\n"
      ]
     },
     "execution_count": 30,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    " package eVehicle_LogicalArchitecture_ExplosionExample {\n",
    "    \n",
    "    import eVehicleDefinitions::*;\n",
    "    import eVehicleLibrary::*;\n",
    "    \n",
    "    part eVehicle {    \n",
    "        part engine : Engine;\n",
    "\n",
    "        part frontAxis {\n",
    "            part frontWheel[2] {\n",
    "                part lugBolt[6];\n",
    "                part boltCircle;\n",
    "                connect boltCircle to lugBolt;\n",
    "            }\n",
    "            part housing;            \n",
    "            connect housing to frontWheel;\n",
    "        }\n",
    "        \n",
    "        part rearAxis {\n",
    "            part rearWheel[2] {\n",
    "                part lugBolt[6];\n",
    "                part boltCircle;\n",
    "                connect boltCircle to lugBolt;\n",
    "            }\n",
    "            part housing;            \n",
    "            connect housing to rearWheel;\n",
    "        }       \n",
    "        connect engine to frontAxis;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 35,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"446px\" preserveAspectRatio=\"none\" style=\"width:1014px;height:446px;\" version=\"1.1\" viewBox=\"0 0 1014 446\" width=\"1014px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,228,6,235,29.6094,992,29.6094,992,434,16,434,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"235\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"206\" x=\"20\" y=\"22.5332\">eVehicle_LogicalArchitecture</text><!--MD5=[e4f7fae6ed58524ba242bb0b0d3be6b7]\n",
       "cluster E2--><rect fill=\"#F8F8F8\" height=\"360\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"928\" x=\"40\" y=\"50\"/><rect fill=\"#FFFFFF\" height=\"326.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"922\" x=\"43\" y=\"80.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"40\" x2=\"968\" y1=\"77.6094\" y2=\"77.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"460\" y=\"68.5332\">eVehicle: Part</text><!--MD5=[f6df4d0ebaf0b5dfb2ced0ae5af7c670]\n",
       "cluster E4--><rect fill=\"#F8F8F8\" height=\"276\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"370\" x=\"442\" y=\"102\"/><rect fill=\"#FFFFFF\" height=\"242.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"364\" x=\"445\" y=\"132.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"442\" x2=\"812\" y1=\"129.6094\" y2=\"129.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"583\" y=\"120.5332\">frontAxis: Part</text><!--MD5=[de5ec2e2e8f62f467e546659f5068c88]\n",
       "cluster E5--><rect fill=\"#F8F8F8\" height=\"176\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"170\" x=\"482\" y=\"162\"/><rect fill=\"#FFFFFF\" height=\"142.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"164\" x=\"485\" y=\"192.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"482\" x2=\"652\" y1=\"189.6094\" y2=\"189.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"103\" x=\"515.5\" y=\"180.5332\">frontWheel: Part</text><!--MD5=[7f149f147074ac12df2cb0a7728a5fb0]\n",
       "cluster E9--><rect fill=\"#F8F8F8\" height=\"260\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"346\" x=\"64\" y=\"110\"/><rect fill=\"#FFFFFF\" height=\"226.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"340\" x=\"67\" y=\"140.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"64\" x2=\"410\" y1=\"137.6094\" y2=\"137.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"85\" x=\"194.5\" y=\"128.5332\">rearAxis: Part</text><!--MD5=[a84b4591f868c1fa4a211716a82f2f0d]\n",
       "cluster E10--><rect fill=\"#F8F8F8\" height=\"176\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"170\" x=\"96\" y=\"162\"/><rect fill=\"#FFFFFF\" height=\"142.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"164\" x=\"99\" y=\"192.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"96\" x2=\"266\" y1=\"189.6094\" y2=\"189.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"100\" x=\"131\" y=\"180.5332\">rearWheel: Part</text><g id=\"E1.E2.E3\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"115\" x=\"836.5\" y=\"264\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"836.5\" x2=\"951.5\" y1=\"291.6094\" y2=\"291.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"95\" x=\"846.5\" y=\"283.5332\">engine: Engine</text></g><g id=\"E1.E2.E4.E5.E6\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"97\" x=\"511.5\" y=\"206\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"511.5\" x2=\"608.5\" y1=\"233.6094\" y2=\"233.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"77\" x=\"521.5\" y=\"225.5332\">lugBolt: Part</text></g><g id=\"E1.E2.E4.E5.E7\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"113\" x=\"506.5\" y=\"264\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"506.5\" x2=\"619.5\" y1=\"291.6094\" y2=\"291.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"93\" x=\"516.5\" y=\"283.5332\">boltCircle: Part</text></g><g id=\"E1.E2.E4.E8\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"104\" x=\"676\" y=\"264\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"676\" x2=\"780\" y1=\"291.6094\" y2=\"291.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"84\" x=\"686\" y=\"283.5332\">housing: Part</text></g><g id=\"E1.E2.E9.E10.E11\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"97\" x=\"125.5\" y=\"206\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"125.5\" x2=\"222.5\" y1=\"233.6094\" y2=\"233.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"77\" x=\"135.5\" y=\"225.5332\">lugBolt: Part</text></g><g id=\"E1.E2.E9.E10.E12\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"113\" x=\"120.5\" y=\"264\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"120.5\" x2=\"233.5\" y1=\"291.6094\" y2=\"291.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"93\" x=\"130.5\" y=\"283.5332\">boltCircle: Part</text></g><g id=\"E1.E2.E9.E13\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"104\" x=\"290\" y=\"264\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"290\" x2=\"394\" y1=\"291.6094\" y2=\"291.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"84\" x=\"300\" y=\"283.5332\">housing: Part</text></g><!--MD5=[02c70b7c851c11e3980e4e90450dc5dd]\n",
       "link E6 to E7--><path d=\"M561.29,256.074 C561.429,258.683 561.572,261.338 561.711,263.946 \" fill=\"none\" id=\"E6-E7\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[dfaffb906826c3e5aca635516100ff21]\n",
       "link E5 to E8--><path d=\"M652.0637,260.5036 C652.0955,260.5353 652.1275,260.567 652.1595,260.5986 C652.2234,260.6618 652.2875,260.7249 652.3517,260.7879 C652.8656,261.2916 653.3891,261.786 653.9215,262.2713 C656.0513,264.2125 658.3244,266.0081 660.7036,267.669 C665.462,270.9908 670.6445,273.7735 675.952,276.104 \" fill=\"none\" id=\"E5-E8\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[af958fd05df90222939acd9f9c9878a2]\n",
       "link E11 to E12--><path d=\"M175.29,256.074 C175.429,258.683 175.572,261.338 175.711,263.946 \" fill=\"none\" id=\"E11-E12\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[74b78f105e346754c1f4f010190a9055]\n",
       "link E10 to E13--><path d=\"M266.0862,237.3909 C266.1402,237.4269 266.1944,237.463 266.2488,237.4993 C266.3577,237.5719 266.4674,237.645 266.578,237.7188 C267.0205,238.0137 267.4769,238.3179 267.9464,238.631 C269.8247,239.8831 271.914,241.2759 274.1651,242.7766 C283.1698,248.7795 294.765,256.5095 305.813,263.875 \" fill=\"none\" id=\"E10-E13\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[f0cdf4548168e5211fb3a02bf679d63a]\n",
       "link E4 to E3--><path d=\"M812.1495,237.071 C812.2623,237.1412 812.376,237.212 812.4908,237.2834 C812.7202,237.4261 812.9535,237.5713 813.1905,237.7188 C813.6646,238.0137 814.1536,238.3179 814.6567,238.631 C816.6692,239.8831 818.9077,241.2759 821.3196,242.7766 C830.9675,248.7795 843.391,256.5095 855.228,263.875 \" fill=\"none\" id=\"E4-E3\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[d6494e90cd35930ba2b5e7b8325a01ee]\n",
       "@startuml\r\n",
       "skinparam ranksep 8\r\n",
       "skinparam rectangle {\r\n",
       " backgroundColor<<block>> LightGreen\r\n",
       "}\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_LogicalArchitecture\" as E1   {\r\n",
       "rec usage \"eVehicle: Part\" as E2  {\r\n",
       "rec usage \"engine: Engine\" as E3  {\r\n",
       "}\r\n",
       "rec usage \"frontAxis: Part\" as E4  {\r\n",
       "rec usage \"frontWheel: Part\" as E5  {\r\n",
       "rec usage \"lugBolt: Part\" as E6  {\r\n",
       "}\r\n",
       "rec usage \"boltCircle: Part\" as E7  {\r\n",
       "}\r\n",
       "}\r\n",
       "rec usage \"housing: Part\" as E8  {\r\n",
       "}\r\n",
       "}\r\n",
       "rec usage \"rearAxis: Part\" as E9  {\r\n",
       "rec usage \"rearWheel: Part\" as E10  {\r\n",
       "rec usage \"lugBolt: Part\" as E11  {\r\n",
       "}\r\n",
       "rec usage \"boltCircle: Part\" as E12  {\r\n",
       "}\r\n",
       "}\r\n",
       "rec usage \"housing: Part\" as E13  {\r\n",
       "}\r\n",
       "}\r\n",
       "}\r\n",
       "E6 -[thickness=3]- E7\r\n",
       "E5 -[thickness=3]- E8\r\n",
       "E11 -[thickness=3]- E12\r\n",
       "E10 -[thickness=3]- E13\r\n",
       "E4 -[thickness=3]- E3\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 35,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=interconnection eVehicle_LogicalArchitecture"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The structure *eVehicle/axis/wheel/lugBolt* can easily be modeled with SysML v1. It is slightly different in that in SysML v1 we have to use types, i.e. blocks, and cannot model parts directly.\n",
    "\n",
    "![SysML v1 eVehicle Model](sysmlv1-variability-example-core.jpg)\n",
    "\n",
    "Now, if we introduce variants of lug bolts, this variance ripples up through the entire structure:\n",
    "\n",
    "![SysML v1 eVehicle Model - Variability explosion](sysmlv1-variability-example-explosion.jpg)\n",
    "\n",
    "In SysML v2 it looks like this:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 31,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicleVariants_ExplosionExample (17bc5747-f80e-4aa2-ae99-0b3ed8af6e25)\n",
       "Package eVehicle_LogicalArchitecture_ExplosionExample (f334f542-ef0d-4c12-bf94-6775c86799d5)\n"
      ]
     },
     "execution_count": 31,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicleVariants_ExplosionExample {\n",
    "    part lugBolt42;\n",
    "    part lugBolt23;\n",
    "}\n",
    "\n",
    "package eVehicle_LogicalArchitecture_ExplosionExample {\n",
    "    \n",
    "    import eVehicleDefinitions::*;\n",
    "    import eVehicleLibrary::*;\n",
    "    import eVehicleVariants_ExplosionExample::*;\n",
    "        \n",
    "    part eVehicle {    \n",
    "        part engine : Engine;\n",
    "\n",
    "        part frontAxis {\n",
    "            part frontWheel[2] {\n",
    "                /*-----------------------------\n",
    "                 * Definition of the variation\n",
    "                 * ----------------------------*/\n",
    "                variation part lugBolt[6] {\n",
    "                    variant part lugBolt23;\n",
    "                    variant part lugBolt42;  \n",
    "                }\n",
    "                part boltCircle;\n",
    "                connect boltCircle to lugBolt;\n",
    "            }\n",
    "            part housing;            \n",
    "            connect housing to frontWheel;\n",
    "        }\n",
    "        \n",
    "        part rearAxis {\n",
    "            part rearWheel[2] {\n",
    "                part lugBolt[6];\n",
    "                part boltCircle;\n",
    "                connect boltCircle to lugBolt;\n",
    "            }\n",
    "            part housing;    \n",
    "            connect housing to rearWheel;\n",
    "        }        \n",
    "        connect engine to frontAxis;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 41,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"609px\" preserveAspectRatio=\"none\" style=\"width:590px;height:609px;\" version=\"1.1\" viewBox=\"0 0 590 609\" width=\"590px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,228,6,235,29.6094,568,29.6094,568,597,16,597,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"235\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"206\" x=\"20\" y=\"22.5332\">eVehicle_LogicalArchitecture</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"81\" x=\"358.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"381.5\" y=\"59.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"75\" x=\"361.5\" y=\"74.5508\">eVehicle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"359.5\" x2=\"438.5\" y1=\"82.1875\" y2=\"82.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"89\" x=\"234.5\" y=\"162.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"261.5\" y=\"179.957\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"83\" x=\"237.5\" y=\"195.0508\">engine: Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"235.5\" x2=\"322.5\" y1=\"202.6875\" y2=\"202.6875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"80\" x=\"359\" y=\"162.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"381.5\" y=\"179.957\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"74\" x=\"362\" y=\"195.0508\">frontAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"360\" x2=\"438\" y1=\"202.6875\" y2=\"202.6875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"93\" x=\"95.5\" y=\"283\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"124.5\" y=\"300.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"87\" x=\"98.5\" y=\"315.5508\">frontWheel: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"96.5\" x2=\"187.5\" y1=\"323.1875\" y2=\"323.1875\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"63.2813\" id=\"E7\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"72\" x=\"59\" y=\"392\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"61\" x=\"64.5\" y=\"409.457\">«variation»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"77.5\" y=\"424.5508\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"66\" x=\"62\" y=\"439.6445\">lugBolt: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"60\" x2=\"130\" y1=\"447.2813\" y2=\"447.2813\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"86\" x=\"35\" y=\"533\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"60.5\" y=\"550.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"80\" x=\"38\" y=\"565.5508\">lugBolt23: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"36\" x2=\"120\" y1=\"573.1875\" y2=\"573.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E9\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"86\" x=\"156\" y=\"533\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"181.5\" y=\"550.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"80\" x=\"159\" y=\"565.5508\">lugBolt42: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"157\" x2=\"241\" y1=\"573.1875\" y2=\"573.1875\"/><!--MD5=[96f4274e9e20536e775497830990834d]\n",
       "class E10--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E10\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"86\" x=\"166\" y=\"399.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"191.5\" y=\"416.957\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"80\" x=\"169\" y=\"432.0508\">boltCircle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"167\" x2=\"251\" y1=\"439.6875\" y2=\"439.6875\"/><!--MD5=[1dd1bfd58a279cf63c5f349dbc8fc6a1]\n",
       "class E11--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E11\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"79\" x=\"232.5\" y=\"283\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"254.5\" y=\"300.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"73\" x=\"235.5\" y=\"315.5508\">housing: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"233.5\" x2=\"310.5\" y1=\"323.1875\" y2=\"323.1875\"/><!--MD5=[49a0ec8f00dab7302a31f22d0f0fe584]\n",
       "class E12--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E12\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"78\" x=\"474\" y=\"162.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"495.5\" y=\"179.957\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"72\" x=\"477\" y=\"195.0508\">rearAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"475\" x2=\"551\" y1=\"202.6875\" y2=\"202.6875\"/><!--MD5=[ee3c913d1a06f366521f9ef512b67efe]\n",
       "class E13--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E13\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"91\" x=\"346.5\" y=\"283\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"374.5\" y=\"300.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"85\" x=\"349.5\" y=\"315.5508\">rearWheel: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"347.5\" x2=\"436.5\" y1=\"323.1875\" y2=\"323.1875\"/><!--MD5=[bee11217b2f71d958a27249dc326068c]\n",
       "class E14--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E14\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"72\" x=\"309\" y=\"399.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"327.5\" y=\"416.957\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"66\" x=\"312\" y=\"432.0508\">lugBolt: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"310\" x2=\"380\" y1=\"439.6875\" y2=\"439.6875\"/><!--MD5=[0c48fb7552dae8cbbef69381101a84c8]\n",
       "class E15--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E15\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"86\" x=\"416\" y=\"399.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"441.5\" y=\"416.957\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"80\" x=\"419\" y=\"432.0508\">boltCircle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"417\" x2=\"501\" y1=\"439.6875\" y2=\"439.6875\"/><!--MD5=[35f0587eaee8d5bb9a02e25b63afc23b]\n",
       "class E16--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E16\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"79\" x=\"472.5\" y=\"283\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"494.5\" y=\"300.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"73\" x=\"475.5\" y=\"315.5508\">housing: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"473.5\" x2=\"550.5\" y1=\"323.1875\" y2=\"323.1875\"/><path d=\"M32.5,151 L32.5,222.2305 A0,0 0 0 0 32.5,222.2305 L119.59,222.2305 L136.911,282.808 L127.59,222.2305 L199.5,222.2305 A0,0 0 0 0 199.5,222.2305 L199.5,161 L189.5,151 L32.5,151 A0,0 0 0 0 32.5,151 \" fill=\"#ECECEC\" style=\"stroke: #383838; stroke-width: 1.0;\"/><path d=\"M189.5,151 L189.5,161 L199.5,161 L189.5,151 \" fill=\"#ECECEC\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"140\" x=\"38.5\" y=\"185.8467\">Definition of the variation</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"33.5\" x2=\"106\" y1=\"164.1758\" y2=\"164.1758\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" text-decoration=\"line-through\" textLength=\"4\" x=\"106\" y=\"168.9951\">-</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" text-decoration=\"line-through\" textLength=\"4\" x=\"110\" y=\"168.9951\">-</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" text-decoration=\"line-through\" textLength=\"4\" x=\"114\" y=\"168.9951\">-</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" text-decoration=\"line-through\" textLength=\"4\" x=\"118\" y=\"168.9951\">-</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" text-decoration=\"line-through\" textLength=\"4\" x=\"122\" y=\"168.9951\">-</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"126\" x2=\"198.5\" y1=\"164.1758\" y2=\"164.1758\"/><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"33.5\" x2=\"100\" y1=\"200.8789\" y2=\"200.8789\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" text-decoration=\"line-through\" textLength=\"4\" x=\"100\" y=\"205.6982\">-</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" text-decoration=\"line-through\" textLength=\"4\" x=\"104\" y=\"205.6982\">-</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" text-decoration=\"line-through\" textLength=\"4\" x=\"108\" y=\"205.6982\">-</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" text-decoration=\"line-through\" textLength=\"4\" x=\"112\" y=\"205.6982\">-</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"16\" x=\"116\" y=\"205.6982\">----</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"132\" x2=\"198.5\" y1=\"200.8789\" y2=\"200.8789\"/><!--MD5=[209b3feb70ccb6233bfe1053d122c12c]\n",
       "reverse link E2 to E3--><path d=\"M366.131,99.458 C345.925,119.412 320.518,144.501 302.363,162.429 \" fill=\"none\" id=\"E2&lt;-E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"375.578,90.129,368.4982,91.4987,367.0395,98.5607,374.1193,97.191,375.578,90.129\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[9618e71518536f8baf3342ff6fdab317]\n",
       "reverse link E2 to E4--><path d=\"M399,103.327 C399,122.576 399,145.642 399,162.429 \" fill=\"none\" id=\"E2&lt;-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"399,90.129,395,96.129,399,102.129,403,96.129,399,90.129\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[62aa6af11e70f752912c1cb0466f24f7]\n",
       "reverse link E4 to E5--><path d=\"M350.507,216.999 C347.315,218.737 344.127,220.419 341,222 C290.129,247.714 229.512,272.506 188.656,288.405 \" fill=\"none\" id=\"E4&lt;-E5\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"361.982,210.538,354.7913,209.9956,351.525,216.4245,358.7157,216.9669,361.982,210.538\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"196.6496\" y=\"281.6746\">2</text><!--MD5=[452b418e7f8a40397a49b8c0a78acc5b]\n",
       "reverse link E5 to E7--><path d=\"M127.428,343.5 C121.054,359.027 113.652,377.062 107.53,391.976 \" fill=\"none\" id=\"E5&lt;-E7\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"132.489,331.171,126.51,335.2023,127.9315,342.2719,133.9106,338.2406,132.489,331.171\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"102.3924\" y=\"381.3265\">6</text><!--MD5=[79bc8f324ef4d02c541433f2e6e513c3]\n",
       "link E7 to E8--><path d=\"M89.703,465.474 C87.3319,483.815 84.5713,505.169 82.327,522.5293 \" fill=\"none\" id=\"E7-E8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"81.0044,532.7601,85.0054,525.2108,79.0549,524.4415,81.0044,532.7601\" style=\"stroke: #383838; stroke-width: 1.0;\"/><path d=\"M82.2323,457.3001 A9,9 0 0 0 99.0074 459.4675\" fill=\"none\" style=\"stroke: #383838; stroke-width: 1.5;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"51\" x=\"89\" y=\"499.4951\">«variant»</text><!--MD5=[1c0b9414cc86e0744215edee6abd8926]\n",
       "link E7 to E9--><path d=\"M130.507,462.954 C136.815,470.156 143.213,477.713 149,485 C158.979,497.567 169.303,511.957 177.961,524.4823 \" fill=\"none\" id=\"E7-E9\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"183.663,532.8104,181.6179,524.5148,176.6675,527.9049,183.663,532.8104\" style=\"stroke: #383838; stroke-width: 1.0;\"/><path d=\"M119.4433,463.221 A9,9 0 0 0 132.102 452.0024\" fill=\"none\" style=\"stroke: #383838; stroke-width: 1.5;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"51\" x=\"162\" y=\"499.4951\">«variant»</text><!--MD5=[567a9522dca498f6b73d7bae1a0f7884]\n",
       "reverse link E5 to E10--><path d=\"M162.254,342.613 C173.007,360.99 185.931,383.076 195.462,399.364 \" fill=\"none\" id=\"E5&lt;-E10\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"155.558,331.171,155.136,338.3697,161.6187,341.528,162.0407,334.3293,155.558,331.171\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[593b807a8aafaab39af1c25ada4edf41]\n",
       "reverse link E4 to E11--><path d=\"M364.505,219.687 C343.073,239.684 316.027,264.919 296.726,282.929 \" fill=\"none\" id=\"E4&lt;-E11\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"374.212,210.629,367.0962,211.7973,365.4378,218.8151,372.5536,217.6468,374.212,210.629\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[dafcd127694730d9a25b1f8a88fad525]\n",
       "reverse link E2 to E12--><path d=\"M430.488,99.731 C449.641,119.64 473.636,144.582 490.805,162.429 \" fill=\"none\" id=\"E2&lt;-E12\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"421.251,90.129,422.5281,97.2261,429.5705,98.7769,428.2934,91.6798,421.251,90.129\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[062ed86c389d1a88f61c6380d0491e17]\n",
       "reverse link E12 to E13--><path d=\"M479.857,219.958 C459.482,239.912 433.864,265.001 415.558,282.929 \" fill=\"none\" id=\"E12&lt;-E13\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"489.383,210.629,482.2976,211.9695,480.8098,219.0255,487.8952,217.685,489.383,210.629\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"413.6979\" y=\"272.2269\">2</text><!--MD5=[01db00f33b28669d6d9febea71002831]\n",
       "reverse link E13 to E14--><path d=\"M377.468,343.403 C369.99,361.62 361.087,383.309 354.497,399.364 \" fill=\"none\" id=\"E13&lt;-E14\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"382.489,331.171,376.51,335.2023,377.9315,342.2719,383.9106,338.2406,382.489,331.171\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"349.0337\" y=\"388.6453\">6</text><!--MD5=[e9a5e828c71fd2209a11a152f562d491]\n",
       "reverse link E13 to E15--><path d=\"M412.254,342.613 C423.007,360.99 435.931,383.076 445.462,399.364 \" fill=\"none\" id=\"E13&lt;-E15\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"405.558,331.171,405.136,338.3697,411.6187,341.528,412.0407,334.3293,405.558,331.171\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[ea0a17f77a0d9feb217b2accde2f1dbb]\n",
       "reverse link E12 to E16--><path d=\"M512.693,223.827 C512.531,243.076 512.336,266.142 512.195,282.929 \" fill=\"none\" id=\"E12&lt;-E16\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"512.805,210.629,508.7544,216.5949,512.7035,222.6286,516.7541,216.6626,512.805,210.629\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[61cf73461be3510a96e69d8a94690628]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicle_LogicalArchitecture\" as E1   {\r\n",
       "comp usage \"eVehicle: Part\" as E2  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"engine: Engine\" as E3  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontAxis: Part\" as E4  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontWheel: Part\" as E5  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"lugBolt: Part\" as E7  <<variation>>\\n <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"lugBolt23: Part\" as E8  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"lugBolt42: Part\" as E9  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"boltCircle: Part\" as E10  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"housing: Part\" as E11  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearAxis: Part\" as E12  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearWheel: Part\" as E13  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"lugBolt: Part\" as E14  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"boltCircle: Part\" as E15  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"housing: Part\" as E16  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "note as E6\r\n",
       "- - - - - - - - - - - - - - - - - - - - - - - - - - - - -\r\n",
       "Definition of the variation\r\n",
       "- - - - - - - - - - - - - - - - - - - - - - - - - - - -\r\n",
       "end note \r\n",
       "E2 *- - E3\r\n",
       "E2 *- - E4\r\n",
       "E4 *- - \"2\"E5\r\n",
       "E6 .. E5\r\n",
       "E5 *- - \"6\"E7\r\n",
       "E7 )- ->> E8 : <<variant>>\r\n",
       "E7 )- ->> E9 : <<variant>>\r\n",
       "E5 *- - E10\r\n",
       "E4 *- - E11\r\n",
       "E2 *- - E12\r\n",
       "E12 *- - \"2\"E13\r\n",
       "E13 *- - \"6\"E14\r\n",
       "E13 *- - E15\r\n",
       "E12 *- - E16\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 41,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree eVehicle_LogicalArchitecture"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "A concrete variant configuration of the eVehicle with lug bolts *42* can be simply created by specialization:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 32,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_Edition42 (32530ac1-177d-4b73-a122-921ed3bf232c)\n"
      ]
     },
     "execution_count": 32,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_Edition42 {\n",
    "    \n",
    "    import eVehicle_LogicalArchitecture_ExplosionExample::*;\n",
    "           \n",
    "    part eVehicle42 :> eVehicle {\n",
    "       part redefines lugBolt42 :> frontAxis::frontWheel::lugBolt;\n",
    "    }\n",
    "}\n",
    "    "
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Modeling requirements<a name=\"sysmlv2modrequirements\"></a>\n",
    "\n",
    "A requirement definition is a special kind of a constraint definition including parameters and required constraints. \n",
    "\n",
    "**Do not forget to run the eVehicle_Definitions and eVehicleLibrary in section [Libraries for the eVehicle example](#sysmlv2modlibrary).**"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicleRequirementDefinitions (8be10a06-3d86-4205-9079-d9ddd7d04e4e)\n"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicleRequirementDefinitions {\n",
    "    \n",
    "    import eVehicleDefinitions::*;\n",
    "    \n",
    "    requirement def BatteryCapacityReqDef {\n",
    "        doc /* The actual battery capacity shall be greater than or equal\n",
    "             * to the required capacity. */\n",
    "\n",
    "            attribute capacityActual : BatteryCapacity;\n",
    "            attribute capacityRequired : BatteryCapacity;\n",
    "        \n",
    "            require constraint{ capacityActual <= capacityRequired }\n",
    "    }\n",
    "    \n",
    "    requirement def MaxSpeedReqDef {\n",
    "        doc /* The maximum speed of the vehicle shall be \n",
    "             * not greater than the required maximum speed. */\n",
    "            \n",
    "            attribute maxSpeedVehicle : Speed;\n",
    "            attribute maxSpeedRequired : Speed;\n",
    "        \n",
    "            require constraint{ maxSpeedVehicle <= maxSpeedRequired }\n",
    "    }\n",
    "    \n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"227px\" preserveAspectRatio=\"none\" style=\"width:706px;height:227px;\" version=\"1.1\" viewBox=\"0 0 706 227\" width=\"706px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,250,6,257,29.6094,684,29.6094,684,215,16,215,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"257\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"228\" x=\"20\" y=\"22.5332\">eVehicleRequirementDefinitions</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"157.0391\" id=\"E2\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"299\" x=\"368.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"101\" x=\"467.5\" y=\"59.457\">«requirement def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"126\" x=\"455\" y=\"74.5508\">BatteryCapacityReqDef</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"369.5\" x2=\"666.5\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"284\" x=\"374.5\" y=\"97.6064\">The actual battery capacity shall be greater than or equalto</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"105\" x=\"374.5\" y=\"111.4424\">the required capacity.</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"369.5\" x2=\"666.5\" y1=\"117.8594\" y2=\"117.8594\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"155\" x=\"374.5\" y=\"133.2783\">capacityActual: BatteryCapacity</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"167\" x=\"374.5\" y=\"147.1143\">capacityRequired: BatteryCapacity</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"41\" x=\"374.5\" y=\"178.7861\">require</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"182\" x=\"418.5\" y=\"178.7861\">: ConstraintCheck { capacityActual &lt;=</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"91\" x=\"374.5\" y=\"192.6221\">capacityRequired }</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"369.5\" x2=\"491\" y1=\"160.4492\" y2=\"160.4492\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"54\" x=\"491\" y=\"164.4502\">constraints</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"545\" x2=\"666.5\" y1=\"160.4492\" y2=\"160.4492\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"157.0391\" id=\"E4\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"301\" x=\"32.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"101\" x=\"132.5\" y=\"59.457\">«requirement def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"99\" x=\"133.5\" y=\"74.5508\">MaxSpeedReqDef</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33.5\" x2=\"332.5\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"286\" x=\"38.5\" y=\"97.6064\">The maximum speed of the vehicle shall be not greater than</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"141\" x=\"38.5\" y=\"111.4424\">the required maximum speed.</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"33.5\" x2=\"332.5\" y1=\"117.8594\" y2=\"117.8594\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"131\" x=\"38.5\" y=\"133.2783\">maxSpeedRequired: Speed</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"124\" x=\"38.5\" y=\"147.1143\">maxSpeedVehicle: Speed</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"41\" x=\"38.5\" y=\"178.7861\">require</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"197\" x=\"82.5\" y=\"178.7861\">: ConstraintCheck { maxSpeedVehicle &lt;=</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"101\" x=\"38.5\" y=\"192.6221\">maxSpeedRequired }</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"33.5\" x2=\"156\" y1=\"160.4492\" y2=\"160.4492\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"54\" x=\"156\" y=\"164.4502\">constraints</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"210\" x2=\"332.5\" y1=\"160.4492\" y2=\"160.4492\"/><!--MD5=[2c2f44b3abc9335ffd3023340d6b8d70]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicleRequirementDefinitions\" as E1   {\r\n",
       "comp def \"BatteryCapacityReqDef\" as E2  <<(T,blue)requirement def>> {\r\n",
       "The actual battery capacity shall be greater than or equalto the required capacity.\r\n",
       "- -\r\n",
       "capacityActual: BatteryCapacity\r\n",
       "capacityRequired: BatteryCapacity\r\n",
       "- -constraints- -\r\n",
       "<b>require</b> : ConstraintCheck { capacityActual <= capacityRequired }\r\n",
       "}\r\n",
       "comp def \"MaxSpeedReqDef\" as E4  <<(T,blue)requirement def>> {\r\n",
       "The maximum speed of the vehicle shall be not greater than the required maximum speed.\r\n",
       "- -\r\n",
       "maxSpeedRequired: Speed\r\n",
       "maxSpeedVehicle: Speed\r\n",
       "- -constraints- -\r\n",
       "<b>require</b> : ConstraintCheck { maxSpeedVehicle <= maxSpeedRequired }\r\n",
       "}\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 12,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz eVehicleRequirementDefinitions"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The definition of a requirement provides a reusable structure. Next, the requirement definition *BatteryCapacityRequirementDef* is used to specify a concrete requirement for the *eVehicle*. The requirement *REQ.B.1* redefines the requirement attribute *capacityRequired* with a concrete value.\n",
    "\n",
    "It is possible to define requirement groups to manage a large set of requirements by defining that a requirement requires other requirements.\n",
    "\n",
    "**Do not forget to run the eVehicle_VariantModel above before you run this model.**"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 40,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"247px\" preserveAspectRatio=\"none\" style=\"width:952px;height:247px;\" version=\"1.1\" viewBox=\"0 0 952 247\" width=\"952px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[43c9051892ef23e1a46a86907403d788]\n",
       "class E1--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E1\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"130\" x=\"443\" y=\"7\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"490.5\" y=\"24.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"75\" x=\"470.5\" y=\"39.5508\">eVehicle: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"444\" x2=\"572\" y1=\"47.1875\" y2=\"47.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"118\" x=\"449\" y=\"62.6064\">maxSpeed: Speed= 142;</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"60\" x=\"7\" y=\"159\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"19.5\" y=\"176.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"54\" x=\"10\" y=\"191.5508\">body: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"8\" x2=\"66\" y1=\"199.1875\" y2=\"199.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"107.5313\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"163\" x=\"102.5\" y=\"129\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"166.5\" y=\"146.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"144.5\" y=\"161.5508\">battery: Battery</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"103.5\" x2=\"264.5\" y1=\"169.1875\" y2=\"169.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"148\" x=\"108.5\" y=\"184.6064\">capacity: BatteryCapacity= 42;</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"96\" x=\"108.5\" y=\"198.4424\">:&gt;&gt;Battery::capacity</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"123\" x=\"108.5\" y=\"230.1143\">powerOut: PowerOutPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"103.5\" x2=\"171.5\" y1=\"211.7773\" y2=\"211.7773\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"171.5\" y=\"215.7783\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"196.5\" x2=\"264.5\" y1=\"211.7773\" y2=\"211.7773\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"132\" x=\"301\" y=\"143\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"349.5\" y=\"160.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"83\" x=\"325.5\" y=\"175.5508\">engine: Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"302\" x2=\"432\" y1=\"183.1875\" y2=\"183.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"120\" x=\"307\" y=\"216.4424\">powerIn: ~PowerOutPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"302\" x2=\"354.5\" y1=\"198.1055\" y2=\"198.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"354.5\" y=\"202.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"379.5\" x2=\"432\" y1=\"198.1055\" y2=\"198.1055\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E7\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"80\" x=\"468\" y=\"159\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"490.5\" y=\"176.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"74\" x=\"471\" y=\"191.5508\">frontAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"469\" x2=\"547\" y1=\"199.1875\" y2=\"199.1875\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"78\" x=\"583\" y=\"159\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"604.5\" y=\"176.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"72\" x=\"586\" y=\"191.5508\">rearAxis: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"584\" x2=\"660\" y1=\"199.1875\" y2=\"199.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E9\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"106\" x=\"696\" y=\"159\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"731.5\" y=\"176.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"100\" x=\"699\" y=\"191.5508\">frontWheel: Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"697\" x2=\"801\" y1=\"199.1875\" y2=\"199.1875\"/><!--MD5=[96f4274e9e20536e775497830990834d]\n",
       "class E10--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E10\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"104\" x=\"837\" y=\"159\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"871.5\" y=\"176.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"98\" x=\"840\" y=\"191.5508\">rearWheel: Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"838\" x2=\"940\" y1=\"199.1875\" y2=\"199.1875\"/><!--MD5=[a523cb2a0b79ecf9065ad8783f96c320]\n",
       "reverse link E1 to E2--><path d=\"M429.464,41.398 C340.447,47.227 193.627,66.479 85,129 C72.304,136.307 61.1139,148.1387 52.7389,158.771 \" fill=\"none\" id=\"E1&lt;-E2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"442.703,40.603,436.4738,36.9702,430.7246,41.323,436.9538,44.9558,442.703,40.603\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[5d7b3810b1dd9b5164bea1151b29b665]\n",
       "reverse link E1 to E3--><path d=\"M430.377,67.605 C386.594,84.345 331.175,106.554 283,129 C277.345,131.635 271.557,134.439 265.758,137.329 \" fill=\"none\" id=\"E1&lt;-E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"442.692,62.922,435.6621,61.3154,431.4754,67.1866,438.5052,68.7932,442.692,62.922\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[33238bef88d6431a141d8bc8fb12bca0]\n",
       "reverse link E1 to E5--><path d=\"M468.796,78.76 C449.106,98.729 425.33,122.842 405.71,142.7414 \" fill=\"none\" id=\"E1&lt;-E5\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"478.098,69.327,471.0371,70.7912,469.6729,77.8721,476.7338,76.4079,478.098,69.327\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[fc9706a6b2cf8c0e423679d303750d3f]\n",
       "reverse link E1 to E7--><path d=\"M508,82.61 C508,107.702 508,138.2295 508,158.7761 \" fill=\"none\" id=\"E1&lt;-E7\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"508,69.327,504,75.327,508,81.327,512,75.327,508,69.327\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[661cb7e25c535686a73d30316f0ecb18]\n",
       "reverse link E1 to E8--><path d=\"M540.289,79.503 C560.728,105.141 586.424,137.3734 603.486,158.7761 \" fill=\"none\" id=\"E1&lt;-E8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"532.176,69.327,532.7885,76.512,539.6564,78.7101,539.0439,71.5251,532.176,69.327\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[12b85c4d420790db1e7d6becd0483003]\n",
       "reverse link E1 to E9--><path d=\"M582.969,75.099 C613.405,90.611 648.507,109.615 679,129 C693.279,138.0773 708.336,149.2471 720.811,158.9882 \" fill=\"none\" id=\"E1&lt;-E9\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"571.117,69.113,574.6698,75.3882,581.8287,74.5222,578.2759,68.2471,571.117,69.113\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"705.6907\" y=\"148.3013\">2</text><!--MD5=[ea7c523cf29368ef1946af14beed0adc]\n",
       "reverse link E1 to E10--><path d=\"M586.07,53.045 C651.068,66.694 744.802,90.999 820,129 C835.639,136.903 851.272,148.5259 863.694,158.875 \" fill=\"none\" id=\"E1&lt;-E10\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"573.061,50.375,578.1341,55.4998,584.8159,52.788,579.7428,47.6632,573.061,50.375\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"7\" x=\"849.3125\" y=\"148.1591\">2</text><!--MD5=[a37474531a52a6649928c6e80671c47e]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "comp usage \"eVehicle: Part\" as E1  <<(T,blue)part>> {\r\n",
       "maxSpeed: Speed= 142; \r\n",
       "}\r\n",
       "comp usage \"body: Part\" as E2  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"battery: Battery\" as E3  <<(T,blue)part>> {\r\n",
       "capacity: BatteryCapacity= 42; \\n//:>>Battery::capacity// \r\n",
       "- -ports- -\r\n",
       "powerOut: PowerOutPort\r\n",
       "}\r\n",
       "comp usage \"engine: Engine\" as E5  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "powerIn: ~PowerOutPort\r\n",
       "}\r\n",
       "comp usage \"frontAxis: Part\" as E7  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearAxis: Part\" as E8  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"frontWheel: Wheel\" as E9  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"rearWheel: Wheel\" as E10  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "E1 *- - E2\r\n",
       "E1 *- - E3\r\n",
       "E1 *- - E5\r\n",
       "E1 *- - E7\r\n",
       "E1 *- - E8\r\n",
       "E1 *- - \"2\"E9\r\n",
       "E1 *- - \"2\"E10\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 40,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz eVehicle_LogicalArchitecture::eVehicle"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 71,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicleRequirements (b8416c8b-39cc-4136-a156-ff81f4d31e3c)\n"
      ]
     },
     "execution_count": 71,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicleRequirements {\n",
    "    \n",
    "    import eVehicleRequirementDefinitions::*;\n",
    "    import eVehicle_LogicalArchitecture::*;\n",
    "    \n",
    "    requirement eVehicleSpecification {\n",
    "        doc /* Requirement Specification of the eVehicle  */\n",
    "        subject eVehicle :>> eVehicle;\n",
    "        require eVehicleBatteryCapacity;\n",
    "        require eVehicleMaxSpeed;\n",
    "    }\n",
    "    \n",
    "    requirement id 'REQ.B.1' eVehicleBatteryCapacity : BatteryCapacityReqDef {\n",
    "        subject eVehicle :>> eVehicle;\n",
    "        attribute :>> capacityRequired = 50;\n",
    "        attribute :>> capacityActual = eVehicle::battery::capacity;\n",
    "    }\n",
    "    \n",
    "    requirement id 'REQ.V.1' eVehicleMaxSpeed : MaxSpeedReqDef {\n",
    "        subject eVehicle :>> eVehicle;\n",
    "        attribute :>> maxSpeedRequired = 140;\n",
    "        attribute :>> maxSpeedVehicle = eVehicle::maxSpeed;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 72,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"186px\" preserveAspectRatio=\"none\" style=\"width:974px;height:186px;\" version=\"1.1\" viewBox=\"0 0 974 186\" width=\"974px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,182,6,189,29.6094,952,29.6094,952,174,16,174,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"189\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"160\" x=\"20\" y=\"22.5332\">eVehicleRequirements</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"115.5313\" id=\"E2\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"236\" x=\"700\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"777.5\" y=\"59.457\">«requirement»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"230\" x=\"703\" y=\"74.5508\">eVehicleSpecification: RequirementCheck</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"701\" x2=\"935\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"201\" x=\"706\" y=\"97.6064\">Requirement Specification of the eVehicle</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"701\" x2=\"935\" y1=\"104.0234\" y2=\"104.0234\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"41\" x=\"706\" y=\"137.2783\">require</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"119\" x=\"750\" y=\"137.2783\">: BatteryCapacityReqDef</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"41\" x=\"706\" y=\"151.1143\">require</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"93\" x=\"750\" y=\"151.1143\">: MaxSpeedReqDef</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"701\" x2=\"791\" y1=\"118.9414\" y2=\"118.9414\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"54\" x=\"791\" y=\"122.9424\">constraints</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"845\" x2=\"935\" y1=\"118.9414\" y2=\"118.9414\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"103.5313\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"326\" x=\"339\" y=\"48\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"461.5\" y=\"65.457\">«requirement»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"3\" x=\"345\" y=\"80.5508\">[</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"45\" x=\"348\" y=\"80.5508\">REQ.B.1</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"269\" x=\"393\" y=\"80.5508\">] eVehicleBatteryCapacity: BatteryCapacityReqDef</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"340\" x2=\"664\" y1=\"88.1875\" y2=\"88.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"191\" x=\"345\" y=\"103.6064\">capacityRequired: BatteryCapacity= 50;</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"221\" x=\"345\" y=\"117.4424\">:&gt;&gt;BatteryCapacityReqDef::capacityRequired</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"296\" x=\"345\" y=\"131.2783\">capacityActual: BatteryCapacity= eVehicle::battery::capacity;</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"207\" x=\"345\" y=\"145.1143\">:&gt;&gt;BatteryCapacityReqDef::capacityActual</text><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"103.5313\" id=\"E6\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"272\" x=\"32\" y=\"48\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"127.5\" y=\"65.457\">«requirement»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"3\" x=\"38\" y=\"80.5508\">[</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"45\" x=\"41\" y=\"80.5508\">REQ.V.1</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"215\" x=\"86\" y=\"80.5508\">] eVehicleMaxSpeed: MaxSpeedReqDef</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33\" x2=\"303\" y1=\"88.1875\" y2=\"88.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"161\" x=\"38\" y=\"103.6064\">maxSpeedRequired: Speed= 140;</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"207\" x=\"38\" y=\"117.4424\">:&gt;&gt;MaxSpeedReqDef::maxSpeedRequired</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"235\" x=\"38\" y=\"131.2783\">maxSpeedVehicle: Speed= eVehicle::maxSpeed;</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"199\" x=\"38\" y=\"145.1143\">:&gt;&gt;MaxSpeedReqDef::maxSpeedVehicle</text><!--MD5=[5025ae2910f485bca5fa8bdaacdb62b2]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicleRequirements\" as E1   {\r\n",
       "comp usage \"eVehicleSpecification: RequirementCheck\" as E2  <<(T,blue)requirement>> {\r\n",
       "Requirement Specification of the eVehicle\r\n",
       "- -\r\n",
       "- -constraints- -\r\n",
       "<b>require</b> : BatteryCapacityReqDef\r\n",
       "<b>require</b> : MaxSpeedReqDef\r\n",
       "}\r\n",
       "comp usage \" [<b>REQ.B.1</b>] eVehicleBatteryCapacity: BatteryCapacityReqDef\" as E5  <<(T,blue)requirement>> {\r\n",
       "capacityRequired: BatteryCapacity= 50; \\n//:>>BatteryCapacityReqDef::capacityRequired// \r\n",
       "capacityActual: BatteryCapacity= eVehicle::battery::capacity; \\n//:>>BatteryCapacityReqDef::capacityActual// \r\n",
       "}\r\n",
       "comp usage \" [<b>REQ.V.1</b>] eVehicleMaxSpeed: MaxSpeedReqDef\" as E6  <<(T,blue)requirement>> {\r\n",
       "maxSpeedRequired: Speed= 140; \\n//:>>MaxSpeedReqDef::maxSpeedRequired// \r\n",
       "maxSpeedVehicle: Speed= eVehicle::maxSpeed; \\n//:>>MaxSpeedReqDef::maxSpeedVehicle// \r\n",
       "}\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 72,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz eVehicleRequirements"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Finally, we model that the eVehicle satisfies the requirement."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 83,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicle_LogicalArchitecture (dff6e5c3-b1ce-4dec-b6d1-7dfe983a7684)\n"
      ]
     },
     "execution_count": 83,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicle_LogicalArchitecture {\n",
    "    \n",
    "    import eVehicleDefinitions::*;\n",
    "    import eVehicleLibrary::*;\n",
    "    import eVehicleRequirements::*;\n",
    "    \n",
    "    part eVehicleContext {\n",
    "    \n",
    "       part eVehicle {    \n",
    "          value maxSpeed :Speed = 142;\n",
    "          part body;\n",
    "          part battery : Battery {\n",
    "              value redefines capacity = 42;\n",
    "              port powerOut : PowerOutPort;\n",
    "          }\n",
    "          part engine : Engine {\n",
    "              port powerIn : ~PowerOutPort;\n",
    "          }\n",
    "          part frontAxis;\n",
    "          part rearAxis;\n",
    "          part frontWheel : Wheel[2];\n",
    "          part rearWheel : Wheel[2];\n",
    "        \n",
    "          interface : PowerInterface connect \n",
    "            supplierPort => battery::powerOut to \n",
    "            consumerPort => engine::powerIn;\n",
    "          connect engine to frontAxis;\n",
    "          connect frontAxis to frontWheel;\n",
    "          connect rearAxis to rearWheel;\n",
    "          connect body to battery;\n",
    "          connect body to engine;\n",
    "          connect body to frontAxis;\n",
    "          connect body to rearAxis;\n",
    "      }\n",
    "      satisfy eVehicleSpecification by eVehicle;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Mapping from SysML v1 to SysML v2<a name=\"sysmlv2modv1mapping\"></a>\n",
    "\n",
    "The following SysML v2 model describes the mapping of SysML v1 concepts to SysML v2 concepts. The formal transformation specification from SysML v1 to SysML v2 is, of course, much more detailed. The following mapping is human-readable, but somewhat less precise. The current implementation of SysML v2 does not provide the allocate relationship yet, which I would like to use for the mapping. Instead, I use the dependency relationship. The mapping only describes the model elements used in this book."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 57,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package SysMLv1ToSysMLv2MappingLibrary (ddf8e43f-fb4f-4710-ba94-a488341f4700)\n",
       "Package SysMLv1ToSysMLv2Mapping (f42acfd8-8b54-44e2-96ff-901d083374c3)\n"
      ]
     },
     "execution_count": 57,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package SysMLv1ToSysMLv2MappingLibrary {\n",
    "    part def SysMLModelElement;\n",
    "}\n",
    "\n",
    "package SysMLv1ToSysMLv2Mapping {\n",
    "    doc /* Mapping of SysML v1 model elements to SysML v2 */\n",
    "    \n",
    "    import SysMLv1ToSysMLv2MappingLibrary::*;\n",
    "    \n",
    "    part SysMLv1 {\n",
    "        part AssociationBlock:SysMLModelElement;\n",
    "        part Block:SysMLModelElement;\n",
    "        part Connector:SysMLModelElement;\n",
    "        part Dependency:SysMLModelElement;\n",
    "        part 'Import':SysMLModelElement;\n",
    "        part Package:SysMLModelElement;\n",
    "        part PartProperty:SysMLModelElement;\n",
    "        part Port:SysMLModelElement;\n",
    "        part Requirement:SysMLModelElement;\n",
    "        part ValueProperty:SysMLModelElement;\n",
    "    }\n",
    "    \n",
    "    part SysMLv2 {\n",
    "        part Attribute:SysMLModelElement;\n",
    "        part Connection:SysMLModelElement;\n",
    "        part Dependency:SysMLModelElement;\n",
    "        part 'Import':SysMLModelElement;\n",
    "        part InterfaceDefinition:SysMLModelElement;\n",
    "        part Package:SysMLModelElement;\n",
    "        part Part:SysMLModelElement;\n",
    "        part PartDefinition:SysMLModelElement;\n",
    "        part Port:SysMLModelElement;\n",
    "        part RequirementDefinition:SysMLModelElement;\n",
    "        part 'Variant':SysMLModelElement;\n",
    "        part 'Variation':SysMLModelElement;\n",
    "    }\n",
    "    \n",
    "    // Mapping SysML v1 to SysML v2\n",
    "    dependency from SysMLv1::AssociationBlock to SysMLv2::InterfaceDefinition;\n",
    "    dependency from SysMLv1::Block to SysMLv2::PartDefinition;\n",
    "    dependency from SysMLv1::Connector to SysMLv2::Connection;\n",
    "    dependency from SysMLv1::Dependency to SysMLv2::Dependency;\n",
    "    dependency from SysMLv1::'Import' to SysMLv2::'Import';\n",
    "    dependency from SysMLv1::Package to SysMLv2::Package;\n",
    "    dependency from SysMLv1::PartProperty to SysMLv2::Part;\n",
    "    dependency from SysMLv1::Port to SysMLv2::Port;\n",
    "    dependency from SysMLv1::Requirement to SysMLv2::RequirementDefinition;\n",
    "    dependency from SysMLv1::ValueProperty to SysMLv2::Attribute;\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 58,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"340px\" preserveAspectRatio=\"none\" style=\"width:3206px;height:340px;\" version=\"1.1\" viewBox=\"0 0 3206 340\" width=\"3206px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,224,6,231,29.6094,3184,29.6094,3184,328,16,328,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"231\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"202\" x=\"20\" y=\"22.5332\">SysMLv1ToSysMLv2Mapping</text><!--MD5=[e4f7fae6ed58524ba242bb0b0d3be6b7]\n",
       "cluster E2--><rect fill=\"#F8F8F8\" height=\"102\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"2597\" x=\"563\" y=\"50\"/><rect fill=\"#FFFFFF\" height=\"68.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"2591\" x=\"566\" y=\"80.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"563\" x2=\"3160\" y1=\"77.6094\" y2=\"77.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"91\" x=\"1816\" y=\"68.5332\">SysMLv1: Part</text><!--MD5=[03104f77b71e2d8d3500c651e6e31181]\n",
       "cluster E13--><rect fill=\"#F8F8F8\" height=\"102\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"3120\" x=\"40\" y=\"202\"/><rect fill=\"#FFFFFF\" height=\"68.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"3114\" x=\"43\" y=\"232.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"40\" x2=\"3160\" y1=\"229.6094\" y2=\"229.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"91\" x=\"1554.5\" y=\"220.5332\">SysMLv2: Part</text><g id=\"E1.E2.E3\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"265\" x=\"579.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"579.5\" x2=\"844.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"245\" x=\"589.5\" y=\"105.5332\">AssociationBlock: SysMLModelElement</text></g><g id=\"E1.E2.E4\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"193\" x=\"879.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"879.5\" x2=\"1072.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"173\" x=\"889.5\" y=\"105.5332\">Block: SysMLModelElement</text></g><g id=\"E1.E2.E5\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"225\" x=\"1107.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1107.5\" x2=\"1332.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"205\" x=\"1117.5\" y=\"105.5332\">Connector: SysMLModelElement</text></g><g id=\"E1.E2.E6\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"239\" x=\"1367.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1367.5\" x2=\"1606.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"219\" x=\"1377.5\" y=\"105.5332\">Dependency: SysMLModelElement</text></g><g id=\"E1.E2.E7\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"198\" x=\"1642\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1642\" x2=\"1840\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"178\" x=\"1652\" y=\"105.5332\">Import: SysMLModelElement</text></g><g id=\"E1.E2.E8\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"214\" x=\"1875\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1875\" x2=\"2089\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"194\" x=\"1885\" y=\"105.5332\">Package: SysMLModelElement</text></g><g id=\"E1.E2.E9\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"239\" x=\"2124.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2124.5\" x2=\"2363.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"219\" x=\"2134.5\" y=\"105.5332\">PartProperty: SysMLModelElement</text></g><g id=\"E1.E2.E10\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"185\" x=\"2398.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2398.5\" x2=\"2583.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"165\" x=\"2408.5\" y=\"105.5332\">Port: SysMLModelElement</text></g><g id=\"E1.E2.E11\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"240\" x=\"2619\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2619\" x2=\"2859\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"220\" x=\"2629\" y=\"105.5332\">Requirement: SysMLModelElement</text></g><g id=\"E1.E2.E12\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"249\" x=\"2894.5\" y=\"86\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2894.5\" x2=\"3143.5\" y1=\"113.6094\" y2=\"113.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"229\" x=\"2904.5\" y=\"105.5332\">ValueProperty: SysMLModelElement</text></g><g id=\"E1.E13.E14\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"212\" x=\"2932\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2932\" x2=\"3144\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"192\" x=\"2942\" y=\"257.5332\">Attribute: SysMLModelElement</text></g><g id=\"E1.E13.E15\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"231\" x=\"1134.5\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1134.5\" x2=\"1365.5\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"211\" x=\"1144.5\" y=\"257.5332\">Connection: SysMLModelElement</text></g><g id=\"E1.E13.E16\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"239\" x=\"1400.5\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1400.5\" x2=\"1639.5\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"219\" x=\"1410.5\" y=\"257.5332\">Dependency: SysMLModelElement</text></g><g id=\"E1.E13.E17\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"198\" x=\"1675\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1675\" x2=\"1873\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"178\" x=\"1685\" y=\"257.5332\">Import: SysMLModelElement</text></g><g id=\"E1.E13.E18\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"273\" x=\"546.5\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"546.5\" x2=\"819.5\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"253\" x=\"556.5\" y=\"257.5332\">InterfaceDefinition: SysMLModelElement</text></g><g id=\"E1.E13.E19\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"214\" x=\"1908\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1908\" x2=\"2122\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"194\" x=\"1918\" y=\"257.5332\">Package: SysMLModelElement</text></g><g id=\"E1.E13.E20\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"185\" x=\"2157.5\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2157.5\" x2=\"2342.5\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"165\" x=\"2167.5\" y=\"257.5332\">Part: SysMLModelElement</text></g><g id=\"E1.E13.E21\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"244\" x=\"855\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"855\" x2=\"1099\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"224\" x=\"865\" y=\"257.5332\">PartDefinition: SysMLModelElement</text></g><g id=\"E1.E13.E22\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"185\" x=\"2377.5\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2377.5\" x2=\"2562.5\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"165\" x=\"2387.5\" y=\"257.5332\">Port: SysMLModelElement</text></g><g id=\"E1.E13.E23\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"299\" x=\"2597.5\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2597.5\" x2=\"2896.5\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"279\" x=\"2607.5\" y=\"257.5332\">RequirementDefinition: SysMLModelElement</text></g><g id=\"E1.E13.E24\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"204\" x=\"307\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"307\" x2=\"511\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"184\" x=\"317\" y=\"257.5332\">Variant: SysMLModelElement</text></g><g id=\"E1.E13.E25\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"215\" x=\"56.5\" y=\"238\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"56.5\" x2=\"271.5\" y1=\"265.6094\" y2=\"265.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"195\" x=\"66.5\" y=\"257.5332\">Variation: SysMLModelElement</text></g><!--MD5=[3060217434a4a87fd9ec07e464014e91]\n",
       "link E3 to E18--><path d=\"M707.341,136.1 C702.415,161.577 694.621,201.89 689.184,230.014 \" fill=\"none\" id=\"E3-&gt;E18\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"687.648,237.96,692.1118,230.6748,686.2209,229.536,687.648,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"702\" y=\"182.4951\">«depend»</text><!--MD5=[46f153d3a9c1e1be2fa14c0f7aef6c2a]\n",
       "link E4 to E21--><path d=\"M976.161,136.1 C976.33,161.468 976.597,201.544 976.784,229.651 \" fill=\"none\" id=\"E4-&gt;E21\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"976.84,237.96,979.7856,229.9398,973.7858,229.9805,976.84,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"977\" y=\"182.4951\">«depend»</text><!--MD5=[17949ce4bce6e1352c04f8e77a7b2d90]\n",
       "link E5 to E15--><path d=\"M1224.82,136.1 C1229.92,161.577 1237.98,201.89 1243.6,230.014 \" fill=\"none\" id=\"E5-&gt;E15\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"1245.19,237.96,1246.5628,229.527,1240.6793,230.7037,1245.19,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"1235\" y=\"182.4951\">«depend»</text><!--MD5=[75e0e4318d0a6197c24c82dfd6b2caba]\n",
       "link E6 to E16--><path d=\"M1492.3,136.1 C1497.91,161.577 1506.78,201.89 1512.96,230.014 \" fill=\"none\" id=\"E6-&gt;E16\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"1514.71,237.96,1515.9216,229.5023,1510.0617,230.7911,1514.71,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"1503\" y=\"182.4951\">«depend»</text><!--MD5=[7306d0bcc8464f4dd34491724034e6ed]\n",
       "link E7 to E17--><path d=\"M1746.3,136.1 C1751.91,161.577 1760.78,201.89 1766.96,230.014 \" fill=\"none\" id=\"E7-&gt;E17\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"1768.71,237.96,1769.9216,229.5023,1764.0617,230.7911,1768.71,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"1757\" y=\"182.4951\">«depend»</text><!--MD5=[a7f2bd539ed99772cd49aacbe0e23c85]\n",
       "link E8 to E19--><path d=\"M1987.3,136.1 C1992.91,161.577 2001.78,201.89 2007.96,230.014 \" fill=\"none\" id=\"E8-&gt;E19\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"2009.71,237.96,2010.9216,229.5023,2005.0617,230.7911,2009.71,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"1998\" y=\"182.4951\">«depend»</text><!--MD5=[9ad0661e23f8ba7db7d53d909fba695b]\n",
       "link E9 to E20--><path d=\"M2244.96,136.1 C2245.98,161.468 2247.58,201.544 2248.71,229.651 \" fill=\"none\" id=\"E9-&gt;E20\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"2249.04,237.96,2251.7179,229.8465,2245.7227,230.0863,2249.04,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2247\" y=\"182.4951\">«depend»</text><!--MD5=[da80cc28f8d63d3c79100c44eb256625]\n",
       "link E10 to E22--><path d=\"M2487.63,136.1 C2484.06,161.577 2478.42,201.89 2474.48,230.014 \" fill=\"none\" id=\"E10-&gt;E22\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"2473.37,237.96,2477.4489,230.4525,2471.5067,229.6217,2473.37,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2483\" y=\"182.4951\">«depend»</text><!--MD5=[ffea42132186a0d6993dcddb31653fc6]\n",
       "link E11 to E23--><path d=\"M2740.29,136.1 C2741.64,161.468 2743.78,201.544 2745.27,229.651 \" fill=\"none\" id=\"E11-&gt;E23\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"2745.72,237.96,2748.2899,229.8116,2742.2984,230.131,2745.72,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2743\" y=\"182.4951\">«depend»</text><!--MD5=[d53cb08dffc8689d16e38c8e194e9adc]\n",
       "link E12 to E14--><path d=\"M3022.05,136.1 C3025.28,161.577 3030.39,201.89 3033.95,230.014 \" fill=\"none\" id=\"E12-&gt;E14\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"3034.95,237.96,3036.9213,229.6465,3030.9688,230.4002,3034.95,237.96\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"3028\" y=\"182.4951\">«depend»</text><!--MD5=[4ee4f279c7dc667b6b0028af8a5b821c]\n",
       "@startuml\r\n",
       "skinparam ranksep 8\r\n",
       "skinparam rectangle {\r\n",
       " backgroundColor<<block>> LightGreen\r\n",
       "}\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"SysMLv1ToSysMLv2Mapping\" as E1   {\r\n",
       "rec usage \"SysMLv1: Part\" as E2  {\r\n",
       "rec usage \"AssociationBlock: SysMLModelElement\" as E3  {\r\n",
       "}\r\n",
       "rec usage \"Block: SysMLModelElement\" as E4  {\r\n",
       "}\r\n",
       "rec usage \"Connector: SysMLModelElement\" as E5  {\r\n",
       "}\r\n",
       "rec usage \"Dependency: SysMLModelElement\" as E6  {\r\n",
       "}\r\n",
       "rec usage \"Import: SysMLModelElement\" as E7  {\r\n",
       "}\r\n",
       "rec usage \"Package: SysMLModelElement\" as E8  {\r\n",
       "}\r\n",
       "rec usage \"PartProperty: SysMLModelElement\" as E9  {\r\n",
       "}\r\n",
       "rec usage \"Port: SysMLModelElement\" as E10  {\r\n",
       "}\r\n",
       "rec usage \"Requirement: SysMLModelElement\" as E11  {\r\n",
       "}\r\n",
       "rec usage \"ValueProperty: SysMLModelElement\" as E12  {\r\n",
       "}\r\n",
       "}\r\n",
       "rec usage \"SysMLv2: Part\" as E13  {\r\n",
       "rec usage \"Attribute: SysMLModelElement\" as E14  {\r\n",
       "}\r\n",
       "rec usage \"Connection: SysMLModelElement\" as E15  {\r\n",
       "}\r\n",
       "rec usage \"Dependency: SysMLModelElement\" as E16  {\r\n",
       "}\r\n",
       "rec usage \"Import: SysMLModelElement\" as E17  {\r\n",
       "}\r\n",
       "rec usage \"InterfaceDefinition: SysMLModelElement\" as E18  {\r\n",
       "}\r\n",
       "rec usage \"Package: SysMLModelElement\" as E19  {\r\n",
       "}\r\n",
       "rec usage \"Part: SysMLModelElement\" as E20  {\r\n",
       "}\r\n",
       "rec usage \"PartDefinition: SysMLModelElement\" as E21  {\r\n",
       "}\r\n",
       "rec usage \"Port: SysMLModelElement\" as E22  {\r\n",
       "}\r\n",
       "rec usage \"RequirementDefinition: SysMLModelElement\" as E23  {\r\n",
       "}\r\n",
       "rec usage \"Variant: SysMLModelElement\" as E24  {\r\n",
       "}\r\n",
       "rec usage \"Variation: SysMLModelElement\" as E25  {\r\n",
       "}\r\n",
       "}\r\n",
       "E3 ..>> E18 : <<depend>>\r\n",
       "E4 ..>> E21 : <<depend>>\r\n",
       "E5 ..>> E15 : <<depend>>\r\n",
       "E6 ..>> E16 : <<depend>>\r\n",
       "E7 ..>> E17 : <<depend>>\r\n",
       "E8 ..>> E19 : <<depend>>\r\n",
       "E9 ..>> E20 : <<depend>>\r\n",
       "E10 ..>> E22 : <<depend>>\r\n",
       "E11 ..>> E23 : <<depend>>\r\n",
       "E12 ..>> E14 : <<depend>>\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 58,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=interconnection SysMLv1ToSysMLv2Mapping"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Libraries for the eVehicle example<a name=\"sysmlv2modlibrary\"></a>\n",
    "\n",
    "This section contains the complete libraries used in the examples of this chapter. You must run them to execute the examples."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package eVehicleLibrary (d19e9f8e-6380-44ea-be6d-8a4e489f7449)\n",
       "Package eVehicleDefinitions (611d2dfe-6a2b-4e7f-9fad-8e6d89f859dc)\n"
      ]
     },
     "execution_count": 10,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package eVehicleLibrary {\n",
    "        \n",
    "    attribute def ElectricEnergy;\n",
    "    attribute def BatteryCapacity :> ScalarValues::Integer;\n",
    "    attribute def Speed :> ScalarValues::Integer;\n",
    "    \n",
    "    port def PowerOutPort {\n",
    "        out energy : ElectricEnergy;\n",
    "    }\n",
    "    \n",
    "    interface def PowerInterface {\n",
    "        end supplierPort : PowerOutPort;\n",
    "        end consumerPort : ~PowerOutPort;\n",
    "    }\n",
    "}\n",
    "\n",
    "package eVehicleDefinitions {\n",
    "\n",
    "    import eVehicleLibrary::*;   \n",
    "    \n",
    "    part def Wheel {\n",
    "        value size : ScalarValues::Integer;\n",
    "    }\n",
    "    \n",
    "    part def Battery {\n",
    "        value capacity : BatteryCapacity;\n",
    "    }\n",
    "    \n",
    "    part def Engine;\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"299px\" preserveAspectRatio=\"none\" style=\"width:630px;height:299px;\" version=\"1.1\" viewBox=\"0 0 630 299\" width=\"630px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,131,6,138,29.6094,608,29.6094,608,287,16,287,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"138\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"109\" x=\"20\" y=\"22.5332\">eVehicleLibrary</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E2\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"67\" x=\"394.5\" y=\"223\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"395.5\" y=\"240.457\">«dataType»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"38\" x=\"409\" y=\"255.5508\">Integer</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"395.5\" x2=\"460.5\" y1=\"263.1875\" y2=\"263.1875\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"84\" x=\"508\" y=\"78.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"510.5\" y=\"95.957\">«attribute def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"78\" x=\"511\" y=\"111.0508\">ElectricEnergy</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"509\" x2=\"591\" y1=\"118.6875\" y2=\"118.6875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"90\" x=\"383\" y=\"78.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"388.5\" y=\"95.957\">«attribute def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"84\" x=\"386\" y=\"111.0508\">BatteryCapacity</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"384\" x2=\"472\" y1=\"118.6875\" y2=\"118.6875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"121\" x=\"226.5\" y=\"71.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"259.5\" y=\"88.957\">«port def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"76\" x=\"249\" y=\"104.0508\">PowerOutPort</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"227.5\" x2=\"346.5\" y1=\"111.6875\" y2=\"111.6875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"109\" x=\"232.5\" y=\"127.1064\">energy: ElectricEnergy</text><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"121.3672\" id=\"E6\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"159\" x=\"32.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"71.5\" y=\"59.457\">«interface def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"82\" x=\"71\" y=\"74.5508\">PowerInterface</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33.5\" x2=\"190.5\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"147\" x=\"38.5\" y=\"115.4424\">consumerPort: ~PowerOutPort</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"92\" x=\"38.5\" y=\"129.2783\">:&gt;&gt;Interface::target</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"131\" x=\"38.5\" y=\"143.1143\">supplierPort: PowerOutPort</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"98\" x=\"38.5\" y=\"156.9502\">:&gt;&gt;Interface::source</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"33.5\" x2=\"99.5\" y1=\"97.1055\" y2=\"97.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"99.5\" y=\"101.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"124.5\" x2=\"190.5\" y1=\"97.1055\" y2=\"97.1055\"/><!--MD5=[185131fc0dcab0a4505a2ebe144e961b]\n",
       "link E4 to E2--><path d=\"M428,126.712 C428,147.207 428,177.629 428,202.62 \" fill=\"none\" id=\"E4-&gt;E2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"none\" points=\"435,202.798,428,222.7977,421,202.798,435,202.798\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[caa1a0e4d1466366b481291340f24a6b]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicleLibrary\" as E1   {\r\n",
       "comp def \"Integer\" as E2  <<(T,blue)dataType>> {\r\n",
       "}\r\n",
       "comp def \"ElectricEnergy\" as E3  <<(T,blue)attribute def>> {\r\n",
       "}\r\n",
       "comp def \"BatteryCapacity\" as E4  <<(T,blue)attribute def>> {\r\n",
       "}\r\n",
       "comp def \"PowerOutPort\" as E5  <<(T,blue)port def>> {\r\n",
       "energy: ElectricEnergy\r\n",
       "}\r\n",
       "comp def \"PowerInterface\" as E6  <<(T,blue)interface def>> {\r\n",
       "- -ports- -\r\n",
       "consumerPort: ~PowerOutPort\\n//:>>Interface::target// \r\n",
       "supplierPort: PowerOutPort\\n//:>>Interface::source// \r\n",
       "}\r\n",
       "E4 - -|> E2\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 5,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz eVehicleLibrary"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"132px\" preserveAspectRatio=\"none\" style=\"width:406px;height:132px;\" version=\"1.1\" viewBox=\"0 0 406 132\" width=\"406px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,159,6,166,29.6094,384,29.6094,384,120,16,120,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"166\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"137\" x=\"20\" y=\"22.5332\">eVehicleDefinitions</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E2\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"71\" x=\"296.5\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"304.5\" y=\"59.457\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"314.5\" y=\"74.5508\">Wheel</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"297.5\" x2=\"366.5\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"59\" x=\"302.5\" y=\"97.6064\">size: Integer</text><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"62.0234\" id=\"E3\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"136\" x=\"125\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"165.5\" y=\"59.457\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"37\" x=\"174.5\" y=\"74.5508\">Battery</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"126\" x2=\"260\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"124\" x=\"131\" y=\"97.6064\">capacity: BatteryCapacity</text><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"57\" x=\"32.5\" y=\"49\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"33.5\" y=\"66.457\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"39\" x=\"41.5\" y=\"81.5508\">Engine</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33.5\" x2=\"88.5\" y1=\"89.1875\" y2=\"89.1875\"/><!--MD5=[04a5239c838307d897b28821af670fdc]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"eVehicleDefinitions\" as E1   {\r\n",
       "comp def \"Wheel\" as E2  <<(T,blue)part def>> {\r\n",
       "size: Integer\r\n",
       "}\r\n",
       "comp def \"Battery\" as E3  <<(T,blue)part def>> {\r\n",
       "capacity: BatteryCapacity\r\n",
       "}\r\n",
       "comp def \"Engine\" as E4  <<(T,blue)part def>> {\r\n",
       "}\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz eVehicleDefinitions"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# SysML v2 MBSE Methodologies JupyterBook<a name=\"sysmlv2modmethodologies\"></a>\n",
    "\n",
    "This chapter covers the impact of SysML v2 on MBSE methodologies.\n",
    "\n",
    "Which methods continue to work well and which would need to be adapted? Theoretically, the methodologies have been developed independently of the SysML language, but definitely with a focus on SysML v1.\n",
    "\n",
    "New features of SysML v2 can also lead to new methods in the methodologies.\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## SYSMOD with SysML v2<a name=\"sysmlv2sysmod\"></a>\n",
    "\n",
    "The example is taken from the book [SYSMOD - The Systems Modeling Toolbox](https://leanpub.com/sysmod). It is a Forest Fire Detection System (FFDS)."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### System Idea and System Objectives<a name=\"sysmlv2sysmodidea\"></a>\n",
    "\n",
    "The language extension of SysML v2 is still under development. Until it is available, I use a simplified approach to introduce SYSMOD concepts into the language. \n",
    "\n",
    "The following SysML v2 code defines the SYSMOD concepts of a *system* and an *objective*. They are applied to define the forest fire detection system element including the problem statement and the system idea, and the three system objectives. The complete definition of SYSMOD is described in chapter [SYSMOD Language Library](#sysmodlibrary).\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package SYSMOD (05ab296a-3725-4287-99a8-99cde1755d83)\n"
      ]
     },
     "execution_count": 5,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package SYSMOD {\n",
    "\n",
    "    doc /* SYSMOD - The Systems Modeling Toolbox, Version 5.0beta */\n",
    "        \n",
    "    requirement def Objective {\n",
    "        doc /* A objective is an objective of the system. It is a special kind of a requirement that is typically not satisfied but amplified by the system. */\n",
    "    }\n",
    "    \n",
    "    part def System {\n",
    "        doc /* Marks the system under development. Typically there is only one block in the model with that stereotype. However in a System of Systems (SoS) model there could be more. */\n",
    "        import ScalarValues::String;\n",
    "        value problemStatement : String;\n",
    "        value systemIdea : String;\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"276px\" preserveAspectRatio=\"none\" style=\"width:547px;height:276px;\" version=\"1.1\" viewBox=\"0 0 547 276\" width=\"547px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,84,6,91,29.6094,525,29.6094,525,264,16,264,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"91\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"62\" x=\"20\" y=\"22.5332\">SYSMOD</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"97.6953\" id=\"E2\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"310\" x=\"199\" y=\"42\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"101\" x=\"303.5\" y=\"59.457\">«requirement def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"50\" x=\"329\" y=\"74.5508\">Objective</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"200\" x2=\"508\" y1=\"82.1875\" y2=\"82.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"298\" x=\"205\" y=\"97.6064\">A objective is an objective of the system. It is a special kind of</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"298\" x=\"205\" y=\"111.4424\">a requirement that is typically not satisfied but amplified by the</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"38\" x=\"205\" y=\"125.2783\">system.</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"200\" x2=\"508\" y1=\"131.6953\" y2=\"131.6953\"/><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"75.8594\" id=\"E3\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"132\" x=\"32\" y=\"53\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"70.5\" y=\"70.457\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"41\" x=\"77.5\" y=\"85.5508\">System</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"33\" x2=\"163\" y1=\"93.1875\" y2=\"93.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"120\" x=\"38\" y=\"108.6064\">problemStatement: String</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"89\" x=\"38\" y=\"122.4424\">systemIdea: String</text><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E4\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"67\" x=\"64.5\" y=\"200\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"65.5\" y=\"217.457\">«dataType»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"32\" x=\"82\" y=\"232.5508\">String</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"65.5\" x2=\"130.5\" y1=\"240.1875\" y2=\"240.1875\"/><!--MD5=[4672eba38e49728da53d11aeb285b987]\n",
       "reverse link E3 to E4--><path d=\"M98,144.45 C98,163.641 98,184.3895 98,199.7402 \" fill=\"none\" id=\"E3&lt;-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"98\" cy=\"137.189\" fill=\"#FFFFFF\" rx=\"8\" ry=\"8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"98\" x2=\"98\" y1=\"145.189\" y2=\"129.189\"/><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"90\" x2=\"106\" y1=\"137.189\" y2=\"137.189\"/><!--MD5=[43618b965b422309cada9576099c2efb]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"SYSMOD\" as E1   {\r\n",
       "comp def \"Objective\" as E2  <<(T,blue)requirement def>> {\r\n",
       "A objective is an objective of the system. It is a special kind of a requirement that is typically not satisfied but amplified by the system.\r\n",
       "- -\r\n",
       "}\r\n",
       "comp def \"System\" as E3  <<(T,blue)part def>> {\r\n",
       "problemStatement: String\r\n",
       "systemIdea: String\r\n",
       "}\r\n",
       "comp def \"String\" as E4  <<(T,blue)dataType>> {\r\n",
       "}\r\n",
       "E3 +- - E4\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz SYSMOD"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package ForestFireDetectionSystemModel (0f6b62b1-0ccc-46be-96be-9e2db42c5e00)\n"
      ]
     },
     "execution_count": 6,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package ForestFireDetectionSystemModel {\n",
    "    \n",
    "    import SYSMOD::*;\n",
    "    \n",
    "    package FFDS_Core {\n",
    "    \n",
    "        part FFDS : System {\n",
    "            value redefines problemStatement = \"How can we provide a forest fire detection system for forest authorities that can be scaled to any forest size, is affordable, highly reliable and accurate in detecting forest fires.\";\n",
    "            value redefines systemIdea = \"The FFDS is a satellite-based system to detect forest fires in very large areas. The system is also equipped with stationary sensors and animal sensors. Using different sources for the fire detection increases the reliability of the system and enables different system configurations for different environmental contexts and price segments. Main features of the FFDS are Detecting and reporting forest fires on time Monitoring forest and fires Uses the behavior of forest animals to detect fires\";\n",
    "        }\n",
    "        \n",
    "        package FFDS_Requirements {\n",
    "            package FFDS_Objectives {\n",
    "                requirement id 'OBJ-B1' 'Market Leader' : Objective {\n",
    "                    doc /* The system will make the vendor the market leader for forest fire detection systems. */\n",
    "                }\n",
    "                requirement id 'OBJ-S1' 'Reliable Detection' : Objective {\n",
    "                    doc /* Any forest fire is detected by the system on time to start effective counteractions. */\n",
    "                }\n",
    "                requirement id 'OBJ-S2' 'Affordability' : Objective {\n",
    "                    doc /* The system is affordable for any forest authority. */\n",
    "                }                               \n",
    "            }\n",
    "        }\n",
    "    }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"464px\" preserveAspectRatio=\"none\" style=\"width:1548px;height:464px;\" version=\"1.1\" viewBox=\"0 0 1548 464\" width=\"1548px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,258,6,265,29.6094,1526,29.6094,1526,452,16,452,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"265\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"236\" x=\"20\" y=\"22.5332\">ForestFireDetectionSystemModel</text><!--MD5=[e4f7fae6ed58524ba242bb0b0d3be6b7]\n",
       "cluster E2--><polygon fill=\"#FFFFFF\" points=\"40,50,125,50,132,73.6094,1502,73.6094,1502,428,40,428,40,50\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"40\" x2=\"132\" y1=\"73.6094\" y2=\"73.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"44\" y=\"66.5332\">FFDS_Core</text><!--MD5=[d5e69f78d87373223dbae638b30a9c99]\n",
       "cluster E3--><rect fill=\"#F8F8F8\" height=\"301\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"705\" x=\"773\" y=\"103\"/><rect fill=\"#FFFFFF\" height=\"267.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"699\" x=\"776\" y=\"133.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"773\" x2=\"1478\" y1=\"130.6094\" y2=\"130.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"91\" x=\"1080\" y=\"121.5332\">FFDS: System</text><!--MD5=[14e3b0961a2654348d326746436168a1]\n",
       "cluster E6--><polygon fill=\"#FFFFFF\" points=\"64,94,214,94,221,117.6094,749,117.6094,749,355,64,355,64,94\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"64\" x2=\"221\" y1=\"117.6094\" y2=\"117.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"144\" x=\"68\" y=\"110.5332\">FFDS_Requirements</text><!--MD5=[168fadf3d0c3fd93dd5d6da1b1d7ab76]\n",
       "cluster E7--><polygon fill=\"#FFFFFF\" points=\"88,138,215,138,222,161.6094,725,161.6094,725,331,88,331,88,138\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"88\" x2=\"222\" y1=\"161.6094\" y2=\"161.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"121\" x=\"92\" y=\"154.5332\">FFDS_Objectives</text><!--MD5=[55dfccfc6c49c2d10cd1bd2211a6c90c]\n",
       "cluster E8--><rect fill=\"#F8F8F8\" height=\"125\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"175\" x=\"526\" y=\"182\"/><rect fill=\"#FFFFFF\" height=\"91.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"169\" x=\"529\" y=\"212.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"526\" x2=\"701\" y1=\"209.6094\" y2=\"209.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"159\" x=\"534\" y=\"200.5332\">Market Leader: Objective</text><!--MD5=[a84b4591f868c1fa4a211716a82f2f0d]\n",
       "cluster E10--><rect fill=\"#F8F8F8\" height=\"125\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"198\" x=\"304\" y=\"182\"/><rect fill=\"#FFFFFF\" height=\"91.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"192\" x=\"307\" y=\"212.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"304\" x2=\"502\" y1=\"209.6094\" y2=\"209.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"182\" x=\"312\" y=\"200.5332\">Reliable Detection: Objective</text><!--MD5=[47bea60c1a0ac6c1143df232041969c0]\n",
       "cluster E12--><rect fill=\"#F8F8F8\" height=\"125\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"168\" x=\"112\" y=\"182\"/><rect fill=\"#FFFFFF\" height=\"91.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"162\" x=\"115\" y=\"212.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"112\" x2=\"280\" y1=\"209.6094\" y2=\"209.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"141\" x=\"125.5\" y=\"200.5332\">Affordability: Objective</text><g id=\"E1.E2.E3.E4\"><rect fill=\"#FFFFFF\" height=\"125.6563\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"318\" x=\"1144\" y=\"200.5\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1144\" x2=\"1462\" y1=\"316.1563\" y2=\"316.1563\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"252\" x=\"1175\" y=\"220.0332\">problemStatement: String= ''How can we</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"294\" x=\"1154\" y=\"237.6426\">provide a forest fire detection system for forest</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"297\" x=\"1154.5\" y=\"255.252\">authorities that can be scaled to any forest size</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"283\" x=\"1159.5\" y=\"272.8613\">, is affordable, highly reliable and accurate in</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"143\" x=\"1229.5\" y=\"290.4707\">detecting forest fires.'';</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"189\" x=\"1206.5\" y=\"308.0801\">:&gt;&gt;System::problemStatement</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"0\" x=\"1399.5\" y=\"308.0801\"/></g><g id=\"E1.E2.E3.E5\"><rect fill=\"#FFFFFF\" height=\"248.9219\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"319\" x=\"789.5\" y=\"139\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"789.5\" x2=\"1108.5\" y1=\"377.9219\" y2=\"377.9219\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"283\" x=\"807.5\" y=\"158.5332\">systemIdea: String= ''The FFDS is a satellite-</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"299\" x=\"799.5\" y=\"176.1426\">based system to detect forest fires in very large</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"252\" x=\"821\" y=\"193.752\">areas. The system is also equipped with</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"286\" x=\"804\" y=\"211.3613\">stationary sensors and animal sensors. Using</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"237\" x=\"828.5\" y=\"228.9707\">different sources for the fire detection</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"260\" x=\"817\" y=\"246.5801\">increases the reliability of the system and</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"268\" x=\"813\" y=\"264.1895\">enables different system configurations for</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"264\" x=\"815\" y=\"281.7988\">different environmental contexts and price</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"261\" x=\"816.5\" y=\"299.4082\">segments. Main features of the FFDS are</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"270\" x=\"812\" y=\"317.0176\">Detecting and reporting forest fires on time</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"299\" x=\"799.5\" y=\"334.627\">Monitoring forest and fires Uses the behavior of</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"188\" x=\"853\" y=\"352.2363\">forest animals to detect fires'';</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"146\" x=\"874\" y=\"369.8457\">:&gt;&gt;System::systemIdea</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"0\" x=\"1024\" y=\"369.8457\"/></g><g id=\"E1.E2.E6.E7.E8.E9\"><rect fill=\"#FFFFFF\" height=\"55.2188\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"136\" x=\"545\" y=\"236\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"545\" x2=\"681\" y1=\"281.2188\" y2=\"281.2188\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"89\" x=\"568.5\" y=\"255.5332\">subj: Anything</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"112\" x=\"555\" y=\"273.1426\">:&gt;&gt;Objective::subj</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"0\" x=\"671\" y=\"273.1426\"/></g><g id=\"E1.E2.E6.E7.E10.E11\"><rect fill=\"#FFFFFF\" height=\"55.2188\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"136\" x=\"335\" y=\"236\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"335\" x2=\"471\" y1=\"281.2188\" y2=\"281.2188\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"89\" x=\"358.5\" y=\"255.5332\">subj: Anything</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"112\" x=\"345\" y=\"273.1426\">:&gt;&gt;Objective::subj</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"0\" x=\"461\" y=\"273.1426\"/></g><g id=\"E1.E2.E6.E7.E12.E13\"><rect fill=\"#FFFFFF\" height=\"55.2188\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"136\" x=\"128\" y=\"236\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"128\" x2=\"264\" y1=\"281.2188\" y2=\"281.2188\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"89\" x=\"151.5\" y=\"255.5332\">subj: Anything</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"112\" x=\"138\" y=\"273.1426\">:&gt;&gt;Objective::subj</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"0\" x=\"254\" y=\"273.1426\"/></g><!--MD5=[5045196f16d18feaf58dcf732608636e]\n",
       "@startuml\r\n",
       "skinparam ranksep 8\r\n",
       "skinparam rectangle {\r\n",
       " backgroundColor<<block>> LightGreen\r\n",
       "}\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"ForestFireDetectionSystemModel\" as E1   {\r\n",
       "package \"FFDS_Core\" as E2   {\r\n",
       "rec usage \"FFDS: System\" as E3  {\r\n",
       "rec usage \"problemStatement: String= ''How can we provide a forest fire detection system for forest authorities that can be scaled to any forest size, is affordable, highly reliable and accurate in detecting forest fires.''; \\n//:>>System::problemStatement// \" as E4  <<attribute>> {\r\n",
       "}\r\n",
       "rec usage \"systemIdea: String= ''The FFDS is a satellite-based system to detect forest fires in very large areas. The system is also equipped with stationary sensors and animal sensors. Using different sources for the fire detection increases the reliability of the system and enables different system configurations for different environmental contexts and price segments. Main features of the FFDS are Detecting and reporting forest fires on time Monitoring forest and fires Uses the behavior of forest animals to detect fires''; \\n//:>>System::systemIdea// \" as E5  <<attribute>> {\r\n",
       "}\r\n",
       "}\r\n",
       "package \"FFDS_Requirements\" as E6   {\r\n",
       "package \"FFDS_Objectives\" as E7   {\r\n",
       "rec usage \"Market Leader: Objective\" as E8  <<requirement>> {\r\n",
       "rec usage \"subj: Anything\\n//:>>Objective::subj// \" as E9  <<reference>> {\r\n",
       "}\r\n",
       "}\r\n",
       "rec usage \"Reliable Detection: Objective\" as E10  <<requirement>> {\r\n",
       "rec usage \"subj: Anything\\n//:>>Objective::subj// \" as E11  <<reference>> {\r\n",
       "}\r\n",
       "}\r\n",
       "rec usage \"Affordability: Objective\" as E12  <<requirement>> {\r\n",
       "rec usage \"subj: Anything\\n//:>>Objective::subj// \" as E13  <<reference>> {\r\n",
       "}\r\n",
       "}\r\n",
       "}\r\n",
       "}\r\n",
       "}\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 7,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz ForestFireDetectionSystemModel"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### System Context<a name=\"sysmlv2sysmodcontext\"></a>"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The concepts of use cases and actors are not yet defined in SysML v2. Therefore, the external entities of the system are defined as parts of the context. You must execute the SYSMOD library in chapter [SYSMOD Language Library](#sysmodlibrary) before executing the following cell."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package ForestFireDetectionSystemModel (bf2420d2-8028-4da6-bd97-00469c680382)\n"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package ForestFireDetectionSystemModel {\n",
    "    \n",
    "    import SYSMOD::*;\n",
    "    \n",
    "    package FFDS_Core {\n",
    "    \n",
    "       part 'FFDS System Context' : SystemContext {\n",
    "          part FFDS : System :> systemOfInterest {            \n",
    "            value redefines problemStatement = \"How can we provide a forest fire detection system for forest authorities that can be scaled to any forest size, is affordable, highly reliable and accurate in detecting forest fires.\";\n",
    "            value redefines systemIdea = \"The FFDS is a satellite-based system to detect forest fires in very large areas. The system is also equipped with stationary sensors and animal sensors. Using different sources for the fire detection increases the reliability of the system and enables different system configurations for different environmental contexts and price segments. Main features of the FFDS are Detecting and reporting forest fires on time Monitoring forest and fires Uses the behavior of forest animals to detect fires\";\n",
    "          }\n",
    "          part Operator : User subsets actors;\n",
    "          part Administrator : User subsets actors;\n",
    "          part 'Forest Ranger' : User subsets actors;\n",
    "          part Maintenance : User subsets actors;\n",
    "          part 'Fire Department' : ExternalSystem subsets actors;\n",
    "          part 'Meteorology data system' : ExternalSystem subsets actors;\n",
    "          part 'Research analysis system' : ExternalSystem subsets actors;\n",
    "          part 'Weather' : EnvironmentalEffect subsets actors;\n",
    "          part 'Fire' : EnvironmentalEffect subsets actors;\n",
    "          part 'Planet Environment' : EnvironmentalImpact subsets actors;          \n",
    "       }                \n",
    "    \n",
    "       package FFDS_Requirements {\n",
    "          package FFDS_Objectives {\n",
    "             requirement id 'OBJ-B1' 'Market Leader' : Objective {\n",
    "                  doc /* The system will make the vendor the market leader for forest fire detection systems. */\n",
    "             }\n",
    "             requirement id 'OBJ-S1' 'Reliable Detection' : Objective {\n",
    "                  doc /* Any forest fire is detected by the system on time to start effective counteractions. */\n",
    "             }\n",
    "             requirement id 'OBJ-S2' 'Affordability' : Objective {\n",
    "                  doc /* The system is affordable for any forest authority. */\n",
    "             }                               \n",
    "         }\n",
    "      }\n",
    "   }\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"626px\" preserveAspectRatio=\"none\" style=\"width:2416px;height:626px;\" version=\"1.1\" viewBox=\"0 0 2416 626\" width=\"2416px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,258,6,265,29.6094,2394,29.6094,2394,614,16,614,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"265\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"236\" x=\"20\" y=\"22.5332\">ForestFireDetectionSystemModel</text><!--MD5=[e4f7fae6ed58524ba242bb0b0d3be6b7]\n",
       "cluster E2--><polygon fill=\"#FFFFFF\" points=\"40,50,125,50,132,73.6094,2370,73.6094,2370,590,40,590,40,50\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"40\" x2=\"132\" y1=\"73.6094\" y2=\"73.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"79\" x=\"44\" y=\"66.5332\">FFDS_Core</text><!--MD5=[ab3548ab6224ff035c4047a4d30b7567]\n",
       "cluster E15--><polygon fill=\"#FFFFFF\" points=\"1268,94,1418,94,1425,117.6094,2264,117.6094,2264,298,1268,298,1268,94\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"1268\" x2=\"1425\" y1=\"117.6094\" y2=\"117.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"144\" x=\"1272\" y=\"110.5332\">FFDS_Requirements</text><!--MD5=[f1a3512f30367dd9875d25a4c3a74750]\n",
       "cluster E16--><polygon fill=\"#FFFFFF\" points=\"1292,138,1419,138,1426,161.6094,2240,161.6094,2240,274,1292,274,1292,138\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"1292\" x2=\"1426\" y1=\"161.6094\" y2=\"161.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"121\" x=\"1296\" y=\"154.5332\">FFDS_Objectives</text><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"213\" x=\"957.5\" y=\"192\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1046.5\" y=\"209.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"207\" x=\"960.5\" y=\"224.5508\">FFDS System Context: SystemContext</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"958.5\" x2=\"1169.5\" y1=\"232.1875\" y2=\"232.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"255.7266\" id=\"E4\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"312\" x=\"56\" y=\"318\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"194.5\" y=\"335.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"78\" x=\"173\" y=\"350.5508\">FFDS: System</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"57\" x2=\"367\" y1=\"358.1875\" y2=\"358.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"295\" x=\"62\" y=\"373.6064\">problemStatement: String= \"How can we provide a forest fire</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"288\" x=\"62\" y=\"387.4424\">detection system for forest authorities that can be scaled to</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"289\" x=\"62\" y=\"401.2783\">any forest size, is affordable, highly reliable and accurate in</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"111\" x=\"62\" y=\"415.1143\">detecting forest fires.\";</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"147\" x=\"62\" y=\"428.9502\">:&gt;&gt;System::problemStatement</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"292\" x=\"62\" y=\"442.7861\">systemIdea: String= \"The FFDS is a satellite-based system to</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"277\" x=\"62\" y=\"456.6221\">detect forest fires in very large areas. The system is also</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"292\" x=\"62\" y=\"470.458\">equipped with stationary sensors and animal sensors. Using</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"298\" x=\"62\" y=\"484.2939\">different sources for the fire detection increases the reliability</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"299\" x=\"62\" y=\"498.1299\">of the system and enables different system configurations for</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"282\" x=\"62\" y=\"511.9658\">different environmental contexts and price segments. Main</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"292\" x=\"62\" y=\"525.8018\">features of the FFDS are Detecting and reporting forest fires</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"300\" x=\"62\" y=\"539.6377\">on time Monitoring forest and fires Uses the behavior of forest</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"113\" x=\"62\" y=\"553.4736\">animals to detect fires\";</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"113\" x=\"62\" y=\"567.3096\">:&gt;&gt;System::systemIdea</text><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E5\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"87\" x=\"403.5\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"429.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"406.5\" y=\"454.5508\">Operator: User</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"404.5\" x2=\"489.5\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E6\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"112\" x=\"526\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"564.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"106\" x=\"529\" y=\"454.5508\">Administrator: User</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"527\" x2=\"637\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E7\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"118\" x=\"673\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"714.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"112\" x=\"676\" y=\"454.5508\">Forest Ranger: User</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"674\" x2=\"790\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"109\" x=\"826.5\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"863.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"103\" x=\"829.5\" y=\"454.5508\">Maintenance: User</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"827.5\" x2=\"934.5\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E9\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"186\" x=\"971\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1046.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"180\" x=\"974\" y=\"454.5508\">Fire Department: ExternalSystem</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"972\" x2=\"1156\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[96f4274e9e20536e775497830990834d]\n",
       "class E10--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E10\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"233\" x=\"1192.5\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1291.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"227\" x=\"1195.5\" y=\"454.5508\">Meteorology data system: ExternalSystem</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1193.5\" x2=\"1424.5\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[1dd1bfd58a279cf63c5f349dbc8fc6a1]\n",
       "class E11--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E11\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"243\" x=\"1460.5\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1564.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"237\" x=\"1463.5\" y=\"454.5508\">Research analysis system: ExternalSystem</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1461.5\" x2=\"1702.5\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[49a0ec8f00dab7302a31f22d0f0fe584]\n",
       "class E12--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E12\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"167\" x=\"1738.5\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1804.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"161\" x=\"1741.5\" y=\"454.5508\">Weather: EnvironmentalEffect</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1739.5\" x2=\"1904.5\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[ee3c913d1a06f366521f9ef512b67efe]\n",
       "class E13--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E13\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"142\" x=\"1941\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1994.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"136\" x=\"1944\" y=\"454.5508\">Fire: EnvironmentalEffect</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1942\" x2=\"2082\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[bee11217b2f71d958a27249dc326068c]\n",
       "class E14--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E14\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"235\" x=\"2118.5\" y=\"422\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"2218.5\" y=\"439.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"229\" x=\"2121.5\" y=\"454.5508\">Planet Environment: EnvironmentalImpact</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2119.5\" x2=\"2352.5\" y1=\"462.1875\" y2=\"462.1875\"/><!--MD5=[60e55a4a9b2f0dc0a36787c5a2095786]\n",
       "class E17--><rect fill=\"#FFFFFF\" height=\"83.8594\" id=\"E17\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"308\" x=\"1916\" y=\"174\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"2029.5\" y=\"191.457\">«requirement»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"3\" x=\"1978.5\" y=\"206.5508\">[</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"43\" x=\"1981.5\" y=\"206.5508\">OBJ-B1</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"140\" x=\"2024.5\" y=\"206.5508\">] Market Leader: Objective</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1917\" x2=\"2223\" y1=\"214.1875\" y2=\"214.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"293\" x=\"1922\" y=\"229.6064\">The system will make the vendor the market leader for forest</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"110\" x=\"1922\" y=\"243.4424\">fire detection systems.</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1917\" x2=\"2223\" y1=\"249.8594\" y2=\"249.8594\"/><!--MD5=[e3af68e2095dcd46cf4beab32f25c64b]\n",
       "class E18--><rect fill=\"#FFFFFF\" height=\"83.8594\" id=\"E18\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"287\" x=\"1593.5\" y=\"174\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"1696.5\" y=\"191.457\">«requirement»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"3\" x=\"1634\" y=\"206.5508\">[</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"43\" x=\"1637\" y=\"206.5508\">OBJ-S1</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"163\" x=\"1680\" y=\"206.5508\">] Reliable Detection: Objective</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1594.5\" x2=\"1879.5\" y1=\"214.1875\" y2=\"214.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"272\" x=\"1599.5\" y=\"229.6064\">Any forest fire is detected by the system on time to start</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"121\" x=\"1599.5\" y=\"243.4424\">effective counteractions.</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1594.5\" x2=\"1879.5\" y1=\"249.8594\" y2=\"249.8594\"/><!--MD5=[2afd267d199484aabbd2f23ded056bb0]\n",
       "class E19--><rect fill=\"#FFFFFF\" height=\"70.0234\" id=\"E19\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"250\" x=\"1308\" y=\"181\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"1392.5\" y=\"198.457\">«requirement»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"3\" x=\"1349.5\" y=\"213.5508\">[</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"43\" x=\"1352.5\" y=\"213.5508\">OBJ-S2</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"124\" x=\"1395.5\" y=\"213.5508\">] Affordability: Objective</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1309\" x2=\"1557\" y1=\"221.1875\" y2=\"221.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"238\" x=\"1314\" y=\"236.6064\">The system is affordable for any forest authority.</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1309\" x2=\"1557\" y1=\"243.0234\" y2=\"243.0234\"/><!--MD5=[4672eba38e49728da53d11aeb285b987]\n",
       "reverse link E3 to E4--><path d=\"M944.201,217.71 C805.044,222.358 570.933,242.157 386,318 C380.031,320.448 374.077,323.143 368.162,326.04 \" fill=\"none\" id=\"E3&lt;-E4\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"957.366,217.306,951.2462,213.4919,945.3716,217.6739,951.4915,221.4881,957.366,217.306\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[191cde3d490a3f6d7bb551fe3ddca469]\n",
       "reverse link E3 to E5--><path d=\"M944.143,226.195 C802.007,239.227 575.901,267.318 509,318 C475.068,343.706 458.652,392.902 451.595,421.941 \" fill=\"none\" id=\"E3&lt;-E5\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"957.202,225.019,950.8671,221.5739,945.2505,226.0964,951.5854,229.5415,957.202,225.019\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[1026b4b93417a13aa8999a858998add2]\n",
       "reverse link E3 to E6--><path d=\"M944.185,222.129 C856.742,231.314 739.411,255.515 656,318 C620.668,344.468 599.295,393.161 589.15,421.954 \" fill=\"none\" id=\"E3&lt;-E6\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"957.134,220.855,950.7712,217.4617,945.1917,222.03,951.5545,225.4233,957.134,220.855\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[85760999379eecfd2565a9fecdca67e4]\n",
       "reverse link E3 to E7--><path d=\"M951.966,244.062 C904.076,259.76 849.904,283.446 809,318 C775.318,346.453 752.277,393.56 740.69,421.705 \" fill=\"none\" id=\"E3&lt;-E7\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"964.641,240.043,957.7127,238.0433,953.2021,243.6696,960.1304,245.6692,964.641,240.043\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[4cb75b73ec3682b8f7f8edc9cc86126a]\n",
       "reverse link E3 to E8--><path d=\"M1023.98,248.551 C1001.76,267.272 974.556,292.311 954,318 C927.465,351.161 904.485,395.102 891.713,421.647 \" fill=\"none\" id=\"E3&lt;-E8\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1034.11,240.154,1026.9381,240.9051,1024.873,247.8141,1032.0449,247.0631,1034.11,240.154\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[f7e0269b2e2fed3d07255bf4c5cf9d61]\n",
       "reverse link E3 to E9--><path d=\"M1064,253.351 C1064,300.696 1064,382.091 1064,421.822 \" fill=\"none\" id=\"E3&lt;-E9\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1064,240.117,1060,246.117,1064,252.117,1068,246.117,1064,240.117\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[622114938c97d4dd2a5a002a72a9cb82]\n",
       "reverse link E3 to E10--><path d=\"M1099.55,249.014 C1121.41,268.785 1149.95,294.735 1175,318 C1213.75,353.988 1258.22,396.344 1284.93,421.909 \" fill=\"none\" id=\"E3&lt;-E10\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1089.71,240.12,1091.4812,247.1102,1098.6149,248.1638,1096.8437,241.1736,1089.71,240.12\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[c952ee3df3c567026821f78b29f51314]\n",
       "reverse link E3 to E11--><path d=\"M1123.1,245.611 C1168.26,266.093 1232.63,292.366 1292,306 C1357.61,321.068 1381.25,291.176 1443,318 C1495.47,340.792 1541.16,391.77 1564.82,421.748 \" fill=\"none\" id=\"E3&lt;-E11\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1111.18,240.138,1114.9677,246.2742,1122.0888,245.1379,1118.301,239.0017,1111.18,240.138\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[b6f7b5a187b21c9e6d4d1eb3c7c99cd4]\n",
       "reverse link E3 to E12--><path d=\"M1121.19,245.699 C1166.32,266.759 1231.54,293.74 1292,306 C1338.73,315.477 1678.34,296.683 1721,318 C1765.22,340.102 1796.28,391.587 1811.44,421.78 \" fill=\"none\" id=\"E3&lt;-E12\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1109.3,240.071,1113.0077,246.2559,1120.1428,245.2123,1116.4352,239.0274,1109.3,240.071\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[5f79289fc71a65686b815293df984734]\n",
       "reverse link E3 to E13--><path d=\"M1121.16,245.851 C1166.27,266.993 1231.48,294.01 1292,306 C1326.39,312.814 1892.05,301.521 1923,318 C1964.71,340.208 1991.06,391.653 2003.51,421.812 \" fill=\"none\" id=\"E3&lt;-E13\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1109.28,240.2,1112.9795,246.3898,1120.116,245.3556,1116.4166,239.1658,1109.28,240.2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[c7f8b476f4eff356172455d17fe67e32]\n",
       "reverse link E3 to E14--><path d=\"M1120.72,245.722 C1165.84,266.932 1231.27,294.099 1292,306 C1336.11,314.643 2059.34,301.125 2101,318 C2153.49,339.262 2197.62,391.316 2220.07,421.773 \" fill=\"none\" id=\"E3&lt;-E14\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1108.84,240.054,1112.5322,246.2482,1119.6699,245.2224,1115.9778,239.0282,1108.84,240.054\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[fe4b967d9d360e300db6eecd679ad024]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"ForestFireDetectionSystemModel\" as E1   {\r\n",
       "package \"FFDS_Core\" as E2   {\r\n",
       "comp usage \"FFDS System Context: SystemContext\" as E3  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"FFDS: System\" as E4  <<(T,blue)part>> {\r\n",
       "problemStatement: String= \"How can we provide a forest fire detection system for forest authorities that can be scaled to any forest size, is affordable, highly reliable and accurate in detecting forest fires.\"; \\n//:>>System::problemStatement// \r\n",
       "systemIdea: String= \"The FFDS is a satellite-based system to detect forest fires in very large areas. The system is also equipped with stationary sensors and animal sensors. Using different sources for the fire detection increases the reliability of the system and enables different system configurations for different environmental contexts and price segments. Main features of the FFDS are Detecting and reporting forest fires on time Monitoring forest and fires Uses the behavior of forest animals to detect fires\"; \\n//:>>System::systemIdea// \r\n",
       "}\r\n",
       "comp usage \"Operator: User\" as E5  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Administrator: User\" as E6  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Forest Ranger: User\" as E7  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Maintenance: User\" as E8  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Fire Department: ExternalSystem\" as E9  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Meteorology data system: ExternalSystem\" as E10  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Research analysis system: ExternalSystem\" as E11  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Weather: EnvironmentalEffect\" as E12  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Fire: EnvironmentalEffect\" as E13  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Planet Environment: EnvironmentalImpact\" as E14  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "package \"FFDS_Requirements\" as E15   {\r\n",
       "package \"FFDS_Objectives\" as E16   {\r\n",
       "comp usage \" [<b>OBJ-B1</b>] Market Leader: Objective\" as E17  <<(T,blue)requirement>> {\r\n",
       "The system will make the vendor the market leader for forest fire detection systems.\r\n",
       "- -\r\n",
       "}\r\n",
       "comp usage \" [<b>OBJ-S1</b>] Reliable Detection: Objective\" as E18  <<(T,blue)requirement>> {\r\n",
       "Any forest fire is detected by the system on time to start effective counteractions.\r\n",
       "- -\r\n",
       "}\r\n",
       "comp usage \" [<b>OBJ-S2</b>] Affordability: Objective\" as E19  <<(T,blue)requirement>> {\r\n",
       "The system is affordable for any forest authority.\r\n",
       "- -\r\n",
       "}\r\n",
       "E3 *- - E4\r\n",
       "E3 *- - E5\r\n",
       "E3 *- - E6\r\n",
       "E3 *- - E7\r\n",
       "E3 *- - E8\r\n",
       "E3 *- - E9\r\n",
       "E3 *- - E10\r\n",
       "E3 *- - E11\r\n",
       "E3 *- - E12\r\n",
       "E3 *- - E13\r\n",
       "E3 *- - E14\r\n",
       "}\r\n",
       "}\r\n",
       "}\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 10,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz ForestFireDetectionSystemModel"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### System Use Cases"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Use Case Activities"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Domain Model"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Quality Requirements"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Logical Architecture "
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Product Architecture"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### System States"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Verify Architecture with Scenarios"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Test Cases"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### SYSMOD Language Library<a name=\"sysmodlibrary\"></a>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package SYSMOD (66d2be83-519e-496c-b6f8-cabb4d6228ca)\n"
      ]
     },
     "execution_count": 1,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package SYSMOD {\n",
    "\n",
    "    doc /* SYSMOD - The Systems Modeling Toolbox, Version 5.0beta */\n",
    "        \n",
    "    requirement def Objective {\n",
    "        doc /* A objective is an objective of the system. It is a special kind of a requirement that is typically not satisfied but amplified by the system. */\n",
    "    }\n",
    "    \n",
    "    part def System {\n",
    "        doc /* Marks the system under development. Typically there is only one block in the model with that stereotype. However in a System of Systems (SoS) model there could be more. */\n",
    "        import ScalarValues::String;\n",
    "        value problemStatement : String;\n",
    "        value systemIdea : String;\n",
    "    }\n",
    "    \n",
    "    part def SystemContext {\n",
    "        doc /* A system context is a wrapper around the system and it's actors to allow a detailed system context modeling. The system context references the appropriate system. This is important in a SoS model. */\n",
    "            \n",
    "        part systemOfInterest : System;\n",
    "        part actors[0..*];        \n",
    "    }\n",
    "    \n",
    "    part def User;\n",
    "    part def ExternalSystem;\n",
    "    part def EnvironmentalEffect;\n",
    "    part def EnvironmentalImpact;\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"212px\" preserveAspectRatio=\"none\" style=\"width:1691px;height:212px;\" version=\"1.1\" viewBox=\"0 0 1691 212\" width=\"1691px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,84,6,91,29.6094,1669,29.6094,1669,200,16,200,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"91\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"62\" x=\"20\" y=\"22.5332\">SYSMOD</text><!--MD5=[d5e69f78d87373223dbae638b30a9c99]\n",
       "cluster E3--><rect fill=\"#FFFFFF\" height=\"126\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"486\" x=\"1159\" y=\"50\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"1369.5\" y=\"66.5332\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"50\" x=\"1377\" y=\"84.1426\">System</text><!--MD5=[168fadf3d0c3fd93dd5d6da1b1d7ab76]\n",
       "cluster E7--><rect fill=\"#FFFFFF\" height=\"120\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"341\" x=\"794\" y=\"53\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"932\" y=\"69.5332\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"105\" x=\"912\" y=\"87.1426\">SystemContext</text><!--MD5=[b4997ac47864f28c2f74865a473b2911]\n",
       "class E2--><rect fill=\"#FFFFFF\" height=\"56.1875\" id=\"E2\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"103\" x=\"672.5\" y=\"104\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"101\" x=\"673.5\" y=\"121.457\">«requirement def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"50\" x=\"699\" y=\"136.5508\">Objective</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"673.5\" x2=\"774.5\" y1=\"144.1875\" y2=\"144.1875\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"673.5\" x2=\"774.5\" y1=\"152.1875\" y2=\"152.1875\"/><!--MD5=[ebbe1d658d1005bcc118a6aa81145e00]\n",
       "class E4--><rect fill=\"#FFFFFF\" height=\"56.1875\" id=\"E4\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"67\" x=\"1561.5\" y=\"104\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"1562.5\" y=\"121.457\">«dataType»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"32\" x=\"1579\" y=\"136.5508\">String</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1562.5\" x2=\"1627.5\" y1=\"144.1875\" y2=\"144.1875\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1562.5\" x2=\"1627.5\" y1=\"152.1875\" y2=\"152.1875\"/><g id=\"E1.E3.E5\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"180\" x=\"1346\" y=\"107\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1346\" x2=\"1526\" y1=\"134.6094\" y2=\"134.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"160\" x=\"1356\" y=\"126.5332\">problemStatement: String</text></g><g id=\"E1.E3.E6\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"136\" x=\"1175\" y=\"107\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1175\" x2=\"1311\" y1=\"134.6094\" y2=\"134.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"116\" x=\"1185\" y=\"126.5332\">systemIdea: String</text></g><g id=\"E1.E7.E8\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"180\" x=\"939\" y=\"107\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"939\" x2=\"1119\" y1=\"134.6094\" y2=\"134.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"160\" x=\"949\" y=\"126.5332\">systemOfInterest: System</text></g><g id=\"E1.E7.E9\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"93\" x=\"810.5\" y=\"107\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"810.5\" x2=\"903.5\" y1=\"134.6094\" y2=\"134.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"73\" x=\"820.5\" y=\"126.5332\">actors: Part</text></g><!--MD5=[5f0b914479bff737ca55660e3e3698b4]\n",
       "entity E10--><rect fill=\"#FFFFFF\" height=\"55.2188\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"85\" x=\"552.5\" y=\"104.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"562.5\" y=\"129.0332\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"29\" x=\"580.5\" y=\"146.6426\">User</text><!--MD5=[5dfc11381a0c46cc2309669032e4b49b]\n",
       "entity E11--><rect fill=\"#FFFFFF\" height=\"55.2188\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"117\" x=\"400.5\" y=\"104.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"426.5\" y=\"129.0332\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"97\" x=\"410.5\" y=\"146.6426\">ExternalSystem</text><!--MD5=[73864dfa0f039556cbf22b088c15ae08]\n",
       "entity E12--><rect fill=\"#FFFFFF\" height=\"55.2188\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"146\" x=\"219\" y=\"104.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"259.5\" y=\"129.0332\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"126\" x=\"229\" y=\"146.6426\">EnvironmentalEffect</text><!--MD5=[3822a2a4541e754d1dc15080999c19ba]\n",
       "entity E13--><rect fill=\"#FFFFFF\" height=\"55.2188\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"151\" x=\"32.5\" y=\"104.5\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"65\" x=\"75.5\" y=\"129.0332\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"131\" x=\"42.5\" y=\"146.6426\">EnvironmentalImpact</text><!--MD5=[b8ee525f20861083db62d25a100f7813]\n",
       "@startuml\r\n",
       "skinparam ranksep 8\r\n",
       "skinparam rectangle {\r\n",
       " backgroundColor<<block>> LightGreen\r\n",
       "}\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"SYSMOD\" as E1   {\r\n",
       "def \"Objective\" as E2  <<requirement def>> \r\n",
       "rec def \"System\" as E3  <<part def>> {\r\n",
       "def \"String\" as E4  <<dataType>> \r\n",
       "rec usage \"problemStatement: String\" as E5  <<attribute>> {\r\n",
       "}\r\n",
       "rec usage \"systemIdea: String\" as E6  <<attribute>> {\r\n",
       "}\r\n",
       "}\r\n",
       "rec def \"SystemContext\" as E7  <<part def>> {\r\n",
       "rec usage \"systemOfInterest: System\" as E8  {\r\n",
       "}\r\n",
       "rec usage \"actors: Part\" as E9  {\r\n",
       "}\r\n",
       "}\r\n",
       "rec def \"User\" as E10  <<part def>> {\r\n",
       "}\r\n",
       "rec def \"ExternalSystem\" as E11  <<part def>> {\r\n",
       "}\r\n",
       "rec def \"EnvironmentalEffect\" as E12  <<part def>> {\r\n",
       "}\r\n",
       "rec def \"EnvironmentalImpact\" as E13  <<part def>> {\r\n",
       "}\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 10,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz SYSMOD"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## FAS with SysML v2<a name=\"sysmlv2fas\"></a>\n",
    "\n",
    "The example is taken from the tutorial of the FAS plugin for MagicDraw: http://sourceforge.net/projects/fas4md/files/FAS_plugin_tutorial.pdf/download."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Package TheFASJukeBox (c7fafbbd-172c-407c-9fb0-82b40b0b5342)\n"
      ]
     },
     "execution_count": 2,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "package TheFASJukeBox {\n",
    "    \n",
    "    package FASLanguage {\n",
    "        part def FunctionalBlock;\n",
    "    }\n",
    "    \n",
    "    package UseCases {\n",
    "        activity '(Un)install and Move Jukebox';\n",
    "        activity 'Ask for Track to Play';\n",
    "        activity 'Assemble Music Collection';\n",
    "        activity 'Connect Jukebox with Electrical Supply';\n",
    "        activity 'Disconnect from Electrical Supply';\n",
    "        activity 'Distribute Energy';\n",
    "        activity 'Get Energy';\n",
    "        activity 'Get Mechanical Energy';\n",
    "        activity 'Get Money';\n",
    "        activity 'Insert Cash';\n",
    "        activity 'Install Jukebox';\n",
    "        activity 'Listen to Music';\n",
    "        activity 'Make Music Available';\n",
    "        activity 'Monitor Payment';\n",
    "        activity 'Play Music Track';\n",
    "        activity 'Produce Sound';\n",
    "        activity 'Provide Music Track';\n",
    "        activity 'Retrieve Identification of Music Track';\n",
    "        activity 'Retrieve Money';\n",
    "        activity 'Supply Jukebox with Energy';\n",
    "        activity 'Transform Mechanical Engery into Something Harmless';\n",
    "        activity 'Uninstall Jukebox';\n",
    "        activity 'Use Means of Music Transfer to Retrieve Music';\n",
    "    }\n",
    "    \n",
    "    package DomainKnowledge {\n",
    "        item def AudioSignal;\n",
    "        item def ClearanceToPlayMusic;\n",
    "        item def ElectricalEnergy;\n",
    "        item def IdentificationOfMusicTrack;\n",
    "        item def MechanicalEnergy;\n",
    "        item def Money;\n",
    "        item def MusicTrack;\n",
    "    }\n",
    "\n",
    "    package FunctionalArchitecture {\n",
    "        \n",
    "        import UseCases::*;\n",
    "        import DomainKnowledge::*;\n",
    "        import FASLanguage::*;\n",
    "        import SYSMOD::*;\n",
    "        \n",
    "        package FunctionalInterfaces {\n",
    "\n",
    "            port def AudioSignalPort {\n",
    "                out item a : AudioSignal;\n",
    "            }\n",
    "            port def ClearanceToPlayMusicPort {\n",
    "                out item m : ClearanceToPlayMusic;\n",
    "            }\n",
    "            port def ElectricalEnergyPort {\n",
    "                out item e : ElectricalEnergy;\n",
    "            }\n",
    "            port def IdentificationOfMusicTrackPort {\n",
    "                out item m : IdentificationOfMusicTrack;\n",
    "            }\n",
    "            port def MechanicalEnergyPort {\n",
    "                out item m : MechanicalEnergy;\n",
    "            }\n",
    "            port def MoneyPort {\n",
    "                out item m : Money;\n",
    "            }\n",
    "            port def MusicTrackPort {\n",
    "                out item m : MusicTrack;\n",
    "            }\n",
    "        }\n",
    "\n",
    "        part TheFASJukeBoxFunctionalContext {\n",
    "            \n",
    "            import FunctionalInterfaces::*;\n",
    "            \n",
    "            part TheFASJukeBoxFunctionalArchitecture {\n",
    "\n",
    "                dependency from TheFASJukeBoxFunctionalArchitecture to '(Un)install and Move Jukebox';\n",
    "                dependency from TheFASJukeBoxFunctionalArchitecture to 'Assemble Music Collection';\n",
    "                dependency from TheFASJukeBoxFunctionalArchitecture to 'Listen to Music';\n",
    "                dependency from TheFASJukeBoxFunctionalArchitecture to 'Supply Jukebox with Energy';\n",
    "\n",
    "                part 'I/O Customer' : FunctionalBlock {\n",
    "                    dependency from 'I/O Customer' to 'Ask for Track to Play';\n",
    "                    dependency from 'I/O Customer' to 'Get Money';\n",
    "                    dependency from 'I/O Customer' to 'Produce Sound';\n",
    "                    \n",
    "                    port p1 : MoneyPort;\n",
    "                    port p2 : ~AudioSignalPort;\n",
    "                    port p3 : IdentificationOfMusicTrackPort;\n",
    "                }\n",
    "                part 'I/O Electrical Supply' : FunctionalBlock {\n",
    "                    dependency from 'I/O Electrical Supply' to 'Get Energy';\n",
    "                    \n",
    "                    port p1 : ElectricalEnergyPort;\n",
    "                }\n",
    "                part 'I/O Music Supplier' : FunctionalBlock {\n",
    "                    dependency from 'I/O Music Supplier' to 'Use Means of Music Transfer to Retrieve Music';\n",
    "                    \n",
    "                    port p1 : MusicTrackPort;\n",
    "                }\n",
    "                part 'I/O Pub Interior' : FunctionalBlock {\n",
    "                    dependency from 'I/O Pub Interior' to 'Get Mechanical Energy';\n",
    "                    \n",
    "                    port p1 : MechanicalEnergyPort;\n",
    "                }\n",
    "                part 'I/O Pub Manager' : FunctionalBlock {\n",
    "                    dependency from 'I/O Pub Manager' to 'Connect Jukebox with Electrical Supply';\n",
    "                    dependency from 'I/O Pub Manager' to 'Disconnect from Electrical Supply';\n",
    "                    dependency from 'I/O Pub Manager' to 'Insert Cash';\n",
    "                    dependency from 'I/O Pub Manager' to 'Retrieve Identification of Music Track';\n",
    "\n",
    "                    port p1 : IdentificationOfMusicTrackPort;\n",
    "                }\n",
    "                part Accounting : FunctionalBlock {\n",
    "                    dependency from Accounting to 'Monitor Payment';\n",
    "                    \n",
    "                    port p1 : ClearanceToPlayMusicPort;\n",
    "                    port p2 : ~MoneyPort;\n",
    "                }\n",
    "                part 'Energy Distribution' : FunctionalBlock {\n",
    "                    dependency from 'Energy Distribution' to 'Distribute Energy';\n",
    "                    \n",
    "                    port p1 : ~ElectricalEnergyPort;\n",
    "                }\n",
    "                part 'Music Player' : FunctionalBlock {\n",
    "                    dependency from 'Music Player' to 'Play Music Track';\n",
    "                    \n",
    "                    port p1 : AudioSignalPort;\n",
    "                }\n",
    "                part 'Music Storage' : FunctionalBlock {\n",
    "                    dependency from 'Music Storage' to 'Make Music Available';\n",
    "                    dependency from 'Music Storage' to 'Provide Music Track';\n",
    "\n",
    "                    port p1 : ~IdentificationOfMusicTrackPort;\n",
    "                    port p2 : ~MusicTrackPort;\n",
    "                    port p3 : ClearanceToPlayMusicPort;\n",
    "                }\n",
    "                part Suspension : FunctionalBlock {\n",
    "                    dependency from Suspension to 'Uninstall Jukebox';\n",
    "                    \n",
    "                    port p1 : ~MechanicalEnergyPort;\n",
    "                }\n",
    "\n",
    "                connect 'I/O Pub Manager'::p1 to 'Music Storage'::p1;\n",
    "                connect 'I/O Pub Manager' to 'Accounting';\n",
    "                connect 'I/O Music Supplier'::p1 to 'Music Storage'::p2;\n",
    "                connect 'Accounting'::p1 to 'Music Storage'::p3;\n",
    "                connect 'I/O Customer'::p1 to Accounting::p2;\n",
    "                connect 'Music Player'::p1 to 'I/O Customer'::p2;\n",
    "                connect 'I/O Customer'::p3 to 'Music Storage'::p1;\n",
    "                connect 'I/O Electrical Supply'::p1 to 'Energy Distribution'::p1;\n",
    "                connect 'I/O Pub Interior'::p1 to Suspension::p1;\n",
    "            }\n",
    "\n",
    "            part Customer : User;\n",
    "            part 'Pub Manager' : User;\n",
    "            part 'Music Supplier' : ExternalSystem;\n",
    "            part 'Electrical Supply' : ExternalSystem;\n",
    "            part 'Pub Interior' : ExternalSystem;\n",
    "            \n",
    "            connect 'Pub Manager' to TheFASJukeBoxFunctionalArchitecture::'I/O Pub Manager';\n",
    "            connect 'Music Supplier' to TheFASJukeBoxFunctionalArchitecture::'I/O Music Supplier';\n",
    "            connect Customer to TheFASJukeBoxFunctionalArchitecture::'I/O Customer';\n",
    "            connect 'Electrical Supply' to TheFASJukeBoxFunctionalArchitecture::'I/O Electrical Supply';\n",
    "            connect 'Pub Interior' to TheFASJukeBoxFunctionalArchitecture::'I/O Pub Interior';\n",
    "        }\n",
    "    }   \n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"692px\" preserveAspectRatio=\"none\" style=\"width:4152px;height:692px;\" version=\"1.1\" viewBox=\"0 0 4152 692\" width=\"4152px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><polygon fill=\"#FFFFFF\" points=\"16,6,136,6,143,29.6094,4130,29.6094,4130,680,16,680,16,6\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"16\" x2=\"143\" y1=\"29.6094\" y2=\"29.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"114\" x=\"20\" y=\"22.5332\">TheFASJukeBox</text><!--MD5=[e4f7fae6ed58524ba242bb0b0d3be6b7]\n",
       "cluster E2--><polygon fill=\"#FFFFFF\" points=\"40,556,142,556,149,579.6094,166,579.6094,166,656,40,656,40,556\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"40\" x2=\"149\" y1=\"579.6094\" y2=\"579.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"96\" x=\"44\" y=\"572.5332\">FASLanguage</text><!--MD5=[f6df4d0ebaf0b5dfb2ced0ae5af7c670]\n",
       "cluster E4--><polygon fill=\"#FFFFFF\" points=\"190,556,266,556,273,579.6094,4106,579.6094,4106,656,190,656,190,556\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"190\" x2=\"273\" y1=\"579.6094\" y2=\"579.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"70\" x=\"194\" y=\"572.5332\">UseCases</text><!--MD5=[2f0afd24c78442d4f5bb8ec5a9a774bc]\n",
       "cluster E28--><polygon fill=\"#FFFFFF\" points=\"2911,110,3048,110,3055,133.6094,3835,133.6094,3835,210,2911,210,2911,110\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"2911\" x2=\"3055\" y1=\"133.6094\" y2=\"133.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"131\" x=\"2915\" y=\"126.5332\">DomainKnowledge</text><!--MD5=[d82e600d5bff1b9414ed01a44f80003c]\n",
       "cluster E36--><polygon fill=\"#FFFFFF\" points=\"439,50,606,50,613,73.6094,2617,73.6094,2617,506,439,506,439,50\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"439\" x2=\"613\" y1=\"73.6094\" y2=\"73.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"161\" x=\"443\" y=\"66.5332\">FunctionalArchitecture</text><!--MD5=[d3830175e0981549895ee8d9e3caaa09]\n",
       "cluster E37--><polygon fill=\"#FFFFFF\" points=\"1533,94,1684,94,1691,117.6094,2593,117.6094,2593,226,1533,226,1533,94\" style=\"stroke: #000000; stroke-width: 1.5;\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"1533\" x2=\"1691\" y1=\"117.6094\" y2=\"117.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" font-weight=\"bold\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"145\" x=\"1537\" y=\"110.5332\">FunctionalInterfaces</text><!--MD5=[09b614a08d8cba4a07c9adeb5e0fee81]\n",
       "class E3--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E3\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"93\" x=\"56.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"75.5\" y=\"609.457\">«part def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"87\" x=\"59.5\" y=\"624.5508\">FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"57.5\" x2=\"148.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[270fce915f116d4de14055a7c1d9a0f3]\n",
       "class E5--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"166\" x=\"3733\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"3782.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"160\" x=\"3736\" y=\"624.5508\">(Un)install and Move Jukebox</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3734\" x2=\"3898\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[60a26617385b1d2d0262a64233df1f8d]\n",
       "class E6--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E6\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"115\" x=\"3140.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"3164.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"109\" x=\"3143.5\" y=\"624.5508\">Ask for Track to Play</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3141.5\" x2=\"3254.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[2156ba9850f5573cc1fc38a6a4b2f02b]\n",
       "class E7--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E7\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"155\" x=\"3934.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"3978.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"149\" x=\"3937.5\" y=\"624.5508\">Assemble Music Collection</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3935.5\" x2=\"4088.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[b9389687b975829384b498ac4b7476b2]\n",
       "class E8--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E8\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"218\" x=\"1646\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"1721.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"212\" x=\"1649\" y=\"624.5508\">Connect Jukebox with Electrical Supply</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1647\" x2=\"1863\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[fd4143e9d270a159db93a4ea2a975926]\n",
       "class E9--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E9\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"189\" x=\"1899.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"1960.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"183\" x=\"1902.5\" y=\"624.5508\">Disconnect from Electrical Supply</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1900.5\" x2=\"2087.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[96f4274e9e20536e775497830990834d]\n",
       "class E10--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"100\" x=\"1378\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"1394.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"94\" x=\"1381\" y=\"624.5508\">Distribute Energy</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1379\" x2=\"1477\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[1dd1bfd58a279cf63c5f349dbc8fc6a1]\n",
       "class E11--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E11\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"69\" x=\"503.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"504.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"60\" x=\"508\" y=\"624.5508\">Get Energy</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"504.5\" x2=\"571.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[49a0ec8f00dab7302a31f22d0f0fe584]\n",
       "class E12--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E12\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"131\" x=\"955.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"987.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"125\" x=\"958.5\" y=\"624.5508\">Get Mechanical Energy</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"956.5\" x2=\"1085.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[ee3c913d1a06f366521f9ef512b67efe]\n",
       "class E13--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E13\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"69\" x=\"3036.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"3037.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"57\" x=\"3042.5\" y=\"624.5508\">Get Money</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3037.5\" x2=\"3104.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[bee11217b2f71d958a27249dc326068c]\n",
       "class E14--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E14\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"70\" x=\"2124\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"2125.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"64\" x=\"2127\" y=\"624.5508\">Insert Cash</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2125\" x2=\"2193\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[0c48fb7552dae8cbbef69381101a84c8]\n",
       "class E15--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E15\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"87\" x=\"2468.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"2478.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"81\" x=\"2471.5\" y=\"624.5508\">Install Jukebox</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2469.5\" x2=\"2554.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[35f0587eaee8d5bb9a02e25b63afc23b]\n",
       "class E16--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E16\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"88\" x=\"3417\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"3427.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"82\" x=\"3420\" y=\"624.5508\">Listen to Music</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3418\" x2=\"3504\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[60e55a4a9b2f0dc0a36787c5a2095786]\n",
       "class E17--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E17\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"122\" x=\"2729\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"2756.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"116\" x=\"2732\" y=\"624.5508\">Make Music Available</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2730\" x2=\"2850\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[e3af68e2095dcd46cf4beab32f25c64b]\n",
       "class E18--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E18\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"97\" x=\"1513.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"1528.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"91\" x=\"1516.5\" y=\"624.5508\">Monitor Payment</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1514.5\" x2=\"1609.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[2afd267d199484aabbd2f23ded056bb0]\n",
       "class E19--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E19\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"97\" x=\"1245.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"1260.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"91\" x=\"1248.5\" y=\"624.5508\">Play Music Track</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1246.5\" x2=\"1341.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[98c62f1084e4f84a692d89b659ad1ae4]\n",
       "class E20--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E20\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"91\" x=\"3290.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"3302.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"85\" x=\"3293.5\" y=\"624.5508\">Produce Sound</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3291.5\" x2=\"3380.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[0a5eafc7463fe4c3b6356fe5913c4902]\n",
       "class E21--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E21\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"115\" x=\"2886.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"2910.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"109\" x=\"2889.5\" y=\"624.5508\">Provide Music Track</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2887.5\" x2=\"3000.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[6284cf9f06086a212f4fa89d0d29ec03]\n",
       "class E22--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E22\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"204\" x=\"2229\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"2297.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"198\" x=\"2232\" y=\"624.5508\">Retrieve Identification of Music Track</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2230\" x2=\"2432\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[a4184b15efaeca9fb90158e34dfc9305]\n",
       "class E23--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E23\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"89\" x=\"1121.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"1132.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"83\" x=\"1124.5\" y=\"624.5508\">Retrieve Money</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1122.5\" x2=\"1209.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[d961d9d5dcc77964a221abceaadb3cc6]\n",
       "class E24--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E24\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"157\" x=\"3540.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"3585.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"151\" x=\"3543.5\" y=\"624.5508\">Supply Jukebox with Energy</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3541.5\" x2=\"3696.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[27602d2299176a43176dae1470eb318a]\n",
       "class E25--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E25\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"313\" x=\"607.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"730.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"307\" x=\"610.5\" y=\"624.5508\">Transform Mechanical Engery into Something Harmless</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"608.5\" x2=\"919.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[cd9920ba5ec815a2e5c5d0d6af8dfd7b]\n",
       "class E26--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E26\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"103\" x=\"2590.5\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"2608.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"97\" x=\"2593.5\" y=\"624.5508\">Uninstall Jukebox</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2591.5\" x2=\"2692.5\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[066bc520e5788adc19ecb36845367d7b]\n",
       "class E27--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E27\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"262\" x=\"206\" y=\"592\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"67\" x=\"303.5\" y=\"609.457\">«action def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"256\" x=\"209\" y=\"624.5508\">Use Means of Music Transfer to Retrieve Music</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"207\" x2=\"467\" y1=\"632.1875\" y2=\"632.1875\"/><!--MD5=[25464c42cc0d14ebb0038e04d39d9569]\n",
       "class E29--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E29\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"72\" x=\"3747\" y=\"146\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"58\" x=\"3754\" y=\"163.457\">«item def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"66\" x=\"3750\" y=\"178.5508\">AudioSignal</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3748\" x2=\"3818\" y1=\"186.1875\" y2=\"186.1875\"/><!--MD5=[6366ee80e77914263c86fca8571e11f5]\n",
       "class E30--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E30\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"132\" x=\"3580\" y=\"146\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"58\" x=\"3617\" y=\"163.457\">«item def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"126\" x=\"3583\" y=\"178.5508\">ClearanceToPlayMusic</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3581\" x2=\"3711\" y1=\"186.1875\" y2=\"186.1875\"/><!--MD5=[25feff12fec73981df06979b9bb6cf9e]\n",
       "class E31--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E31\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"94\" x=\"3451\" y=\"146\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"58\" x=\"3469\" y=\"163.457\">«item def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"3454\" y=\"178.5508\">ElectricalEnergy</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3452\" x2=\"3544\" y1=\"186.1875\" y2=\"186.1875\"/><!--MD5=[541982d0c4e6f81f5d688cdf05a252dd]\n",
       "class E32--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E32\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"149\" x=\"3266.5\" y=\"146\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"58\" x=\"3312\" y=\"163.457\">«item def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"143\" x=\"3269.5\" y=\"178.5508\">IdentificationOfMusicTrack</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3267.5\" x2=\"3414.5\" y1=\"186.1875\" y2=\"186.1875\"/><!--MD5=[c001dd83e7e635e78b1155d783a31b32]\n",
       "class E33--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E33\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"106\" x=\"3125\" y=\"146\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"58\" x=\"3149\" y=\"163.457\">«item def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"100\" x=\"3128\" y=\"178.5508\">MechanicalEnergy</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3126\" x2=\"3230\" y1=\"186.1875\" y2=\"186.1875\"/><!--MD5=[2d9fbeae1c55644634d3f76b2d39f306]\n",
       "class E34--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E34\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"60\" x=\"3030\" y=\"146\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"58\" x=\"3031\" y=\"163.457\">«item def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"3042.5\" y=\"178.5508\">Money</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3031\" x2=\"3089\" y1=\"186.1875\" y2=\"186.1875\"/><!--MD5=[4bed7091ef0f4510d2ba4e40068699fa]\n",
       "class E35--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E35\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"68\" x=\"2927\" y=\"146\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"58\" x=\"2932\" y=\"163.457\">«item def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"62\" x=\"2930\" y=\"178.5508\">MusicTrack</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2928\" x2=\"2994\" y1=\"186.1875\" y2=\"186.1875\"/><!--MD5=[0a35238ba3ead4d973bf2299dd53feb0]\n",
       "class E52--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E52\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"221\" x=\"1292.5\" y=\"146\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1385.5\" y=\"163.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"215\" x=\"1295.5\" y=\"178.5508\">TheFASJukeBoxFunctionalContext: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1293.5\" x2=\"1512.5\" y1=\"186.1875\" y2=\"186.1875\"/><!--MD5=[c1e2eec4360a6cb215ea5ab1a98c5668]\n",
       "class E53--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E53\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"244\" x=\"1311\" y=\"273\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1415.5\" y=\"290.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"238\" x=\"1314\" y=\"305.5508\">TheFASJukeBoxFunctionalArchitecture: Part</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1312\" x2=\"1554\" y1=\"313.1875\" y2=\"313.1875\"/><!--MD5=[e658748ad39c9e428a00c3bb17362aef]\n",
       "class E54--><rect fill=\"#FFFFFF\" height=\"107.5313\" id=\"E54\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"176\" x=\"2425\" y=\"382\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"2495.5\" y=\"399.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"166\" x=\"2430\" y=\"414.5508\">I/O Customer: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2426\" x2=\"2600\" y1=\"422.1875\" y2=\"422.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"69\" x=\"2431\" y=\"455.4424\">p1: MoneyPort</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"100\" x=\"2431\" y=\"469.2783\">p2: ~AudioSignalPort</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"164\" x=\"2431\" y=\"483.1143\">p3: IdentificationOfMusicTrackPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2426\" x2=\"2500.5\" y1=\"437.1055\" y2=\"437.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"2500.5\" y=\"441.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2525.5\" x2=\"2600\" y1=\"437.1055\" y2=\"437.1055\"/><!--MD5=[aa0ba4058ce3aabd0d0dfe8c7406759c]\n",
       "class E58--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E58\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"207\" x=\"903.5\" y=\"396\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"989.5\" y=\"413.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"201\" x=\"906.5\" y=\"428.5508\">I/O Electrical Supply: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"904.5\" x2=\"1109.5\" y1=\"436.1875\" y2=\"436.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"114\" x=\"909.5\" y=\"469.4424\">p1: ElectricalEnergyPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"904.5\" x2=\"994.5\" y1=\"451.1055\" y2=\"451.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"994.5\" y=\"455.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1019.5\" x2=\"1109.5\" y1=\"451.1055\" y2=\"451.1055\"/><!--MD5=[43a0aaa6ccc5ffecb1d9d6c429068755]\n",
       "class E60--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E60\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"198\" x=\"455\" y=\"396\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"536.5\" y=\"413.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"192\" x=\"458\" y=\"428.5508\">I/O Music Supplier: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"456\" x2=\"652\" y1=\"436.1875\" y2=\"436.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"92\" x=\"461\" y=\"469.4424\">p1: MusicTrackPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"456\" x2=\"541.5\" y1=\"451.1055\" y2=\"451.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"541.5\" y=\"455.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"566.5\" x2=\"652\" y1=\"451.1055\" y2=\"451.1055\"/><!--MD5=[b673fc53e05caebd98366d82742eaffe]\n",
       "class E62--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E62\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"180\" x=\"688\" y=\"396\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"760.5\" y=\"413.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"174\" x=\"691\" y=\"428.5508\">I/O Pub Interior: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"689\" x2=\"867\" y1=\"436.1875\" y2=\"436.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"125\" x=\"694\" y=\"469.4424\">p1: MechanicalEnergyPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"689\" x2=\"765.5\" y1=\"451.1055\" y2=\"451.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"765.5\" y=\"455.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"790.5\" x2=\"867\" y1=\"451.1055\" y2=\"451.1055\"/><!--MD5=[67ee8e9e6a44d50103ae9dbf9abdd284]\n",
       "class E64--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E64\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"190\" x=\"1983\" y=\"396\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"2060.5\" y=\"413.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"184\" x=\"1986\" y=\"428.5508\">I/O Pub Manager: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1984\" x2=\"2172\" y1=\"436.1875\" y2=\"436.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"164\" x=\"1989\" y=\"469.4424\">p1: IdentificationOfMusicTrackPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1984\" x2=\"2065.5\" y1=\"451.1055\" y2=\"451.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"2065.5\" y=\"455.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2090.5\" x2=\"2172\" y1=\"451.1055\" y2=\"451.1055\"/><!--MD5=[519cf3b4786fbe4f15abdc0de402df2c]\n",
       "class E66--><rect fill=\"#FFFFFF\" height=\"93.6953\" id=\"E66\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"159\" x=\"1587.5\" y=\"389\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1649.5\" y=\"406.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"153\" x=\"1590.5\" y=\"421.5508\">Accounting: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1588.5\" x2=\"1745.5\" y1=\"429.1875\" y2=\"429.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"146\" x=\"1593.5\" y=\"462.4424\">p1: ClearanceToPlayMusicPort</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"75\" x=\"1593.5\" y=\"476.2783\">p2: ~MoneyPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1588.5\" x2=\"1654.5\" y1=\"444.1055\" y2=\"444.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"1654.5\" y=\"448.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1679.5\" x2=\"1745.5\" y1=\"444.1055\" y2=\"444.1055\"/><!--MD5=[6bcfe46f38fffd76c258130a08fdd4cb]\n",
       "class E69--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E69\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"203\" x=\"1349.5\" y=\"396\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1433.5\" y=\"413.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"197\" x=\"1352.5\" y=\"428.5508\">Energy Distribution: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1350.5\" x2=\"1551.5\" y1=\"436.1875\" y2=\"436.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"120\" x=\"1355.5\" y=\"469.4424\">p1: ~ElectricalEnergyPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1350.5\" x2=\"1438.5\" y1=\"451.1055\" y2=\"451.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"1438.5\" y=\"455.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1463.5\" x2=\"1551.5\" y1=\"451.1055\" y2=\"451.1055\"/><!--MD5=[95dbd26da6bdf629b18903685c39dee4]\n",
       "class E71--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E71\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"168\" x=\"1146\" y=\"396\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1212.5\" y=\"413.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"162\" x=\"1149\" y=\"428.5508\">Music Player: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1147\" x2=\"1313\" y1=\"436.1875\" y2=\"436.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"94\" x=\"1152\" y=\"469.4424\">p1: AudioSignalPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1147\" x2=\"1217.5\" y1=\"451.1055\" y2=\"451.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"1217.5\" y=\"455.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1242.5\" x2=\"1313\" y1=\"451.1055\" y2=\"451.1055\"/><!--MD5=[b14c858f64fd0dcfcb6b8a99df16206b]\n",
       "class E73--><rect fill=\"#FFFFFF\" height=\"107.5313\" id=\"E73\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"182\" x=\"2208\" y=\"382\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"2281.5\" y=\"399.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"171\" x=\"2213.5\" y=\"414.5508\">Music Storage: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2209\" x2=\"2389\" y1=\"422.1875\" y2=\"422.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"170\" x=\"2214\" y=\"455.4424\">p1: ~IdentificationOfMusicTrackPort</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"98\" x=\"2214\" y=\"469.2783\">p2: ~MusicTrackPort</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"146\" x=\"2214\" y=\"483.1143\">p3: ClearanceToPlayMusicPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2209\" x2=\"2286.5\" y1=\"437.1055\" y2=\"437.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"2286.5\" y=\"441.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2311.5\" x2=\"2389\" y1=\"437.1055\" y2=\"437.1055\"/><!--MD5=[65fe413742f8f59252703b2386f6e5e6]\n",
       "class E77--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E77\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"166\" x=\"1782\" y=\"396\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1847.5\" y=\"413.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"160\" x=\"1785\" y=\"428.5508\">Suspension: FunctionalBlock</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1783\" x2=\"1947\" y1=\"436.1875\" y2=\"436.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"131\" x=\"1788\" y=\"469.4424\">p1: ~MechanicalEnergyPort</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1783\" x2=\"1852.5\" y1=\"451.1055\" y2=\"451.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"1852.5\" y=\"455.1064\">ports</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1877.5\" x2=\"1947\" y1=\"451.1055\" y2=\"451.1055\"/><!--MD5=[10d525ea05cb2082cbc57e4b30a6758c]\n",
       "class E79--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E79\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"94\" x=\"1590\" y=\"273\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1619.5\" y=\"290.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"1593\" y=\"305.5508\">Customer: User</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1591\" x2=\"1683\" y1=\"313.1875\" y2=\"313.1875\"/><!--MD5=[54b7cb996b06535293f54122c71a33aa]\n",
       "class E80--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E80\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"112\" x=\"1719\" y=\"273\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1757.5\" y=\"290.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"106\" x=\"1722\" y=\"305.5508\">Pub Manager: User</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1720\" x2=\"1830\" y1=\"313.1875\" y2=\"313.1875\"/><!--MD5=[5a52627e34f563723e54d7a71754e5d7]\n",
       "class E81--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E81\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"178\" x=\"1866\" y=\"273\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"1937.5\" y=\"290.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"172\" x=\"1869\" y=\"305.5508\">Music Supplier: ExternalSystem</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1867\" x2=\"2043\" y1=\"313.1875\" y2=\"313.1875\"/><!--MD5=[afc1f32a29e46a330823ee7d4e3093ae]\n",
       "class E82--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E82\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"187\" x=\"2079.5\" y=\"273\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"2155.5\" y=\"290.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"181\" x=\"2082.5\" y=\"305.5508\">Electrical Supply: ExternalSystem</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2080.5\" x2=\"2265.5\" y1=\"313.1875\" y2=\"313.1875\"/><!--MD5=[1a59caccb644ebb0f37264ffee2f2afa]\n",
       "class E83--><rect fill=\"#FFFFFF\" height=\"48.1875\" id=\"E83\" rx=\"10\" ry=\"10\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"160\" x=\"2302\" y=\"273\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"35\" x=\"2364.5\" y=\"290.457\">«part»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"154\" x=\"2305\" y=\"305.5508\">Pub Interior: ExternalSystem</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2303\" x2=\"2461\" y1=\"313.1875\" y2=\"313.1875\"/><!--MD5=[083bb9bd746f04a0a4515a3d1bab9f78]\n",
       "class E38--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E38\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"94\" x=\"2483\" y=\"130\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"2502.5\" y=\"147.457\">«port def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"88\" x=\"2486\" y=\"162.5508\">AudioSignalPort</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2484\" x2=\"2576\" y1=\"170.1875\" y2=\"170.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"69\" x=\"2489\" y=\"203.4424\">a: AudioSignal</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2484\" x2=\"2517.5\" y1=\"185.1055\" y2=\"185.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"2517.5\" y=\"189.1064\">items</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2542.5\" x2=\"2576\" y1=\"185.1055\" y2=\"185.1055\"/><!--MD5=[de9ab62424c84275f0e8550964ee4428]\n",
       "class E40--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E40\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"154\" x=\"2294\" y=\"130\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"2343.5\" y=\"147.457\">«port def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"148\" x=\"2297\" y=\"162.5508\">ClearanceToPlayMusicPort</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2295\" x2=\"2447\" y1=\"170.1875\" y2=\"170.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"123\" x=\"2300\" y=\"203.4424\">m: ClearanceToPlayMusic</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2295\" x2=\"2358.5\" y1=\"185.1055\" y2=\"185.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"2358.5\" y=\"189.1064\">items</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2383.5\" x2=\"2447\" y1=\"185.1055\" y2=\"185.1055\"/><!--MD5=[c31ca20d5303d26323f505ce5af8a2cb]\n",
       "class E42--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E42\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"116\" x=\"2143\" y=\"130\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"2173.5\" y=\"147.457\">«port def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"110\" x=\"2146\" y=\"162.5508\">ElectricalEnergyPort</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"2144\" x2=\"2258\" y1=\"170.1875\" y2=\"170.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"89\" x=\"2149\" y=\"203.4424\">e: ElectricalEnergy</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2144\" x2=\"2188.5\" y1=\"185.1055\" y2=\"185.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"2188.5\" y=\"189.1064\">items</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2213.5\" x2=\"2258\" y1=\"185.1055\" y2=\"185.1055\"/><!--MD5=[22b6b591e8a4768415521beb1a77d9b7]\n",
       "class E44--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E44\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"171\" x=\"1936.5\" y=\"130\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"1994.5\" y=\"147.457\">«port def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"165\" x=\"1939.5\" y=\"162.5508\">IdentificationOfMusicTrackPort</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1937.5\" x2=\"2106.5\" y1=\"170.1875\" y2=\"170.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"141\" x=\"1942.5\" y=\"203.4424\">m: IdentificationOfMusicTrack</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1937.5\" x2=\"2009.5\" y1=\"185.1055\" y2=\"185.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"2009.5\" y=\"189.1064\">items</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"2034.5\" x2=\"2106.5\" y1=\"185.1055\" y2=\"185.1055\"/><!--MD5=[e446e6635b0a21d74509846bd38e1295]\n",
       "class E46--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E46\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"128\" x=\"1773\" y=\"130\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"1809.5\" y=\"147.457\">«port def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"122\" x=\"1776\" y=\"162.5508\">MechanicalEnergyPort</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1774\" x2=\"1900\" y1=\"170.1875\" y2=\"170.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"102\" x=\"1779\" y=\"203.4424\">m: MechanicalEnergy</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1774\" x2=\"1824.5\" y1=\"185.1055\" y2=\"185.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"1824.5\" y=\"189.1064\">items</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1849.5\" x2=\"1900\" y1=\"185.1055\" y2=\"185.1055\"/><!--MD5=[1128e724b42a0dac8815b583af827bcc]\n",
       "class E48--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E48\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"63\" x=\"1674.5\" y=\"130\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"1678.5\" y=\"147.457\">«port def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"57\" x=\"1677.5\" y=\"162.5508\">MoneyPort</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1675.5\" x2=\"1736.5\" y1=\"170.1875\" y2=\"170.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"46\" x=\"1680.5\" y=\"203.4424\">m: Money</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1675.5\" x2=\"1693.5\" y1=\"185.1055\" y2=\"185.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"1693.5\" y=\"189.1064\">items</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1718.5\" x2=\"1736.5\" y1=\"185.1055\" y2=\"185.1055\"/><!--MD5=[5d6775bd366c0b29840c7aa4b8b57c1d]\n",
       "class E50--><rect fill=\"#FFFFFF\" height=\"79.8594\" id=\"E50\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"90\" x=\"1549\" y=\"130\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" font-style=\"italic\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"55\" x=\"1566.5\" y=\"147.457\">«port def»</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"12\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"84\" x=\"1552\" y=\"162.5508\">MusicTrackPort</text><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"1550\" x2=\"1638\" y1=\"170.1875\" y2=\"170.1875\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"69\" x=\"1555\" y=\"203.4424\">m: MusicTrack</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1550\" x2=\"1581.5\" y1=\"185.1055\" y2=\"185.1055\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"11\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"25\" x=\"1581.5\" y=\"189.1064\">items</text><line style=\"stroke: #383838; stroke-width: 1.0;\" x1=\"1606.5\" x2=\"1638\" y1=\"185.1055\" y2=\"185.1055\"/><!--MD5=[766a66f822c9ce62787f24098774b63b]\n",
       "reverse link E52 to E53--><path d=\"M1411.64,206.989 C1416.73,228.21 1423.02,254.435 1427.46,272.906 \" fill=\"none\" id=\"E52&lt;-E53\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1408.57,194.219,1406.0807,200.9868,1411.3705,205.8876,1413.8598,199.1198,1408.57,194.219\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[500d69f21bf365a0598b60700afed3ec]\n",
       "link E53 to E5--><path d=\"M1555.29,319.242 C1560.93,319.904 1566.52,320.497 1572,321 C2264.33,384.581 2441.41,321.002 3136,351 C3341.16,359.861 3411.36,294.207 3597,382 C3691.9,426.882 3766.1,532.597 3798.39,584.78 \" fill=\"none\" id=\"E53-&gt;E5\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"3802.67,591.776,3801.0584,583.3854,3795.9386,586.514,3802.67,591.776\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"3747\" y=\"441.4951\">«depend»</text><!--MD5=[498dfc97242acd21db6968155244b800]\n",
       "link E53 to E7--><path d=\"M1555.29,319.257 C1560.93,319.915 1566.52,320.503 1572,321 C1962.23,356.412 2943.49,334.956 3335,351 C3547.27,359.699 3621.94,287.079 3812,382 C3902.01,426.95 3968,532.249 3996.47,584.492 \" fill=\"none\" id=\"E53-&gt;E7\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"4000.4,591.802,3999.2619,583.3341,3993.9746,586.1704,4000.4,591.802\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"3951\" y=\"441.4951\">«depend»</text><!--MD5=[28acd4cf5dfb15d1fb88b189484596b8]\n",
       "link E53 to E16--><path d=\"M1555.3,319.089 C1560.94,319.792 1566.53,320.435 1572,321 C1891.03,353.907 1973.02,329.145 2293,351 C2755.96,382.621 2874.91,401.375 3323,522 C3357.47,531.28 3369.08,528.529 3399,548 C3414.3,557.954 3428.38,572.51 3439.24,585.513 \" fill=\"none\" id=\"E53-&gt;E16\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"3444.31,591.745,3441.586,583.6469,3436.9329,587.4348,3444.31,591.745\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"3280\" y=\"441.4951\">«depend»</text><!--MD5=[58745daa147364b9d69547066dd8d473]\n",
       "link E53 to E24--><path d=\"M1555.3,319.138 C1560.94,319.828 1566.52,320.455 1572,321 C1768.15,340.519 3161.19,310.803 3345,382 C3455.84,424.934 3553.34,532.848 3596.06,585.367 \" fill=\"none\" id=\"E53-&gt;E24\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"3601.23,591.792,3598.5467,583.6803,3593.8746,587.4448,3601.23,591.792\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"3532\" y=\"441.4951\">«depend»</text><!--MD5=[a004c8bd3290863732cda88c237098e1]\n",
       "link E54 to E3--><path d=\"M2518.97,490 C2518.02,508.498 2513.05,527.69 2499,540 C2486.94,550.568 205.17,542.806 190,548 C171.523,554.326 153.901,566.318 139.41,578.429 \" fill=\"none\" id=\"E54-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"124.5,591.857,133.9338,573.9405,143.3028,584.3434,124.5,591.857\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"139.5078\" cy=\"571.6121\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"146.1999\" cy=\"579.0428\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[0fc06163df12da7668da273260889ea1]\n",
       "reverse link E53 to E54--><path d=\"M1568.4,320.585 C1569.6,320.727 1570.8,320.865 1572,321 C1942.2,362.755 2049.85,279.431 2408,382 C2413.59,383.602 2419.25,385.505 2424.87,387.62 \" fill=\"none\" id=\"E53&lt;-E54\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1555.32,318.959,1560.7821,323.667,1567.2288,320.4359,1561.7667,315.7279,1555.32,318.959\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[a448702681eca6ed85b17201204f5319]\n",
       "link E54 to E6--><path d=\"M2601.25,444.034 C2710.73,454.27 2902.34,477.153 3061,522 C3089.75,530.128 3097.73,532.05 3123,548 C3139.9,558.669 3156.68,573.192 3170.07,585.99 \" fill=\"none\" id=\"E54-&gt;E6\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"3175.97,591.729,3172.3218,584.003,3168.1413,588.3068,3175.97,591.729\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"3110\" y=\"536.4951\">«depend»</text><!--MD5=[2fa0b4cd616e6ed9d9368724dab0d137]\n",
       "link E54 to E13--><path d=\"M2601.24,438.471 C2707.95,444.063 2889.36,466.11 3019,548 C3033.42,557.107 3045.43,571.686 3054.27,584.922 \" fill=\"none\" id=\"E54-&gt;E13\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"3058.59,591.686,3056.8079,583.3299,3051.7529,586.5621,3058.59,591.686\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2996\" y=\"536.4951\">«depend»</text><!--MD5=[b5075c317c2f3fe3f15623ea1fe137e0]\n",
       "link E54 to E20--><path d=\"M2601.13,444.593 C2728.56,456.412 2971.31,482.084 3175,522 C3219.22,530.666 3234.3,524.919 3273,548 C3289.03,557.558 3303.55,572.354 3314.6,585.612 \" fill=\"none\" id=\"E54-&gt;E20\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"3319.74,591.968,3317.0398,583.8619,3312.3755,587.6362,3319.74,591.968\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"3258\" y=\"536.4951\">«depend»</text><!--MD5=[7ef8f8d8910daebcf3b73f4b6d389fbb]\n",
       "link E58 to E3--><path d=\"M958.692,476.098 C937.405,490.953 911.285,506.172 885,514 C858.161,521.993 408.913,519.746 381,522 C325.93,526.448 312.774,532.772 258,540 C227.831,543.981 218.184,536.524 190,548 C172.487,555.131 155.485,566.794 141.226,578.407 \" fill=\"none\" id=\"E58-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"125.882,591.742,135.6307,573.9948,144.8146,584.5616,125.882,591.742\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"141.2449\" cy=\"571.7652\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"147.8048\" cy=\"579.313\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[cb6be4bb50b56e9697acc66eb7c303f0]\n",
       "reverse link E53 to E58--><path d=\"M1322.76,324.27 C1264.26,339.232 1191.54,359.468 1128,382 C1116.22,386.178 1103.97,390.979 1091.99,395.948 \" fill=\"none\" id=\"E53&lt;-E58\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1335.4,321.063,1328.6026,318.6556,1323.766,324.0041,1330.5634,326.4116,1335.4,321.063\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[844f28674b8d5d1dce40022dea196d6a]\n",
       "link E58 to E11--><path d=\"M956.514,476.037 C935.497,490.317 910.157,505.133 885,514 C853.882,524.968 618.751,531.813 590,548 C574.922,556.489 562.73,571.303 553.95,584.846 \" fill=\"none\" id=\"E58-&gt;E11\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"549.674,591.772,556.43,586.5416,551.3249,583.389,549.674,591.772\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"821\" y=\"536.4951\">«depend»</text><!--MD5=[71e85e34a303e1671bac05b89eca599d]\n",
       "link E60 to E3--><path d=\"M454.908,442.834 C339.6,451.813 159.187,473.383 114,522 C101.803,535.123 98.0681,554.18 97.7704,571.631 \" fill=\"none\" id=\"E60-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"98.7741,591.614,90.8289,572.9895,104.8112,572.2865,98.7741,591.614\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"92.5401\" cy=\"567.1962\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"102.5275\" cy=\"566.6941\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[f9cd33ce6b76154f4747908f732b787d]\n",
       "reverse link E53 to E60--><path d=\"M1297.6,299.965 C1143.14,305.161 884.241,322.912 670,382 C656.873,385.62 643.359,390.56 630.4,395.976 \" fill=\"none\" id=\"E53&lt;-E60\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1310.84,299.542,1304.7156,295.7352,1298.8461,299.9244,1304.9705,303.7312,1310.84,299.542\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[bea3ccc3a558bd1416169cf759c6ac40]\n",
       "link E60 to E27--><path d=\"M506.378,476.063 C465.741,509.397 408.256,556.55 371.808,586.448 \" fill=\"none\" id=\"E60-&gt;E27\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"365.256,591.822,373.3438,589.0676,369.5385,584.4287,365.256,591.822\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"447\" y=\"536.4951\">«depend»</text><!--MD5=[9c59d695384390176c4f200335a30856]\n",
       "link E62 to E3--><path d=\"M735.631,476.194 C716.94,490.967 693.824,506.099 670,514 C629.915,527.293 331.832,516.203 290,522 C244.513,528.304 231.244,527.806 190,548 C173.567,556.046 157.227,567.476 143.221,578.622 \" fill=\"none\" id=\"E62-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"127.444,591.83,137.5194,574.2662,146.5062,585.0011,127.444,591.83\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"143.1739\" cy=\"572.1409\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"149.593\" cy=\"579.8087\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[de40749e9836a32431be4690a93051f8]\n",
       "reverse link E53 to E62--><path d=\"M1297.73,307.282 C1185.42,317.695 1022.56,339.114 886,382 C874.044,385.755 861.76,390.661 849.958,395.972 \" fill=\"none\" id=\"E53&lt;-E62\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1310.83,306.096,1304.494,302.6529,1298.8788,307.1773,1305.2148,310.6204,1310.83,306.096\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[49e3bf1f2ff4150ffdb66687de520394]\n",
       "link E62 to E12--><path d=\"M831.812,476.01 C849.022,488.312 868.22,501.857 886,514 C908.802,529.574 915.673,531.752 938,548 C954.77,560.204 972.753,574.554 987.678,586.836 \" fill=\"none\" id=\"E62-&gt;E12\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"993.874,591.961,989.6215,584.5505,985.7974,589.1739,993.874,591.961\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"928\" y=\"536.4951\">«depend»</text><!--MD5=[6b99714fbfbbb30dd5ffc500784e4d33]\n",
       "link E64 to E3--><path d=\"M2034.17,476.193 C2014.71,491.064 1990.65,506.269 1966,514 C1927.2,526.168 539.053,505.239 502,522 C492.248,526.411 495.704,535.484 486,540 C456.171,553.882 220.999,536.977 190,548 C171.925,554.427 154.618,566.153 140.268,578.019 \" fill=\"none\" id=\"E64-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"124.911,591.705,134.439,573.8383,143.7531,584.2905,124.911,591.705\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"140.0251\" cy=\"571.5393\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"146.678\" cy=\"579.0051\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[c87b740779d8f38b170972ceff022f67]\n",
       "reverse link E53 to E64--><path d=\"M1568.07,320.37 C1569.39,320.582 1570.7,320.792 1572,321 C1746.97,349.019 1796.6,330.008 1966,382 C1978.24,385.756 1990.83,390.628 2002.97,395.896 \" fill=\"none\" id=\"E53&lt;-E64\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1555.03,318.266,1560.3159,323.171,1566.8767,320.1782,1561.5907,315.2732,1555.03,318.266\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[38d42b26c095371b89a751793b7ebcad]\n",
       "link E64 to E8--><path d=\"M2028.91,476.142 C2010.08,489.667 1987.86,503.935 1966,514 C1953.47,519.771 1948.94,517.208 1936,522 C1887.86,539.828 1836.05,567.381 1800.25,587.875 \" fill=\"none\" id=\"E64-&gt;E8\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"1793.31,591.875,1801.7385,590.4748,1798.7395,585.278,1793.31,591.875\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"1937\" y=\"536.4951\">«depend»</text><!--MD5=[a3823b4739999f2f20189c456abafaf5]\n",
       "link E64 to E9--><path d=\"M2039.21,476.016 C2027.78,489.565 2016.38,505.519 2009,522 C2000.31,541.417 1996.58,565.113 1995.01,583.726 \" fill=\"none\" id=\"E64-&gt;E9\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"1994.43,591.887,1997.9878,584.119,1992.0028,583.695,1994.43,591.887\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2010\" y=\"536.4951\">«depend»</text><!--MD5=[ef6a124a342791900c4876c2c6f7ce1d]\n",
       "link E64 to E14--><path d=\"M2070.6,476.203 C2068.88,497.064 2070.63,522.042 2084,540 C2090.21,548.344 2097.56,541.911 2106,548 C2119.6,557.813 2131.52,572.027 2140.6,584.841 \" fill=\"none\" id=\"E64-&gt;E14\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"2145.34,591.778,2143.2997,583.4812,2138.3474,586.8685,2145.34,591.778\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2085\" y=\"536.4951\">«depend»</text><!--MD5=[097bba37910d32805b54e6d7f22a2849]\n",
       "link E64 to E22--><path d=\"M2108.61,476.112 C2127.58,497.87 2153.67,523.758 2182,540 C2193.97,546.864 2199.22,542.796 2212,548 C2238.45,558.771 2266.36,574.241 2288.49,587.602 \" fill=\"none\" id=\"E64-&gt;E22\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"2295.47,591.858,2290.207,585.1274,2287.0791,590.2477,2295.47,591.858\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2183\" y=\"536.4951\">«depend»</text><!--MD5=[5f99c7f8f663bc3b6fed96151e7ccbbd]\n",
       "link E66 to E3--><path d=\"M1621.55,483.212 C1606.43,495.624 1588.65,507.419 1570,514 C1541.34,524.11 505.773,515.907 476,522 C455.703,526.154 453.242,535.586 433,540 C380.211,551.51 240.853,529.749 190,548 C171.944,554.48 154.641,566.218 140.289,578.078 \" fill=\"none\" id=\"E66-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"124.927,591.751,134.4658,573.8901,143.7736,584.3479,124.927,591.751\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"140.0533\" cy=\"571.5945\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"146.7017\" cy=\"579.0643\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[cd9ef708f167301cf07fcb4263aeb2b0]\n",
       "reverse link E53 to E66--><path d=\"M1484.04,327.884 C1514.46,345.69 1553.7,368.667 1588.04,388.771 \" fill=\"none\" id=\"E53&lt;-E66\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1472.43,321.085,1475.5855,327.5691,1482.7844,327.1502,1479.6289,320.6661,1472.43,321.085\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[ab37c68c812046f24f214d68ea0b5548]\n",
       "link E66 to E18--><path d=\"M1639.69,483.303 C1620.83,515.264 1596.3,556.852 1579.9,584.662 \" fill=\"none\" id=\"E66-&gt;E18\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"1575.7,591.771,1582.35,586.4065,1577.1829,583.3567,1575.7,591.771\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"1616\" y=\"536.4951\">«depend»</text><!--MD5=[7ddd939b1d513b5803b8002c9b4115b2]\n",
       "link E69 to E3--><path d=\"M1403.6,476.178 C1382.68,491.046 1356.97,506.254 1331,514 C1284.52,527.861 506.079,515.608 458,522 C426.583,526.177 420.348,535.337 389,540 C345.224,546.512 231.602,532.898 190,548 C171.968,554.546 154.67,566.297 140.315,578.151 \" fill=\"none\" id=\"E69-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"124.947,591.807,134.5003,573.9539,143.7996,584.4192,124.947,591.807\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"140.0897\" cy=\"571.6628\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"146.732\" cy=\"579.138\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[4ed29a7d83de6589bebc5cb0b4300b1d]\n",
       "reverse link E53 to E69--><path d=\"M1437.75,334.174 C1440.24,353.138 1443.3,376.391 1445.85,395.786 \" fill=\"none\" id=\"E53&lt;-E69\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1436.05,321.24,1432.8656,327.7099,1437.6131,333.1378,1440.7975,326.6679,1436.05,321.24\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[109e95ab9869f5d94eb7e94a2141aeb1]\n",
       "link E69 to E10--><path d=\"M1445.95,476.063 C1441.77,508.429 1435.9,553.823 1432.03,583.8 \" fill=\"none\" id=\"E69-&gt;E10\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"1430.99,591.822,1434.9899,584.2721,1429.0393,583.5037,1430.99,591.822\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"1441\" y=\"536.4951\">«depend»</text><!--MD5=[5bfcb1df10add3a1436fdc0ed1dc0290]\n",
       "link E71 to E3--><path d=\"M1190.37,476.279 C1172.78,491.066 1150.89,506.185 1128,514 C1091.3,526.531 468.609,518.363 430,522 C384.605,526.276 374.285,534.681 329,540 C298.271,543.61 218.991,537.191 190,548 C172.025,554.702 154.74,566.486 140.378,578.323 \" fill=\"none\" id=\"E71-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"124.997,591.94,134.5818,574.1038,143.8626,584.5855,124.997,591.94\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"140.1752\" cy=\"571.8226\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"146.8044\" cy=\"579.3095\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[6998d242d2c9fb0f828c5591112aacb9]\n",
       "reverse link E53 to E71--><path d=\"M1387.78,328.517 C1358.38,348.357 1319.77,374.414 1288.11,395.786 \" fill=\"none\" id=\"E53&lt;-E71\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1398.56,321.24,1391.349,321.2804,1388.6129,327.9523,1395.8239,327.9119,1398.56,321.24\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[7c9f69c6cc7a3708e9b9de4f38d2a809]\n",
       "link E71 to E19--><path d=\"M1244.05,476.063 C1255.73,508.567 1272.14,554.211 1282.92,584.183 \" fill=\"none\" id=\"E71-&gt;E19\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"1285.67,591.822,1285.7861,583.2788,1280.14,585.309,1285.67,591.822\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"1267\" y=\"536.4951\">«depend»</text><!--MD5=[8ec8d72a13c8ccb1882474c2c954f3b1]\n",
       "link E73 to E3--><path d=\"M2342.82,490.102 C2352.14,507.74 2355.61,526.341 2342,540 C2331.45,550.587 204.138,543.158 190,548 C171.523,554.328 153.902,566.321 139.411,578.432 \" fill=\"none\" id=\"E73-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"124.501,591.859,133.9348,573.9425,143.3038,584.3454,124.501,591.859\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"139.5088\" cy=\"571.6141\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"146.2009\" cy=\"579.0448\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[8e7100f69bed025ae2593a85d031ee1c]\n",
       "reverse link E53 to E73--><path d=\"M1568.4,320.521 C1569.61,320.683 1570.81,320.843 1572,321 C1846.07,357.14 1925.11,306.342 2191,382 C2196.62,383.601 2202.31,385.485 2207.98,387.572 \" fill=\"none\" id=\"E53&lt;-E73\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1555.35,318.703,1560.7436,323.4893,1567.2362,320.3515,1561.8426,315.5652,1555.35,318.703\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[50497a99910f4f057379226883cb748f]\n",
       "link E73 to E17--><path d=\"M2363.11,490.16 C2377.18,499.506 2392.52,508.112 2408,514 C2423.83,520.021 2695.45,541.286 2711,548 C2730.94,556.607 2749.64,572.001 2763.84,585.864 \" fill=\"none\" id=\"E73-&gt;E17\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"2769.64,591.688,2766.1221,583.9018,2761.8699,588.1348,2769.64,591.688\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2649\" y=\"536.4951\">«depend»</text><!--MD5=[13c8811e7b32a32b84d6390ca97e80be]\n",
       "link E73 to E21--><path d=\"M2360.98,490.03 C2375.54,499.766 2391.62,508.561 2408,514 C2440.28,524.718 2680.15,518.734 2714,522 C2783.53,528.707 2806.03,517.765 2869,548 C2887.7,556.979 2905.2,572.054 2918.58,585.633 \" fill=\"none\" id=\"E73-&gt;E21\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"2924.43,591.739,2921.0594,583.888,2916.7282,588.0401,2924.43,591.739\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2848\" y=\"536.4951\">«depend»</text><!--MD5=[e953a6083c42f738bbe5fe0ab0d19c4e]\n",
       "link E77 to E3--><path d=\"M1825.84,476.332 C1808.43,491.127 1786.75,506.239 1764,514 C1697.01,536.857 557.493,500.684 490,522 C476.598,526.233 477.353,535.614 464,540 C406.127,559.009 247.372,527.53 190,548 C171.932,554.447 154.627,566.177 140.275,578.041 \" fill=\"none\" id=\"E77-&gt;E3\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#FFFFFF\" points=\"124.917,591.722,134.4486,573.8573,143.7606,584.3113,124.917,591.722\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"140.0351\" cy=\"571.5594\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><ellipse cx=\"146.6866\" cy=\"579.0265\" fill=\"#383838\" rx=\"2\" ry=\"2\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[231781b2f762a41bd6e26c60b7669a55]\n",
       "reverse link E53 to E77--><path d=\"M1564.83,323.982 C1626.39,337.998 1700.04,357.494 1764,382 C1774.45,386.003 1785.2,390.821 1795.62,395.898 \" fill=\"none\" id=\"E53&lt;-E77\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1551.89,321.075,1556.8644,326.2957,1563.5967,323.7119,1558.6223,318.4912,1551.89,321.075\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[0bc179dfcd83eb0286506d573f51a5a8]\n",
       "link E77 to E26--><path d=\"M1904.25,476.079 C1921.67,490.834 1943.34,505.983 1966,514 C1995.13,524.307 2213.17,519.898 2244,522 C2318.48,527.078 2336.58,534.157 2411,540 C2428.97,541.411 2556.47,540.816 2573,548 C2591.59,556.081 2608.07,571.566 2620.25,585.615 \" fill=\"none\" id=\"E77-&gt;E26\" style=\"stroke: #383838; stroke-width: 1.0; stroke-dasharray: 7.0,7.0;\"/><polygon fill=\"#383838\" points=\"2625.54,591.937,2622.7114,583.8748,2618.1077,587.7226,2625.54,591.937\" style=\"stroke: #383838; stroke-width: 1.0;\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"13\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"56\" x=\"2412\" y=\"536.4951\">«depend»</text><!--MD5=[a2cbc3f93c8414fb80eddf751ce4b602]\n",
       "reverse link E52 to E79--><path d=\"M1457.73,200.237 C1499.17,222.374 1555.32,252.366 1593.66,272.85 \" fill=\"none\" id=\"E52&lt;-E79\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1446.19,194.073,1449.5959,200.4291,1456.773,199.7298,1453.3671,193.3737,1446.19,194.073\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[d6b351a5dad31290cd762772ac3da67a]\n",
       "reverse link E52 to E80--><path d=\"M1456.06,200.059 C1479.18,211.838 1506.92,224.802 1533,234 C1605.7,259.637 1627.63,252.735 1702,273 C1707.51,274.502 1713.23,276.148 1718.94,277.848 \" fill=\"none\" id=\"E52&lt;-E80\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1444.42,194.034,1447.9053,200.3469,1455.0731,199.5577,1451.5878,193.2448,1444.42,194.034\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[06ab02dd12885c45d0edb0579865b020]\n",
       "reverse link E52 to E81--><path d=\"M1453.77,200.417 C1477.17,212.701 1505.76,225.958 1533,234 C1600.86,254.031 1779.24,261.153 1849,273 C1854.48,273.93 1860.1,274.951 1865.76,276.03 \" fill=\"none\" id=\"E52&lt;-E81\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1442.04,194.115,1445.4365,200.4761,1452.6146,199.7875,1449.2181,193.4264,1442.04,194.115\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[7208186a7bcf91b59209f7ddff41c699]\n",
       "reverse link E52 to E82--><path d=\"M1452.22,200.313 C1475.84,212.93 1505.03,226.486 1533,234 C1589.92,249.29 2003.63,264.837 2062,273 C2067.65,273.79 2073.45,274.697 2079.28,275.683 \" fill=\"none\" id=\"E52&lt;-E82\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1440.76,194.032,1444.0952,200.4255,1451.2796,199.8059,1447.9444,193.4124,1440.76,194.032\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[f42e760fb4e1d85ae0b316b3955c675b]\n",
       "reverse link E52 to E83--><path d=\"M1451.88,200.447 C1475.53,213.163 1504.84,226.763 1533,234 C1573.46,244.4 2242.64,267.12 2284,273 C2289.88,273.836 2295.93,274.856 2302,275.996 \" fill=\"none\" id=\"E52&lt;-E83\" style=\"stroke: #383838; stroke-width: 1.0;\"/><polygon fill=\"#383838\" points=\"1440.42,194.112,1443.7378,200.5145,1450.9239,199.9145,1447.6061,193.512,1440.42,194.112\" style=\"stroke: #383838; stroke-width: 1.0;\"/><!--MD5=[dc02b0464d1c52659ca74eab380ac4e8]\n",
       "@startuml\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "package \"TheFASJukeBox\" as E1   {\r\n",
       "package \"FASLanguage\" as E2   {\r\n",
       "comp def \"FunctionalBlock\" as E3  <<(T,blue)part def>> {\r\n",
       "}\r\n",
       "}\r\n",
       "package \"UseCases\" as E4   {\r\n",
       "comp def \"(Un)install and Move Jukebox\" as E5  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Ask for Track to Play\" as E6  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Assemble Music Collection\" as E7  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Connect Jukebox with Electrical Supply\" as E8  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Disconnect from Electrical Supply\" as E9  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Distribute Energy\" as E10  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Get Energy\" as E11  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Get Mechanical Energy\" as E12  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Get Money\" as E13  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Insert Cash\" as E14  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Install Jukebox\" as E15  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Listen to Music\" as E16  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Make Music Available\" as E17  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Monitor Payment\" as E18  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Play Music Track\" as E19  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Produce Sound\" as E20  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Provide Music Track\" as E21  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Retrieve Identification of Music Track\" as E22  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Retrieve Money\" as E23  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Supply Jukebox with Energy\" as E24  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Transform Mechanical Engery into Something Harmless\" as E25  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Uninstall Jukebox\" as E26  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "comp def \"Use Means of Music Transfer to Retrieve Music\" as E27  <<(T,blue)action def>> {\r\n",
       "}\r\n",
       "}\r\n",
       "package \"DomainKnowledge\" as E28   {\r\n",
       "comp def \"AudioSignal\" as E29  <<(T,blue)item def>> {\r\n",
       "}\r\n",
       "comp def \"ClearanceToPlayMusic\" as E30  <<(T,blue)item def>> {\r\n",
       "}\r\n",
       "comp def \"ElectricalEnergy\" as E31  <<(T,blue)item def>> {\r\n",
       "}\r\n",
       "comp def \"IdentificationOfMusicTrack\" as E32  <<(T,blue)item def>> {\r\n",
       "}\r\n",
       "comp def \"MechanicalEnergy\" as E33  <<(T,blue)item def>> {\r\n",
       "}\r\n",
       "comp def \"Money\" as E34  <<(T,blue)item def>> {\r\n",
       "}\r\n",
       "comp def \"MusicTrack\" as E35  <<(T,blue)item def>> {\r\n",
       "}\r\n",
       "}\r\n",
       "package \"FunctionalArchitecture\" as E36   {\r\n",
       "package \"FunctionalInterfaces\" as E37   {\r\n",
       "comp def \"AudioSignalPort\" as E38  <<(T,blue)port def>> {\r\n",
       "- -items- -\r\n",
       "a: AudioSignal\r\n",
       "}\r\n",
       "comp def \"ClearanceToPlayMusicPort\" as E40  <<(T,blue)port def>> {\r\n",
       "- -items- -\r\n",
       "m: ClearanceToPlayMusic\r\n",
       "}\r\n",
       "comp def \"ElectricalEnergyPort\" as E42  <<(T,blue)port def>> {\r\n",
       "- -items- -\r\n",
       "e: ElectricalEnergy\r\n",
       "}\r\n",
       "comp def \"IdentificationOfMusicTrackPort\" as E44  <<(T,blue)port def>> {\r\n",
       "- -items- -\r\n",
       "m: IdentificationOfMusicTrack\r\n",
       "}\r\n",
       "comp def \"MechanicalEnergyPort\" as E46  <<(T,blue)port def>> {\r\n",
       "- -items- -\r\n",
       "m: MechanicalEnergy\r\n",
       "}\r\n",
       "comp def \"MoneyPort\" as E48  <<(T,blue)port def>> {\r\n",
       "- -items- -\r\n",
       "m: Money\r\n",
       "}\r\n",
       "comp def \"MusicTrackPort\" as E50  <<(T,blue)port def>> {\r\n",
       "- -items- -\r\n",
       "m: MusicTrack\r\n",
       "}\r\n",
       "}\r\n",
       "comp usage \"TheFASJukeBoxFunctionalContext: Part\" as E52  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"TheFASJukeBoxFunctionalArchitecture: Part\" as E53  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"I/O Customer: FunctionalBlock\" as E54  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: MoneyPort\r\n",
       "p2: ~AudioSignalPort\r\n",
       "p3: IdentificationOfMusicTrackPort\r\n",
       "}\r\n",
       "comp usage \"I/O Electrical Supply: FunctionalBlock\" as E58  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: ElectricalEnergyPort\r\n",
       "}\r\n",
       "comp usage \"I/O Music Supplier: FunctionalBlock\" as E60  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: MusicTrackPort\r\n",
       "}\r\n",
       "comp usage \"I/O Pub Interior: FunctionalBlock\" as E62  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: MechanicalEnergyPort\r\n",
       "}\r\n",
       "comp usage \"I/O Pub Manager: FunctionalBlock\" as E64  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: IdentificationOfMusicTrackPort\r\n",
       "}\r\n",
       "comp usage \"Accounting: FunctionalBlock\" as E66  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: ClearanceToPlayMusicPort\r\n",
       "p2: ~MoneyPort\r\n",
       "}\r\n",
       "comp usage \"Energy Distribution: FunctionalBlock\" as E69  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: ~ElectricalEnergyPort\r\n",
       "}\r\n",
       "comp usage \"Music Player: FunctionalBlock\" as E71  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: AudioSignalPort\r\n",
       "}\r\n",
       "comp usage \"Music Storage: FunctionalBlock\" as E73  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: ~IdentificationOfMusicTrackPort\r\n",
       "p2: ~MusicTrackPort\r\n",
       "p3: ClearanceToPlayMusicPort\r\n",
       "}\r\n",
       "comp usage \"Suspension: FunctionalBlock\" as E77  <<(T,blue)part>> {\r\n",
       "- -ports- -\r\n",
       "p1: ~MechanicalEnergyPort\r\n",
       "}\r\n",
       "comp usage \"Customer: User\" as E79  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Pub Manager: User\" as E80  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Music Supplier: ExternalSystem\" as E81  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Electrical Supply: ExternalSystem\" as E82  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "comp usage \"Pub Interior: ExternalSystem\" as E83  <<(T,blue)part>> {\r\n",
       "}\r\n",
       "E52 *- - E53\r\n",
       "E53 ..>> E5 : <<depend>>\r\n",
       "E53 ..>> E7 : <<depend>>\r\n",
       "E53 ..>> E16 : <<depend>>\r\n",
       "E53 ..>> E24 : <<depend>>\r\n",
       "E54 - -:|> E3\r\n",
       "E53 *- - E54\r\n",
       "E54 ..>> E6 : <<depend>>\r\n",
       "E54 ..>> E13 : <<depend>>\r\n",
       "E54 ..>> E20 : <<depend>>\r\n",
       "E58 - -:|> E3\r\n",
       "E53 *- - E58\r\n",
       "E58 ..>> E11 : <<depend>>\r\n",
       "E60 - -:|> E3\r\n",
       "E53 *- - E60\r\n",
       "E60 ..>> E27 : <<depend>>\r\n",
       "E62 - -:|> E3\r\n",
       "E53 *- - E62\r\n",
       "E62 ..>> E12 : <<depend>>\r\n",
       "E64 - -:|> E3\r\n",
       "E53 *- - E64\r\n",
       "E64 ..>> E8 : <<depend>>\r\n",
       "E64 ..>> E9 : <<depend>>\r\n",
       "E64 ..>> E14 : <<depend>>\r\n",
       "E64 ..>> E22 : <<depend>>\r\n",
       "E66 - -:|> E3\r\n",
       "E53 *- - E66\r\n",
       "E66 ..>> E18 : <<depend>>\r\n",
       "E69 - -:|> E3\r\n",
       "E53 *- - E69\r\n",
       "E69 ..>> E10 : <<depend>>\r\n",
       "E71 - -:|> E3\r\n",
       "E53 *- - E71\r\n",
       "E71 ..>> E19 : <<depend>>\r\n",
       "E73 - -:|> E3\r\n",
       "E53 *- - E73\r\n",
       "E73 ..>> E17 : <<depend>>\r\n",
       "E73 ..>> E21 : <<depend>>\r\n",
       "E77 - -:|> E3\r\n",
       "E53 *- - E77\r\n",
       "E77 ..>> E26 : <<depend>>\r\n",
       "E52 *- - E79\r\n",
       "E52 *- - E80\r\n",
       "E52 *- - E81\r\n",
       "E52 *- - E82\r\n",
       "E52 *- - E83\r\n",
       "}\r\n",
       "}\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=tree TheFASJukeBox"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" contentScriptType=\"application/ecmascript\" contentStyleType=\"text/css\" height=\"425px\" preserveAspectRatio=\"none\" style=\"width:3853px;height:425px;\" version=\"1.1\" viewBox=\"0 0 3853 425\" width=\"3853px\" zoomAndPan=\"magnify\"><defs/><g><!--MD5=[fbc87193dbaf4d95561dea2c320d4a47]\n",
       "cluster E1--><rect fill=\"#F8F8F8\" height=\"407\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"3834\" x=\"7\" y=\"7\"/><rect fill=\"#FFFFFF\" height=\"373.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"3828\" x=\"10\" y=\"37.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"7\" x2=\"3841\" y1=\"34.6094\" y2=\"34.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"252\" x=\"1798\" y=\"25.5332\">TheFASJukeBoxFunctionalContext: Part</text><!--MD5=[e4f7fae6ed58524ba242bb0b0d3be6b7]\n",
       "cluster E2--><rect fill=\"#F8F8F8\" height=\"339\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"3062\" x=\"31\" y=\"51\"/><rect fill=\"#FFFFFF\" height=\"305.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"3056\" x=\"34\" y=\"81.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"31\" x2=\"3093\" y1=\"78.6094\" y2=\"78.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"280\" x=\"1422\" y=\"69.5332\">TheFASJukeBoxFunctionalArchitecture: Part</text><!--MD5=[d5e69f78d87373223dbae638b30a9c99]\n",
       "cluster E3--><rect fill=\"#F8F8F8\" height=\"110\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"492\" x=\"295\" y=\"197\"/><rect fill=\"#FFFFFF\" height=\"76.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"486\" x=\"298\" y=\"227.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"295\" x2=\"787\" y1=\"224.6094\" y2=\"224.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"191\" x=\"445.5\" y=\"216.5332\">I/O Customer: FunctionalBlock</text><!--MD5=[168fadf3d0c3fd93dd5d6da1b1d7ab76]\n",
       "cluster E7--><rect fill=\"#F8F8F8\" height=\"94\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"244\" x=\"2833.4375\" y=\"137\"/><rect fill=\"#FFFFFF\" height=\"60.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"238\" x=\"2836.4375\" y=\"167.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"2833.4375\" x2=\"3077.4375\" y1=\"164.6094\" y2=\"164.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"234\" x=\"2838.4375\" y=\"156.5332\">I/O Electrical Supply: FunctionalBlock</text><!--MD5=[7f149f147074ac12df2cb0a7728a5fb0]\n",
       "cluster E9--><rect fill=\"#F8F8F8\" height=\"94\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"232\" x=\"1111\" y=\"137\"/><rect fill=\"#FFFFFF\" height=\"60.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"226\" x=\"1114\" y=\"167.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"1111\" x2=\"1343\" y1=\"164.6094\" y2=\"164.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"222\" x=\"1116\" y=\"156.5332\">I/O Music Supplier: FunctionalBlock</text><!--MD5=[917b9dd0c7eca3ee5f47219d1a84c0ad]\n",
       "cluster E11--><rect fill=\"#F8F8F8\" height=\"94\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"213\" x=\"1476.9375\" y=\"137\"/><rect fill=\"#FFFFFF\" height=\"60.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"207\" x=\"1479.9375\" y=\"167.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"1476.9375\" x2=\"1689.9375\" y1=\"164.6094\" y2=\"164.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"203\" x=\"1481.9375\" y=\"156.5332\">I/O Pub Interior: FunctionalBlock</text><!--MD5=[03104f77b71e2d8d3500c651e6e31181]\n",
       "cluster E13--><rect fill=\"#F8F8F8\" height=\"110\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"225\" x=\"807\" y=\"197\"/><rect fill=\"#FFFFFF\" height=\"76.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"219\" x=\"810\" y=\"227.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"807\" x2=\"1032\" y1=\"224.6094\" y2=\"224.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"215\" x=\"812\" y=\"216.5332\">I/O Pub Manager: FunctionalBlock</text><!--MD5=[ab3548ab6224ff035c4047a4d30b7567]\n",
       "cluster E15--><rect fill=\"#F8F8F8\" height=\"94\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"244\" x=\"2217\" y=\"137\"/><rect fill=\"#FFFFFF\" height=\"60.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"238\" x=\"2220\" y=\"167.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"2217\" x2=\"2461\" y1=\"164.6094\" y2=\"164.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"178\" x=\"2250\" y=\"156.5332\">Accounting: FunctionalBlock</text><!--MD5=[8f9210536e795b388518d3fe69e1cfa6]\n",
       "cluster E18--><rect fill=\"#F8F8F8\" height=\"62\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"238\" x=\"2479\" y=\"101\"/><rect fill=\"#FFFFFF\" height=\"28.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"232\" x=\"2482\" y=\"131.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"2479\" x2=\"2717\" y1=\"128.6094\" y2=\"128.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"228\" x=\"2484\" y=\"120.5332\">Energy Distribution: FunctionalBlock</text><!--MD5=[1c41e8fd36bfdc40ba89cc99c68e74fc]\n",
       "cluster E20--><rect fill=\"#F8F8F8\" height=\"101\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"198\" x=\"47\" y=\"273\"/><rect fill=\"#FFFFFF\" height=\"67.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"192\" x=\"50\" y=\"303.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"47\" x2=\"245\" y1=\"300.6094\" y2=\"300.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"188\" x=\"52\" y=\"292.5332\">Music Player: FunctionalBlock</text><!--MD5=[ab20031b5f5b330fca1652864e8cfe71]\n",
       "cluster E22--><rect fill=\"#F8F8F8\" height=\"62\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"508\" x=\"1701\" y=\"101\"/><rect fill=\"#FFFFFF\" height=\"28.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"502\" x=\"1704\" y=\"131.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"1701\" x2=\"2209\" y1=\"128.6094\" y2=\"128.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"198\" x=\"1856\" y=\"120.5332\">Music Storage: FunctionalBlock</text><!--MD5=[dc75c50e9758de09bc45469de8601ca7]\n",
       "cluster E26--><rect fill=\"#F8F8F8\" height=\"62\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #000000; stroke-width: 1.5;\" width=\"192\" x=\"807\" y=\"101\"/><rect fill=\"#FFFFFF\" height=\"28.3906\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #FFFFFF; stroke-width: 1.0;\" width=\"186\" x=\"810\" y=\"131.6094\"/><line style=\"stroke: #000000; stroke-width: 1.5;\" x1=\"807\" x2=\"999\" y1=\"128.6094\" y2=\"128.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"182\" x=\"812\" y=\"120.5332\">Suspension: FunctionalBlock</text><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"92\" x=\"267\" y=\"175.9238\">p1: MoneyPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"307\" y=\"191\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"133\" x=\"474.5\" y=\"175.9238\">p2: ~AudioSignalPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"535\" y=\"191\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"216\" x=\"661\" y=\"175.9238\">p3: IdentificationOfMusicTrackPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"763\" y=\"191\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"152\" x=\"2776\" y=\"115.9238\">p1: ElectricalEnergyPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"2846\" y=\"131\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"122\" x=\"1257\" y=\"115.9238\">p1: MusicTrackPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"1312\" y=\"131\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"166\" x=\"1412\" y=\"115.9238\">p1: MechanicalEnergyPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"1489\" y=\"131\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"216\" x=\"902\" y=\"175.9238\">p1: IdentificationOfMusicTrackPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"1004\" y=\"191\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"195\" x=\"2137.5\" y=\"115.9238\">p1: ClearanceToPlayMusicPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"2229\" y=\"131\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"100\" x=\"2393\" y=\"115.9238\">p2: ~MoneyPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"2437\" y=\"131\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"160\" x=\"2599\" y=\"79.9238\">p1: ~ElectricalEnergyPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"2673\" y=\"95\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"125\" x=\"154.5\" y=\"251.9238\">p1: AudioSignalPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"211\" y=\"267\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"224\" x=\"1607\" y=\"79.9238\">p1: ~IdentificationOfMusicTrackPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"1713\" y=\"95\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"130\" x=\"1890\" y=\"79.9238\">p2: ~MusicTrackPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"1949\" y=\"95\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"195\" x=\"2093.5\" y=\"79.9238\">p3: ClearanceToPlayMusicPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"2185\" y=\"95\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"174\" x=\"885\" y=\"79.9238\">p1: ~MechanicalEnergyPort</text><rect fill=\"#383838\" height=\"12\" style=\"stroke: #F8F8F8; stroke-width: 1.5;\" width=\"12\" x=\"966\" y=\"95\"/><g id=\"E1.E28\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"118\" x=\"3109\" y=\"323\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3109\" x2=\"3227\" y1=\"350.6094\" y2=\"350.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"98\" x=\"3119\" y=\"342.5332\">Customer: User</text></g><g id=\"E1.E29\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"142\" x=\"3262\" y=\"323\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3262\" x2=\"3404\" y1=\"350.6094\" y2=\"350.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"122\" x=\"3272\" y=\"342.5332\">Pub Manager: User</text></g><g id=\"E1.E30\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"217\" x=\"3109.5\" y=\"248\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3109.5\" x2=\"3326.5\" y1=\"275.6094\" y2=\"275.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"197\" x=\"3119.5\" y=\"267.5332\">Music Supplier: ExternalSystem</text></g><g id=\"E1.E31\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"229\" x=\"3595.5\" y=\"248\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3595.5\" x2=\"3824.5\" y1=\"275.6094\" y2=\"275.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"209\" x=\"3605.5\" y=\"267.5332\">Electrical Supply: ExternalSystem</text></g><g id=\"E1.E32\"><rect fill=\"#FFFFFF\" height=\"50\" rx=\"12.5\" ry=\"12.5\" style=\"stroke: #383838; stroke-width: 1.5;\" width=\"198\" x=\"3362\" y=\"248\"/><line style=\"stroke: #383838; stroke-width: 1.5;\" x1=\"3362\" x2=\"3560\" y1=\"275.6094\" y2=\"275.6094\"/><text fill=\"#000000\" font-family=\"sans-serif\" font-size=\"14\" lengthAdjust=\"spacingAndGlyphs\" textLength=\"178\" x=\"3372\" y=\"267.5332\">Pub Interior: ExternalSystem</text></g><!--MD5=[f1fd5ab0a324a1a6f30ec69da7767ad3]\n",
       "link E23 to E14--><path d=\"M1712.81,101.978 C1650.14,101.771 1131.71,100.505 1103,115 C1078.96,127.141 1086.19,145.172 1066,163 C1049.93,177.191 1026.87,188.495 1016.04,193.38 \" fill=\"none\" id=\"E23-E14\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[6d237fe5184b1cde996713da3520e740]\n",
       "link E15 to E13--><path d=\"M2216.2243,207.6386 C2215.1074,207.7206 2213.9847,207.8029 2212.8561,207.8856 C2210.5991,208.0509 2208.3189,208.2175 2206.016,208.3855 C2201.4104,208.7213 2196.7143,209.0623 2191.9321,209.408 C2172.803,210.7907 2152.2951,212.2478 2130.6808,213.7492 C2087.4522,216.752 2039.7981,219.9317 1989.8988,223.0456 C1890.1,229.2735 1781.32,235.2385 1681,239 C1612.71,241.5605 1492.9225,239.808 1373.2263,239.2916 C1313.3781,239.0334 1253.5528,239.0843 1200.1989,240.1378 C1173.522,240.6646 1148.4629,241.442 1125.8277,242.5568 C1114.5101,243.1142 1103.7985,243.7559 1093.7936,244.4928 C1092.543,244.585 1091.3034,244.6786 1090.0751,244.7737 C1089.461,244.8212 1088.8496,244.8692 1088.2411,244.9175 \" fill=\"none\" id=\"E15-E13\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[75c9fdd0ed921f573fb5a09b70f78001]\n",
       "link E24 to E10--><path d=\"M1948.74,103.646 C1943.92,104.827 1937.09,106.325 1931,107 C1816.58,119.686 1527.34,101.618 1413,115 C1379.11,118.966 1339.55,129.748 1324.37,134.12 \" fill=\"none\" id=\"E24-E10\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[962e9324dd3a3b8a790f5068b5d96b7d]\n",
       "link E25 to E16--><path d=\"M2197.12,106.728 C2205.52,113.223 2220.56,124.838 2228.93,131.313 \" fill=\"none\" id=\"E25-E16\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[47a206ff035912d4d024938fdf950b20]\n",
       "link E17 to E4--><path d=\"M2439.74,143.42 C2435.72,149.496 2428.29,159.019 2419,163 C2365.82,185.789 388.94,147.647 336,171 C326.935,174.999 319.862,184.516 316.071,190.586 \" fill=\"none\" id=\"E17-E4\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[d046c62b2aa97c8260f5b011c77e4d99]\n",
       "link E5 to E21--><path d=\"M539.659,203.07 C537,212.018 530.148,230.473 517,239 C466.006,272.074 261.052,272.304 223.071,272.056 \" fill=\"none\" id=\"E5-E21\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[caa0f9c1831a500007a5e901641aac67]\n",
       "link E23 to E6--><path d=\"M1712.8,101.942 C1647.69,101.356 1091.21,96.884 1062,115 C1041.56,127.679 1057.35,150.18 1037,163 C1014.61,177.102 823.724,161.576 799,171 C788.357,175.057 778.763,184.556 773.425,190.607 \" fill=\"none\" id=\"E23-E6\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[9987cf1cd8fa13a40db1d21e8902453f]\n",
       "link E19 to E8--><path d=\"M2685.32,102.985 C2698.38,105.041 2729.24,110.011 2755,115 C2789.51,121.684 2830.62,131.05 2845.89,134.58 \" fill=\"none\" id=\"E19-E8\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[c5b2f84a146a968dd8d9b03d726746b0]\n",
       "link E27 to E12--><path d=\"M978.196,102.017 C1024.51,102.165 1317.19,103.553 1405,115 C1437.14,119.189 1474.59,129.842 1488.97,134.15 \" fill=\"none\" id=\"E27-E12\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[3d4257681592d12b19c8e3ec2a90116d]\n",
       "link E13 to E29--><path d=\"M1032.0222,307.0279 C1032.165,307.0694 1032.3078,307.1107 1032.4507,307.152 C1032.7364,307.2346 1033.0223,307.3169 1033.3083,307.3988 C1033.8804,307.5628 1034.453,307.7255 1035.0261,307.8869 C1036.1724,308.2097 1037.3206,308.5273 1038.4701,308.8392 C1047.6667,311.3347 1056.95,313.4678 1066,315 C1185.36,335.2104 3125.04,306.712 3245,323 C3250.49,323.746 3256.13,324.736 3261.76,325.891 \" fill=\"none\" id=\"E13-E29\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[81b9579c9968a7667c1ead30d396c579]\n",
       "link E9 to E30--><path d=\"M1343.5572,222.8235 C1343.7531,222.8703 1343.9491,222.9171 1344.1452,222.9638 C1344.5375,223.0573 1344.9304,223.1507 1345.3239,223.244 C1346.8977,223.6174 1348.4809,223.9894 1350.0725,224.3598 C1375.5375,230.285 1403.145,235.77 1429,239 C1594.92,259.729 2747.26,268.933 3109.37,271.335 \" fill=\"none\" id=\"E9-E30\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[db716f1e8a55ec56342791e6b0f7e6cb]\n",
       "link E3 to E28--><path d=\"M770.5609,307.051 C770.9417,307.1338 771.3226,307.2164 771.7037,307.2986 C772.4659,307.4631 773.2286,307.6264 773.9917,307.7884 C775.518,308.1125 777.0461,308.4316 778.5751,308.7453 C790.807,311.2548 803.097,313.417 815,315 C1048.18,346.0132 2766.28,347.1242 3108.72,347.0349 \" fill=\"none\" id=\"E3-E28\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[09a3c4c8454756419d2b588fad20b2f4]\n",
       "link E7 to E31--><path d=\"M3074.219,204.5596 C3075.3423,204.6172 3076.4702,204.6753 3077.6026,204.7338 C3079.8673,204.8509 3082.1502,204.9696 3084.4506,205.0902 C3089.0516,205.3312 3093.7231,205.5793 3098.4616,205.8346 C3117.4157,206.8556 3137.4426,207.9913 3158.3202,209.2501 C3200.0753,211.7675 3245.2331,214.777 3292.0163,218.3455 C3385.5825,225.4825 3485.65,234.8555 3578,247 C3583.67,247.745 3589.46,248.576 3595.29,249.471 \" fill=\"none\" id=\"E7-E31\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[627fb724a575997adbb3e9e32d8a4793]\n",
       "link E11 to E32--><path d=\"M1690.7685,208.402 C1699.8382,209.0632 1709.2609,209.744 1719.0045,210.4408 C1738.4916,211.8344 1759.2623,213.2917 1781.0602,214.7835 C1824.6559,217.7671 1872.3606,220.8884 1922.1237,223.912 C2021.65,229.9593 2129.41,235.616 2229,239 C2352.82,243.207 3220.84,233.542 3344,247 C3349.88,247.643 3355.91,248.453 3361.97,249.384 \" fill=\"none\" id=\"E11-E32\" style=\"stroke: #383838; stroke-width: 3.0;\"/><!--MD5=[3c1b135441bb7936c5c730a7eaf8ce13]\n",
       "@startuml\r\n",
       "skinparam ranksep 8\r\n",
       "skinparam rectangle {\r\n",
       " backgroundColor<<block>> LightGreen\r\n",
       "}\r\n",
       "skinparam monochrome true\r\n",
       "skinparam classbackgroundcolor white\r\n",
       "skinparam shadowing false\r\n",
       "skinparam wrapWidth 300\r\n",
       "hide circle\r\n",
       "\r\n",
       "rec usage \"TheFASJukeBoxFunctionalContext: Part\" as E1  {\r\n",
       "rec usage \"TheFASJukeBoxFunctionalArchitecture: Part\" as E2  {\r\n",
       "rec usage \"I/O Customer: FunctionalBlock\" as E3  {\r\n",
       "portin \"p1: MoneyPort\" as E4  <<port>> \r\n",
       "portin \"p2: ~AudioSignalPort\" as E5  <<port>> \r\n",
       "portin \"p3: IdentificationOfMusicTrackPort\" as E6  <<port>> \r\n",
       "}\r\n",
       "rec usage \"I/O Electrical Supply: FunctionalBlock\" as E7  {\r\n",
       "portin \"p1: ElectricalEnergyPort\" as E8  <<port>> \r\n",
       "}\r\n",
       "rec usage \"I/O Music Supplier: FunctionalBlock\" as E9  {\r\n",
       "portin \"p1: MusicTrackPort\" as E10  <<port>> \r\n",
       "}\r\n",
       "rec usage \"I/O Pub Interior: FunctionalBlock\" as E11  {\r\n",
       "portin \"p1: MechanicalEnergyPort\" as E12  <<port>> \r\n",
       "}\r\n",
       "rec usage \"I/O Pub Manager: FunctionalBlock\" as E13  {\r\n",
       "portin \"p1: IdentificationOfMusicTrackPort\" as E14  <<port>> \r\n",
       "}\r\n",
       "rec usage \"Accounting: FunctionalBlock\" as E15  {\r\n",
       "portin \"p1: ClearanceToPlayMusicPort\" as E16  <<port>> \r\n",
       "portin \"p2: ~MoneyPort\" as E17  <<port>> \r\n",
       "}\r\n",
       "rec usage \"Energy Distribution: FunctionalBlock\" as E18  {\r\n",
       "portin \"p1: ~ElectricalEnergyPort\" as E19  <<port>> \r\n",
       "}\r\n",
       "rec usage \"Music Player: FunctionalBlock\" as E20  {\r\n",
       "portin \"p1: AudioSignalPort\" as E21  <<port>> \r\n",
       "}\r\n",
       "rec usage \"Music Storage: FunctionalBlock\" as E22  {\r\n",
       "portin \"p1: ~IdentificationOfMusicTrackPort\" as E23  <<port>> \r\n",
       "portin \"p2: ~MusicTrackPort\" as E24  <<port>> \r\n",
       "portin \"p3: ClearanceToPlayMusicPort\" as E25  <<port>> \r\n",
       "}\r\n",
       "rec usage \"Suspension: FunctionalBlock\" as E26  {\r\n",
       "portin \"p1: ~MechanicalEnergyPort\" as E27  <<port>> \r\n",
       "}\r\n",
       "}\r\n",
       "rec usage \"Customer: User\" as E28  {\r\n",
       "}\r\n",
       "rec usage \"Pub Manager: User\" as E29  {\r\n",
       "}\r\n",
       "rec usage \"Music Supplier: ExternalSystem\" as E30  {\r\n",
       "}\r\n",
       "rec usage \"Electrical Supply: ExternalSystem\" as E31  {\r\n",
       "}\r\n",
       "rec usage \"Pub Interior: ExternalSystem\" as E32  {\r\n",
       "}\r\n",
       "}\r\n",
       "E23 -[thickness=3]- E14\r\n",
       "E15 -[thickness=3]- E13\r\n",
       "E24 -[thickness=3]- E10\r\n",
       "E25 -[thickness=3]- E16\r\n",
       "E17 -[thickness=3]- E4\r\n",
       "E5 -[thickness=3]- E21\r\n",
       "E23 -[thickness=3]- E6\r\n",
       "E19 -[thickness=3]- E8\r\n",
       "E27 -[thickness=3]- E12\r\n",
       "E13 -[thickness=3]- E29\r\n",
       "E9 -[thickness=3]- E30\r\n",
       "E3 -[thickness=3]- E28\r\n",
       "E7 -[thickness=3]- E31\r\n",
       "E11 -[thickness=3]- E32\r\n",
       "@enduml\r\n",
       "\n",
       "PlantUML version 1.2020.13(Sat Jun 13 14:26:38 CEST 2020)\n",
       "(EPL source distribution)\n",
       "Java Runtime: OpenJDK Runtime Environment\n",
       "JVM: OpenJDK 64-Bit Server VM\n",
       "Default Encoding: Cp1252\n",
       "Language: en\n",
       "Country: US\n",
       "--></g></svg>"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "%viz --view=interconnection TheFASJukeBox::FunctionalArchitecture::TheFASJukeBoxFunctionalContext"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# VAMOS (Variant Modeling with SysML)<a name=\"sysmlv2vamos\"></a>"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "SysML",
   "language": "sysml",
   "name": "sysml"
  },
  "language_info": {
   "codemirror_mode": "sysml",
   "file_extension": ".sysml",
   "mimetype": "text/x-sysml",
   "name": "SysML",
   "pygments_lexer": "java",
   "version": "1.0.0"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}