2014-01-05 12:16:13 +00:00
|
|
|
#include "Flow.hpp"
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2014-06-11 23:00:13 +00:00
|
|
|
/* This constructor builds a Flow object from an extrusion width config setting
|
|
|
|
and other context properties. */
|
2014-01-05 12:16:13 +00:00
|
|
|
Flow
|
|
|
|
Flow::new_from_config_width(FlowRole role, const ConfigOptionFloatOrPercent &width, float nozzle_diameter, float height, float bridge_flow_ratio) {
|
2014-04-05 08:54:24 +00:00
|
|
|
// we need layer height unless it's a bridge
|
|
|
|
if (height <= 0 && bridge_flow_ratio == 0) CONFESS("Invalid flow height supplied to new_from_config_width()");
|
|
|
|
|
2014-01-05 12:16:13 +00:00
|
|
|
float w;
|
2014-06-11 23:00:13 +00:00
|
|
|
if (bridge_flow_ratio > 0) {
|
|
|
|
// if bridge flow was requested, calculate bridge width
|
|
|
|
w = Flow::_bridge_width(nozzle_diameter, bridge_flow_ratio);
|
|
|
|
} else if (!width.percent && width.value == 0) {
|
|
|
|
// if user left option to 0, calculate a sane default width
|
|
|
|
w = Flow::_auto_width(role, nozzle_diameter, height);
|
2014-01-05 12:16:13 +00:00
|
|
|
} else {
|
2014-06-11 23:00:13 +00:00
|
|
|
// if user set a manual value, use it
|
2014-01-05 12:16:13 +00:00
|
|
|
w = width.get_abs_value(height);
|
|
|
|
}
|
|
|
|
|
2014-06-11 23:00:13 +00:00
|
|
|
return Flow(w, height, nozzle_diameter, bridge_flow_ratio > 0);
|
2014-01-05 12:16:13 +00:00
|
|
|
}
|
|
|
|
|
2014-06-11 23:00:13 +00:00
|
|
|
/* This constructor builds a Flow object from a given centerline spacing. */
|
2014-01-05 12:16:13 +00:00
|
|
|
Flow
|
|
|
|
Flow::new_from_spacing(float spacing, float nozzle_diameter, float height, bool bridge) {
|
2014-04-05 08:54:24 +00:00
|
|
|
// we need layer height unless it's a bridge
|
|
|
|
if (height <= 0 && !bridge) CONFESS("Invalid flow height supplied to new_from_spacing()");
|
|
|
|
|
2014-01-05 12:16:13 +00:00
|
|
|
float w = Flow::_width_from_spacing(spacing, nozzle_diameter, height, bridge);
|
2014-06-11 23:00:13 +00:00
|
|
|
return Flow(w, height, nozzle_diameter, bridge);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This method returns the centerline spacing between two adjacent extrusions
|
|
|
|
having the same extrusion width (and other properties). */
|
|
|
|
float
|
|
|
|
Flow::spacing() const {
|
|
|
|
if (this->bridge) {
|
|
|
|
return width + BRIDGE_EXTRA_SPACING;
|
|
|
|
}
|
|
|
|
|
|
|
|
float min_flow_spacing;
|
|
|
|
if (this->width >= (this->nozzle_diameter + this->height)) {
|
|
|
|
// rectangle with semicircles at the ends
|
|
|
|
min_flow_spacing = this->width - this->height * (1 - PI/4.0);
|
|
|
|
} else {
|
|
|
|
// rectangle with shrunk semicircles at the ends
|
|
|
|
min_flow_spacing = this->nozzle_diameter * (1 - PI/4.0) + this->width * PI/4.0;
|
|
|
|
}
|
|
|
|
return this->width - OVERLAP_FACTOR * (this->width - min_flow_spacing);
|
2014-01-05 12:16:13 +00:00
|
|
|
}
|
|
|
|
|
2014-06-11 23:00:13 +00:00
|
|
|
/* This method returns extrusion volume per head move unit. */
|
2014-01-05 12:16:13 +00:00
|
|
|
double
|
2014-06-11 23:00:13 +00:00
|
|
|
Flow::mm3_per_mm() const {
|
2014-01-05 12:16:13 +00:00
|
|
|
if (this->bridge) {
|
|
|
|
return (this->width * this->width) * PI/4.0;
|
2014-06-11 23:00:13 +00:00
|
|
|
} else if (this->width >= (this->nozzle_diameter + this->height)) {
|
2014-01-05 12:16:13 +00:00
|
|
|
// rectangle with semicircles at the ends
|
2014-06-11 23:00:13 +00:00
|
|
|
return this->width * this->height + (this->height*this->height) / 4.0 * (PI-4.0);
|
2014-01-05 12:16:13 +00:00
|
|
|
} else {
|
|
|
|
// rectangle with shrunk semicircles at the ends
|
2014-06-11 23:00:13 +00:00
|
|
|
return this->nozzle_diameter * this->height * (1 - PI/4.0) + this->height * this->width * PI/4.0;
|
2014-01-05 12:16:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-11 23:00:13 +00:00
|
|
|
/* This static method returns bridge width for a given nozzle diameter. */
|
2014-01-05 12:16:13 +00:00
|
|
|
float
|
2014-06-11 23:00:13 +00:00
|
|
|
Flow::_bridge_width(float nozzle_diameter, float bridge_flow_ratio) {
|
|
|
|
if (bridge_flow_ratio == 1) return nozzle_diameter; // optimization to avoid sqrt()
|
|
|
|
return sqrt(bridge_flow_ratio * (nozzle_diameter*nozzle_diameter));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This static method returns a sane extrusion width default. */
|
|
|
|
float
|
|
|
|
Flow::_auto_width(FlowRole role, float nozzle_diameter, float height) {
|
2014-01-05 12:16:13 +00:00
|
|
|
// here we calculate a sane default by matching the flow speed (at the nozzle) and the feed rate
|
|
|
|
float volume = (nozzle_diameter*nozzle_diameter) * PI/4.0;
|
|
|
|
float shape_threshold = nozzle_diameter * height + (height*height) * PI/4.0;
|
|
|
|
float width;
|
|
|
|
if (volume >= shape_threshold) {
|
|
|
|
// rectangle with semicircles at the ends
|
|
|
|
width = ((nozzle_diameter*nozzle_diameter) * PI + (height*height) * (4.0 - PI)) / (4.0 * height);
|
|
|
|
} else {
|
|
|
|
// rectangle with squished semicircles at the ends
|
|
|
|
width = nozzle_diameter * (nozzle_diameter/height - 4.0/PI + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
float min = nozzle_diameter * 1.05;
|
|
|
|
float max = -1;
|
2014-06-09 19:14:48 +00:00
|
|
|
if (role == frExternalPerimeter || role == frSupportMaterial) {
|
2014-01-05 12:16:13 +00:00
|
|
|
min = max = nozzle_diameter;
|
|
|
|
} else if (role != frInfill) {
|
|
|
|
// do not limit width for sparse infill so that we use full native flow for it
|
|
|
|
max = nozzle_diameter * 1.7;
|
|
|
|
}
|
|
|
|
if (max != -1 && width > max) width = max;
|
|
|
|
if (width < min) width = min;
|
|
|
|
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
2014-06-11 23:00:13 +00:00
|
|
|
/* This static method returns the extrusion width value corresponding to the supplied centerline spacing. */
|
2014-01-05 12:16:13 +00:00
|
|
|
float
|
|
|
|
Flow::_width_from_spacing(float spacing, float nozzle_diameter, float height, bool bridge) {
|
|
|
|
if (bridge) {
|
|
|
|
return spacing - BRIDGE_EXTRA_SPACING;
|
|
|
|
}
|
|
|
|
|
|
|
|
float w_threshold = height + nozzle_diameter;
|
|
|
|
float s_threshold = w_threshold - OVERLAP_FACTOR * (w_threshold - (w_threshold - height * (1 - PI/4.0)));
|
|
|
|
|
|
|
|
if (spacing >= s_threshold) {
|
|
|
|
// rectangle with semicircles at the ends
|
|
|
|
return spacing + OVERLAP_FACTOR * height * (1 - PI/4.0);
|
|
|
|
} else {
|
|
|
|
// rectangle with shrunk semicircles at the ends
|
|
|
|
return (spacing + nozzle_diameter * OVERLAP_FACTOR * (PI/4.0 - 1)) / (1 + OVERLAP_FACTOR * (PI/4.0 - 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-27 17:18:53 +00:00
|
|
|
#ifdef SLIC3RXS
|
|
|
|
REGISTER_CLASS(Flow, "Flow");
|
|
|
|
#endif
|
|
|
|
|
2014-01-05 12:16:13 +00:00
|
|
|
}
|