aboutsummaryrefslogtreecommitdiff
path: root/procedure.dot
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-06-02 15:49:42 +0200
committerJakob Odersky <jodersky@gmail.com>2015-06-02 15:49:42 +0200
commit08b8e9f78c7a28bed74d9546979d5f885a3bf04b (patch)
treeebc33edb4ff9a0ba125ffe96f15f8566bfa722bc /procedure.dot
parentadb2d726542d5790494583d59115d7e99d0a1611 (diff)
downloadbrewing-08b8e9f78c7a28bed74d9546979d5f885a3bf04b.tar.gz
brewing-08b8e9f78c7a28bed74d9546979d5f885a3bf04b.tar.bz2
brewing-08b8e9f78c7a28bed74d9546979d5f885a3bf04b.zip
add procedure
Diffstat (limited to 'procedure.dot')
-rw-r--r--procedure.dot63
1 files changed, 63 insertions, 0 deletions
diff --git a/procedure.dot b/procedure.dot
new file mode 100644
index 0000000..30e775e
--- /dev/null
+++ b/procedure.dot
@@ -0,0 +1,63 @@
+digraph procedure {
+ size="7,10"; //in inches
+
+ node [shape=oval];
+
+ ingredient;
+ process [shape=box];
+
+ # Ingredients
+ water;
+ malt [label="cracked grain"];
+ mixture;
+ mash;
+ additional_water [label="water"];
+ sweet_wort [label="sweet wort"];
+ yeast;
+ bitter_wort [label="bitter wort"];
+ yeast_culture [label="pitched yeast"];
+ beer;
+ ready [label="ready beer"];
+
+ # Processes
+ steep [shape=box];
+ lauter [shape=box];
+ extract_a_bit [shape=box, label="extract some"];
+ boil [shape=box];
+ cool [shape=box];
+ add [shape=box, label="mix"];
+ extract_speise [shape=box, label="extract speise (2:25)"];
+ extract_quick [shape=box, label="extract test probe"];
+ fermentation [shape=box];
+ mix [shape=box];
+ continued_fermentation [shape=box, label="continued fermentation and carbonisation"];
+ bottle[shape=box];
+
+ # Edges
+ water->mixture;
+ malt->mixture;
+ mixture->steep;
+ steep->mash;
+ mash->lauter;
+ additional_water->lauter;
+ lauter->sweet_wort
+ sweet_wort->extract_a_bit;
+ yeast->extract_a_bit;
+ extract_a_bit->yeast_culture;
+ sweet_wort->boil;
+ hops->boil;
+ boil->bitter_wort
+ bitter_wort->cool;
+ cool->extract_speise;
+ cool->add;
+ yeast_culture->add;
+ add->extract_quick;
+ add->fermentation;
+ extract_speise->speise;
+ fermentation->beer;
+ beer->mix;
+ speise->mix;
+ mix->bottle;
+ bottle->continued_fermentation;
+ continued_fermentation->ready;
+} \ No newline at end of file