0.15 mm nozzle / 0.08 mm layer height
0.20 mm nozzle / 0.05 mm layer height
0.20 mm nozzle / 0.10 mm layer height
@@ -326,6 +326,7 @@ var feedrateReg = /*html*/ `Feedrate
var feedrateTower = /*html*/ `Feedrate/speed
The default printing speed is modified with 100% for perimeters, 166% for travel moves, and 50% of these for the first layer. For segment A, generated gcode will be modified using these proportions (calculated feedrates shown in grey ). Please note extruder retraction/unretraction and Z-hop speeds will be unaffected by this.
In this test the feedrate you enter is for the single, outer perimeter. Select a safe feedrate for segment A to ensure good adhesion with the bed. Increase feedrate for segments B to E to your liking. As this print is completed in vase mode, there are no retractions.
+This website uses an extrusion width of 1.2 x nozzle width. The volumetric flow value is calculated using this width, layer height and feedrate. This value can be used to get a practical idea of hot end volumetric flow at a given temperature.
Suggested increments for how much to vary the value for each segment are shown in green.
diff --git a/js/gcodeprocessing.js b/js/gcodeprocessing.js
index 1e5f6d1..0fad134 100644
--- a/js/gcodeprocessing.js
+++ b/js/gcodeprocessing.js
@@ -74,6 +74,19 @@ function flowCalc2(){
$("#flow2result").show();
}
+function volumeCalc(){
+ var nozzleLayer = speedForm.nozzleLayer.value;
+ extrusionArray = nozzleLayer.split("_");
+ var width = extrusionArray[0]*1.2;
+ var height = extrusionArray[1];
+ var area = (width/100)*(height/100);
+ $("#volE").html(parseFloat(document.speedForm.feedrateE.value*area).toFixed(2))
+ $("#volD").html(parseFloat(document.speedForm.feedrateD.value*area).toFixed(2))
+ $("#volC").html(parseFloat(document.speedForm.feedrateC.value*area).toFixed(2))
+ $("#volB").html(parseFloat(document.speedForm.feedrateB.value*area).toFixed(2));
+ $("#volA").html(parseFloat(document.speedForm.baseFeedrate.value*area).toFixed(2));
+}
+
var maxExtVol = 7.22;
var maxFeedRate = 100;
function maxExt(){