Calculate your profit with our calculator
Produce more economically through recycling
An integration of a recycling system into the production process opens up a potential for increasing profits that will surprise you. Use the calculator to enter your own values and calculate the potential yield you can achieve from recycling of waste with a FAS recycling system.
<script>
var calculateForm = function() {
var number1 = parseFloat(document.getElementById("Number1").value);
var number2 = parseFloat(document.getElementById("Number2").value);
var number3 = parseFloat(document.getElementById("Number3").value);
// Highlight fields if they are not filled in
document.getElementById("Number1").style.borderColor = isNaN(number1) ? 'red' : '';
document.getElementById("Number2").style.borderColor = isNaN(number2) ? 'red' : '';
document.getElementById("Number3").style.borderColor = isNaN(number3) ? 'red' : '';
if (isNaN(number1) || isNaN(number2) || isNaN(number3)) {
return; // Stop calculation if inputs are missing
}
var wolleProTag = number2 * 24;
document.getElementById("wolleprotag").value = wolleProTag.toFixed(2);
var proTag = number1 * (number3 / 100) * wolleProTag;
document.getElementById("recyclinganteilamtag").value = numberWithCommas(proTag.toFixed(2));
var total = proTag * 330;
document.getElementById("recyclinganteilimjahr").value = numberWithCommas(total.toFixed(2));
};
function numberWithCommas(n) {
return n.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ".");
}
</script>
Find out more here in our sample calculation