@seedtactics/insight-client 16.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -0
- package/dist/cell-status/buffers.d.ts +36 -0
- package/dist/cell-status/buffers.js +127 -0
- package/dist/cell-status/current-status.d.ts +30 -0
- package/dist/cell-status/current-status.js +200 -0
- package/dist/cell-status/estimated-cycle-times.d.ts +41 -0
- package/dist/cell-status/estimated-cycle-times.js +257 -0
- package/dist/cell-status/inspections.d.ts +55 -0
- package/dist/cell-status/inspections.js +213 -0
- package/dist/cell-status/loading.d.ts +26 -0
- package/dist/cell-status/loading.js +112 -0
- package/dist/cell-status/material-details.d.ts +116 -0
- package/dist/cell-status/material-details.js +422 -0
- package/dist/cell-status/material-summary.d.ts +52 -0
- package/dist/cell-status/material-summary.js +312 -0
- package/dist/cell-status/names.d.ts +19 -0
- package/dist/cell-status/names.js +134 -0
- package/dist/cell-status/pallet-cycles.d.ts +24 -0
- package/dist/cell-status/pallet-cycles.js +78 -0
- package/dist/cell-status/rebookings.d.ts +30 -0
- package/dist/cell-status/rebookings.js +139 -0
- package/dist/cell-status/scheduled-jobs.d.ts +18 -0
- package/dist/cell-status/scheduled-jobs.js +94 -0
- package/dist/cell-status/sim-day-usage.d.ts +14 -0
- package/dist/cell-status/sim-day-usage.js +54 -0
- package/dist/cell-status/sim-production.d.ts +22 -0
- package/dist/cell-status/sim-production.js +91 -0
- package/dist/cell-status/sim-station-use.d.ts +25 -0
- package/dist/cell-status/sim-station-use.js +71 -0
- package/dist/cell-status/station-cycles.d.ts +34 -0
- package/dist/cell-status/station-cycles.js +145 -0
- package/dist/cell-status/tool-replacements.d.ts +44 -0
- package/dist/cell-status/tool-replacements.js +155 -0
- package/dist/cell-status/tool-usage.d.ts +25 -0
- package/dist/cell-status/tool-usage.js +95 -0
- package/dist/components/App.d.ts +15 -0
- package/dist/components/App.js +549 -0
- package/dist/components/AxisAndGrid.d.ts +51 -0
- package/dist/components/AxisAndGrid.js +47 -0
- package/dist/components/BarcodeScanning.d.ts +6 -0
- package/dist/components/BarcodeScanning.js +150 -0
- package/dist/components/ChartTooltip.d.ts +28 -0
- package/dist/components/ChartTooltip.js +95 -0
- package/dist/components/ChooseMode.d.ts +18 -0
- package/dist/components/ChooseMode.js +136 -0
- package/dist/components/ChooseOperator.d.ts +1 -0
- package/dist/components/ChooseOperator.js +93 -0
- package/dist/components/ErrorsAndLoading.d.ts +9 -0
- package/dist/components/ErrorsAndLoading.js +55 -0
- package/dist/components/LoadingIcon.d.ts +1 -0
- package/dist/components/LoadingIcon.js +48 -0
- package/dist/components/LogEntry.d.ts +16 -0
- package/dist/components/LogEntry.js +365 -0
- package/dist/components/ManualSerialEntry.d.ts +5 -0
- package/dist/components/ManualSerialEntry.js +91 -0
- package/dist/components/MonthSelect.d.ts +6 -0
- package/dist/components/MonthSelect.js +67 -0
- package/dist/components/Navigation.d.ts +23 -0
- package/dist/components/Navigation.js +120 -0
- package/dist/components/VerboseLogging.d.ts +1 -0
- package/dist/components/VerboseLogging.js +47 -0
- package/dist/components/analysis/AnalysisSelectToolbar.d.ts +1 -0
- package/dist/components/analysis/AnalysisSelectToolbar.js +55 -0
- package/dist/components/analysis/BufferChart.d.ts +1 -0
- package/dist/components/analysis/BufferChart.js +139 -0
- package/dist/components/analysis/CostPerPiece.d.ts +2 -0
- package/dist/components/analysis/CostPerPiece.js +175 -0
- package/dist/components/analysis/CycleChart.d.ts +42 -0
- package/dist/components/analysis/CycleChart.js +281 -0
- package/dist/components/analysis/DataTable.d.ts +83 -0
- package/dist/components/analysis/DataTable.js +215 -0
- package/dist/components/analysis/EfficiencyPage.d.ts +2 -0
- package/dist/components/analysis/EfficiencyPage.js +138 -0
- package/dist/components/analysis/HeatChart.d.ts +22 -0
- package/dist/components/analysis/HeatChart.js +161 -0
- package/dist/components/analysis/InspectionDataTable.d.ts +10 -0
- package/dist/components/analysis/InspectionDataTable.js +148 -0
- package/dist/components/analysis/InspectionSankey.d.ts +12 -0
- package/dist/components/analysis/InspectionSankey.js +140 -0
- package/dist/components/analysis/PalletCycleCards.d.ts +1 -0
- package/dist/components/analysis/PalletCycleCards.js +137 -0
- package/dist/components/analysis/PartCycleCards.d.ts +2 -0
- package/dist/components/analysis/PartCycleCards.js +331 -0
- package/dist/components/analysis/QualityPage.d.ts +1 -0
- package/dist/components/analysis/QualityPage.js +49 -0
- package/dist/components/analysis/ScheduleHistory.d.ts +3 -0
- package/dist/components/analysis/ScheduleHistory.js +108 -0
- package/dist/components/analysis/StationDataTable.d.ts +25 -0
- package/dist/components/analysis/StationDataTable.js +246 -0
- package/dist/components/analysis/ToolReplacements.d.ts +1 -0
- package/dist/components/analysis/ToolReplacements.js +370 -0
- package/dist/components/operations/AllMaterial.d.ts +5 -0
- package/dist/components/operations/AllMaterial.js +267 -0
- package/dist/components/operations/ChartRangeEdit.d.ts +4 -0
- package/dist/components/operations/ChartRangeEdit.js +148 -0
- package/dist/components/operations/CloseoutReport.d.ts +2 -0
- package/dist/components/operations/CloseoutReport.js +172 -0
- package/dist/components/operations/CompletedParts.d.ts +2 -0
- package/dist/components/operations/CompletedParts.js +286 -0
- package/dist/components/operations/CurrentWorkorders.d.ts +3 -0
- package/dist/components/operations/CurrentWorkorders.js +368 -0
- package/dist/components/operations/Dashboard.d.ts +2 -0
- package/dist/components/operations/Dashboard.js +90 -0
- package/dist/components/operations/OEEChart.d.ts +10 -0
- package/dist/components/operations/OEEChart.js +173 -0
- package/dist/components/operations/Outliers.d.ts +4 -0
- package/dist/components/operations/Outliers.js +69 -0
- package/dist/components/operations/ProgramHighlight.d.ts +1 -0
- package/dist/components/operations/ProgramHighlight.js +9 -0
- package/dist/components/operations/Programs.d.ts +5 -0
- package/dist/components/operations/Programs.js +363 -0
- package/dist/components/operations/Rebookings.d.ts +1 -0
- package/dist/components/operations/Rebookings.js +213 -0
- package/dist/components/operations/RecentCycleChart.d.ts +4 -0
- package/dist/components/operations/RecentCycleChart.js +240 -0
- package/dist/components/operations/RecentProduction.d.ts +2 -0
- package/dist/components/operations/RecentProduction.js +213 -0
- package/dist/components/operations/RecentSchedules.d.ts +12 -0
- package/dist/components/operations/RecentSchedules.js +180 -0
- package/dist/components/operations/RecentStationCycles.d.ts +4 -0
- package/dist/components/operations/RecentStationCycles.js +159 -0
- package/dist/components/operations/ShiftSettings.d.ts +6 -0
- package/dist/components/operations/ShiftSettings.js +134 -0
- package/dist/components/operations/SimDayUsage.d.ts +1 -0
- package/dist/components/operations/SimDayUsage.js +133 -0
- package/dist/components/operations/ToolReport.d.ts +3 -0
- package/dist/components/operations/ToolReport.js +233 -0
- package/dist/components/operations/WorkorderGantt.d.ts +1 -0
- package/dist/components/operations/WorkorderGantt.js +124 -0
- package/dist/components/quality/QualityMaterial.d.ts +2 -0
- package/dist/components/quality/QualityMaterial.js +169 -0
- package/dist/components/quality/QualityPaths.d.ts +1 -0
- package/dist/components/quality/QualityPaths.js +53 -0
- package/dist/components/quality/RecentFailedInspections.d.ts +1 -0
- package/dist/components/quality/RecentFailedInspections.js +123 -0
- package/dist/components/routes.d.ts +170 -0
- package/dist/components/routes.js +301 -0
- package/dist/components/station-monitor/BulkRawMaterial.d.ts +11 -0
- package/dist/components/station-monitor/BulkRawMaterial.js +251 -0
- package/dist/components/station-monitor/Closeout.d.ts +5 -0
- package/dist/components/station-monitor/Closeout.js +162 -0
- package/dist/components/station-monitor/CustomStationMonitorDialog.d.ts +1 -0
- package/dist/components/station-monitor/CustomStationMonitorDialog.js +55 -0
- package/dist/components/station-monitor/Inspection.d.ts +8 -0
- package/dist/components/station-monitor/Inspection.js +164 -0
- package/dist/components/station-monitor/InvalidateCycle.d.ts +33 -0
- package/dist/components/station-monitor/InvalidateCycle.js +262 -0
- package/dist/components/station-monitor/JobDetails.d.ts +7 -0
- package/dist/components/station-monitor/JobDetails.js +108 -0
- package/dist/components/station-monitor/LoadStation.d.ts +10 -0
- package/dist/components/station-monitor/LoadStation.js +450 -0
- package/dist/components/station-monitor/Material.d.ts +77 -0
- package/dist/components/station-monitor/Material.js +489 -0
- package/dist/components/station-monitor/MoveMaterialArrows.d.ts +11 -0
- package/dist/components/station-monitor/MoveMaterialArrows.js +118 -0
- package/dist/components/station-monitor/PrintedLabel.d.ts +29 -0
- package/dist/components/station-monitor/PrintedLabel.js +166 -0
- package/dist/components/station-monitor/QuarantineButton.d.ts +4 -0
- package/dist/components/station-monitor/QuarantineButton.js +184 -0
- package/dist/components/station-monitor/Queues.d.ts +23 -0
- package/dist/components/station-monitor/Queues.js +312 -0
- package/dist/components/station-monitor/QueuesAddMaterial.d.ts +30 -0
- package/dist/components/station-monitor/QueuesAddMaterial.js +248 -0
- package/dist/components/station-monitor/SelectInspType.d.ts +2 -0
- package/dist/components/station-monitor/SelectInspType.js +99 -0
- package/dist/components/station-monitor/SelectWorkorder.d.ts +4 -0
- package/dist/components/station-monitor/SelectWorkorder.js +100 -0
- package/dist/components/station-monitor/StationToolbar.d.ts +3 -0
- package/dist/components/station-monitor/StationToolbar.js +168 -0
- package/dist/components/station-monitor/SystemOverview.d.ts +46 -0
- package/dist/components/station-monitor/SystemOverview.js +439 -0
- package/dist/components/station-monitor/Whiteboard.d.ts +10 -0
- package/dist/components/station-monitor/Whiteboard.js +67 -0
- package/dist/data/all-material-bins.d.ts +45 -0
- package/dist/data/all-material-bins.js +224 -0
- package/dist/data/chart-times.d.ts +20 -0
- package/dist/data/chart-times.js +99 -0
- package/dist/data/cost-per-piece.d.ts +32 -0
- package/dist/data/cost-per-piece.js +183 -0
- package/dist/data/current-cycles.d.ts +13 -0
- package/dist/data/current-cycles.js +144 -0
- package/dist/data/inspection-sankey.d.ts +15 -0
- package/dist/data/inspection-sankey.js +147 -0
- package/dist/data/move-arrows.d.ts +48 -0
- package/dist/data/move-arrows.js +217 -0
- package/dist/data/operators.d.ts +2 -0
- package/dist/data/operators.js +44 -0
- package/dist/data/part-summary.d.ts +17 -0
- package/dist/data/part-summary.js +107 -0
- package/dist/data/path-lookup.d.ts +13 -0
- package/dist/data/path-lookup.js +107 -0
- package/dist/data/queue-material.d.ts +46 -0
- package/dist/data/queue-material.js +256 -0
- package/dist/data/results.bufferchart.d.ts +10 -0
- package/dist/data/results.bufferchart.js +90 -0
- package/dist/data/results.completed-parts.d.ts +26 -0
- package/dist/data/results.completed-parts.js +181 -0
- package/dist/data/results.cycles.d.ts +86 -0
- package/dist/data/results.cycles.js +454 -0
- package/dist/data/results.inspection.d.ts +36 -0
- package/dist/data/results.inspection.js +188 -0
- package/dist/data/results.oee.d.ts +40 -0
- package/dist/data/results.oee.js +330 -0
- package/dist/data/results.schedules.d.ts +23 -0
- package/dist/data/results.schedules.js +157 -0
- package/dist/data/tools-programs.d.ts +78 -0
- package/dist/data/tools-programs.js +376 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +60 -0
- package/dist/network/api.d.ts +1390 -0
- package/dist/network/api.js +4971 -0
- package/dist/network/backend-mock.d.ts +11 -0
- package/dist/network/backend-mock.js +512 -0
- package/dist/network/backend.d.ts +57 -0
- package/dist/network/backend.js +77 -0
- package/dist/network/load-specific-month.d.ts +13 -0
- package/dist/network/load-specific-month.js +77 -0
- package/dist/network/server-settings.d.ts +12 -0
- package/dist/network/server-settings.js +92 -0
- package/dist/network/websocket.d.ts +4 -0
- package/dist/network/websocket.js +165 -0
- package/dist/renderer.d.ts +8 -0
- package/dist/renderer.js +55 -0
- package/dist/seedtactics-logo.d.ts +2 -0
- package/dist/seedtactics-logo.js +4 -0
- package/dist/util/chart-colors.d.ts +1 -0
- package/dist/util/chart-colors.js +116 -0
- package/dist/util/chart-helpers.d.ts +3 -0
- package/dist/util/chart-helpers.js +51 -0
- package/dist/util/parseISODuration.d.ts +4 -0
- package/dist/util/parseISODuration.js +40 -0
- package/docs/client-efficiency.md +355 -0
- package/docs/client-engineering.md +54 -0
- package/docs/client-launch.md +55 -0
- package/docs/client-operations.md +88 -0
- package/docs/client-quality.md +74 -0
- package/docs/client-sales.md +61 -0
- package/docs/client-scanners.md +41 -0
- package/docs/client-station-monitor.md +149 -0
- package/docs/client-tools-programs.md +74 -0
- package/docs/improve-fms.md +141 -0
- package/docs/makino.md +40 -0
- package/docs/material-quarantine.md +82 -0
- package/docs/material-tracking.md +236 -0
- package/docs/mazak.md +115 -0
- package/docs/niigata.md +228 -0
- package/docs/operator-procedures.md +106 -0
- package/docs/part-instructions.md +63 -0
- package/docs/screenshots/insight-all-material.png +0 -0
- package/docs/screenshots/insight-analysis-pallets.png +0 -0
- package/docs/screenshots/insight-analysis-part-completed.png +0 -0
- package/docs/screenshots/insight-analysis-sankey.png +0 -0
- package/docs/screenshots/insight-analysis-station-oee.png +0 -0
- package/docs/screenshots/insight-buffer-occupancy.png +0 -0
- package/docs/screenshots/insight-choose-analysis-month.png +0 -0
- package/docs/screenshots/insight-closeout.png +0 -0
- package/docs/screenshots/insight-cost-percentages.png +0 -0
- package/docs/screenshots/insight-dashboard.png +0 -0
- package/docs/screenshots/insight-event-custom-view.jpg +0 -0
- package/docs/screenshots/insight-event-viewer.jpg +0 -0
- package/docs/screenshots/insight-inspection.png +0 -0
- package/docs/screenshots/insight-load-station-details.png +0 -0
- package/docs/screenshots/insight-load-station.png +0 -0
- package/docs/screenshots/insight-loadcycle-graph.png +0 -0
- package/docs/screenshots/insight-loadstation-small.jpg +0 -0
- package/docs/screenshots/insight-machinecycle-graph.png +0 -0
- package/docs/screenshots/insight-machinecycle-table.png +0 -0
- package/docs/screenshots/insight-machinecycles.png +0 -0
- package/docs/screenshots/insight-machinehours.png +0 -0
- package/docs/screenshots/insight-machineoutliers.png +0 -0
- package/docs/screenshots/insight-monthly-schedules.png +0 -0
- package/docs/screenshots/insight-operations-material.png +0 -0
- package/docs/screenshots/insight-operations-overview.png +0 -0
- package/docs/screenshots/insight-operations-reports.png +0 -0
- package/docs/screenshots/insight-part-cost.png +0 -0
- package/docs/screenshots/insight-program-report.png +0 -0
- package/docs/screenshots/insight-quality-material-details.png +0 -0
- package/docs/screenshots/insight-quality-material.png +0 -0
- package/docs/screenshots/insight-quality-quarantine.png +0 -0
- package/docs/screenshots/insight-quality-sankey.png +0 -0
- package/docs/screenshots/insight-quality-similar-paths.png +0 -0
- package/docs/screenshots/insight-queue-details.png +0 -0
- package/docs/screenshots/insight-queues-jobs-table.png +0 -0
- package/docs/screenshots/insight-queues.png +0 -0
- package/docs/screenshots/insight-sim-day-usage.png +0 -0
- package/docs/screenshots/insight-station-system-overview-buttons.png +0 -0
- package/docs/screenshots/insight-station-system-overview.png +0 -0
- package/docs/screenshots/insight-system-overview.png +0 -0
- package/docs/screenshots/insight-tool-replacements.png +0 -0
- package/docs/screenshots/insight-tool-report.png +0 -0
- package/docs/screenshots/insight-toolbar-btns.png +0 -0
- package/docs/screenshots/insight-workorder-gantt.png +0 -0
- package/docs/screenshots/insight-workorders.png +0 -0
- package/docs/security.md +131 -0
- package/docs/server-config.md +56 -0
- package/docs/server-errors.md +44 -0
- package/package.json +90 -0
- package/src/index.ts +65 -0
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: FMS Quality Daily Monitoring
|
|
3
|
+
nav: FMS Insight Client > Quality
|
|
4
|
+
description: >-
|
|
5
|
+
The FMS Insight quality pages are used by quality engineers.
|
|
6
|
+
These pages display information about the past few days of inspections,
|
|
7
|
+
allow the lookup of data about a specific serial, and search for similar
|
|
8
|
+
material using the same machines or pallets.
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# FMS Insight Quality Pages
|
|
12
|
+
|
|
13
|
+
The quality analysis page is intended for the quality engineers. These tabs display information about
|
|
14
|
+
the past few days of inspections and cell operation and allow the engineers visibility into the cell's operation.
|
|
15
|
+
(Anything older than a couple days should not be analyzed in the heat of the moment but
|
|
16
|
+
instead be addressed in a [monthly review](improve-fms).)
|
|
17
|
+
|
|
18
|
+
We suggest that the quality dashboard is bookmarked by the engineers and visited directly.
|
|
19
|
+
All data available here is also available in the reports tab of the [operations page](client-operations). The quality
|
|
20
|
+
page just provides a dedicated place for engineers to bookmark and visit directly.
|
|
21
|
+
|
|
22
|
+
## Material
|
|
23
|
+
|
|
24
|
+

|
|
25
|
+
|
|
26
|
+
The material tab allows to search or lookup details about a piece of material (typically a piece of material
|
|
27
|
+
which failed inspection or failed after being sent out of the cell). The serial can be manually entered,
|
|
28
|
+
[scanned](client-scanners), or selected from the list of recent failed serials.
|
|
29
|
+
|
|
30
|
+

|
|
31
|
+
|
|
32
|
+
Once selected, the details of the material are displayed. A button at the bottom can then search
|
|
33
|
+
for similar paths.
|
|
34
|
+
|
|
35
|
+

|
|
36
|
+
|
|
37
|
+
The similar paths are displayed in a table grouped by inspection type and path. The table shows
|
|
38
|
+
each path and can be expanded to view the specific serials which followed that path.
|
|
39
|
+
|
|
40
|
+
## Paths
|
|
41
|
+
|
|
42
|
+
The _Paths_ tab shows all paths from the last week, grouped by inspection type and part. It shows the data either via
|
|
43
|
+
a Sankey chart or a table and shows signaled, succeeded, and failed inspections. It can be used to visualize
|
|
44
|
+
the paths that have occurred recently via the Sankey diagram or investigating the paths in detail via the table.
|
|
45
|
+
Anything older than 7
|
|
46
|
+
days is available as part of the [monthly review](improve-fms) on the
|
|
47
|
+
[flexibility analysis page](client-efficiency).
|
|
48
|
+
|
|
49
|
+

|
|
50
|
+
|
|
51
|
+
The chart shows a Sankey diagram of the material paths and
|
|
52
|
+
inspection results. First, select an inspection type and then select a part
|
|
53
|
+
in the top right. FMS Insight then loads all cycles for this part for the
|
|
54
|
+
entire month and groups them according to their path (A path consists of a
|
|
55
|
+
pallet and machine for each process or sequence, plus the final inspection
|
|
56
|
+
result.) The counts of the various paths are then charted using a Sankey
|
|
57
|
+
diagram, where the widths of the bars are drawn scaled based on the quantity
|
|
58
|
+
of parts which took that path, with parts "flowing" from left to right.
|
|
59
|
+
Any link can be moused over to obtain additional information in a tooltip.
|
|
60
|
+
|
|
61
|
+
For example, in the above screenshot, one path is to use pallet 1 and machine
|
|
62
|
+
2 (P1,M2) for the first sequence and then pallet 1 and machine 1 for the
|
|
63
|
+
second sequence (P1,M1). This corresponds to the large top link between `raw`
|
|
64
|
+
and `P1,M2` and then the downward-curved link between `P1,M2` on the left and
|
|
65
|
+
`P1,M1` on the right. The path is then further split with uninspected parts
|
|
66
|
+
and successfully inspected parts.
|
|
67
|
+
|
|
68
|
+
## Quarantine Material
|
|
69
|
+
|
|
70
|
+
If [quarantined material](material-quarantine) is enabled, this page displays all the quarantined material queues.
|
|
71
|
+
Material can be moved between the various quarantine queues by clicking and dragging on the vertical dots
|
|
72
|
+
on the material card. In addition, notes can be added to each piece of material by opening the material card.
|
|
73
|
+
|
|
74
|
+

|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: FMS Insight Sales Daily Monitoring
|
|
3
|
+
nav: FMS Insight Client > Sales
|
|
4
|
+
description: >-
|
|
5
|
+
The FMS Insight sales pages are used to determine estimates of when
|
|
6
|
+
existing workorders will be complete and when available capacity for
|
|
7
|
+
new orders will become available.
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# FMS Insight Sales Pages
|
|
11
|
+
|
|
12
|
+
The _Sales_ page helps to determine estimates of when existing workorders will
|
|
13
|
+
be complete and when available capacity for new orders will become available.
|
|
14
|
+
We suggest anyone interested bookmark this page and visit it directly.
|
|
15
|
+
|
|
16
|
+
## Workorders
|
|
17
|
+
|
|
18
|
+

|
|
19
|
+
|
|
20
|
+
The workorders page shows a table of all workorders in the cell, including the
|
|
21
|
+
workorder details, the list of parts assigned to the workorder, and the station
|
|
22
|
+
utilization for all parts completed by the workorder. Additionally, each
|
|
23
|
+
workorder has a list of comments. Comments can be added and viewed by
|
|
24
|
+
supervisors, salespeople, or operators on the shop floor. Comments are intended
|
|
25
|
+
to be used to communicate information about the workorder between the various
|
|
26
|
+
stakeholders.
|
|
27
|
+
|
|
28
|
+
Depending on the specific configuration of the cell, the _Projected Start_ and
|
|
29
|
+
_Projected Filled_ columns may or may not appear. These columns will only appear
|
|
30
|
+
if the daily schedules are imported and the daily schedule includes the details
|
|
31
|
+
of the simulation. These projected dates are estimates and are calculated only
|
|
32
|
+
while running the simulation to determine the daily schedule. Thus, they do not
|
|
33
|
+
update throughout the day and will not reflect any changes to workorder
|
|
34
|
+
priority, new workorders, completed parts, or any other changes to the cell.
|
|
35
|
+
Only once a new simulation is run will the projected dates be updated.
|
|
36
|
+
|
|
37
|
+

|
|
38
|
+
|
|
39
|
+
If the daily schedules include the projected start and filled dates, a Gantt
|
|
40
|
+
chart can also be shown. The Gantt chart shows the projected start and filled
|
|
41
|
+
dates on the x-axis and the workorders on the y-axis.
|
|
42
|
+
|
|
43
|
+
## Projected Usage
|
|
44
|
+
|
|
45
|
+

|
|
46
|
+
|
|
47
|
+
If the daily schedules are imported and the daily schedule includes simulation details,
|
|
48
|
+
the projections page will show a calendar of the projected machine utilization of the cell.
|
|
49
|
+
Similar to workorders, these dates are estimates and are only calculated while running
|
|
50
|
+
the simulation to determine the daily schedule. Thus, they do not update throughout the day.
|
|
51
|
+
|
|
52
|
+
Each day in the calendar shows the projected machine utilization for that day as a color,
|
|
53
|
+
with darker colors showing higher utilization. The day can be hovered to see the exact
|
|
54
|
+
projected utilization. This utilization is the simulated machine utilization to complete
|
|
55
|
+
all the remaining workorders.
|
|
56
|
+
|
|
57
|
+
The intention of this report is to allow salespeople to determine when capacity will be
|
|
58
|
+
available for a new order. For example, in the screenshot above, the existing workorders
|
|
59
|
+
keep the cell busy until mid-August so new workorders should be expected to be filled by
|
|
60
|
+
mid to late August. Of course, this is only an estimate and if the priorities of workorders
|
|
61
|
+
change, a new workorder could be entered to run before existing workorders.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Barcode Scanners
|
|
3
|
+
nav: FMS Insight Client > Scanners
|
|
4
|
+
description: >-
|
|
5
|
+
All FMS Insight pages supports barcode or QR-code scanners for easy material tracking
|
|
6
|
+
on the shop floor.
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# FMS Insight Barcode Scanners
|
|
10
|
+
|
|
11
|
+
All FMS Insight pages supports barcode or QR-code scanners.
|
|
12
|
+
When a part's serial is scanned, the dialog corresponding to the piece of material is opened.
|
|
13
|
+
For example, if the [inspection station monitor](client-station-monitor) is open and a part's serial is scanned,
|
|
14
|
+
the dialog for this serial will be opened to show the material details, log of events, and buttons to
|
|
15
|
+
complete the inspection. (The exact same dialog which is opened if you click on a piece of material on the screen.)
|
|
16
|
+
In this way, the scanner can be used to more quickly locate the material card and open the details about it.
|
|
17
|
+
|
|
18
|
+
## Manual Serial Entry
|
|
19
|
+
|
|
20
|
+
A serial can be entered via the keyboard by clicking on the magnifying glass icon in the top-right of the page.
|
|
21
|
+
A dialog will open allowing you to enter a serial and then the material details for that serial will be loaded.
|
|
22
|
+
|
|
23
|
+
## Configuring a handheld scanner
|
|
24
|
+
|
|
25
|
+
Handheld USB or bluetooth scanners are presented to the system as keyboards.
|
|
26
|
+
When a barcode or QR-code is scanned, the contents of the barcode is sent as
|
|
27
|
+
keyboard presses. To support this, the FMS Insight website listens for a
|
|
28
|
+
keyboard press of either F1 or the combination of !\* and when it detects this,
|
|
29
|
+
starts a scan. Any keyboard presses of letters and numbers followed by the
|
|
30
|
+
Enter key (within 10 seconds) is treated as a serial. By default, only
|
|
31
|
+
characters up to the first comma or semi-colon are used, which allows the
|
|
32
|
+
QR-code to contain extra data (this can be modified in a custom plugin).
|
|
33
|
+
|
|
34
|
+
You can try this manually without a scanner; on a webpage, press F1, quickly type
|
|
35
|
+
a serial, and press Enter (must be within 10 seconds). The material detail dialog
|
|
36
|
+
will appear with the serial that you typed.
|
|
37
|
+
|
|
38
|
+
Almost all handheld USB or bluetooth scanners can be configured to send a prefix key
|
|
39
|
+
before the scan and a postfix key after the scan. For the scanner to work with
|
|
40
|
+
FMS Insight, the scanner should be configured to use F1 or !\* as the prefix key and Enter
|
|
41
|
+
as the postfix key.
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: FMS Station Monitor
|
|
3
|
+
nav: FMS Insight Client > Stations
|
|
4
|
+
description: >-
|
|
5
|
+
The FMS Insight station monitor pages are used on the factory floor by the operators;
|
|
6
|
+
these pages assist with loading/unloading, washing, and inspecting material in the
|
|
7
|
+
FMS.
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# FMS Insight Station Monitor Pages
|
|
11
|
+
|
|
12
|
+
The station monitor pages are intended to be used on the shop floor by the operators;
|
|
13
|
+
these pages display the [virtual whiteboard of material
|
|
14
|
+
sticky notes](material-tracking). Each in-process piece of material is
|
|
15
|
+
represented by a virtual sticky note. On the sticky note, FMS Insight
|
|
16
|
+
displays the part name, serial, assigned workorder, and any signaled
|
|
17
|
+
inspections. The sticky note can be clicked or tapped to open a dialog with
|
|
18
|
+
more details about the material including the log of events. The dialog also
|
|
19
|
+
allows the operator to notify Insight of changes in the material, such as
|
|
20
|
+
completing wash or assigning a workorder. Finally, the sticky note contains
|
|
21
|
+
an identicon based on the part name and the final number/letter of the
|
|
22
|
+
serial.
|
|
23
|
+
|
|
24
|
+
We suggest that computers or mounted tablets be placed next to various stations
|
|
25
|
+
in the factory, perhaps with an attached barcode scanner.
|
|
26
|
+
The computer or mounted tablet can then be configured to open the specific screen
|
|
27
|
+
for the station by either bookmarking the page or just setting the specific page
|
|
28
|
+
as the homepage for the browser.
|
|
29
|
+
|
|
30
|
+
## System Overview
|
|
31
|
+
|
|
32
|
+

|
|
33
|
+
|
|
34
|
+
In the top bar of every station screen, there is a collection of squares and triangles.
|
|
35
|
+
This provides a quick overview of the current state of the system. There is one square for each machine and one
|
|
36
|
+
triangle for each load station. The colors within the squares indicate if a pallet is at the inbound, worktable,
|
|
37
|
+
or outbound position of each machine. The color within the triangle indicates if the load station is occupied or not.
|
|
38
|
+
The icons can be clicked to open up a dialog containing more details about the system overview.
|
|
39
|
+
|
|
40
|
+

|
|
41
|
+
|
|
42
|
+
The overview shows each machine, load station and pallet in the system and the material currently on the pallets.
|
|
43
|
+
The material can be hovered and clicked to open more details.
|
|
44
|
+
|
|
45
|
+
## Load Station
|
|
46
|
+
|
|
47
|
+

|
|
48
|
+
|
|
49
|
+
On the top toolbar, the specific load station number is set. Insight will display
|
|
50
|
+
only regions relevant to this specific load station, including the material region,
|
|
51
|
+
the faces of the pallet currently at the load station, and a region for completed material.
|
|
52
|
+
Optionally, the queues dropdown on the top toolbar can be used to add additional
|
|
53
|
+
whiteboard regions to display in addition to the pallet regions. Typically we suggest that
|
|
54
|
+
in-process queues have their own computer with a dedicated display, but for queues closely
|
|
55
|
+
associated with the load station such as a transfer stand, the virtual whiteboard region for
|
|
56
|
+
the queue can be displayed along with the pallet regions.
|
|
57
|
+
|
|
58
|
+

|
|
59
|
+
|
|
60
|
+
When a material sticky note is clicked or tapped, a dialog will open with a
|
|
61
|
+
log of events for the piece of material. The dialog can also be opened by
|
|
62
|
+
[using a scanner](client-scanners) or manually entering a serial via the
|
|
63
|
+
magnifying glass button on the toolbar. In the dialog, a variety of actions
|
|
64
|
+
can be taken for the specific material.
|
|
65
|
+
|
|
66
|
+
Finally, the lower-right hand corner of the screen contains a brown circular button which when
|
|
67
|
+
clicked will open all load instructions for all material currently being loaded or unloaded.
|
|
68
|
+
Alternatively, in the material dialog, the Instructions button can be clicked to open the instructions
|
|
69
|
+
for only a single piece of material.
|
|
70
|
+
|
|
71
|
+
## Queues
|
|
72
|
+
|
|
73
|
+

|
|
74
|
+
|
|
75
|
+
The queues screen shows the material currently inside one or more queues. On the top toolbar,
|
|
76
|
+
one or more queues can be selected and the virtual whiteboard regions for the selected queues
|
|
77
|
+
are then displayed. The material in the queue can be re-ordered by clicking and dragging on the
|
|
78
|
+
6-dot icon on the left of each piece of material. Depending on the configuration and
|
|
79
|
+
which specific queue is selected, material can be added to a queue by clicking the plus icon
|
|
80
|
+
in the top-right corner.
|
|
81
|
+
|
|
82
|
+
On raw material queues, the list of in-process jobs and/or unfilled workorders will be displayed
|
|
83
|
+
in a table. This table can be used by the operators to decide which material to run next.
|
|
84
|
+
|
|
85
|
+

|
|
86
|
+
|
|
87
|
+
By clicking or tapping on a material sticky note, a dialog will open with
|
|
88
|
+
details about the specific piece of material. The dialog will have a variety of
|
|
89
|
+
actions for the specific material. An attached [barcode scanner](client-scanners) can
|
|
90
|
+
also be used to open the material dialog.
|
|
91
|
+
|
|
92
|
+
## Inspection
|
|
93
|
+
|
|
94
|
+

|
|
95
|
+
|
|
96
|
+
The inspection screen shows completed material that has been marked for inspection. On the top
|
|
97
|
+
toolbar, a specific inspection type can be selected or all material for inspection can be shown.
|
|
98
|
+
On the left is the virtual whiteboard region for completed but not yet inspected material and on
|
|
99
|
+
the right is material which has completed inspections.
|
|
100
|
+
|
|
101
|
+
When a material sticky note is clicked or tapped, a dialog will open with a
|
|
102
|
+
log of events for the piece of material. If a specific inspection type is
|
|
103
|
+
selected, there will be buttons to mark a piece of material as either
|
|
104
|
+
successfully inspected or failed. When clicked or tapped, this will record an
|
|
105
|
+
event in the log and move the virtual sticky note from the left to the right.
|
|
106
|
+
The top toolbar on the right allows an operator name to be entered and this
|
|
107
|
+
operator name will be attached to the created inspection completed log entry.
|
|
108
|
+
Finally, the operator can open [inspection instructions](part-instructions).
|
|
109
|
+
|
|
110
|
+
An attached [barcode scanner](client-scanners) can also be used to open the material
|
|
111
|
+
dialog. This allows viewing details and marking as inspected or uninspected
|
|
112
|
+
any part by scanned serial (even if the part is not on the screen).
|
|
113
|
+
|
|
114
|
+
## Close Out
|
|
115
|
+
|
|
116
|
+

|
|
117
|
+
|
|
118
|
+
The close out screen shows completed material from the last 36 hours. On the left
|
|
119
|
+
is the virtual whiteboard region for completed but not yet closed out material
|
|
120
|
+
and on the right is material which has completed closeout.
|
|
121
|
+
Closeout is optional but intended for any final manual process needed before the
|
|
122
|
+
part can be shipped; typically this includes a final wash or workorder assignment or
|
|
123
|
+
other tasks.
|
|
124
|
+
|
|
125
|
+
When a material sticky note is clicked or tapped, a dialog will open with a
|
|
126
|
+
log of events for the piece of material. There is a button to mark a piece of
|
|
127
|
+
material as closed out. When clicked or tapped, this will record an
|
|
128
|
+
event in the log and move the virtual sticky note from the left to the right.
|
|
129
|
+
The top toolbar on the right allows an operator name to be entered and this
|
|
130
|
+
operator name will be attached to the created log entry.
|
|
131
|
+
Finally, the operator can open [instructions](part-instructions).
|
|
132
|
+
|
|
133
|
+
An attached [barcode scanner](client-scanners) can also be used to open the material
|
|
134
|
+
dialog. This allows viewing details and marking as closed out
|
|
135
|
+
any part by scanned serial (even if the part is not on the screen because more than 36 hours has passed).
|
|
136
|
+
|
|
137
|
+
## System Overview Page
|
|
138
|
+
|
|
139
|
+

|
|
140
|
+
|
|
141
|
+
All station screens have access to the system overview by clicking the system overview button
|
|
142
|
+
(the colored squares and triangles) located in the top toolbar which opens the system overview in a dialog.
|
|
143
|
+
Alternatively, the system overview can be opened as a dedicated page itself. The intention of FMS Insight
|
|
144
|
+
is that each tablet or computer be dedicated to a specific task or station, and thus you may consider a
|
|
145
|
+
dedicated display for the system overview page. (Note, the system overview is also available to the operations
|
|
146
|
+
manager as part of the [Operations Screens](client-operations).)
|
|
147
|
+
|
|
148
|
+
The system overview shows all the machines, load stations, and pallets. It also shows the material on each pallet.
|
|
149
|
+
The material can be clicked to bring up the details for that specific piece of material.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: FMS Quality Daily Monitoring
|
|
3
|
+
nav: FMS Insight Client > Tools & Programs
|
|
4
|
+
description: >-
|
|
5
|
+
The FMS Insight tools pages are used by tool room and factory floor supervisors.
|
|
6
|
+
These pages display information about the current tools in the machines, the tool
|
|
7
|
+
usage of each program, and an estimate of the upcoming usage for the scheduled parts.
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# FMS Insight Tools & Programs Page
|
|
11
|
+
|
|
12
|
+
The tools and programs report are accessible from two different places; first, the reports are available
|
|
13
|
+
on the [Operations Management Page](client-operations) so that the floor supervisor can view information
|
|
14
|
+
about the tools and programs along with the other metrics and data for day-to-day management. Second,
|
|
15
|
+
just the tools and programs reports tables are available on a dedicated page accessible from the
|
|
16
|
+
initial [launch page](client-launch). This page is intended for display in the tool-room or elsewhere
|
|
17
|
+
on the shop floor where tools are managed. We suggest that this page is bookmarked and directly opened.
|
|
18
|
+
|
|
19
|
+
## Tool Report
|
|
20
|
+
|
|
21
|
+

|
|
22
|
+
|
|
23
|
+
The current tool use and life from each machine is loaded by clicking the "Load Tools" button. The data
|
|
24
|
+
can be refreshed by clicking the circular icon in the top bar.
|
|
25
|
+
|
|
26
|
+
The main table shows a summary of all tools across all machines. For each tool, the table shows columns
|
|
27
|
+
for:
|
|
28
|
+
|
|
29
|
+
- _Scheduled Use_: This column sums over all not-yet-machined currently scheduled parts, using the estimated
|
|
30
|
+
tool use that is calculated for each program. (The calculated tool-use per program can be seen on the program
|
|
31
|
+
report.) Note that if a program is currently-executing, we don't know where in the program it is so
|
|
32
|
+
the _Scheduled Use_ column contains the entire calculated tool-use for the program.
|
|
33
|
+
|
|
34
|
+
- _Total Remaining Life_: This sums the remaining life of the tool over all machines.
|
|
35
|
+
|
|
36
|
+
- _Smallest Remaining Life_: These two columns show the machine and amount with the smallest remaining life.
|
|
37
|
+
|
|
38
|
+
A scheduled part might be routed to several machines so we don't know ahead of time which tool will be used.
|
|
39
|
+
Instead, you should compare the scheduled use with the total life and the smallest remaining life to get a
|
|
40
|
+
sense of if additional tools will be needed soon.
|
|
41
|
+
|
|
42
|
+
For each tool, details about the individual pockets and scheduled parts are available by clicking the
|
|
43
|
+
arrow at the beginning of the row. The parts table shows all scheduled parts, the program, the remaining quantity
|
|
44
|
+
to run, and the estimated use per program. The machines table shows the pocket number or numbers containing the
|
|
45
|
+
tool and the current use and remaining life.
|
|
46
|
+
|
|
47
|
+
## Program Report
|
|
48
|
+
|
|
49
|
+

|
|
50
|
+
|
|
51
|
+
The current programs in the cell controller are loaded by clicking the "Load Programs" button. The data
|
|
52
|
+
can be refreshed by clicking the circular icon in the top bar.
|
|
53
|
+
|
|
54
|
+
The main table shows the following columns:
|
|
55
|
+
|
|
56
|
+
- _Program Name_
|
|
57
|
+
- _Cell Controller Program Name_: this column will only appear if the cell controller uses a name or number
|
|
58
|
+
different from the program name.
|
|
59
|
+
- _Part_: the part and process number that uses this program.
|
|
60
|
+
- _Revision_: this shows the program revision, but will only appear if program revisions are used as part of
|
|
61
|
+
a downloaded job. If revisions are not used, this column will not appear.
|
|
62
|
+
- _Median Time and Deviation_: For the [flexibility analysis](client-efficiency), FMS Insight
|
|
63
|
+
uses the data from the last 30 days to calculate a statistical median and deviation running time for each
|
|
64
|
+
program. Because times above the median (likely due to program interruptions) is a different probability
|
|
65
|
+
distribution to times below the median (likely due to normal Gaussian noise), we calculate deviations
|
|
66
|
+
of the two separately.
|
|
67
|
+
|
|
68
|
+
In addition, the buttons on the end of the row allow viewing the program content. If revisions are used, the
|
|
69
|
+
history of old revisions of the program can also be seen.
|
|
70
|
+
|
|
71
|
+
The arrow at the beginning of the row shows the calculated tool data for this program. We take the last 5
|
|
72
|
+
executions of the program which are within the standard deviation of the median, and from those 5 executions,
|
|
73
|
+
calculate the average (mean) tool use. If a tool is changed during one of these cycles, we can't calculate the actual usage
|
|
74
|
+
so that cycle is not included in the average.
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Use analytics to improve a FMS
|
|
3
|
+
nav: Procedures > Monthly Review
|
|
4
|
+
description: >-
|
|
5
|
+
Implement continuous improvement of a flexible machining system by reviewing
|
|
6
|
+
targeted metrics which expose cell efficiency and cost per piece.
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Use analytics to improve a FMS
|
|
10
|
+
|
|
11
|
+
The performance of an automated flexible machining system (FMS) depends on
|
|
12
|
+
the interaction between scheduling, part programming, operations, engineering
|
|
13
|
+
design, quality control, tooling, purchasing, and more. This encourages a
|
|
14
|
+
holistic view of the entire system instead of focusing on each component
|
|
15
|
+
(such as part programming) in isolation. Recent advances in big data
|
|
16
|
+
technology make it easier than ever to understand the entire manufacturing
|
|
17
|
+
process, investigate trade-offs, and calculate metrics on monthly
|
|
18
|
+
cost-per-piece, resource utilization, and system bottlenecks. Data analytics
|
|
19
|
+
leads to understanding the entire system as a whole and actionable insights
|
|
20
|
+
for improvements and future investments in automation and process
|
|
21
|
+
improvement.
|
|
22
|
+
|
|
23
|
+
## Actionable Insights
|
|
24
|
+
|
|
25
|
+
Data collection and analytics focuses on presenting [actionable
|
|
26
|
+
insights](https://www.forbes.com/sites/brentdykes/2016/04/26/actionable-insights-the-missing-link-between-data-and-business-value/).
|
|
27
|
+
Raw data collection and information visualization can generate many metrics and insights into a
|
|
28
|
+
system, but the challenge is to produce clear, relevant, specific insights. For a FMS, in our
|
|
29
|
+
experience there are two metrics which lead to actionable insights: cost-per-piece and resource utilization.
|
|
30
|
+
|
|
31
|
+
Cost-per-piece is a great actionable insight because it is easy to understand, specific to the
|
|
32
|
+
ultimate purpose of the FMS, highly relevant to the business, and can be clearly presented to all
|
|
33
|
+
stakeholders. For ordering, an accurate analysis of cost-per-piece allows easy quoting of work.
|
|
34
|
+
For accounting, cost-per-piece allows justifications for future capital investments in new machines
|
|
35
|
+
or new automation. For operational management, cost-per-piece helps understand the impact of a
|
|
36
|
+
process change. That is, management can see if a process change has improved cost-per-piece and
|
|
37
|
+
therefore if the process change should be kept or adjusted. The entire business benefits from
|
|
38
|
+
visible and accurate cost-per-piece metrics, because various departments and employees can see that
|
|
39
|
+
even if a change requires them to perform extra work, it improves the overall business value of the
|
|
40
|
+
system. The only data required from daily operations is the monthly quantity of parts produced,
|
|
41
|
+
and it is implemented on the [flexibility analysis page](client-efficiency).
|
|
42
|
+
|
|
43
|
+
While it is the ultimate goal, overall cost-per-piece is not a useful metric to improve the system.
|
|
44
|
+
Sure, a cost-per-piece breakdown will show the costs of labor, machining, and tooling but how do
|
|
45
|
+
you turn that into a plan to change something? Also, focusing on improving cost-per-piece directly
|
|
46
|
+
risks optimizing cost by sacrificing quality. Instead, the best metric for continuous improvement
|
|
47
|
+
is the bottlenecks and utilization of system resources, since the goal is to produce more stuff with
|
|
48
|
+
the same machines and quality.
|
|
49
|
+
|
|
50
|
+
Utilization and bottleneck metrics are more difficult to turn into actionable insights. Many
|
|
51
|
+
companies generate OEE (operational equipment effectiveness) data or collect machine utilization and
|
|
52
|
+
bottleneck information, but seemingly inconsequential details in one area can have large impacts in
|
|
53
|
+
other areas. For example, the chosen part programming technique might require complex operational
|
|
54
|
+
part tracking on the shop floor or scheduling techniques might increase quality control overhead.
|
|
55
|
+
When each department focuses only on their own slice of the system, they can't turn these insights
|
|
56
|
+
into actions.
|
|
57
|
+
|
|
58
|
+
To turn the system utilization and performance metrics into actionable insights, we suggest the
|
|
59
|
+
creation of a tactics council. The tactics council is made up of a representative from each
|
|
60
|
+
department and component of the system, and the council's job is to decide on the overall tactics for system
|
|
61
|
+
operation. By combining representatives from all areas of the system, the tactics council can
|
|
62
|
+
produce actions (changes in how the system operates) based on the information and metrics on OEE and
|
|
63
|
+
system performance. Helpful efficiency metrics and graphs are displayed in the
|
|
64
|
+
[flexibility analysis page](client-efficiency).
|
|
65
|
+
|
|
66
|
+
## Tactics Council
|
|
67
|
+
|
|
68
|
+
How can we produce actions from the various insights and information on OEE, machine utilization,
|
|
69
|
+
labor use, and system performance? Because improving a FMS requires coordination between various
|
|
70
|
+
stakeholders across several departments, a great management technique is a tactics council made up of a representative from
|
|
71
|
+
part programming, operations, scheduling, tooling, quality control, accounting, and anyone else
|
|
72
|
+
involved in the system. The council is the primary recipient of the system performance
|
|
73
|
+
metrics, meets once every 6 weeks or once every two months, reviews the data,
|
|
74
|
+
brainstorms improvements, and has final authority on the overall tactics for how the FMS operates.
|
|
75
|
+
|
|
76
|
+
Plan. Do. Check. Adjust. The [PDCA technique](https://en.wikipedia.org/wiki/PDCA) is an effective
|
|
77
|
+
strategy to improve the performance of an existing FMS and is ideal for the tactics council.
|
|
78
|
+
During the tactics council meeting, the council will perform the plan and
|
|
79
|
+
adjust phases of PDCA and in the 6-weeks to two months between meetings, individual departments will
|
|
80
|
+
perform the do and check phases of PDCA. The tactics council should focus on only a single or at
|
|
81
|
+
most two improvements at once.
|
|
82
|
+
|
|
83
|
+
For example, say that an improvement idea is to implement [material tracking](material-tracking) by adding a serial and barcode to each part during
|
|
84
|
+
machining and then scanning the barcode at the inspection station, allowing the inspection operator to
|
|
85
|
+
view the pallet, machine, and time for this specific part. The first step is to develop the plan,
|
|
86
|
+
which would include the cost of purchasing a barcode printer, an analysis of the extra time at the
|
|
87
|
+
load station applying the barcode to the part, a target for reducing the percentage of parts that
|
|
88
|
+
require inspection, the cost savings from the reduced inspections, and other facets such as
|
|
89
|
+
training. This plan is presented to the tactics council, the council discusses it, and say the
|
|
90
|
+
tactics council agrees to implement this change. In the 6-weeks to two months between council
|
|
91
|
+
meetings, operations will purchase the barcode printer, start barcoding parts, and start collecting
|
|
92
|
+
data (the do and check steps of PDCA). The inspection stand will start using the barcodes and
|
|
93
|
+
importantly record data on quality improvements. The next tactics council meeting can then review
|
|
94
|
+
the data to understand the impact on overall cost-per-piece and system performance. By reviewing
|
|
95
|
+
these metrics, the council can decide on any adjustments if necessary.
|
|
96
|
+
|
|
97
|
+
The tactics council is an important management technique because it encourages buy-in from everyone
|
|
98
|
+
to improve overall cost-per-piece and system performance instead of focusing on individual isolated
|
|
99
|
+
metrics such as cycle times or inspection rates. Typical improvements are similar to the previous
|
|
100
|
+
example, where one department (such as operations) has extra work and a different department (such
|
|
101
|
+
as quality control) sees an improvement. The tactics council and the repetitive nature of the PDCA
|
|
102
|
+
technique keeps everyone happy, because the next improvement implemented by the council might
|
|
103
|
+
improve operations while the inspection stand might have some extra work. Since everyone has a
|
|
104
|
+
representative on the tactics council and the tactics council focuses on part cost-per-piece and
|
|
105
|
+
total system performance, one department refusing to implement a change is greatly reduced.
|
|
106
|
+
|
|
107
|
+
## Continuous Improvement
|
|
108
|
+
|
|
109
|
+
The utilization and bottleneck metrics which lead to actionable insights vary
|
|
110
|
+
by system and part mix. The overall system OEE is easy to calculate by taking
|
|
111
|
+
the total quantity of parts produced in a month, adding up their planned
|
|
112
|
+
time, and dividing by the hours in a month. But the OEE is not an actionable
|
|
113
|
+
insight: is the OEE lowered by a pallet traffic jam, a problem in a
|
|
114
|
+
part-program, tooling capacity limitations, cart contention, load station
|
|
115
|
+
inattention, or something else? This is where the repetitive nature of the
|
|
116
|
+
PDCA technique shines. Every two months, the tactics council meets, reviews
|
|
117
|
+
the available data, and can suggest new metrics based on what was learned
|
|
118
|
+
from the previous reports. For example, perhaps the overview of the system
|
|
119
|
+
identifies that pallet 5 has very irregular and erratic flow times. This
|
|
120
|
+
could be caused by competition between pallets, lack of flexibility, traffic
|
|
121
|
+
jams, a problem in the part-program of a part run on pallet 5, lack of tool
|
|
122
|
+
capacity, or something else. In this case, more detailed data collection can
|
|
123
|
+
focus on pallet 5 to help identify the problem.
|
|
124
|
+
|
|
125
|
+
## Cost report
|
|
126
|
+
|
|
127
|
+
Calculating cost-per-piece requires splitting large fixed costs such as machine depreciation and
|
|
128
|
+
labor across the parts that were produced. To do so, we suggest a monthly analysis window and
|
|
129
|
+
dividing costs by planned use of resources. Collect data on the total quantity of parts produced
|
|
130
|
+
during a month, along with their planned use of each resource such as machining time, load station
|
|
131
|
+
time, tooling use, and inspection time and rates. The total cost is then divided among the parts
|
|
132
|
+
according to weights based on their planned use of system resources. The cost-per-part can then be
|
|
133
|
+
exported to the ERP and combined with order data from the ERP to calculate a cost-per-order.
|
|
134
|
+
|
|
135
|
+
The cost-per-piece is the primary metric and insight produced by the tactics council. It should be
|
|
136
|
+
broadcast to the entire business as an actionable insight for quoting work, future capital investment,
|
|
137
|
+
and general accounting. Cost-per-piece should be produced by the tactics council itself and not
|
|
138
|
+
management because the council is in the best position to decide on cost trade-offs.
|
|
139
|
+
For example, there is a trade-off between quality and inspections and cost, and the council is
|
|
140
|
+
in the best position to decide on the required quality and inspections and then work to reduce costs
|
|
141
|
+
only under these constraints without sacrificing quality.
|
package/docs/makino.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Makino Cell Integration
|
|
3
|
+
nav: FMS Insight Server > Makino
|
|
4
|
+
description: >-
|
|
5
|
+
FMS Insight works with recent Makino cell controller versions. FMS Insight
|
|
6
|
+
can read events from the cell controller and can also insert parts, jobs, and
|
|
7
|
+
orders; at the current time FMS Insight cannot create pallets or fixtures.
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# FMS Insight Makino Integration
|
|
11
|
+
|
|
12
|
+
FMS Insight works with recent Makino cell controller versions. FMS Insight
|
|
13
|
+
can read events from the cell controller and can also insert parts, jobs, and
|
|
14
|
+
orders; at the current time FMS Insight cannot create pallets or fixtures.
|
|
15
|
+
|
|
16
|
+
## ADE Folder and SQL Server Connection
|
|
17
|
+
|
|
18
|
+
FMS Insight communicates with the Makino cell controller via two methods.
|
|
19
|
+
First, FMS Insight uses a read-only connection to the Makino database to
|
|
20
|
+
obtain log and status information about the cell. Secondly, when downloading
|
|
21
|
+
parts, jobs, and orders, FMS Insight creates files in the Makino ADE folder.
|
|
22
|
+
This is a folder which the Makino cell controller watches for changes; when a
|
|
23
|
+
new file appears in this folder the Makino cell controller will itself import
|
|
24
|
+
the file. Thus, FMS Insight never modifies the cell data directly but instead
|
|
25
|
+
just creates the appropriate file in the ADE folder.
|
|
26
|
+
|
|
27
|
+
By default, FMS Insight uses `c:\Makino\ADE` as the ADE folder and connects
|
|
28
|
+
to the database on the local computer. Both of these settings can be changed
|
|
29
|
+
in the [configuration file](server-config).
|
|
30
|
+
|
|
31
|
+
## Download Only Orders
|
|
32
|
+
|
|
33
|
+
When creating data in the cell controller (by writing a file to the ADE
|
|
34
|
+
folder), FMS Insight has two modes. First, it can include a description of
|
|
35
|
+
the part, job, and order, causing the Makino cell controller to create a new
|
|
36
|
+
part, a new job, and a new order. This is the default, since it minimizes the
|
|
37
|
+
amount of data which must be manually entered into the cell controller.
|
|
38
|
+
Alternatively, via a setting in the [config file](server-config), FMS
|
|
39
|
+
Insight will only create orders. FMS Insight will assume that a matching part
|
|
40
|
+
already exists inside the Makino cell controller.
|