Closed afr2903 closed 1 week ago
This UI will be used as the first draft, and will be updated after validating the correct input and output variables, as well as the KPIs to evaluate
Some scenarios and cases will be assumed as not possible for simplicity of the MVP:
2 more plots were added to display the demand vs production, as well as the machine status:
I struggled in configuring the layout so I revisited the basics on how the canvas worked, this can be helpful as a guide for Edu team and their interface
Is composed of grids
, is auto-adapted to screen resolution (no pixels info is needed), and are defined by:
row
: Starting cell y (1 is first)colum
: Starting cell x (1 is first)rowspan
: Upon how many rows is expandedcolumnspan
: Upon how many columns is expandedx | x | ||
x | x | ||
x | x |
This example table would be configured as
.grid(row=2, column=3, rowspan=3, columnspan=2)
Follow this documentation
Based on the lectures "Machine lines" and "Inventory Management" from MIT's 2.854 class, build a simple inventory management proof of concept with Machine and Buffer components, and a simple UI in which to change variables like demand, MTTR, etc.