Skip to content
Snippets Groups Projects
Commit dd9e475c authored by Illimar.Rekand's avatar Illimar.Rekand :japanese_ogre:
Browse files

Update notebook with mermaid diagram

parent 9bc48191
No related branches found
No related tags found
No related merge requests found
...@@ -57,6 +57,33 @@ ...@@ -57,6 +57,33 @@
Worked on some infrastructure; creating scripts which can pass parameters on to a conda-script. Worked on some infrastructure; creating scripts which can pass parameters on to a conda-script.
::: mermaid
flowchart TD;
subgraph 64-bit Conda environment
subgraph Layer 1
Comment1(Calculations, e.g. volume, are performed and passed down)
Layer1.py
end
end
subgraph 32-bit Conda environment
subgraph Layer 2
Comment2(Single action scripts are performed, e.g. edit dispense map, start experiment.)
EditExps
end
subgraph Layer 3
Comment3(Individual functions for editing maps, parameters, etc. are stored. Default values are defined.)
ls10
end
Layer1.py-->|Required+Optional parameters|EditExps;
EditExps-->ls10;
subgraph Layer 4
Comment4(LSAPI)
Layer4
end
ls10-->|Datatypes prepared for C# + </br> Default optional requirements set if not defined|Layer4;
end
:::
1) Layer1: Top layer, where calculations can be performed. 64-bit Python. Calculations and parameters are calculated here, and passed down. 1) Layer1: Top layer, where calculations can be performed. 64-bit Python. Calculations and parameters are calculated here, and passed down.
2) Layer2: EditExps New parameters are sent to this layer, which are in a 32-bit environment. 2) Layer2: EditExps New parameters are sent to this layer, which are in a 32-bit environment.
3) Layer3: ls10 In this layer, inputs are prepared to be compatible with the LSAPI 3) Layer3: ls10 In this layer, inputs are prepared to be compatible with the LSAPI
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment