@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,40 @@
|
|
|
1
|
+
const nr = "-?\\d+(?:[\\.,]\\d+)?";
|
|
2
|
+
const dateRegex = "(" + nr + "Y)?(" + nr + "M)?(" + nr + "D)?";
|
|
3
|
+
const timeRegex = "T(" + nr + "H)?(" + nr + "M)?(" + nr + "S)?";
|
|
4
|
+
const durationRegex = new RegExp("P" + dateRegex + "(?:" + timeRegex + ")?");
|
|
5
|
+
export default function parseISODuration(argument) {
|
|
6
|
+
const match = durationRegex.exec(argument);
|
|
7
|
+
if (!match) {
|
|
8
|
+
return null;
|
|
9
|
+
}
|
|
10
|
+
// at least one part must be specified
|
|
11
|
+
if (!match[1] && !match[2] && !match[3] && !match[4] && !match[5] && !match[6]) {
|
|
12
|
+
return null;
|
|
13
|
+
}
|
|
14
|
+
const duration = {};
|
|
15
|
+
if (match[1])
|
|
16
|
+
duration.years = parseFloat(match[1]);
|
|
17
|
+
if (match[2])
|
|
18
|
+
duration.months = parseFloat(match[2]);
|
|
19
|
+
if (match[3])
|
|
20
|
+
duration.days = parseFloat(match[3]);
|
|
21
|
+
if (match[4])
|
|
22
|
+
duration.hours = parseFloat(match[4]);
|
|
23
|
+
if (match[5])
|
|
24
|
+
duration.minutes = parseFloat(match[5]);
|
|
25
|
+
if (match[6])
|
|
26
|
+
duration.seconds = parseFloat(match[6]);
|
|
27
|
+
return duration;
|
|
28
|
+
}
|
|
29
|
+
export function durationToSeconds(duration) {
|
|
30
|
+
const dur = parseISODuration(duration);
|
|
31
|
+
if (!dur)
|
|
32
|
+
return 0;
|
|
33
|
+
const days = (dur.years ?? 0) * 365 + (dur.months ?? 0) * 30 + (dur.days ?? 0);
|
|
34
|
+
const hours = days * 24 + (dur.hours ?? 0);
|
|
35
|
+
const minutes = hours * 60 + (dur.minutes ?? 0);
|
|
36
|
+
return minutes * 60 + (dur.seconds ?? 0);
|
|
37
|
+
}
|
|
38
|
+
export function durationToMinutes(duration) {
|
|
39
|
+
return durationToSeconds(duration) / 60;
|
|
40
|
+
}
|
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: FMS Monthly Flexibility Analysis
|
|
3
|
+
nav: FMS Insight Client > Flexibility Analysis
|
|
4
|
+
description: >-
|
|
5
|
+
The FMS Insight flexibility analysis pages are used by managers to view
|
|
6
|
+
a monthly report on the system and to focus on continuous improvement.
|
|
7
|
+
The pages highlight potential bottlenecks and places for efficiency improvements
|
|
8
|
+
in the cell.
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# FMS Insight Monthly Flexibility Analysis
|
|
12
|
+
|
|
13
|
+
FMS Insight supports continuous improvement by assisting with a monthly review.
|
|
14
|
+
We suggest that approximately once a month, all stakeholders review the operation of the cell and
|
|
15
|
+
decide on potential improvements. The [improve an FMS](improve-fms)
|
|
16
|
+
documentation goes into more details about how to make the most of these
|
|
17
|
+
efficiency calculations.
|
|
18
|
+
|
|
19
|
+

|
|
20
|
+
|
|
21
|
+
At the top of the page are two radio buttons allowing you to analyze either the last
|
|
22
|
+
30 days or a specific calendar month. You can then select from a variety of reports
|
|
23
|
+
to investigate the cell.
|
|
24
|
+
|
|
25
|
+
The best metric for continuous improvement of an FMS is not cost/piece but
|
|
26
|
+
instead is the bottlenecks and utilization of system resources (the
|
|
27
|
+
goal is to produce more stuff with the same machines and quality). The
|
|
28
|
+
efficiency tab shows some charts and graphs for a monthly summary of the
|
|
29
|
+
operation of the cell, displaying reports that in our experience are very
|
|
30
|
+
helpful to find and fix bottlenecks. We suggest you review this data once a
|
|
31
|
+
month and use these reports to gradually alter the flexibility or operation
|
|
32
|
+
of the cell to improve the performance.
|
|
33
|
+
|
|
34
|
+
## Efficiency
|
|
35
|
+
|
|
36
|
+
#### Buffer Occupancy
|
|
37
|
+
|
|
38
|
+

|
|
39
|
+
|
|
40
|
+
As material moves through the system, it buffers before various operations. It can buffer
|
|
41
|
+
on a pallet waiting on the inbound rotary table, it can buffer on a pallet in the
|
|
42
|
+
stocker waiting for either machining or unloading, or it can buffer between processes
|
|
43
|
+
in a [transfer queue](material-tracking). In general, material will buffer right in
|
|
44
|
+
front of the bottleneck operation. The buffer occupancy chart can thus be used to determine
|
|
45
|
+
which operation (machining, loading, unloading) is the current bottleneck and also how the
|
|
46
|
+
bottleneck changes over time.
|
|
47
|
+
|
|
48
|
+
The buffer occupancy chart calculates a moving average of the quantity of material buffered
|
|
49
|
+
in all these various places. The x-axis is the days of the month. For each time on
|
|
50
|
+
the x-axis, a window around that point is used to calculate the average quantity of material
|
|
51
|
+
in the buffer during the window of time. This average quantity is graphed on the y-axis.
|
|
52
|
+
|
|
53
|
+
Using a moving average window smooths out the jitter from individual pallet moves,
|
|
54
|
+
for example when a pallet rotates into the machine and another pallet is quickly
|
|
55
|
+
sent to the inbound rotary. The size of the window can be controlled by the slider
|
|
56
|
+
in the top-right. The size of the window should be set so that the major trends are
|
|
57
|
+
visible while short oscillations are smoothed out.
|
|
58
|
+
|
|
59
|
+
In an efficient, well-running system the bottleneck is always machining. This will be
|
|
60
|
+
reflected in the buffer occupancy chart with the "Stocker[Waiting for unload]" line zero
|
|
61
|
+
or almost zero, the "Rotary" for each machine always above zero, the
|
|
62
|
+
"Stocker[Waiting for machining]" only positive if all rotary tables are full, and any
|
|
63
|
+
in-process transfer queues small. If instead the load stations become the bottleneck,
|
|
64
|
+
the buffer occupancy chart will show a rise either "Stocker[Waiting for unload]" or a
|
|
65
|
+
rise in the in-process transfer queue between processes. Also, the rotary buffer
|
|
66
|
+
occupancy will drop to zero.
|
|
67
|
+
|
|
68
|
+
#### Station Use
|
|
69
|
+
|
|
70
|
+

|
|
71
|
+
|
|
72
|
+
The Station Use heatmap shows the station usage over the month. On the x-axis
|
|
73
|
+
are the days of the month and on the y-axis are the machines and load
|
|
74
|
+
stations. There are three charts which can be selected in the top-right
|
|
75
|
+
corner: "Standard OEE", "Planned OEE", and "Occupied".
|
|
76
|
+
|
|
77
|
+
- The "Standard OEE" chart computes the actual overall equipment effectiveness (OEE) over the month.
|
|
78
|
+
For each station and each day, FMS Insight uses the log of parts produced and adds up the expected
|
|
79
|
+
operation time for each part cycle and then divides by 24 hours
|
|
80
|
+
to obtain a percentage that the station was busy with productive work. (If station cycles
|
|
81
|
+
were longer than expected, this extra time is not counted in the OEE.) For each grid cell in the chart, the OEE percentage is drawn
|
|
82
|
+
with a color with darker colors higher OEE and lighter colors lower OEE. A grid cell
|
|
83
|
+
can be moused over to obtain extra information in a tooltip.
|
|
84
|
+
|
|
85
|
+
- The "Planned OEE" chart displays the simulated station usage for the downloaded jobs and
|
|
86
|
+
is the prediction of what the OEE should look like based on all the schedules for the month.
|
|
87
|
+
|
|
88
|
+
- The "Occupied" chart computes the total percentage of time that a pallet is occupying the station. For
|
|
89
|
+
each station and each day, FMS Insight uses the log of events to determine when a pallet arrives
|
|
90
|
+
and departs from each station. The total time a pallet is at the station is then divided by 24 hours
|
|
91
|
+
to obtain a percentage that the station was occupied. These percentages are then charted with darker colors
|
|
92
|
+
higher occupancy.
|
|
93
|
+
|
|
94
|
+
The Station Use heatmaps are useful for several observations. First, the Occupied heatmap can be used to
|
|
95
|
+
determine the overall usage of the load station. If the load station occupied percentages are very high,
|
|
96
|
+
it can indicate that the load station is a bottleneck and preventing the cell from performing useful work.
|
|
97
|
+
In a healthy cell, the load stations should be faster than the machines,
|
|
98
|
+
so the load stations should be empty at least part of the time waiting for machining to finish.
|
|
99
|
+
|
|
100
|
+
The difference between the Standard OEE and Occupied heatmaps can be useful to determine if there is a lot
|
|
101
|
+
of cycle interruptions. For example, if a program is expected to take 25 minutes but spends 40 minutes at
|
|
102
|
+
the machine, the Standard OEE heatmap will be credited with 25 minutes and the Occupied heatmap will be
|
|
103
|
+
credited with 40 minutes, causing the Occupied heatmap to be darker in color for that day. Now, cycle
|
|
104
|
+
interruptions do occasionally happen; comparing the Standard OEE and Occupied heatmaps allows you to
|
|
105
|
+
determine if these are one-off events or a consistent problem. If most days are darker on the Occupied
|
|
106
|
+
heatmap, the cycle interruptions should be investigated in more detail. (For example, look at individual parts on the
|
|
107
|
+
machine cycle charts, ensure the expected time entered into the schedule is actually correct, investigate
|
|
108
|
+
machine maintenance records, etc.)
|
|
109
|
+
|
|
110
|
+
Finally, the Standard OEE heatmap helps visualize how balanced the machines were loaded over the month.
|
|
111
|
+
We want to see all the machines consistently roughly the same color. If you see that
|
|
112
|
+
a machine has a lighter color for a couple days, that indicates either the machine was down or
|
|
113
|
+
that the daily mix for that day did not have enough flexibility. You should then consider
|
|
114
|
+
picking a part and extending that part to run on the lightly loaded machine. To find such a
|
|
115
|
+
part, you can use the part production chart below to see which part mix was run on this day
|
|
116
|
+
to help find a part that might be changed to run on the lightly loaded machine.
|
|
117
|
+
|
|
118
|
+
#### Part Production
|
|
119
|
+
|
|
120
|
+

|
|
121
|
+
|
|
122
|
+
The Part Production heatmap shows the distribution of completed parts over
|
|
123
|
+
the month. On the x-axis are the days of the month and on the y-axis are the
|
|
124
|
+
part types. For each part and each day, FMS Insight counts how many parts
|
|
125
|
+
were produced that day. For each grid cell in the chart, the entry
|
|
126
|
+
is drawn as a color with darker colors higher machine hours and lighter colors lower
|
|
127
|
+
machine hours. A grid cell can be moused over to obtain extra information in a
|
|
128
|
+
tooltip.
|
|
129
|
+
|
|
130
|
+
The part production OEE heatmap is mainly useful to visualize the part mix as it
|
|
131
|
+
varies throughout the month, by comparing the relative color shades. Also, it can help
|
|
132
|
+
find a part to change move onto a lightly loaded machine. For example, consider that a machine
|
|
133
|
+
is found to be lightly loaded via the station OEE heatmap. That same day can be viewed on
|
|
134
|
+
the part production OEE heatmap and the darkest colored part was the highest run that day and
|
|
135
|
+
could be considered to be extended to be run on the lightly loaded machine.
|
|
136
|
+
|
|
137
|
+
Note that these heatmaps should only be used to brainstorm ideas. We would still
|
|
138
|
+
to investigate if expanding `yyy` to include machine 2 would increase overall
|
|
139
|
+
system performance. Are there enough pallets? How many extra inspections are required?
|
|
140
|
+
Will this cause a traffic jam? These questions can be answered using simulation, _SeedTactic: Designer_,
|
|
141
|
+
Little's Law, or a tool such as our [SeedTactic: Planning](https://www.seedtactics.com/features#seedtactic-planning).
|
|
142
|
+
|
|
143
|
+
## Cycle Analysis
|
|
144
|
+
|
|
145
|
+
If the broad analysis above indicates a problem, the cycle analysis can be used
|
|
146
|
+
to investigate the problem in more detail.
|
|
147
|
+
|
|
148
|
+
#### Machine Cycles
|
|
149
|
+
|
|
150
|
+

|
|
151
|
+
|
|
152
|
+
The machine cycle chart displays a point for each program cycle. The cycles
|
|
153
|
+
can be filtered by a specific part, a specific program, a specific machine, a
|
|
154
|
+
specific pallet or a combination. The x-axis is the days of the month and the
|
|
155
|
+
y-axis is cycle time in minutes. The cycle time is the wall clock time
|
|
156
|
+
between program start and program end of the machine. The legend at the
|
|
157
|
+
bottom shows which colors correspond to which stations, and by clicking on
|
|
158
|
+
stations in the legend you can enable or disable the viewing of specific
|
|
159
|
+
stations. By clicking on a point you can obtain details about that specific
|
|
160
|
+
cycle in a tooltip and open the material card for the cycle. Finally, the
|
|
161
|
+
chart can be zoomed by clicking and dragging.
|
|
162
|
+
|
|
163
|
+
When a specific part and specific program are selected, a gray background and
|
|
164
|
+
black horizontal line are shown. The gray background is calculated to be the
|
|
165
|
+
statistical median and deviation of the points; the middle of the gray band is
|
|
166
|
+
the median of the program time and the width of the band is determined by calculating
|
|
167
|
+
the median absolute deviation of the median (MAD). In contrast, the horizontal
|
|
168
|
+
black line is the expected cycle time entered during scheduling and sent in
|
|
169
|
+
the scheduled jobs. Thus if the horizontal black line differs
|
|
170
|
+
significantly from the middle of the gray band, this means that likely the expected
|
|
171
|
+
time used in the simulation and scheduling is incorrect.
|
|
172
|
+
|
|
173
|
+
The example screenshot above is an example of a part program which looks
|
|
174
|
+
good. We see that almost all of the machine cycles are around 40 minutes,
|
|
175
|
+
within the gray band and the horizontal black line and there are only a
|
|
176
|
+
couple machine cycles significantly longer than 40 minutes which likely come
|
|
177
|
+
from program interruptions, tool problems, etc. Since there are only a couple
|
|
178
|
+
outlier points, we might instead conclude that it is not worth the effort to
|
|
179
|
+
spend a large amount of time focusing on this part. If instead the graph
|
|
180
|
+
showed many points outside the gray band and longer than 40 minutes, it would
|
|
181
|
+
be worth it to investigate and improve the part program and tooling.
|
|
182
|
+
|
|
183
|
+

|
|
184
|
+
|
|
185
|
+
The cycles can be toggled to display the raw data in a table instead of a chart.
|
|
186
|
+
The table can be filtered, sorted, and restricted to a specific date range. The resulting
|
|
187
|
+
raw data can be copied to the clipboard to be pasted into a spreadsheet for further analysis.
|
|
188
|
+
|
|
189
|
+
#### Load/Unload Cycles
|
|
190
|
+
|
|
191
|
+

|
|
192
|
+
|
|
193
|
+
The load/unload cycle chart displays a point for each load or unload event.
|
|
194
|
+
The x-axis is the days of the month and the y-axis is time in minutes.
|
|
195
|
+
The cycles can be filtered by a specific part or pallet. The chart will display one of
|
|
196
|
+
three possible times for each operation: "L/U Occupancy", "Load (estimated)", and "Unload (estimated)".
|
|
197
|
+
|
|
198
|
+
The "L/U Occupancy" chart displays a point for the wall clock time that the pallet spends at the
|
|
199
|
+
load station; the time from the pallet arriving at the load station until the operator presses
|
|
200
|
+
the ready button. This is the time that FMS Insight collects and stores
|
|
201
|
+
so this chart displays the actual raw data collected.
|
|
202
|
+
|
|
203
|
+
Despite being the actual data FMS Insight collects, the "L/U Occupancy" chart
|
|
204
|
+
is hard to use to determine if there are problems or slowdowns in loading a
|
|
205
|
+
specific part. The recorded time is the wall clock time from pallet arrival
|
|
206
|
+
to departure so includes all the operations which occur at the load station
|
|
207
|
+
which might include a load and an unload or just a load or just an unload.
|
|
208
|
+
Thus, FMS Insight attempts to split the wall clock occupied time of the
|
|
209
|
+
pallet at the load station among the various operations such as loading or
|
|
210
|
+
unloading that occurred.
|
|
211
|
+
|
|
212
|
+
For each cycle, FMS Insight splits the time the pallet spends at the load
|
|
213
|
+
station among each piece of material being loaded, transferred, or unload. To
|
|
214
|
+
do so, FMS Insight uses the list of material loaded/unloaded/transferred and
|
|
215
|
+
calculates the expected time the operation should take based on the values
|
|
216
|
+
entered into the scheduled jobs. The expected time is
|
|
217
|
+
then used to calculate a percentage consumption for each material, and this
|
|
218
|
+
percentage is then applied to the actual wall clock time of the pallet
|
|
219
|
+
occupancy. For example, consider an operation where part _aaa_ is loaded and
|
|
220
|
+
part _bbb_ is unloaded. The schedule says that the loading of _aaa_ should
|
|
221
|
+
take 5 minutes and the unloading of _bbb_ should take 8 minutes for a total
|
|
222
|
+
time the pallet should spend at the load station of 13 minutes. Now say that
|
|
223
|
+
the pallet actually spent 15 minutes at the load station. The load of _aaa_
|
|
224
|
+
is expected to consume `5/13 = 38%` of the cycle and the unload of _bbb_ is
|
|
225
|
+
expected to consume `8/13 = 62%` of the cycle. The 38% is multiplied by the
|
|
226
|
+
actual wall clock time of 15 minutes to give approximately 5.8 minutes for
|
|
227
|
+
the load of _aaa_. Similarly for the unload of _bbb_, 15 minutes times 62% is
|
|
228
|
+
approximately 9.2 minutes. Note how the "extra" 2 minutes (15 minutes
|
|
229
|
+
compared to 13 minutes) for the entire cycle is divided among both the load
|
|
230
|
+
and the unload operation. This calculation is repeated separately for each
|
|
231
|
+
load/unload cycle.
|
|
232
|
+
|
|
233
|
+
The result of FMS Insight's estimated splitting is graphed in the "Load
|
|
234
|
+
Operation (estimated)" and "Unload Operation (estimated)" charts selected in
|
|
235
|
+
the top-right corner. The screenshot above shows the "Load Operation
|
|
236
|
+
(estimated)" chart. For each load/unload cycle, FMS Insight splits the time
|
|
237
|
+
as described above and then plots a point with the y-coordinate the
|
|
238
|
+
calculated time, filtering the data to a specific part and/or pallet. (In the
|
|
239
|
+
example from the previous paragraph, the points would have y-coordinate 5.8
|
|
240
|
+
and 9.2 minutes.) Exactly like the machine cycles, FMS Insight calculates the
|
|
241
|
+
median and median absolute deviation of the points and plots them as a gray band
|
|
242
|
+
in the background. Finally, the expected time entered into the
|
|
243
|
+
scheduled jobs is graphed as a horizontal black line.
|
|
244
|
+
|
|
245
|
+
#### Pallet Cycles
|
|
246
|
+
|
|
247
|
+

|
|
248
|
+
|
|
249
|
+
Select a pallet from the combo box in the top-right. Once selected, all
|
|
250
|
+
pallet cycles are displayed. The x-axis is the days of the month and the
|
|
251
|
+
y-axis is the pallet cycle time in minutes. A pallet cycle time is the wall
|
|
252
|
+
clock time from when a pallet leaves the load station to the next time it
|
|
253
|
+
leaves the load station. This will therefore include cart transfer time,
|
|
254
|
+
buffer time, machining time, and load/unload time. By clicking on a point,
|
|
255
|
+
you can obtain more information about the pallet cycle in a tooltip.
|
|
256
|
+
Similarly to the station cycle chart, the pallet cycle chart can be zoomed by
|
|
257
|
+
clicking and dragging or the zoom range can be manually set via the button in
|
|
258
|
+
the bottom-right.
|
|
259
|
+
|
|
260
|
+
The pallet cycle chart is best used to determine if the cell is running lean
|
|
261
|
+
and validate the [daily allocation and scheduling
|
|
262
|
+
technique](https://www.seedtactics.com/docs/tactics/preventing-traffic-jams)
|
|
263
|
+
to determine if there are traffic jams occurring in the pallets. In a lean,
|
|
264
|
+
healthy cell, most pallet cycles should be low and reasonably consistent. If
|
|
265
|
+
pallet cycle times vary wildly, there is likely traffic jams or other flow problems.
|
|
266
|
+
|
|
267
|
+
## Cell
|
|
268
|
+
|
|
269
|
+
#### Quality
|
|
270
|
+
|
|
271
|
+
The quality shows all paths taken by parts through the system for each inspection.
|
|
272
|
+
The inspections can be viewed either as a sankey diagram or as a table.
|
|
273
|
+
|
|
274
|
+

|
|
275
|
+
|
|
276
|
+
#### Tool Replacements
|
|
277
|
+
|
|
278
|
+
The tool replacement chart shows data about tool replacements over the month. Each
|
|
279
|
+
tool is shown with the number of replacements, average usage at replacement, and average
|
|
280
|
+
count at replacement. These numbers are approximate if a tool replacement happens during
|
|
281
|
+
a cycle, since we do not know the exact time of the replacement. Each tool also shows a graph
|
|
282
|
+
of all replacements over the whole month, with the red line the average and a black dot for each
|
|
283
|
+
replacement. A replacement can be hovered for more information.
|
|
284
|
+
|
|
285
|
+

|
|
286
|
+
|
|
287
|
+
#### Schedules
|
|
288
|
+
|
|
289
|
+
The schedules report shows all the scheduled jobs for the month, details about the schedule, and
|
|
290
|
+
a list of all serials machined on the schedule.
|
|
291
|
+
|
|
292
|
+

|
|
293
|
+
|
|
294
|
+
## Cost/Piece
|
|
295
|
+
|
|
296
|
+
Cost-per-piece is a great [metric](improve-fms) for scheduling, operations
|
|
297
|
+
management, future capital purchases, quoting work, accounting, and
|
|
298
|
+
budgeting. The cost/piece tab is largely intended to serve as a
|
|
299
|
+
verification that flexibility and operational changes are reducing part
|
|
300
|
+
costs; you can compare part costs from before a change to after a change to
|
|
301
|
+
understand if the change improved the system.
|
|
302
|
+
Indeed, FMS Insight has a narrow view of just the cell itself and does not
|
|
303
|
+
take into account any overhead or other costs. Therefore, for budgeting,
|
|
304
|
+
quoting work, and other management decisions, we suggest that you export the
|
|
305
|
+
cost breakdown or workorder data to your ERP and implement
|
|
306
|
+
a cost report in your ERP taking into account all factors.
|
|
307
|
+
|
|
308
|
+
Cost/piece is not a great metric to use initially when searching for techniques
|
|
309
|
+
to improve the cell's operation, since
|
|
310
|
+
focusing only on cost/piece risks introducing quality problems and OEE
|
|
311
|
+
reduction. Instead, cost/piece is a great metric to use after-the-fact to determine
|
|
312
|
+
if an implemented change in production operations has had a meaningful impact on
|
|
313
|
+
cost/piece.
|
|
314
|
+
|
|
315
|
+
#### Percentages
|
|
316
|
+
|
|
317
|
+
Calculating cost-per-piece requires splitting large fixed costs such as machine depreciation and
|
|
318
|
+
labor across the parts that were produced. To do so, we use a monthly analysis window of the
|
|
319
|
+
actual operations together with the planned use of resources to determine a percentage breakdown
|
|
320
|
+
of the cost for each part.
|
|
321
|
+
|
|
322
|
+

|
|
323
|
+
|
|
324
|
+
To do so, consider that the system produces two part types, aaa and bbb,
|
|
325
|
+
and aaa has a planned cycle time of 3 hours and bbb has a planned cycle time of 2 hours.
|
|
326
|
+
For January we collect data on the total number of parts produced by the system. Consider that
|
|
327
|
+
in January the system produced 400 aaa parts and 500 bbb parts. We then calculate the cost breakdown
|
|
328
|
+
as follows. Since we produced 400 aaa parts, those aaa parts should have used 400\*3 = 1200
|
|
329
|
+
machine-hours. Similarly, the bbb parts should have used 500\*2 = 1000 hours. Thus, aaa used `1200 / (1000 + 1200) = 54.5%` of
|
|
330
|
+
the planned hours and bbb used `1000 / (1000 + 1200) = 45.5%` of the planned hours.
|
|
331
|
+
Similar calculations happen for labor and automation.
|
|
332
|
+
|
|
333
|
+
From a cost perspective, any bottlenecks or utilization slowdowns should be viewed as system
|
|
334
|
+
problems and all parts are responsible for a portion of this cost. Indeed, The cost-per-piece
|
|
335
|
+
metric is an actionable insight for quoting orders and justifying future capital investments and for
|
|
336
|
+
these purposes any OEE problems are a problem for everything produced by the system. The above
|
|
337
|
+
method does this by using planned cycle times to divide the total machine cost (which includes
|
|
338
|
+
active and idle time) among the parts produced during the month based on their weights. A quick
|
|
339
|
+
calculation of machine utilization gives `(1200 + 1000) / (24*30*4) = 76%` use. The above method
|
|
340
|
+
divides the 24% of the time the machine is not in use among aaa and bbb based on their percentages
|
|
341
|
+
of planned use. Attempting to identify OEE problems are better addressed using the
|
|
342
|
+
efficiency reports above.
|
|
343
|
+
|
|
344
|
+
The data can be copied to the clipboard via the two-arrow-icon button in the top right.
|
|
345
|
+
|
|
346
|
+
#### Part Cost/Piece
|
|
347
|
+
|
|
348
|
+
Once the percentage breakdown for each part is calculated, the webpage allows you to
|
|
349
|
+
enter the total machining, labor, and automation cost for the period. This value
|
|
350
|
+
is then multiplied by the above cost breakdown percentages to get a total cost per
|
|
351
|
+
piece. As mentioned above, we suggest that you copy the above cost breakdown percentages
|
|
352
|
+
into your own spreadsheet or ERP system to be able to account for overhead, overtime,
|
|
353
|
+
material costs, and other costs not visible to FMS Insight.
|
|
354
|
+
|
|
355
|
+

|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: FMS Engineering Daily Monitoring
|
|
3
|
+
nav: FMS Insight Client > Engineering
|
|
4
|
+
description: >-
|
|
5
|
+
The FMS Insight engineering pages are used by part programming engineers.
|
|
6
|
+
These pages display information about the past few days of machine cycles
|
|
7
|
+
and program execution.
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# FMS Insight Engineering Pages
|
|
11
|
+
|
|
12
|
+
The _Engineering_ page is intended for the part programming engineers. We suggest they bookmark this page and
|
|
13
|
+
visit it directly. The page can be used after a new part-program is introduced to closely watch the timings of
|
|
14
|
+
the new program. The page can also be used to stay on top of problematic programs which are frequently interrupted.
|
|
15
|
+
All data available here is also available in the reports tab of the [operations page](client-operations). The engineering
|
|
16
|
+
page just provides a dedicated place for engineers to bookmark and visit directly.
|
|
17
|
+
|
|
18
|
+
## Cycles
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
First, the page contains a tab with a chart of all machine cycles from the past 3 days. The chart can
|
|
23
|
+
be zoomed by clicking and dragging, filtered to specific parts and/or
|
|
24
|
+
pallets, and toggled to a table. Clicking on any point allows more details
|
|
25
|
+
about the cycle to be loaded. Anything older than 3
|
|
26
|
+
days is available as part of the [monthly review](improve-fms) on the
|
|
27
|
+
[flexibility analysis page](client-efficiency).
|
|
28
|
+
|
|
29
|
+
## Hours
|
|
30
|
+
|
|
31
|
+

|
|
32
|
+
|
|
33
|
+
In the Hours tab, the planned and actual machine hours for the past 7 days are shown. The
|
|
34
|
+
data can be toggled between a bar chart and a table. Anything older than 7
|
|
35
|
+
days is available as part of the [monthly review](improve-fms) on the
|
|
36
|
+
[flexibility analysis page](client-efficiency).
|
|
37
|
+
|
|
38
|
+
## Outliers
|
|
39
|
+
|
|
40
|
+

|
|
41
|
+
|
|
42
|
+
On the Outliers tab, there is a table which shows cycles from the last three days which are
|
|
43
|
+
statistical outliers. The outlier detection is based on the [median absolute
|
|
44
|
+
deviation of the
|
|
45
|
+
median](https://en.wikipedia.org/wiki/Median_absolute_deviation), which is
|
|
46
|
+
more resilient to outliers than the standard deviation. There are two reasons that a machine
|
|
47
|
+
cycle will appear here:
|
|
48
|
+
|
|
49
|
+
- If the actual time on the machine is far away from the median actual time, the cycle will be displayed. Cycles of this
|
|
50
|
+
type indicate that the program was interrupted and took longer than expected.
|
|
51
|
+
- If the expected machine time from the job is far away from the median actual time, the cycle will be displayed. Cycles of this
|
|
52
|
+
type indicate that the expected time is unrealistic (as long as enough cycles are available to obtain good statistics). In this
|
|
53
|
+
case, the expected machine time in the flexibility plan should be adjusted to be equal to the median time. Alternatively,
|
|
54
|
+
perhaps the program should be changed to improve the machine time.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: FMS Insight Client
|
|
3
|
+
nav: FMS Insight Client > Launch
|
|
4
|
+
description: >-
|
|
5
|
+
FMS Insight provides a webpage viewable in any recent version of Firefox, Chrome,
|
|
6
|
+
Edge, Android, or iOS browsers. FMS Insight provides specific pages targeted at
|
|
7
|
+
specific users which display relevant information.
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# FMS Insight Client
|
|
11
|
+
|
|
12
|
+
FMS Insight provides touchscreen optimized webpages. Many people
|
|
13
|
+
throughout the factory interact with the cell in different ways. Thus, FMS Insight provides
|
|
14
|
+
specific pages targeted at specific users which display relevant information. We suggest that
|
|
15
|
+
each user bookmarks the relevant page; for example, engineers in the quality department should just
|
|
16
|
+
bookmark the quality page in FMS Insight, visiting it directly to monitor the cell. All FMS
|
|
17
|
+
Insight pages support a connected [barcode scanner](client-scanners) to scan the
|
|
18
|
+
serial number of a part.
|
|
19
|
+
|
|
20
|
+
## Shop Floor
|
|
21
|
+
|
|
22
|
+
FMS Insight provides several [station monitor](client-station-monitor)
|
|
23
|
+
pages. These pages are intended to be viewed at various operator stations
|
|
24
|
+
throughout the factory and provide information to the operator on what
|
|
25
|
+
actions to take. For example, at the load station it shows what to load and
|
|
26
|
+
unload and at the inspection stand it shows what inspections were triggered.
|
|
27
|
+
|
|
28
|
+
FMS Insight also provides a page for operators in the [tool room](client-tools-programs). This
|
|
29
|
+
page shows current tool use in the machines, tool usage per program, and estimated tool usage
|
|
30
|
+
for the remaining schedule in the cell controller.
|
|
31
|
+
|
|
32
|
+
## Daily Monitoring
|
|
33
|
+
|
|
34
|
+
FMS Insight provides targeted pages to assist with the day-to-day operation of the cell.
|
|
35
|
+
There is a targeted page for [factory floor supervisors](client-operations), [engineering/programming](client-engineering),
|
|
36
|
+
[quality control](client-quality), and [sales](client-sales).
|
|
37
|
+
|
|
38
|
+
## Monthly Review
|
|
39
|
+
|
|
40
|
+
FMS Insight supports continuous improvement by assisting with a monthly review.
|
|
41
|
+
We suggest that approximately once a month, all stakeholders review the operation of the cell and
|
|
42
|
+
decide on potential improvements. FMS Insight provides a [flexibility analysis](client-efficiency)
|
|
43
|
+
page which displays a monthly summary of the cell, displays cost/piece, and helps identify areas for improvement.
|
|
44
|
+
|
|
45
|
+
## Browser Page
|
|
46
|
+
|
|
47
|
+
Once installed, the FMS Insight client can be launched by connecting to the
|
|
48
|
+
server using a browser. Any recent version of Firefox, Chrome, Edge, Android,
|
|
49
|
+
or iOS browsers will work (Internet Explorer is too old to work). By default,
|
|
50
|
+
FMS Insight listens on port 5000 and uses `http` so you can visit `http://<ip address or name of insigt server>:5000` from your browser. From the computer
|
|
51
|
+
on which you installed FMS Insight server, you can open the FMS Insight
|
|
52
|
+
client by visiting [http://localhost:5000](http://localhost:5000). Make sure
|
|
53
|
+
that firewall rules allow connections on port 5000 through to the FMS Insight
|
|
54
|
+
server. (The port 5000 and using https/SSL instead of http can be changed in
|
|
55
|
+
the [server configuration](server-config).)
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Daily FMS Cell Operations
|
|
3
|
+
nav: FMS Insight Client > Operations
|
|
4
|
+
description: >-
|
|
5
|
+
The FMS Insight operations pages are used by the factory floor supervisors.
|
|
6
|
+
These pages display information about the past few days of cell operation
|
|
7
|
+
and allow the supervisors to keep the cell operating smoothly.
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# FMS Insight Cell Operations Pages
|
|
11
|
+
|
|
12
|
+
The operations pages are intended for the floor supervisor. These pages display information about
|
|
13
|
+
the past few days of cell operation and allow the supervisor to keep the cell operating smoothly.
|
|
14
|
+
(Anything older than a couple days should not be analyzed on the shop floor the heat of the moment but
|
|
15
|
+
instead be addressed in a [monthly review](improve-fms).)
|
|
16
|
+
|
|
17
|
+
We suggest that the operations dashboard is bookmarked by the supervisor and visited directly.
|
|
18
|
+
There are also tabs for monitoring the operators at the load station, the machine cycle times,
|
|
19
|
+
and all the material in the system.
|
|
20
|
+
|
|
21
|
+
## Dashboard
|
|
22
|
+
|
|
23
|
+

|
|
24
|
+
|
|
25
|
+
The dashboard shows an overview of the current status of the cell.
|
|
26
|
+
The supervisor should keep the dashboard open since it allows at a quick glance to
|
|
27
|
+
understand if the cell is running well.
|
|
28
|
+
|
|
29
|
+
On the top are two progress bars which show the completed parts and simulated
|
|
30
|
+
parts for all active schedules. The completed parts progress bar shows actual
|
|
31
|
+
completed parts (finished unloading) and counts each process as a separate
|
|
32
|
+
completed part. The simulated parts progress bar shows the expected number of
|
|
33
|
+
completed parts at the current time based on the simulation. While these two
|
|
34
|
+
progress bars likely won't match exactly, they should be close to each other if
|
|
35
|
+
the cell is running smoothly. More details about schedules are available on
|
|
36
|
+
the _Schedules_ tab.
|
|
37
|
+
|
|
38
|
+
Below the progress bars is a bar chart of load and machine cycles for the past
|
|
39
|
+
12 hours and future 8 hours. The x-axis is the time of day with a vertical
|
|
40
|
+
black line for the current time. The y-axis is the load stations and machines.
|
|
41
|
+
Each load station or machine shows a green bar for a each actual completed cycle
|
|
42
|
+
and a gray bar for each simulated cycle. For machine cycles which are currently
|
|
43
|
+
executing or load/unloads in progress, a light-green bar is shown for the
|
|
44
|
+
expected remaining time in that cycle.
|
|
45
|
+
|
|
46
|
+
The color of each bar indicates the status of the cycle compared to the statistics
|
|
47
|
+
of previous cycles in the past month. If the cycle is at or below the expected cycle
|
|
48
|
+
time, it will be shown in green. If the cycle is longer than the expected cycle
|
|
49
|
+
but still within the statistical deviation, the portion of the cycle beyond the
|
|
50
|
+
expected time will be shown in dark green. If
|
|
51
|
+
the cycle is longer than the expected cycle and outside the statistical deviation,
|
|
52
|
+
it is classified as an outlier and the portion of the cycle beyond the expected time will be shown in red.
|
|
53
|
+
In addition, a list of all the outlier cycles (those with red) can be viewed in the reports tab.
|
|
54
|
+
|
|
55
|
+
## Cell
|
|
56
|
+
|
|
57
|
+

|
|
58
|
+
|
|
59
|
+
The Cell tab shows an overview of the cell. Each machine, load station, and pallet
|
|
60
|
+
is displayed with the material currently on the pallets. Each piece of material can be
|
|
61
|
+
clicked to open show details about the material. This page is identical to the
|
|
62
|
+
system overview pages available on the [shop floor](client-station-monitor).
|
|
63
|
+
|
|
64
|
+
## Material
|
|
65
|
+
|
|
66
|
+

|
|
67
|
+
|
|
68
|
+
The Material tab displays all [virtual whiteboard regions](material-tracking). This includes the regions for all pallets
|
|
69
|
+
and all configured in-process queues. It differs from the cell tab in that the material currently in all the queues is also included.
|
|
70
|
+
|
|
71
|
+
Material can be moved between the various queues by clicking and dragging on the 6-dots on the left of
|
|
72
|
+
the material card. Material can only be moved between non-active queues (for example for quarantine or other tracking). Material
|
|
73
|
+
cannot be added or removed to active queues currently being used for machining here. Instead, material
|
|
74
|
+
must be added or removed on the [shop floor](client-station-monitor) using the Queues page.
|
|
75
|
+
|
|
76
|
+
## Reports
|
|
77
|
+
|
|
78
|
+

|
|
79
|
+
|
|
80
|
+
The Reports tab shows a collection of reports useful for the floor supervisor. These reports focus on the
|
|
81
|
+
past few days of operations and highlight places where the cell is performing well or poorly.
|
|
82
|
+
More detailed reports are available on the [flexibility analysis page](client-efficiency).
|
|
83
|
+
In our experience, the floor supervisor should focus only on keeping the cell running; longer-term analysis
|
|
84
|
+
is best done by a one-a-month or once-a-quarter review.
|
|
85
|
+
|
|
86
|
+
Reports include the data from the [machine engineering page](client-engineering) and similar
|
|
87
|
+
reports for the load station, data for [tools and programs](client-tools-programs), reports for
|
|
88
|
+
[quality control](client-quality), information for [sales](client-sales), and more.
|