' +
'
Reverse solve: measured flat difference is ' + kfcLen(delta, 4) + ' versus the forward calculation. Reverse K = ' + reverseLabel + '. ' + reverseStatus + '
' +
'
Neutral axis and deduction: neutral axis is ' + kfcLen(neutralAxis, 4) + ' from the inside face. Total bend deduction is ' + kfcLen(bendDeduction * bends, 4) + ' using outside setback of ' + kfcLen(outsideSetback, 4) + ' per side.
' +
'
Method check: ' + kfcMethodNote(method) + ' A quick starting K for this method is about ' + kfcTrim(recommended, 2) + ', then tune it with shop measurements.
'
);
}
function kfcApplyPreset(name) {
var p = kfcPresets[name];
if (!p) {
return;
}
kfcUnits = kfcEl('kfc-units').value;
kfcEl('kfc-method').value = p.method;
kfcEl('kfc-flange-a').value = kfcTrim(kfcFromIn(p.fa), 3);
kfcEl('kfc-flange-b').value = kfcTrim(kfcFromIn(p.fb), 3);
kfcEl('kfc-angle').value = kfcTrim(p.angle, 1);
kfcEl('kfc-thickness').value = kfcTrim(kfcFromIn(p.t), 3);
kfcEl('kfc-radius').value = kfcTrim(kfcFromIn(p.r), 3);
kfcEl('kfc-kfactor').value = kfcTrim(p.k, 3);
kfcEl('kfc-measured-flat').value = kfcTrim(kfcFromIn(p.flat), 3);
kfcEl('kfc-bends').value = p.bends;
kfcCalculate();
}
function kfcBind() {
var buttons = document.querySelectorAll('#k-factor-calculator-toolcroze .kfc-preset');
var inputs = document.querySelectorAll('#k-factor-calculator-toolcroze input, #k-factor-calculator-toolcroze select');
var i;
for (i = 0; i < buttons.length; i++) {
buttons[i].onclick = function() {
var j;
for (j = 0; j < buttons.length; j++) {
buttons[j].className = buttons[j].className.replace(' kfc-active', '');
}
this.className += ' kfc-active';
kfcApplyPreset(this.getAttribute('data-preset'));
};
}
for (i = 0; i < inputs.length; i++) {
inputs[i].oninput = kfcCalculate;
inputs[i].onchange = kfcCalculate;
}
kfcEl('kfc-calc').onclick = kfcCalculate;
kfcEl('kfc-reset').onclick = function() {
kfcEl('kfc-units').value = 'imperial';
kfcApplyPreset('mildAir');
};
kfcCalculate();
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', kfcBind);
} else {
kfcBind();
}
window.kfcCalculate = kfcCalculate;
window.kfcApplyPreset = kfcApplyPreset;
})();
It’s right on the nose at a distance, and you’ve bent the metal up too. Then you lay that baby down on your jig and it’s three hundredths out in the last dimension. So you change the angle of the tooling and…still wrong.
The problem is generaly due to not understanding how material will stretch and compress as it bends. There’s a magic line in sheet called the neutral axis, where compression and tension are equal, but it shifts depending on how you bend it. Locate that line and you can accurately predict what flat pattern will be. It does all of the complicated math for you, leaving it up to you to understand what’s happening with the metal itself.
Why Your Bends Are Wrong
Mild steel tend to have a K factor of.33. Most shop will apply this uniformly to any given job. That’s fine if you’re not switching materials or techniques (air bending vs. Coining), but it’s a different story when bending stainless compared to aluminum. By entering in particular thickness and radius values into the tool, it’ll tell you exactly how much length to add to your flanges as an allowance.
That being said, I have noticed on the outside of the bend the metal stretch as you bend it and on the inside it compresses. As you make the tighter bends the neutral axis will move towards the inside face. When you do a big radius roll, the axis remains nearer to center. If you do a tight air bend, the axis will shift inward a lot. This explains the difference in the calculator’s preset buttons for 5052 aluminum softer alloys versus 6061-T6 harder tempers.
If you’re doing a soft aluminum part with a K factor of 0.45 your blank is too long, cutting into your parts or causing scrap part that don’t fit together in the final assembly. This is practical production. Theoretical K factors are just that, estimates of a machine’s behavior under normal conditions. Your shop has its own unique mix of material and tooling wear that impacts both the stretch and springback.
Why not bend a test coupon using exactly what you intend to use on production? Measure its resulting flat length, then enter it into the reverse field and the tool will back-calculate the true K factor for your conditions. Data replaces guesswork, so measuring directly from your conditions means you are no longer guessing.
This is air bending. I would also like to point out how important the bend method is. Because it leaves the material floating above the die opening, a lot of what dictates the final radius and angle are dependent upon consistent tonnage and punch depth. With bottom bending, however, the metal will make contact with the die walls which provides a better-defined radius but takes considerably more force. Coining fully crushes the material and locks shape in place with high precision.
Each method shifts the neutral axis. The reference tables shows that your K factor tends to increase as you move from air bending toward coining, because the area under compression increases further into the material. Operators often think there are only two variables: sheet thickness and inside radius, when in fact there is many more.
If an operator adjusts one variable, like increasing sheet thickness without adjusting the other, then it’ll calculate that the bend allowance changed disproportionally, which is something the calculator won’t let you do. That’s because it makes you look at everything as a whole. It prevents common mistake of thinking that the K factor of a material is a fixed value. Instead, it is a changing result of how the material, the tooling, and the process work together.
Knowing the steel grades perfectly isn’t good enough to get good parts if you don’t pay attention to what happens when your specific die opening impacts the bend radius. Sheet metal doesn’t act like paper. Because of its memory, stretchability, and flow, there is a big difference between what you see on screen and what happens when that laser fires.
You can bridge that gap by testing a real-life blank to check your K factor. But until then, the digital world and the physical one exist in different universes. Once you have that true number, your blanks will cut cleaner, your bends will hit tolerance, and your assemblies will fit together without force. That small change in math should of saved hours of shop-floor frustration by turning an annoying margin for error into a measurable science.

-
Hi, I am Thomas Martinez, the owner of ToolCroze.com! As a passionate DIY enthusiast and a firm believer in the power of quality tools, I created this platform to share my knowledge and experiences with fellow craftsmen and handywomen alike.
View all posts