mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Merge branch 'main' into CURA-7913
This commit is contained in:
commit
c898c70bfc
112 changed files with 525 additions and 65 deletions
22
conanfile.py
22
conanfile.py
|
@ -10,7 +10,7 @@ from conan.tools.env import VirtualRunEnv, Environment, VirtualBuildEnv
|
||||||
from conan.tools.scm import Version
|
from conan.tools.scm import Version
|
||||||
from conan.errors import ConanInvalidConfiguration, ConanException
|
from conan.errors import ConanInvalidConfiguration, ConanException
|
||||||
|
|
||||||
required_conan_version = "<=1.60.0"
|
required_conan_version = ">=1.54 <=1.56.0 || >=1.58.0 <2.0.0"
|
||||||
|
|
||||||
|
|
||||||
class CuraConan(ConanFile):
|
class CuraConan(ConanFile):
|
||||||
|
@ -150,9 +150,17 @@ class CuraConan(ConanFile):
|
||||||
conan_installs.append([dependency.ref.name,dependency.ref.version])
|
conan_installs.append([dependency.ref.name,dependency.ref.version])
|
||||||
|
|
||||||
#list of python installs
|
#list of python installs
|
||||||
import pkg_resources
|
outer = '"' if self.settings.os == "Windows" else "'"
|
||||||
for package in pkg_resources.working_set:
|
inner = "'" if self.settings.os == "Windows" else '"'
|
||||||
python_installs.append([package.key, package.version])
|
python_ins_cmd = f"python -c {outer}import pkg_resources; print({inner};{inner}.join([(s.key+{inner},{inner}+ s.version) for s in pkg_resources.working_set])){outer}"
|
||||||
|
from six import StringIO
|
||||||
|
buffer = StringIO()
|
||||||
|
self.run(python_ins_cmd, run_environment= True, env = "conanrun", output=buffer)
|
||||||
|
|
||||||
|
packages = str(buffer.getvalue()).split("-----------------\n")
|
||||||
|
package = packages[1].strip('\r\n').split(";")
|
||||||
|
for pack in package:
|
||||||
|
python_installs.append(pack.split(","))
|
||||||
|
|
||||||
with open(os.path.join(location, "AboutDialogVersionsList.qml"), "w") as f:
|
with open(os.path.join(location, "AboutDialogVersionsList.qml"), "w") as f:
|
||||||
f.write(cura_version_py.render(
|
f.write(cura_version_py.render(
|
||||||
|
@ -330,7 +338,7 @@ class CuraConan(ConanFile):
|
||||||
vr.generate()
|
vr.generate()
|
||||||
|
|
||||||
self._generate_cura_version(os.path.join(self.source_folder, "cura"))
|
self._generate_cura_version(os.path.join(self.source_folder, "cura"))
|
||||||
self._generate_about_versions(os.path.join(self.source_folder, "resources/qml/Dialogs"))
|
|
||||||
|
|
||||||
if self.options.devtools:
|
if self.options.devtools:
|
||||||
entitlements_file = "'{}'".format(os.path.join(self.source_folder, "packaging", "MacOS", "cura.entitlements"))
|
entitlements_file = "'{}'".format(os.path.join(self.source_folder, "packaging", "MacOS", "cura.entitlements"))
|
||||||
|
@ -349,6 +357,8 @@ class CuraConan(ConanFile):
|
||||||
pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0])
|
pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0])
|
||||||
pot.generate()
|
pot.generate()
|
||||||
|
|
||||||
|
self._generate_about_versions(os.path.join(self.source_folder, "resources","qml", "Dialogs"))
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
if self.options.devtools:
|
if self.options.devtools:
|
||||||
if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type = str):
|
if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type = str):
|
||||||
|
@ -456,6 +466,7 @@ echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV
|
||||||
save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env)
|
save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env)
|
||||||
|
|
||||||
self._generate_cura_version(os.path.join(self._site_packages, "cura"))
|
self._generate_cura_version(os.path.join(self._site_packages, "cura"))
|
||||||
|
self._generate_about_versions(str(self._share_dir.joinpath("cura", "resources", "qml", "Dialogs")))
|
||||||
|
|
||||||
entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements"))
|
entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements"))
|
||||||
self._generate_pyinstaller_spec(location = self._base_dir,
|
self._generate_pyinstaller_spec(location = self._base_dir,
|
||||||
|
@ -463,6 +474,7 @@ echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV
|
||||||
icon_path = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.resdirs[2], self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"),
|
icon_path = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.resdirs[2], self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"),
|
||||||
entitlements_file = entitlements_file if self.settings.os == "Macos" else "None")
|
entitlements_file = entitlements_file if self.settings.os == "Macos" else "None")
|
||||||
|
|
||||||
|
|
||||||
def package(self):
|
def package(self):
|
||||||
copy(self, "cura_app.py", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.bindirs[0]))
|
copy(self, "cura_app.py", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.bindirs[0]))
|
||||||
copy(self, "*", src = os.path.join(self.source_folder, "cura"), dst = os.path.join(self.package_folder, self.cpp.package.libdirs[0]))
|
copy(self, "*", src = os.path.join(self.source_folder, "cura"), dst = os.path.join(self.package_folder, self.cpp.package.libdirs[0]))
|
||||||
|
|
29
resources/definitions/anycubic_kobra_plus.def.json
Normal file
29
resources/definitions/anycubic_kobra_plus.def.json
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"name": "Anycubic Kobra Plus",
|
||||||
|
"inherits": "fdmprinter",
|
||||||
|
"metadata":
|
||||||
|
{
|
||||||
|
"visible": true,
|
||||||
|
"author": "Jordon Brooks",
|
||||||
|
"manufacturer": "Anycubic",
|
||||||
|
"file_formats": "text/x-gcode",
|
||||||
|
"has_machine_quality": true,
|
||||||
|
"has_materials": true,
|
||||||
|
"machine_extruder_trains": { "0": "anycubic_kobra_plus_extruder_0" },
|
||||||
|
"preferred_material": "generic_pla",
|
||||||
|
"preferred_quality_type": "normal",
|
||||||
|
"quality_definition": "anycubic_kobra_plus"
|
||||||
|
},
|
||||||
|
"overrides":
|
||||||
|
{
|
||||||
|
"machine_depth": { "default_value": 302 },
|
||||||
|
"machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84\nM355 S0; led off" },
|
||||||
|
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||||
|
"machine_heated_bed": { "default_value": true },
|
||||||
|
"machine_height": { "default_value": 352 },
|
||||||
|
"machine_name": { "default_value": "Anycubic Kobra Plus" },
|
||||||
|
"machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nM355 S1; Turn LED on\n; Add Custom purge lines\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X1.0 Y30 Z0.3 F5000.0 ; Move to start position\nG1 X1.0 Y100.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X1.3 Y100.0 Z0.3 F5000.0 ; Move to side a little\nG1 X1.3 Y30 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 E-2 F500 ; Retract a little \nG1 X50 F500 ; wipe away from the filament line\nG1 X100 F9000 ; Quickly wipe away from the filament line\nG1 Z5.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n; End custom purge lines" },
|
||||||
|
"machine_width": { "default_value": 302 }
|
||||||
|
}
|
||||||
|
}
|
|
@ -5921,7 +5921,7 @@
|
||||||
"maximum_value_warning": "skirt_brim_line_width",
|
"maximum_value_warning": "skirt_brim_line_width",
|
||||||
"enabled": "resolveOrValue('adhesion_type') == 'brim'",
|
"enabled": "resolveOrValue('adhesion_type') == 'brim'",
|
||||||
"limit_to_extruder": "skirt_brim_extruder_nr",
|
"limit_to_extruder": "skirt_brim_extruder_nr",
|
||||||
"settable_per_mesh": true,
|
"settable_per_mesh": false,
|
||||||
"settable_per_extruder": true
|
"settable_per_extruder": true
|
||||||
},
|
},
|
||||||
"brim_replaces_support":
|
"brim_replaces_support":
|
||||||
|
|
16
resources/extruders/anycubic_kobra_plus_extruder_0.def.json
Normal file
16
resources/extruders/anycubic_kobra_plus_extruder_0.def.json
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"name": "Extruder 1",
|
||||||
|
"inherits": "fdmextruder",
|
||||||
|
"metadata":
|
||||||
|
{
|
||||||
|
"machine": "anycubic_kobra_plus",
|
||||||
|
"position": "0"
|
||||||
|
},
|
||||||
|
"overrides":
|
||||||
|
{
|
||||||
|
"extruder_nr": { "default_value": 0 },
|
||||||
|
"machine_nozzle_size": { "default_value": 0.4 },
|
||||||
|
"material_diameter": { "default_value": 1.75 }
|
||||||
|
}
|
||||||
|
}
|
|
@ -21,13 +21,6 @@ UM.Dialog
|
||||||
|
|
||||||
backgroundColor: UM.Theme.getColor("main_background")
|
backgroundColor: UM.Theme.getColor("main_background")
|
||||||
|
|
||||||
property real dialogX: base.x
|
|
||||||
property real dialogY: base.y
|
|
||||||
property int shakeDetected: shakeDetector.shakeIsdetected
|
|
||||||
property UM.ShakeDetector shakeDetector: UM.ShakeDetector
|
|
||||||
{
|
|
||||||
position: Qt.point(base.x, base.y)
|
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle
|
Rectangle
|
||||||
{
|
{
|
||||||
|
@ -58,6 +51,15 @@ UM.Dialog
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
|
||||||
UM.I18nCatalog{id: catalog; name: "cura"}
|
UM.I18nCatalog{id: catalog; name: "cura"}
|
||||||
|
MouseArea
|
||||||
|
{
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked:
|
||||||
|
{
|
||||||
|
projectsList.visible = !projectsList.visible;
|
||||||
|
projectBuildInfoList.visible = !projectBuildInfoList.visible;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
UM.Label
|
UM.Label
|
||||||
|
@ -194,11 +196,6 @@ UM.Dialog
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
onShakeDetectedChanged:
|
|
||||||
{
|
|
||||||
projectsList.visible = !projectsList.visible;
|
|
||||||
projectBuildInfoList.visible = !projectBuildInfoList.visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
onVisibleChanged:
|
onVisibleChanged:
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
[general]
|
||||||
|
definition = anycubic_kobra_plus
|
||||||
|
name = Normal
|
||||||
|
version = 4
|
||||||
|
|
||||||
|
[metadata]
|
||||||
|
global_quality = True
|
||||||
|
quality_type = normal
|
||||||
|
setting_version = 22
|
||||||
|
type = quality
|
||||||
|
weight = 0
|
||||||
|
|
||||||
|
[values]
|
||||||
|
infill_pattern = cubic
|
||||||
|
layer_height = 0.2
|
||||||
|
layer_height_0 = 0.2
|
||||||
|
material_final_print_temperature = 195
|
||||||
|
material_print_temperature = 195
|
||||||
|
retraction_combing = off
|
||||||
|
retraction_hop = 0.1
|
||||||
|
retraction_hop_enabled = True
|
||||||
|
retraction_hop_only_when_collides = True
|
||||||
|
speed_infill = 40
|
||||||
|
speed_layer_0 = 20
|
||||||
|
speed_print = 80
|
||||||
|
speed_wall_x = 60
|
||||||
|
wall_thickness = 1.2
|
||||||
|
|
|
@ -13,4 +13,8 @@ weight = 0
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -14,5 +14,9 @@ weight = 0
|
||||||
[values]
|
[values]
|
||||||
speed_infill = =math.ceil(speed_print * 40 / 55)
|
speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.8
|
top_bottom_thickness = 0.8
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,10 @@ retraction_min_travel = 5
|
||||||
speed_print = 70
|
speed_print = 70
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 70)
|
speed_topbottom = =math.ceil(speed_print * 30 / 70)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 70)
|
speed_wall = =math.ceil(speed_print * 30 / 70)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -29,7 +29,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -15,5 +15,9 @@ weight = 0
|
||||||
material_print_temperature = =default_material_print_temperature - 5
|
material_print_temperature = =default_material_print_temperature - 5
|
||||||
speed_infill = =math.ceil(speed_print * 40 / 55)
|
speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.8
|
top_bottom_thickness = 0.8
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,10 @@ retraction_hop = 0.2
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 30)
|
speed_wall = =math.ceil(speed_print * 25 / 30)
|
||||||
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.72
|
top_bottom_thickness = 0.72
|
||||||
travel_avoid_distance = 0.4
|
travel_avoid_distance = 0.4
|
||||||
wall_0_inset = 0.015
|
wall_0_inset = 0.015
|
||||||
|
|
|
@ -34,6 +34,10 @@ speed_print = 25
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -21,6 +21,10 @@ speed_print = 30
|
||||||
speed_topbottom = =math.ceil(speed_print * 20 / 30)
|
speed_topbottom = =math.ceil(speed_print * 20 / 30)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 30)
|
speed_wall = =math.ceil(speed_print * 25 / 30)
|
||||||
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.72
|
top_bottom_thickness = 0.72
|
||||||
wall_0_inset = 0.015
|
wall_0_inset = 0.015
|
||||||
wall_0_wipe_dist = 0.25
|
wall_0_wipe_dist = 0.25
|
||||||
|
|
|
@ -22,4 +22,8 @@ speed_infill = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 50)
|
speed_wall = =math.ceil(speed_print * 30 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -23,4 +23,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 60)
|
speed_wall = =math.ceil(speed_print * 40 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -22,4 +22,8 @@ speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||||
speed_print = 55
|
speed_print = 55
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 55)
|
speed_wall = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -23,4 +23,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 60)
|
speed_wall = =math.ceil(speed_print * 45 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,9 @@ speed_print = 40
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
||||||
speed_wall = =math.ceil(speed_print * 35 / 40)
|
speed_wall = =math.ceil(speed_print * 35 / 40)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
||||||
support_z_distance = =layer_height
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.4/layer_height)*layer_height
|
||||||
wall_0_inset = 0
|
wall_0_inset = 0
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,9 @@ speed_print = 45
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 45)
|
speed_wall = =math.ceil(speed_print * 45 / 45)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
support_z_distance = =layer_height
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.4/layer_height)*layer_height
|
||||||
wall_0_inset = 0
|
wall_0_inset = 0
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,9 @@ speed_print = 40
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
||||||
speed_wall = =math.ceil(speed_print * 35 / 40)
|
speed_wall = =math.ceil(speed_print * 35 / 40)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
||||||
support_z_distance = =layer_height
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.4/layer_height)*layer_height
|
||||||
wall_0_inset = 0
|
wall_0_inset = 0
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,9 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 40 / 50)
|
speed_topbottom = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 50 / 50)
|
speed_wall = =math.ceil(speed_print * 50 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 40 / 50)
|
speed_wall_0 = =math.ceil(speed_wall * 40 / 50)
|
||||||
support_z_distance = =layer_height
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.4/layer_height)*layer_height
|
||||||
wall_0_inset = 0
|
wall_0_inset = 0
|
||||||
|
|
||||||
|
|
|
@ -21,4 +21,8 @@ speed_infill = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 50)
|
speed_wall = =math.ceil(speed_print * 30 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 60)
|
speed_wall = =math.ceil(speed_print * 40 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_infill = =math.ceil(speed_print * 45 / 55)
|
||||||
speed_print = 55
|
speed_print = 55
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 55)
|
speed_wall = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 60)
|
speed_wall = =math.ceil(speed_print * 45 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,10 @@ weight = 1
|
||||||
[values]
|
[values]
|
||||||
ooze_shield_angle = 40
|
ooze_shield_angle = 40
|
||||||
raft_airgap = 0.4
|
raft_airgap = 0.4
|
||||||
retraction_prime_speed = =retraction_speed
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -15,7 +15,10 @@ weight = -1
|
||||||
material_print_temperature = =default_material_print_temperature + 5
|
material_print_temperature = =default_material_print_temperature + 5
|
||||||
ooze_shield_angle = 40
|
ooze_shield_angle = 40
|
||||||
raft_airgap = 0.4
|
raft_airgap = 0.4
|
||||||
retraction_prime_speed = =retraction_speed
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -14,7 +14,10 @@ weight = 0
|
||||||
[values]
|
[values]
|
||||||
ooze_shield_angle = 40
|
ooze_shield_angle = 40
|
||||||
raft_airgap = 0.4
|
raft_airgap = 0.4
|
||||||
retraction_prime_speed = =retraction_speed
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -15,7 +15,10 @@ weight = -2
|
||||||
material_print_temperature = =default_material_print_temperature + 10
|
material_print_temperature = =default_material_print_temperature + 10
|
||||||
ooze_shield_angle = 40
|
ooze_shield_angle = 40
|
||||||
raft_airgap = 0.4
|
raft_airgap = 0.4
|
||||||
retraction_prime_speed = =retraction_speed
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -31,7 +31,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -31,7 +31,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -30,7 +30,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -31,7 +31,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_infill = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 50)
|
speed_wall = =math.ceil(speed_print * 30 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -19,4 +19,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 60)
|
speed_wall = =math.ceil(speed_print * 40 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_infill = =math.ceil(speed_print * 45 / 55)
|
||||||
speed_print = 55
|
speed_print = 55
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 55)
|
speed_wall = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -19,4 +19,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 60)
|
speed_wall = =math.ceil(speed_print * 45 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -21,5 +21,9 @@ retraction_prime_speed = =retraction_speed
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 50)
|
speed_topbottom = =math.ceil(speed_print * 35 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 35 / 50)
|
speed_wall = =math.ceil(speed_print * 35 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1
|
top_bottom_thickness = 1
|
||||||
|
|
||||||
|
|
|
@ -21,5 +21,9 @@ speed_print = 70
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 70)
|
speed_topbottom = =math.ceil(speed_print * 35 / 70)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 70)
|
speed_wall = =math.ceil(speed_print * 45 / 70)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 70)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 70)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1
|
top_bottom_thickness = 1
|
||||||
|
|
||||||
|
|
|
@ -17,5 +17,9 @@ machine_nozzle_heat_up_speed = 1.6
|
||||||
prime_tower_enable = False
|
prime_tower_enable = False
|
||||||
raft_airgap = 0.25
|
raft_airgap = 0.25
|
||||||
retraction_prime_speed = =retraction_speed
|
retraction_prime_speed = =retraction_speed
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1
|
top_bottom_thickness = 1
|
||||||
|
|
||||||
|
|
|
@ -24,5 +24,9 @@ retraction_prime_speed = =retraction_speed
|
||||||
speed_topbottom = =math.ceil(speed_print * 40 / 70)
|
speed_topbottom = =math.ceil(speed_print * 40 / 70)
|
||||||
speed_wall = =math.ceil(speed_print * 55 / 70)
|
speed_wall = =math.ceil(speed_print * 55 / 70)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 45 / 50)
|
speed_wall_0 = =math.ceil(speed_wall * 45 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.8
|
top_bottom_thickness = 0.8
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,10 @@ raft_airgap = 0.25
|
||||||
retraction_prime_speed = =retraction_speed
|
retraction_prime_speed = =retraction_speed
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_wall = 50
|
speed_wall = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.9
|
top_bottom_thickness = 0.9
|
||||||
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,10 @@ speed_topbottom = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -35,6 +35,10 @@ speed_topbottom = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -35,6 +35,10 @@ speed_topbottom = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -21,5 +21,9 @@ speed_print = 45
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1.2
|
top_bottom_thickness = 1.2
|
||||||
|
|
||||||
|
|
|
@ -21,5 +21,9 @@ speed_print = 45
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1.2
|
top_bottom_thickness = 1.2
|
||||||
|
|
||||||
|
|
|
@ -21,5 +21,9 @@ speed_print = 45
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1.2
|
top_bottom_thickness = 1.2
|
||||||
|
|
||||||
|
|
|
@ -22,5 +22,9 @@ speed_roofing = =math.ceil(speed_wall * 20 / 24)
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 36 / 50)
|
speed_wall = =math.ceil(speed_print * 36 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_print * 26 / 50)
|
speed_wall_0 = =math.ceil(speed_print * 26 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1.2
|
top_bottom_thickness = 1.2
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,10 @@ raft_airgap = 0.25
|
||||||
retraction_prime_speed = =retraction_speed
|
retraction_prime_speed = =retraction_speed
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_wall = 50
|
speed_wall = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1.2
|
top_bottom_thickness = 1.2
|
||||||
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,10 @@ speed_topbottom = =math.ceil(speed_print * 0.8)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -35,6 +35,10 @@ speed_topbottom = =math.ceil(speed_print * 0.8)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -36,6 +36,10 @@ speed_topbottom = =math.ceil(speed_print * 0.8)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -22,8 +22,9 @@ speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
speed_wall_0 = =speed_wall
|
speed_wall_0 = =speed_wall
|
||||||
speed_wall_x = =speed_wall
|
speed_wall_x = =speed_wall
|
||||||
support_bottom_distance = =support_z_distance / 2
|
support_bottom_distance = =support_z_distance
|
||||||
support_top_distance = =support_z_distance / 2
|
support_interface_enable = True
|
||||||
support_z_distance = =layer_height * 2
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.8
|
top_bottom_thickness = 0.8
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,9 @@ speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
speed_wall_0 = =speed_wall
|
speed_wall_0 = =speed_wall
|
||||||
speed_wall_x = =speed_wall
|
speed_wall_x = =speed_wall
|
||||||
support_bottom_distance = =support_z_distance / 2
|
support_bottom_distance = =support_z_distance
|
||||||
support_top_distance = =support_z_distance / 2
|
support_interface_enable = True
|
||||||
support_z_distance = =layer_height * 2
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.8
|
top_bottom_thickness = 0.8
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,9 @@ speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
speed_wall_0 = =speed_wall
|
speed_wall_0 = =speed_wall
|
||||||
speed_wall_x = =speed_wall
|
speed_wall_x = =speed_wall
|
||||||
support_bottom_distance = =support_z_distance / 2
|
support_bottom_distance = =support_z_distance
|
||||||
support_top_distance = =support_z_distance / 2
|
support_interface_enable = True
|
||||||
support_z_distance = =layer_height * 2
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1.2
|
top_bottom_thickness = 1.2
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,9 @@ speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
speed_wall_0 = =speed_wall
|
speed_wall_0 = =speed_wall
|
||||||
speed_wall_x = =speed_wall
|
speed_wall_x = =speed_wall
|
||||||
support_bottom_distance = =support_z_distance / 2
|
support_bottom_distance = =support_z_distance
|
||||||
support_top_distance = =support_z_distance / 2
|
support_interface_enable = True
|
||||||
support_z_distance = =layer_height * 2
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1.2
|
top_bottom_thickness = 1.2
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,9 @@ speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
speed_wall_0 = =speed_wall
|
speed_wall_0 = =speed_wall
|
||||||
speed_wall_x = =speed_wall
|
speed_wall_x = =speed_wall
|
||||||
support_bottom_distance = =support_z_distance / 2
|
support_bottom_distance = =support_z_distance
|
||||||
support_top_distance = =support_z_distance / 2
|
support_interface_enable = True
|
||||||
support_z_distance = =layer_height * 2
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1.2
|
top_bottom_thickness = 1.2
|
||||||
|
|
||||||
|
|
|
@ -13,4 +13,8 @@ weight = 0
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -14,5 +14,9 @@ weight = 0
|
||||||
[values]
|
[values]
|
||||||
speed_infill = =math.ceil(speed_print * 40 / 55)
|
speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.8
|
top_bottom_thickness = 0.8
|
||||||
|
|
||||||
|
|
|
@ -15,11 +15,15 @@ weight = 0
|
||||||
machine_nozzle_cool_down_speed = 0.9
|
machine_nozzle_cool_down_speed = 0.9
|
||||||
machine_nozzle_heat_up_speed = 1.4
|
machine_nozzle_heat_up_speed = 1.4
|
||||||
ooze_shield_angle = 40
|
ooze_shield_angle = 40
|
||||||
raft_airgap = 0.15
|
raft_airgap = 0.4
|
||||||
retraction_min_travel = 5
|
retraction_min_travel = 5
|
||||||
speed_print = 70
|
speed_print = 70
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 70)
|
speed_topbottom = =math.ceil(speed_print * 30 / 70)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 70)
|
speed_wall = =math.ceil(speed_print * 30 / 70)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -29,7 +29,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -15,5 +15,9 @@ weight = 0
|
||||||
material_print_temperature = =default_material_print_temperature - 5
|
material_print_temperature = =default_material_print_temperature - 5
|
||||||
speed_infill = =math.ceil(speed_print * 40 / 55)
|
speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.8
|
top_bottom_thickness = 0.8
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,10 @@ retraction_hop = 0.2
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 30)
|
speed_wall = =math.ceil(speed_print * 25 / 30)
|
||||||
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.72
|
top_bottom_thickness = 0.72
|
||||||
travel_avoid_distance = 0.4
|
travel_avoid_distance = 0.4
|
||||||
wall_0_inset = 0.015
|
wall_0_inset = 0.015
|
||||||
|
|
|
@ -34,6 +34,10 @@ speed_print = 25
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -21,6 +21,10 @@ speed_print = 30
|
||||||
speed_topbottom = =math.ceil(speed_print * 20 / 30)
|
speed_topbottom = =math.ceil(speed_print * 20 / 30)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 30)
|
speed_wall = =math.ceil(speed_print * 25 / 30)
|
||||||
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.72
|
top_bottom_thickness = 0.72
|
||||||
wall_0_inset = 0.015
|
wall_0_inset = 0.015
|
||||||
wall_0_wipe_dist = 0.25
|
wall_0_wipe_dist = 0.25
|
||||||
|
|
|
@ -22,4 +22,8 @@ speed_infill = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 50)
|
speed_wall = =math.ceil(speed_print * 30 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -23,4 +23,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 60)
|
speed_wall = =math.ceil(speed_print * 40 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -22,4 +22,8 @@ speed_infill = =math.ceil(speed_print * 40 / 55)
|
||||||
speed_print = 55
|
speed_print = 55
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 55)
|
speed_wall = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -23,4 +23,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 60)
|
speed_wall = =math.ceil(speed_print * 45 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,9 @@ speed_print = 40
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
||||||
speed_wall = =math.ceil(speed_print * 35 / 40)
|
speed_wall = =math.ceil(speed_print * 35 / 40)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
||||||
support_z_distance = =layer_height
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.4/layer_height)*layer_height
|
||||||
wall_0_inset = 0
|
wall_0_inset = 0
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,9 @@ speed_print = 45
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 45)
|
speed_wall = =math.ceil(speed_print * 45 / 45)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
support_z_distance = =layer_height
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.4/layer_height)*layer_height
|
||||||
wall_0_inset = 0
|
wall_0_inset = 0
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,9 @@ speed_print = 40
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
||||||
speed_wall = =math.ceil(speed_print * 35 / 40)
|
speed_wall = =math.ceil(speed_print * 35 / 40)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
||||||
support_z_distance = =layer_height
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.4/layer_height)*layer_height
|
||||||
wall_0_inset = 0
|
wall_0_inset = 0
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,9 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 40 / 50)
|
speed_topbottom = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 50 / 50)
|
speed_wall = =math.ceil(speed_print * 50 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 40 / 50)
|
speed_wall_0 = =math.ceil(speed_wall * 40 / 50)
|
||||||
support_z_distance = =layer_height
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.4/layer_height)*layer_height
|
||||||
wall_0_inset = 0
|
wall_0_inset = 0
|
||||||
|
|
||||||
|
|
|
@ -21,4 +21,8 @@ speed_infill = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 50)
|
speed_wall = =math.ceil(speed_print * 30 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 60)
|
speed_wall = =math.ceil(speed_print * 40 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_infill = =math.ceil(speed_print * 45 / 55)
|
||||||
speed_print = 55
|
speed_print = 55
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 55)
|
speed_wall = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 60)
|
speed_wall = =math.ceil(speed_print * 45 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,10 @@ weight = 1
|
||||||
[values]
|
[values]
|
||||||
ooze_shield_angle = 40
|
ooze_shield_angle = 40
|
||||||
raft_airgap = 0.4
|
raft_airgap = 0.4
|
||||||
retraction_prime_speed = =retraction_speed
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -15,7 +15,10 @@ weight = -1
|
||||||
material_print_temperature = =default_material_print_temperature + 5
|
material_print_temperature = =default_material_print_temperature + 5
|
||||||
ooze_shield_angle = 40
|
ooze_shield_angle = 40
|
||||||
raft_airgap = 0.4
|
raft_airgap = 0.4
|
||||||
retraction_prime_speed = =retraction_speed
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -14,7 +14,10 @@ weight = 0
|
||||||
[values]
|
[values]
|
||||||
ooze_shield_angle = 40
|
ooze_shield_angle = 40
|
||||||
raft_airgap = 0.4
|
raft_airgap = 0.4
|
||||||
retraction_prime_speed = =retraction_speed
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -15,7 +15,10 @@ weight = -2
|
||||||
material_print_temperature = =default_material_print_temperature + 10
|
material_print_temperature = =default_material_print_temperature + 10
|
||||||
ooze_shield_angle = 40
|
ooze_shield_angle = 40
|
||||||
raft_airgap = 0.4
|
raft_airgap = 0.4
|
||||||
retraction_prime_speed = =retraction_speed
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 30
|
switch_extruder_prime_speed = 30
|
||||||
switch_extruder_retraction_amount = 30
|
switch_extruder_retraction_amount = 30
|
||||||
switch_extruder_retraction_speeds = 40
|
switch_extruder_retraction_speeds = 40
|
||||||
|
|
|
@ -31,7 +31,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -31,7 +31,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -30,7 +30,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -31,7 +31,11 @@ speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
support_interface_density = 87.5
|
support_interface_density = 87.5
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_infill = =math.ceil(speed_print * 40 / 50)
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 50)
|
speed_wall = =math.ceil(speed_print * 30 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -19,4 +19,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 60)
|
speed_wall = =math.ceil(speed_print * 40 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -20,4 +20,8 @@ speed_infill = =math.ceil(speed_print * 45 / 55)
|
||||||
speed_print = 55
|
speed_print = 55
|
||||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||||
speed_wall = =math.ceil(speed_print * 30 / 55)
|
speed_wall = =math.ceil(speed_print * 30 / 55)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -19,4 +19,8 @@ speed_print = 60
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
speed_topbottom = =math.ceil(speed_print * 35 / 60)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 60)
|
speed_wall = =math.ceil(speed_print * 45 / 60)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
|
|
||||||
|
|
|
@ -21,5 +21,9 @@ retraction_prime_speed = =retraction_speed
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 50)
|
speed_topbottom = =math.ceil(speed_print * 35 / 50)
|
||||||
speed_wall = =math.ceil(speed_print * 35 / 50)
|
speed_wall = =math.ceil(speed_print * 35 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1
|
top_bottom_thickness = 1
|
||||||
|
|
||||||
|
|
|
@ -21,5 +21,9 @@ speed_print = 70
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 70)
|
speed_topbottom = =math.ceil(speed_print * 35 / 70)
|
||||||
speed_wall = =math.ceil(speed_print * 45 / 70)
|
speed_wall = =math.ceil(speed_print * 45 / 70)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 70)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 70)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1
|
top_bottom_thickness = 1
|
||||||
|
|
||||||
|
|
|
@ -17,5 +17,9 @@ machine_nozzle_heat_up_speed = 1.6
|
||||||
prime_tower_enable = False
|
prime_tower_enable = False
|
||||||
raft_airgap = 0.25
|
raft_airgap = 0.25
|
||||||
retraction_prime_speed = =retraction_speed
|
retraction_prime_speed = =retraction_speed
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1
|
top_bottom_thickness = 1
|
||||||
|
|
||||||
|
|
|
@ -24,5 +24,9 @@ retraction_prime_speed = =retraction_speed
|
||||||
speed_topbottom = =math.ceil(speed_print * 40 / 70)
|
speed_topbottom = =math.ceil(speed_print * 40 / 70)
|
||||||
speed_wall = =math.ceil(speed_print * 55 / 70)
|
speed_wall = =math.ceil(speed_print * 55 / 70)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 45 / 50)
|
speed_wall_0 = =math.ceil(speed_wall * 45 / 50)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.8
|
top_bottom_thickness = 0.8
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,10 @@ raft_airgap = 0.25
|
||||||
retraction_prime_speed = =retraction_speed
|
retraction_prime_speed = =retraction_speed
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_wall = 50
|
speed_wall = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 0.9
|
top_bottom_thickness = 0.9
|
||||||
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,10 @@ speed_topbottom = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -35,6 +35,10 @@ speed_topbottom = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -35,6 +35,10 @@ speed_topbottom = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
speed_wall_0 = =math.ceil(speed_wall * 25 / 25)
|
||||||
support_angle = 50
|
support_angle = 50
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
switch_extruder_prime_speed = 15
|
switch_extruder_prime_speed = 15
|
||||||
switch_extruder_retraction_amount = 20
|
switch_extruder_retraction_amount = 20
|
||||||
switch_extruder_retraction_speeds = 35
|
switch_extruder_retraction_speeds = 35
|
||||||
|
|
|
@ -21,5 +21,9 @@ speed_print = 45
|
||||||
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
||||||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||||
|
support_bottom_distance = =support_z_distance
|
||||||
|
support_interface_enable = True
|
||||||
|
support_top_distance = =support_z_distance
|
||||||
|
support_z_distance = =math.ceil(0.3/layer_height)*layer_height
|
||||||
top_bottom_thickness = 1.2
|
top_bottom_thickness = 1.2
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue