How to Calculate Bank Angle for Standard Rate Turn
In instrument flying (IFR), executing precise turns is critical for safety and navigation. A Standard Rate Turn, also known as a "Rate One Turn," is defined as a turn rate of 3 degrees per second. This completes a full 360-degree circle in exactly 2 minutes.
To maintain this specific rate of turn, a pilot must adjust their bank angle based on their airspeed. As airspeed increases, the bank angle required to maintain a standard rate turn also increases.
The Physics Formula
While pilots often use rules of thumb in the cockpit, the aerodynamic formula provides the exact bank angle required. The formula relies on the relationship between velocity, gravity, and the rate of turn.
Bank Angle = arctan( (V × Rate) / 1,091 )
Where:
V = True Airspeed (KTAS)
Rate = Degrees per second (typically 3)
1,091 = Conversion constant derived from gravity and unit conversions (knots to ft/s)
Pilot Rules of Thumb
Since calculating arctangents in the cockpit is impractical, pilots use simplified formulas to estimate the required bank angle for a standard rate turn (3°/sec).
1. The 15% Rule
Take 15% of your True Airspeed. For example, at 100 knots, 15% is 15 degrees of bank. At 120 knots, it is 18 degrees.
Bank Angle ≈ KTAS × 0.15
2. The (TAS / 10) + 7 Rule
Another common approximation is to divide the airspeed by 10 and add 7. For 100 knots: (100 / 10) + 7 = 17 degrees. This often provides a slightly more aggressive bank angle closer to the physics model at lower speeds.
Why is this Important?
Standard rate turns are the standard for IFR holding patterns and procedure turns. If your bank angle is too shallow for your airspeed, the turn will take longer than 2 minutes, potentially pushing you outside protected airspace boundaries. If the bank is too steep, you risk pilot disorientation or structural stress.
Speed Limitations
It is important to note that most flight directors and autopilots limit bank angle to 25° or 30°. If the calculation for a standard rate turn requires a bank angle exceeding 30° (typically at very high speeds), the pilot should limit the bank to 30°, accepting that the turn rate will be less than standard (less than 3°/sec).
Examples
Cessna 172 (100 KTAS): Requires approximately 15.6° bank angle.
Beechcraft Bonanza (160 KTAS): Requires approximately 23.8° bank angle.
Boeing 737 (250 KTAS): Requires approximately 34.5° bank angle (Often limited to 25-30° in operations).
function calculateBankAngle() {
// Get input values
var tas = parseFloat(document.getElementById('tasInput').value);
var turnRate = parseFloat(document.getElementById('turnRateInput').value);
var resultArea = document.getElementById('resultArea');
// Validation
if (isNaN(tas) || tas <= 0) {
alert("Please enter a valid positive True Airspeed.");
return;
}
// 1. Precise Calculation using Physics Formula
// Formula: Angle = atan( (V * Rate) / 1091 )
// Result is in radians, convert to degrees
var constant = 1091;
var angleRadians = Math.atan((tas * turnRate) / constant);
var angleDegrees = angleRadians * (180 / Math.PI);
// 2. Rule of Thumb Calculation (15% of TAS)
// Note: This rule is specifically for Standard Rate (3 deg/sec).
// If user selects non-standard, we scale the rule roughly or mark it.
var ruleOfThumb = 0;
if (turnRate === 3) {
ruleOfThumb = tas * 0.15;
} else {
// Adjusting rule of thumb proportionally for non-standard rates
ruleOfThumb = (tas * 0.15) * (turnRate / 3);
}
// 3. Turn Radius Calculation
// Radius (NM) = TAS / (Rate * 60 * pi) is an approx, or V^2 / (11.26 * tan(bank))
// Let's use simple approx: Radius = V / (20 * pi * Rate_deg_sec) — derived from circumference
// Circumference = V * Time. Time = 360/Rate.
// 2*pi*R = V * (360/Rate) (units need matching).
// Let's use standard aviation formula: R (NM) = TAS / (Rate * 60 approx constant? No.)
// R (NM) = V (Knots) / (20 * pi * Rate) is close?
// Let's use: R = V^2 / (11.26 * tan(bank_angle)) (V in knots, R in feet). Convert to NM.
// Easier approx: NM = TAS / 200 (Roughly for standard rate).
// Precise: NM = TAS / (60 * Rate * 3.14159 / 180)? No.
// Radius (NM) = TAS / (Rate * 60.8) roughly.
var turnRadiusNM = tas / (turnRate * 63.5); // Approximation based on V / omega
// 4. Time for 360
var timeSeconds = 360 / turnRate;
var timeString = Math.floor(timeSeconds / 60) + "m " + (timeSeconds % 60) + "s";
// Display Results
document.getElementById('preciseAngle').innerHTML = angleDegrees.toFixed(1) + "°";
document.getElementById('rotEstimate').innerHTML = ruleOfThumb.toFixed(1) + "°";
document.getElementById('turnRadius').innerHTML = turnRadiusNM.toFixed(2) + " NM";
document.getElementById('timeCircle').innerHTML = timeString;
// Show result div
resultArea.style.display = "block";
}