diff options
| author | Marius Peter <marius.peter@tutanota.com> | 2022-03-26 19:02:15 +0100 |
|---|---|---|
| committer | Marius Peter <marius.peter@tutanota.com> | 2022-03-26 19:02:15 +0100 |
| commit | df5862d950eb9c63f50363220bf38bfc24d530c9 (patch) | |
| tree | b58a74c0049466717facfc1a94568d2f470cb28f /wiki/aerospace/v-model.org | |
| parent | 95c3ce4bc795d6582a09467c9fb60b639a8c9f46 (diff) | |
Wiki articles.
Diffstat (limited to 'wiki/aerospace/v-model.org')
| -rw-r--r-- | wiki/aerospace/v-model.org | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/wiki/aerospace/v-model.org b/wiki/aerospace/v-model.org new file mode 100644 index 0000000..6addaca --- /dev/null +++ b/wiki/aerospace/v-model.org @@ -0,0 +1,42 @@ +# -*- mode: org; -*- + +#+TITLE: V-model +#+SUBTITLE: Guidelines For Development Of Civil Aircraft and Systems. +#+AUTHOR: Marius Peter +#+DATE: <2022-02-11 Fri> +#+EMAIL: mlnp@tuta.io +#+OPTIONS: toc:nil + +#+KEYWORDS: aerospace, systems, development, engineering, model + +#+TOC: headlines 2 + + +#+begin_abstract +The V-model represents the lifecycle of a system's development. +#+end_abstract + + +* TODO Representation + +This is the graphical representation of the v-model. + +#+NAME: v-model +#+BEGIN_SRC plantuml :file ../images/v-model.png :cache yes + @startuml + !theme cerulean-outline + actor Operator as operational + collections Functions as functional + control Logic as logical + boundary Physical as physical + + operational -> functional: Requirements + functional -> logical: Specification + logical -> physical: Build plan + physical -> logical + logical -> functional + functional -> operational +#+END_SRC + +#+RESULTS[7e1fc2faaeb214ca241c5b4126d06cab1818ac52]: v-model +[[file:../images/v-model.png]] |