Oee Calculation Formula

OEE Calculator body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f8f9fa; color: #333; line-height: 1.6; margin: 0; padding: 20px; display: flex; flex-direction: column; align-items: center; } .loan-calc-container { background-color: #ffffff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); max-width: 700px; width: 100%; margin-bottom: 30px; } h1, h2 { color: #004a99; text-align: center; margin-bottom: 20px; } .input-group { margin-bottom: 15px; display: flex; flex-direction: column; gap: 8px; } .input-group label { font-weight: bold; color: #555; } .input-group input[type="number"], .input-group input[type="text"] { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; width: 100%; box-sizing: border-box; } button { background-color: #004a99; color: white; padding: 12px 20px; border: none; border-radius: 4px; font-size: 1.1rem; cursor: pointer; transition: background-color 0.3s ease; width: 100%; margin-top: 10px; } button:hover { background-color: #003366; } #result { margin-top: 25px; padding: 20px; background-color: #e6f2ff; border: 1px solid #004a99; border-radius: 4px; text-align: center; } #result-value { font-size: 2.5em; font-weight: bold; color: #28a745; display: block; margin-top: 10px; } .article-content { background-color: #ffffff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); max-width: 700px; width: 100%; } .article-content h2 { color: #004a99; text-align: left; margin-bottom: 15px; } .article-content p, .article-content ul, .article-content ol { margin-bottom: 15px; color: #555; } .article-content ul, .article-content ol { padding-left: 20px; } .article-content strong { color: #004a99; } .formula-highlight { background-color: #e0f0ff; padding: 5px 10px; border-left: 3px solid #004a99; margin: 10px 0; font-family: 'Courier New', Courier, monospace; font-size: 1.1em; overflow-x: auto; } @media (max-width: 600px) { .loan-calc-container, .article-content { padding: 20px; } #result-value { font-size: 2em; } }

OEE Calculator

Calculate your Overall Equipment Effectiveness (OEE) to measure manufacturing productivity.

Your OEE Score

–%

Understanding OEE (Overall Equipment Effectiveness)

Overall Equipment Effectiveness (OEE) is a key performance indicator (KPI) used in manufacturing to measure the efficiency of a production process. It's a composite metric that highlights the percentage of planned production time that is truly productive. A high OEE score indicates a well-running and efficient operation.

The OEE Formula Breakdown

OEE is calculated by multiplying three distinct factors: Availability, Performance, and Quality.

OEE = Availability × Performance × Quality

1. Availability

Availability measures the percentage of planned production time during which the equipment was actually running. It accounts for unplanned stops (downtime) and planned stops (like breaks or scheduled maintenance, if these are excluded from planned production time).

Availability = (Planned Production Time – Downtime) / Planned Production Time

Where:

  • Planned Production Time: The total time the equipment is scheduled to run.
  • Downtime: All the time the equipment was stopped for any reason (breakdowns, setups, adjustments, etc.).

2. Performance

Performance measures how close the equipment is running to its theoretical maximum speed. It accounts for minor stops (like slow cycles or brief interruptions) and reduced speed.

Performance = (Total Parts Produced × Ideal Cycle Time per Part) / Run Time

Where:

  • Total Parts Produced: The total number of parts manufactured, including good parts and defects.
  • Ideal Cycle Time per Part: The theoretical minimum time to produce one part under optimal conditions.
  • Run Time: This is the time the equipment was actually running, calculated as Planned Production Time – Downtime.

3. Quality

Quality measures the percentage of good parts produced out of the total parts produced. It accounts for defects, scrap, and rework.

Quality = Number of Good Parts Produced / Total Parts Produced

How to Use This Calculator

To calculate your OEE, you need to input the following values:

  1. Total Planned Production Time (minutes): The total duration you intend for the equipment to operate.
  2. Total Downtime (minutes): The sum of all periods the equipment was stopped.
  3. Number of Good Parts Produced: The count of parts that meet quality standards.
  4. Ideal Cycle Time per Part (seconds): The fastest possible time to produce one part.
  5. Total Parts Produced (including defects): The overall count of all parts made, regardless of quality.
The calculator will then determine your OEE score as a percentage.

Interpreting OEE Scores

  • World Class: 85% and above.
  • Good: 60% – 70%.
  • Poor: Below 40%.

Analyzing each component (Availability, Performance, Quality) individually can help pinpoint specific areas for improvement.

Example Calculation

Let's say a machine is planned to run for an 8-hour shift (480 minutes).

  • It experiences 60 minutes of downtime.
  • It produces 400 good parts.
  • The ideal cycle time for one part is 30 seconds (0.5 minutes).
  • In total, 420 parts were produced (including 20 defects).
Calculation:
  • Availability: (480 – 60) / 480 = 420 / 480 = 0.875 (87.5%)
  • Run Time: 480 – 60 = 420 minutes
  • Performance: (420 parts * 0.5 minutes/part) / 420 minutes = 210 / 420 = 0.5 (50%)
  • Quality: 400 good parts / 420 total parts = 0.9524 (95.24%)
  • OEE: 0.875 * 0.5 * 0.9524 = 0.4167 (41.7%)
In this example, the OEE is approximately 41.7%, indicating significant room for improvement, particularly in performance.

function calculateOEE() { var availableTime = parseFloat(document.getElementById("availableTime").value); var downtime = parseFloat(document.getElementById("downtime").value); var goodParts = parseFloat(document.getElementById("goodParts").value); var idealCycleTimeSec = parseFloat(document.getElementById("idealCycleTime").value); var totalPartsProduced = parseFloat(document.getElementById("totalPartsProduced").value); var errorMessage = ""; if (isNaN(availableTime) || availableTime <= 0) { errorMessage += "Please enter a valid positive number for Total Planned Production Time.\n"; } if (isNaN(downtime) || downtime < 0) { errorMessage += "Please enter a valid non-negative number for Total Downtime.\n"; } if (isNaN(goodParts) || goodParts < 0) { errorMessage += "Please enter a valid non-negative number for Number of Good Parts Produced.\n"; } if (isNaN(idealCycleTimeSec) || idealCycleTimeSec <= 0) { errorMessage += "Please enter a valid positive number for Ideal Cycle Time per Part (seconds).\n"; } if (isNaN(totalPartsProduced) || totalPartsProduced < 0) { errorMessage += "Please enter a valid non-negative number for Total Parts Produced.\n"; } if (availableTime <= downtime) { errorMessage += "Total Downtime cannot be greater than or equal to Total Planned Production Time.\n"; } if (totalPartsProduced 0) ? (totalPartsProduced * idealCycleTimeMin) / runTime : 0; // Calculate Quality // Ensure totalPartsProduced is not zero to avoid division by zero var quality = (totalPartsProduced > 0) ? (goodParts / totalPartsProduced) : 0; // Calculate OEE var oee = availability * performance * quality; // Cap OEE at 1 if it somehow exceeds due to input variations or minor floating point issues oee = Math.min(oee, 1); // Format OEE as a percentage var oeePercentage = (oee * 100).toFixed(2); document.getElementById("result-value").innerText = oeePercentage + "%"; }

Leave a Comment