3d Printer Cost Calculator

var costOf3DPrinter = 400;
var costOfFilament = 20;
var costOfElectricity = 10;
var maintenanceCosts = 50;
var timeToPrint = 10;
var costOfLabor = 20;
var numberOfPrints = 100;
var depreciationRate = 0.10;
function calculate3DPrinterCost() {
var costOf3DPrinter = parseFloat(document.getElementById(\”costOf3DPrinter\”).value);\n var costOfFilament = parseFloat(document.getElementById(\”costOfFilament\”).value);\n var costOfElectricity = parseFloat(document.getElementById(\”costOfElectricity\”).value);\n var maintenanceCosts = parseFloat(document.getElementById(\”maintenanceCosts\”).value);\n var timeToPrint = parseFloat(document.getElementById(\”timeToPrint\”).value);\n var costOfLabor = parseFloat(document.getElementById(\”costOfLabor\”).value);\n var numberOfPrints = parseFloat(document.getElementById(\”numberOfPrints\”).value);\n var depreciationRate = parseFloat(document.getElementById(\”depreciationRate\”).value);\n var totalCostOf3DPrinter = costOf3DPrinter + costOfFilament + costOfElectricity + maintenanceCosts + timeToPrint + costOfLabor + numberOfPrints + depreciationRate;\n document.getElementById(\”totalCostOf3DPrinter\”).value = totalCostOf3DPrinter.toFixed(2);\n}\nfunction reset3DPrinterCost() {\n document.getElementById(\”costOf3DPrinter\”).value = 400;\n document.getElementById(\”costOfFilament\”).value = 20;\n document.getElementById(\”costOfElectricity\”).value = 10;\n document.getElementById(\”maintenanceCosts\”).value = 50;\n document.getElementById(\”timeToPrint\”).value = 10;\n document.getElementById(\”costOfLabor\”).value = 20;\n document.getElementById(\”numberOfPrints\”).value = 100;\n document.getElementById(\”depreciationRate\”).value = 0.10;\n}\nfunction copyResults() {\n var result = \”Total Cost of 3D Printer: \” + document.getElementById(\”totalCostOf3DPrinter\”).value;\n result += \”\\nCost of Filament: \” + document.getElementById(\”costOfFilament\”).value;\n result += \”\\nCost of Electricity: \” + document.getElementById(\”costOfElectricity\”).value;\n result += \”\\nMaintenance Costs: \” + document.getElementById(\”maintenanceCosts\”).value;\n result += \”\\nTime to Print: \” + document.getElementById(\”timeToPrint\”).value;\n result += \”\\nCost of Labor: \” + document.getElementById(\”costOfLabor\”).value;\n result += \”\\nNumber of Prints: \” + document.getElementById(\”numberOfPrints\”).value;\n result += \”\\nDepreciation Rate: \” + document.getElementById(\”depreciationRate\”).value;\n navigator.clipboard.writeText(result);\n}\n

\n

\n \n \n

Enter the cost of your 3D printer

\n

\n

\n \n \n

Enter the cost of filament per print

\n

\n

\n \n \n

Enter the cost of electricity per print

\n

\n

\n \n \n

Enter the cost of maintenance per print

\n

\n

\n \n \n

Enter the time it takes to print

\n

\n

\n \n \n

Enter the cost of labor per print

\n

\n

\n \n \n

Enter the number of prints you expect to make

\n

\n

\n \n \n

Enter the depreciation rate per print

\n

\n

\n \n \n

\n

\n \n \n

\n

\n

Total Cost of 3D Printer: $400

\n

\n \n

\n\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

Variable Meaning Unit Typical Range
Cost of 3D Printer The cost of the 3

Leave a Reply

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