diff options
Diffstat (limited to 'wiki/engineering/v-model.org')
| -rw-r--r-- | wiki/engineering/v-model.org | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/wiki/engineering/v-model.org b/wiki/engineering/v-model.org new file mode 100644 index 0000000..c7a7779 --- /dev/null +++ b/wiki/engineering/v-model.org @@ -0,0 +1,39 @@ +# -*- mode: org; -*- + +#+TITLE: V-model +#+SUBTITLE: A graphical representation of a system's development lifecycle. +#+AUTHOR: Marius Peter +#+DATE: <2022-02-11 Fri> +#+EMAIL: mlnp@tuta.io + +#+DESCRIPTION: The V-model: a graphical representation of a system's development lifecycle. + + +#+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]] |