Foxhole Arty Calculator

Foxhole Artillery Wind Calculator

Typical: Tier 1=10m, Tier 5=50m (varies by gun)

Firing Coordinates:

Set Distance 0m
Set Azimuth 0°
function calculateArty() { var dist = parseFloat(document.getElementById('targetDist').value); var az = parseFloat(document.getElementById('targetAzimuth').value); var wStr = parseFloat(document.getElementById('windStrength').value) || 0; var wAz = parseFloat(document.getElementById('windAzimuth').value) || 0; if (isNaN(dist) || isNaN(az)) { alert("Please enter valid Distance and Azimuth values."); return; } // Convert degrees to radians var azRad = az * (Math.PI / 180); var wAzRad = wAz * (Math.PI / 180); // Target coordinates relative to gun var targetX = dist * Math.sin(azRad); var targetY = dist * Math.cos(azRad); // Wind vector (how much the wind pushes the shell) var windX = wStr * Math.sin(wAzRad); var windY = wStr * Math.cos(wAzRad); // Compensate: Firing point is target minus wind effect var finalX = targetX – windX; var finalY = targetY – windY; // Convert back to polar var finalDist = Math.sqrt(finalX * finalX + finalY * finalY); var finalAz = Math.atan2(finalX, finalY) * (180 / Math.PI); // Normalize Azimuth to 0-360 if (finalAz < 0) { finalAz += 360; } document.getElementById('resDist').innerText = finalDist.toFixed(1); document.getElementById('resAz').innerText = finalAz.toFixed(1); document.getElementById('artyResult').style.display = 'block'; }

How to Use the Foxhole Artillery Calculator

In Foxhole, mastering artillery like the 120mm Light Artillery or the massive 150mm Heavy Artillery requires compensating for wind drift. This calculator helps you determine the exact distance and azimuth adjustments needed to ensure your shells land on target every time.

Step-by-Step Instructions:

  1. Identify Target: Use a pair of Binoculars to find the distance and azimuth from your gun to the target.
  2. Check Wind: Look at flags, smoke, or a wind vane. Foxhole wind has 5 strengths (Tiers). For 120mm guns, each tier is roughly 10 meters of drift.
  3. Input Data: Enter your binocular readings and the wind direction (the direction the wind is blowing towards).
  4. Adjust Your Piece: Set your artillery piece to the "Firing Coordinates" provided by the calculator.

Example Calculation

If your target is at 150m with an azimuth of 45°, and you have a Tier 3 wind blowing North () with a strength of roughly 30m:

  • Input Distance: 150
  • Input Azimuth: 45
  • Wind Strength: 30
  • Wind Direction: 0

The calculator will tell you to fire at a shorter distance and adjusted angle to "fight" the wind that would otherwise push your shell past the target.

Understanding Wind Tiers

Wind Tier 120mm Offset (Approx) 150mm Offset (Approx)
Tier 110m15m
Tier 330m45m
Tier 550m75m

Note: Always perform a spotting shot (test fire) before committing a full battery barrage. Accuracy is affected by spread, and wind can shift during long engagements.

Leave a Reply

Your email address will not be published. Required fields are marked *