Wardjet Feed Rate Calculator

WARDJet Feed Rate Calculator .wj-calculator-container { max-width: 800px; margin: 0 auto; padding: 25px; background: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 8px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } .wj-calculator-title { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; font-weight: 700; } .wj-input-group { margin-bottom: 20px; } .wj-label { display: block; margin-bottom: 8px; font-weight: 600; color: #34495e; } .wj-input, .wj-select { width: 100%; padding: 12px; border: 1px solid #bdc3c7; border-radius: 4px; font-size: 16px; box-sizing: border-box; transition: border-color 0.3s; } .wj-input:focus, .wj-select:focus { border-color: #3498db; outline: none; } .wj-grid-row { display: flex; gap: 20px; flex-wrap: wrap; } .wj-col { flex: 1; min-width: 250px; } .wj-btn { width: 100%; padding: 15px; background-color: #e74c3c; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; text-transform: uppercase; letter-spacing: 1px; } .wj-btn:hover { background-color: #c0392b; } .wj-result-box { margin-top: 30px; padding: 20px; background-color: #fff; border-left: 5px solid #e74c3c; box-shadow: 0 2px 10px rgba(0,0,0,0.05); display: none; } .wj-result-label { font-size: 14px; color: #7f8c8d; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; } .wj-result-value { font-size: 32px; color: #2c3e50; font-weight: 700; } .wj-result-sub { font-size: 16px; color: #7f8c8d; margin-top: 5px; } .wj-article { margin-top: 50px; line-height: 1.6; color: #333; } .wj-article h2 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #ecf0f1; padding-bottom: 10px; } .wj-article p { margin-bottom: 15px; } .wj-article ul { margin-bottom: 20px; padding-left: 20px; } .wj-article li { margin-bottom: 8px; } .wj-quality-desc { font-size: 12px; color: #7f8c8d; margin-top: 4px; }
WARDJet Waterjet Feed Rate Calculator
Aluminum (6061/7075) Stainless Steel (304/316) Mild Steel Titanium Inconel Stone / Granite Glass Foam / Rubber
Q1 – Separation Cut (Fastest) Q2 – Rough Cut Q3 – Standard Production Q4 – High Quality Q5 – Extra Fine (Slowest)
Q1 is for scrap separation; Q5 is for high-precision finish.
Estimated Feed Rate (Linear Cutting)
0.0 IPM
(0.0 mm/min)

Estimated Cut Time per 12″ Linear Cut
0.00 min

Understanding WARDJet Feed Rates

In the world of abrasive waterjet cutting, the Feed Rate refers to the velocity at which the nozzle moves across the material, typically measured in Inches Per Minute (IPM). Optimizing your WARDJet system's feed rate is critical for balancing production speed with edge quality.

Unlike standard CNC machining where feeds and speeds are determined by tool geometry and chip load, waterjet feed rates are determined by an erosive process. The stream must dwell long enough to erode the material all the way through, but moving too slowly increases cost and can cause "kerf widening" at the bottom of the cut.

The 5 Factors Influencing Cutting Speed

  • Material Machinability: Softer materials like Aluminum and Foam cut significantly faster than dense materials like Stainless Steel, Titanium, or Inconel.
  • Thickness: As thickness increases, the jet loses energy as it penetrates deeper. The relationship is non-linear; doubling thickness often reduces speed by more than half to maintain the same quality.
  • Pump Pressure (PSI): Higher pressure increases the velocity of the water stream. A 60,000 PSI pump is the industry standard, but hyper-pressure systems (87,000+ PSI) can cut 20-30% faster.
  • Abrasive Flow Rate: The amount of garnet (abrasive) introduced into the stream affects cutting power. This calculator assumes a standard flow rate for the given pressure.
  • Quality Level (Q1-Q5): This is the user's primary lever. You trade speed for edge finish.

Q-Levels Explained

WARDJet and most waterjet software utilize a Q1 to Q5 quality scale:

  • Q1 (Separation Cut): Very fast. The bottom edge will have significant striations (lines) and significant taper. Used for roughing or scrapping.
  • Q2 (Rough Cut): Better than Q1, but striations are visible on the bottom half of the cut.
  • Q3 (Standard): The industry standard. Good edge finish with minimal striations near the bottom. Good compromise of speed and quality.
  • Q4 (High Quality): Smooth finish, striations are barely visible. Slower production time.
  • Q5 (Extra Fine): The highest precision. The edge is smooth from top to bottom with virtually no taper. Extremely slow feed rate.

How to Use This Calculator

This tool provides an estimation based on standard abrasive waterjet physics. Enter your material type and thickness. Adjust the pressure if you are running a specific intensifier pump configuration (e.g., 60k vs 90k PSI). Select your desired finish quality to see how the IPM changes.

Note: Actual feed rates on your WARDJet controller (e.g., Move, Igems) may vary based on orifice condition, mixing tube wear, and abrasive mesh size.

function calculateFeedRate() { // 1. Get input values var materialIndex = parseFloat(document.getElementById('wj_material').value); var thickness = parseFloat(document.getElementById('wj_thickness').value); var pressure = parseFloat(document.getElementById('wj_pressure').value); var qualityMod = parseFloat(document.getElementById('wj_quality').value); // 2. Validate inputs if (isNaN(thickness) || thickness <= 0) { alert("Please enter a valid material thickness greater than 0."); return; } if (isNaN(pressure) || pressure 500) calculatedIPM = 500; // 4. Metric Conversion var calculatedMM = calculatedIPM * 25.4; // 5. Time Calculation (Estimation for 12 inches linear cut) var timePerFoot = 12 / calculatedIPM; // 6. Display Results document.getElementById('wj_output_ipm').innerHTML = calculatedIPM.toFixed(1) + " IPM"; document.getElementById('wj_output_metric').innerHTML = "(" + calculatedMM.toFixed(0) + " mm/min)"; var timeString = ""; if (timePerFoot < 1) { // Show seconds if less than a minute timeString = (timePerFoot * 60).toFixed(1) + " seconds"; } else { timeString = timePerFoot.toFixed(2) + " minutes"; } document.getElementById('wj_output_time').innerHTML = timeString; // Show result box document.getElementById('wj_result').style.display = 'block'; }

Leave a Comment