From d015fee44d9c98ffae1cd35f67567f494907dc81 Mon Sep 17 00:00:00 2001 From: hkc Date: Sun, 15 Sep 2024 20:34:48 +0300 Subject: [PATCH] Added WIP plan for Ch1 --- .gitignore | 1 + ch1-high-aspiration.dot | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .gitignore create mode 100644 ch1-high-aspiration.dot diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e33609d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.png diff --git a/ch1-high-aspiration.dot b/ch1-high-aspiration.dot new file mode 100644 index 0000000..422861b --- /dev/null +++ b/ch1-high-aspiration.dot @@ -0,0 +1,27 @@ +digraph { + sand [label="Sand"]; + clay_ball [label="Clay Ball"]; + kelp [label="Kelp"]; + algal_blend [label="Algal Blend"] + algal_brick [label="Algal Brick"]; + andesite [label="Andesite"]; + andesite_alloy [label="Andesite Alloy"]; + + kelp_farm [label="Kelp Farm" shape=box3d]; kelp_farm -> kelp; + andesite_farm [label="Bedrock Andesite farm" shape=box3d]; andesite_farm -> andesite; + strainers [label="Strainer array" shape=box3d]; strainers -> sand; + + sand -> clay_ball [label="Washing" color=blue fontcolor=blue]; + + mixer_algal_blend [label="Mechanical Mixer" shape=box]; + clay_ball -> mixer_algal_blend; + kelp -> mixer_algal_blend; + mixer_algal_blend -> algal_blend; + + algal_blend -> algal_brick [label="Blasting" color=red fontcolor=red]; + + mixer_andesite [label="Mechanical Mixer" shape=box]; + algal_brick -> mixer_andesite; + andesite -> mixer_andesite; + mixer_andesite -> andesite_alloy; +}