mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 13:15:57 +08:00
Merge remote-tracking branch 'upstream/main' into feat/sermoonv1_update
This commit is contained in:
commit
e83f9eabef
@ -52,7 +52,7 @@ jobs:
|
||||
path: printer-linter-result/
|
||||
|
||||
- name: Run clang-tidy-pr-comments action
|
||||
uses: platisd/clang-tidy-pr-comments@master
|
||||
uses: platisd/clang-tidy-pr-comments@fix_suggestions_for_multiline_comments
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
clang_tidy_fixes: result.yml
|
||||
|
2
.github/workflows/printer-linter-pr-post.yml
vendored
2
.github/workflows/printer-linter-pr-post.yml
vendored
@ -73,7 +73,7 @@ jobs:
|
||||
unzip printer-linter-result.zip -d printer-linter-result
|
||||
|
||||
- name: Run clang-tidy-pr-comments action
|
||||
uses: platisd/clang-tidy-pr-comments@master
|
||||
uses: platisd/clang-tidy-pr-comments@fix_suggestions_for_multiline_comments
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
clang_tidy_fixes: printer-linter-result/fixes.yml
|
||||
|
@ -23,7 +23,6 @@ METADATA_SORT_PRIORITY = {
|
||||
"platform": "4",
|
||||
}
|
||||
|
||||
|
||||
class DefJsonFormatter(FileFormatter):
|
||||
def formatFile(self, file: Path):
|
||||
""" Format .def.json files according to the rules in settings.
|
||||
@ -34,7 +33,7 @@ class DefJsonFormatter(FileFormatter):
|
||||
|
||||
definition = json.loads(file.read_text(), object_pairs_hook=OrderedDict)
|
||||
|
||||
if self._settings["format"].get("format-definition-sort-keys", True):
|
||||
if self._settings["format"].get("format-definition-sort-keys", True) and file.stem.split(".")[0] != "fdmprinter":
|
||||
definition = self.order_keys(definition)
|
||||
|
||||
content = json.dumps(definition, indent=self._settings["format"].get("format-definition-indent", 4))
|
||||
|
@ -45,24 +45,17 @@ class Definition(Linter):
|
||||
if is_redefined:
|
||||
redefined = re.compile(r'.*(\"' + key + r'\"[\s\:\S]*?)\{[\s\S]*?\},?')
|
||||
found = redefined.search(self._content)
|
||||
# TODO: Figure out a way to support multiline fixes in the PR review GH Action, for now suggest no fix to ensure no ill-formed json are created
|
||||
# see: https://github.com/platisd/clang-tidy-pr-comments/issues/37
|
||||
if len(found.group().splitlines()) > 1:
|
||||
replacements = []
|
||||
else:
|
||||
replacements = [Replacement(
|
||||
file = self._file,
|
||||
offset = found.span(1)[0],
|
||||
length = len(found.group()),
|
||||
replacement_text = "")]
|
||||
|
||||
yield Diagnostic(
|
||||
file = self._file,
|
||||
diagnostic_name = "diagnostic-definition-redundant-override",
|
||||
message = f"Overriding {key} with the same value ({value}) as defined in parent definition: {definition['inherits']}",
|
||||
level = "Warning",
|
||||
offset = found.span(0)[0],
|
||||
replacements = replacements
|
||||
replacements = [Replacement(
|
||||
file = self._file,
|
||||
offset = found.span(1)[0],
|
||||
length = len(found.group()),
|
||||
replacement_text = "")]
|
||||
)
|
||||
|
||||
def _loadDefinitionFiles(self, definition_file) -> None:
|
||||
|
@ -2,65 +2,64 @@
|
||||
"version": 2,
|
||||
"name": "Sovol-SV01",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata": {
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Sovol",
|
||||
"manufacturer": "Sovol 3D",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_variants": false,
|
||||
"has_machine_quality": false,
|
||||
"preferred_quality_type": "draft",
|
||||
"machine_extruder_trains": {
|
||||
"0": "SV01_extruder_0"
|
||||
}
|
||||
"has_variants": false,
|
||||
"machine_extruder_trains": { "0": "SV01_extruder_0" },
|
||||
"preferred_quality_type": "draft"
|
||||
},
|
||||
|
||||
"overrides": {
|
||||
"machine_name": { "default_value": "SV01" },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_width": { "default_value": 280 },
|
||||
"machine_depth": { "default_value": 260 },
|
||||
"machine_height": { "default_value": 300 },
|
||||
"machine_max_feedrate_x": { "value": 500 },
|
||||
"machine_max_feedrate_y": { "value": 500 },
|
||||
"machine_max_feedrate_z": { "value": 10 },
|
||||
"machine_max_feedrate_e": { "value": 50 },
|
||||
"machine_max_acceleration_x": { "value": 500 },
|
||||
"machine_max_acceleration_y": { "value": 500 },
|
||||
"machine_max_acceleration_z": { "value": 100 },
|
||||
"machine_max_acceleration_e": { "value": 5000 },
|
||||
"machine_acceleration": { "value": 500 },
|
||||
"machine_max_jerk_xy": { "value": 10 },
|
||||
"machine_max_jerk_z": { "value": 0.4 },
|
||||
"machine_max_jerk_e": { "value": 5 },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"material_diameter": { "default_value": 1.75 },
|
||||
"overrides":
|
||||
{
|
||||
"acceleration_enabled": { "value": false },
|
||||
"acceleration_print": { "value": 500 },
|
||||
"acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
|
||||
"acceleration_travel": { "value": 500 },
|
||||
"acceleration_travel_layer_0": { "value": "acceleration_travel" },
|
||||
"acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
|
||||
"adhesion_type": { "value": "'skirt'" },
|
||||
"infill_before_walls": { "value": false },
|
||||
"infill_overlap": { "value": 30.0 },
|
||||
"infill_pattern": { "value": "'lines'" },
|
||||
"infill_wipe_dist": { "value": 0.0 },
|
||||
"jerk_enabled": { "value": false },
|
||||
"jerk_print": { "value": 8 },
|
||||
"jerk_travel": { "value": "jerk_print" },
|
||||
"jerk_travel_layer_0": { "value": "jerk_travel" },
|
||||
"acceleration_enabled": { "value": false },
|
||||
"jerk_enabled": { "value": false },
|
||||
"speed_print": { "value": 50.0 } ,
|
||||
"skirt_brim_speed": { "value": "speed_layer_0" },
|
||||
"optimize_wall_printing_order": { "value": "True" },
|
||||
"material_initial_print_temperature": { "value": "material_print_temperature" },
|
||||
"material_final_print_temperature": { "value": "material_print_temperature" },
|
||||
"z_seam_type": { "value": "'back'" },
|
||||
"z_seam_corner": { "value": "'z_seam_corner_weighted'" },
|
||||
"infill_pattern": { "value": "'lines'" },
|
||||
"infill_before_walls": { "value": false },
|
||||
"infill_overlap": { "value": 30.0 },
|
||||
"skin_overlap": { "value": 10.0 },
|
||||
"infill_wipe_dist": { "value": 0.0 },
|
||||
"wall_0_wipe_dist": { "value": 0.0 },
|
||||
"retraction_amount": { "default_value": 3},
|
||||
"retraction_speed": { "default_value": 50},
|
||||
"adhesion_type": { "value": "'skirt'" },
|
||||
"machine_acceleration": { "value": 500 },
|
||||
"machine_depth": { "default_value": 240 },
|
||||
"machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 300 },
|
||||
"machine_max_acceleration_e": { "value": 5000 },
|
||||
"machine_max_acceleration_x": { "value": 500 },
|
||||
"machine_max_acceleration_y": { "value": 500 },
|
||||
"machine_max_acceleration_z": { "value": 100 },
|
||||
"machine_max_feedrate_e": { "value": 50 },
|
||||
"machine_max_feedrate_x": { "value": 500 },
|
||||
"machine_max_feedrate_y": { "value": 500 },
|
||||
"machine_max_feedrate_z": { "value": 10 },
|
||||
"machine_max_jerk_e": { "value": 5 },
|
||||
"machine_max_jerk_xy": { "value": 10 },
|
||||
"machine_max_jerk_z": { "value": 0.4 },
|
||||
"machine_name": { "default_value": "SV01" },
|
||||
"machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" },
|
||||
"machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }
|
||||
"machine_width": { "default_value": 280 },
|
||||
"material_diameter": { "default_value": 1.75 },
|
||||
"material_final_print_temperature": { "value": "material_print_temperature" },
|
||||
"material_initial_print_temperature": { "value": "material_print_temperature" },
|
||||
"optimize_wall_printing_order": { "value": "True" },
|
||||
"retraction_amount": { "default_value": 3 },
|
||||
"retraction_speed": { "default_value": 50 },
|
||||
"skin_overlap": { "value": 10.0 },
|
||||
"skirt_brim_speed": { "value": "speed_layer_0" },
|
||||
"speed_print": { "value": 50.0 },
|
||||
"wall_0_wipe_dist": { "value": 0.0 },
|
||||
"z_seam_corner": { "value": "'z_seam_corner_weighted'" },
|
||||
"z_seam_type": { "value": "'back'" }
|
||||
}
|
||||
}
|
@ -2,81 +2,81 @@
|
||||
"version": 2,
|
||||
"name": "Sovol-SV02",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata": {
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Sovol",
|
||||
"manufacturer": "Sovol 3D",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_variants": false,
|
||||
"has_machine_quality": false,
|
||||
"preferred_quality_type": "draft",
|
||||
"machine_extruder_trains": {
|
||||
"has_variants": false,
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "SV02_extruder_0",
|
||||
"1": "SV02_extruder_1"
|
||||
}
|
||||
},
|
||||
|
||||
"overrides": {
|
||||
"machine_name": { "default_value": "SV02" },
|
||||
"machine_extruder_count": { "default_value": 2 },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_width": { "default_value": 300 },
|
||||
"machine_depth": { "default_value": 250 },
|
||||
"machine_height": { "default_value": 300 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"retraction_amount": { "default_value": 5},
|
||||
"retraction_speed": { "default_value": 50},
|
||||
"gantry_height": { "value": "30" },
|
||||
"speed_print": { "default_value": 50 },
|
||||
"default_material_print_temperature": { "value": 195 },
|
||||
"material_initial_print_temperature": { "value": "material_print_temperature" },
|
||||
"material_final_print_temperature": { "value": 195 },
|
||||
"machine_max_feedrate_x": { "value": 500 },
|
||||
"machine_max_feedrate_y": { "value": 500 },
|
||||
"machine_max_feedrate_z": { "value": 10 },
|
||||
"machine_max_feedrate_e": { "value": 50 },
|
||||
"machine_max_acceleration_x": { "value": 500 },
|
||||
"machine_max_acceleration_y": { "value": 500 },
|
||||
"machine_max_acceleration_z": { "value": 100 },
|
||||
"machine_max_acceleration_e": { "value": 500 },
|
||||
"machine_acceleration": { "value": 500 },
|
||||
|
||||
"material_diameter": { "default_value": 1.75 },
|
||||
|
||||
"preferred_quality_type": "draft"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"acceleration_enabled": { "value": false },
|
||||
"acceleration_print": { "value": 500 },
|
||||
"acceleration_travel": { "value": 500 },
|
||||
"acceleration_travel_layer_0": { "value": "acceleration_travel" },
|
||||
"adhesion_extruder_nr": { "value": 1 },
|
||||
"adhesion_type": { "value": "'skirt'" },
|
||||
"brim_replaces_support": { "value": false },
|
||||
"brim_width": { "value": 4 },
|
||||
"coasting_enable": { "default_value": true },
|
||||
"default_material_print_temperature": { "value": 195 },
|
||||
"gantry_height": { "value": "30" },
|
||||
"infill_before_walls": { "value": false },
|
||||
"infill_overlap": { "value": 30.0 },
|
||||
"infill_pattern": { "value": "'lines'" },
|
||||
"infill_sparse_density": { "value": "15" },
|
||||
"infill_wipe_dist": { "value": 0.0 },
|
||||
"jerk_enabled": { "value": false },
|
||||
"jerk_print": { "value": 8 },
|
||||
"jerk_travel": { "value": "jerk_print" },
|
||||
"jerk_travel_layer_0": { "value": "jerk_travel" },
|
||||
"acceleration_enabled": { "value": false },
|
||||
"jerk_enabled": { "value": false },
|
||||
"machine_acceleration": { "value": 500 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 240 },
|
||||
"machine_end_gcode": { "default_value": "M104 S0 ;hotend off\nM140 S0 ;bed off\nG92 E0\nG1 F2000 E-100 ;retract filament 100mm\nG92 E0\nG1 F3000 X0 Y240 ;move bed for easy part removal\nM84 ;disable steppers" },
|
||||
"machine_extruder_count": { "default_value": 2 },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 300 },
|
||||
"machine_max_acceleration_e": { "value": 500 },
|
||||
"machine_max_acceleration_x": { "value": 500 },
|
||||
"machine_max_acceleration_y": { "value": 500 },
|
||||
"machine_max_acceleration_z": { "value": 100 },
|
||||
"machine_max_feedrate_e": { "value": 50 },
|
||||
"machine_max_feedrate_x": { "value": 500 },
|
||||
"machine_max_feedrate_y": { "value": 500 },
|
||||
"machine_max_feedrate_z": { "value": 10 },
|
||||
"machine_max_jerk_e": { "default_value": 5.0 },
|
||||
"machine_max_jerk_xy": { "default_value": 5.0 },
|
||||
"machine_max_jerk_z": { "default_value": 0.4 },
|
||||
"machine_max_jerk_e": { "default_value": 5.0 },
|
||||
"machine_name": { "default_value": "SV02" },
|
||||
"machine_start_gcode": { "default_value": "G21 ;metric values\nG28 ;home all\nG90 ;absolute positioning\nM107 ;start with the fan off\nG1 F2400 Z15.0 ;raise the nozzle 15mm\nM109 S{material_print_temperature} ;Set Extruder Temperature and Wait\nM190 S{material_bed_temperature}; Wait for bed temperature to reach target temp\nT0 ;Switch to Extruder 1\nG1 F3000 X5 Y10 Z0.2 ;move to prime start position\nG92 E0 ;reset extrusion distance\nG1 F600 X160 E5 ;prime nozzle in a line\nG1 F5000 X180 ;quick wipe\nG92 E0 ;reset extrusion distance" },
|
||||
"machine_width": { "default_value": 280 },
|
||||
"material_diameter": { "default_value": 1.75 },
|
||||
"material_final_print_temperature": { "value": 195 },
|
||||
"material_initial_print_temperature": { "value": "material_print_temperature" },
|
||||
"prime_tower_min_volume": { "value": "((resolveOrValue('prime_tower_size') * 0.5) ** 2 * 3.14159 * resolveOrValue('layer_height'))/2" },
|
||||
"prime_tower_position_x": { "value": "240" },
|
||||
"prime_tower_position_y": { "value": "190" },
|
||||
"prime_tower_size": { "value": "30" },
|
||||
"prime_tower_wipe_enabled": { "default_value": true },
|
||||
"prime_tower_min_volume": { "value": "((resolveOrValue('prime_tower_size') * 0.5) ** 2 * 3.14159 * resolveOrValue('layer_height'))/2"},
|
||||
"travel_retract_before_outer_wall": { "default_value": true },
|
||||
"infill_sparse_density": { "value": "15" },
|
||||
"infill_pattern": { "value": "'lines'" },
|
||||
"infill_before_walls": { "value": false },
|
||||
"infill_overlap": { "value": 30.0 },
|
||||
"retraction_amount": { "default_value": 5 },
|
||||
"retraction_speed": { "default_value": 50 },
|
||||
"skin_overlap": { "value": 10.0 },
|
||||
"infill_wipe_dist": { "value": 0.0 },
|
||||
"wall_0_wipe_dist": { "value": 0.0 },
|
||||
"adhesion_type": { "value": "'skirt'" },
|
||||
"brim_replaces_support": { "value": false },
|
||||
"skirt_gap": { "value": 2 },
|
||||
"skirt_line_count": { "value": 3 },
|
||||
"adhesion_extruder_nr": { "value": 1 },
|
||||
"brim_width": { "value": 4 },
|
||||
"coasting_enable": { "default_value": true },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||
"machine_start_gcode": { "default_value": "G21 ;metric values\nG28 ;home all\nG90 ;absolute positioning\nM107 ;start with the fan off\nG1 F2400 Z15.0 ;raise the nozzle 15mm\nM109 S{material_print_temperature} ;Set Extruder Temperature and Wait\nM190 S{material_bed_temperature}; Wait for bed temperature to reach target temp\nT0 ;Switch to Extruder 1\nG1 F3000 X5 Y10 Z0.2 ;move to prime start position\nG92 E0 ;reset extrusion distance\nG1 F600 X160 E5 ;prime nozzle in a line\nG1 F5000 X180 ;quick wipe\nG92 E0 ;reset extrusion distance" },
|
||||
"machine_end_gcode": { "default_value": "M104 S0 ;hotend off\nM140 S0 ;bed off\nG92 E0\nG1 F2000 E-100 ;retract filament 100mm\nG92 E0\nG1 F3000 X0 Y240 ;move bed for easy part removal\nM84 ;disable steppers" },
|
||||
"top_bottom_thickness": { "default_value": 1 }
|
||||
"speed_print": { "default_value": 50 },
|
||||
"top_bottom_thickness": { "default_value": 1 },
|
||||
"travel_retract_before_outer_wall": { "default_value": true },
|
||||
"wall_0_wipe_dist": { "value": 0.0 }
|
||||
}
|
||||
}
|
69
resources/definitions/ankermake_m5.def.json
Normal file
69
resources/definitions/ankermake_m5.def.json
Normal file
@ -0,0 +1,69 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "AnkerMake M5",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "just-trey",
|
||||
"manufacturer": "AnkerMake",
|
||||
"file_formats": "text/x-gcode",
|
||||
"platform": "ankermake_m5_platform.obj",
|
||||
"has_machine_quality": true,
|
||||
"machine_extruder_trains": { "0": "ankermake_m5_extruder_0" },
|
||||
"platform_texture": "ankermake_m5.png",
|
||||
"preferred_material": "generic_pla",
|
||||
"preferred_quality_type": "normal"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"acceleration_print": { "value": "2500" },
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"cool_min_layer_time": { "value": 6 },
|
||||
"cool_min_speed": { "value": 30 },
|
||||
"gantry_height": { "value": 25 },
|
||||
"machine_depth": { "default_value": 235 },
|
||||
"machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 250 },
|
||||
"machine_name": { "default_value": "AnkerMake M5" },
|
||||
"machine_start_gcode": { "default_value": "M104 S{material_print_temperature_layer_0} ; set final nozzle temp\nM190 S{material_bed_temperature_layer_0} ; set and wait for nozzle temp to stabilize\nM109 S{material_print_temperature_layer_0} ; wait for nozzle temp to stabilize\nG28 ;Home\nG1 E10 F3600; push out retracted filament(fix for over retraction after prime)" },
|
||||
"machine_width": { "default_value": 235 },
|
||||
"material_bed_temperature": { "maximum_value_warning": "110" },
|
||||
"material_bed_temperature_layer_0":
|
||||
{
|
||||
"maximum_value_warning": "110",
|
||||
"value": "material_bed_temperature + 5"
|
||||
},
|
||||
"material_diameter": { "default_value": 1.75 },
|
||||
"material_flow_layer_0": { "value": 120 },
|
||||
"material_print_temperature": { "maximum_value_warning": "260" },
|
||||
"material_print_temperature_layer_0":
|
||||
{
|
||||
"maximum_value_warning": "260",
|
||||
"value": "material_print_temperature + 5"
|
||||
},
|
||||
"retraction_amount": { "default_value": 1.5 },
|
||||
"retraction_combing": { "value": "infill" },
|
||||
"retraction_speed": { "default_value": 70 },
|
||||
"skin_monotonic": { "default_value": true },
|
||||
"speed_infill": { "maximum_value_warning": 255 },
|
||||
"speed_print":
|
||||
{
|
||||
"maximum_value_warning": 255,
|
||||
"value": 250.0
|
||||
},
|
||||
"speed_topbottom": { "value": 150.0 },
|
||||
"speed_travel": { "value": 250.0 },
|
||||
"speed_wall":
|
||||
{
|
||||
"maximum_value_warning": 255,
|
||||
"value": 150.0
|
||||
},
|
||||
"speed_wall_x":
|
||||
{
|
||||
"maximum_value_warning": 255,
|
||||
"value": 250.0
|
||||
}
|
||||
}
|
||||
}
|
25
resources/definitions/artillery_hornet.def.json
Normal file
25
resources/definitions/artillery_hornet.def.json
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Artillery Hornet",
|
||||
"inherits": "artillery_base",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Wilds",
|
||||
"platform": "artillery_hornet.stl",
|
||||
"platform_offset": [
|
||||
0,
|
||||
-105.5,
|
||||
0
|
||||
],
|
||||
"quality_definition": "artillery_base"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"gantry_height": { "value": 25 },
|
||||
"machine_depth": { "default_value": 220 },
|
||||
"machine_height": { "default_value": 250 },
|
||||
"machine_name": { "default_value": "Artillery Hornet" },
|
||||
"machine_width": { "default_value": 220 }
|
||||
}
|
||||
}
|
65
resources/definitions/biqu_hurakan.def.json
Executable file
65
resources/definitions/biqu_hurakan.def.json
Executable file
@ -0,0 +1,65 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Biqu Hurakan",
|
||||
"inherits": "biqu_base",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"platform": "BIQU_Hurakan_bed.stl",
|
||||
"has_machine_materials": true,
|
||||
"platform_offset": [
|
||||
0,
|
||||
0,
|
||||
0.01
|
||||
],
|
||||
"quality_definition": "biqu_base"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"acceleration_print": { "value": 3000 },
|
||||
"acceleration_travel": { "value": 3000 },
|
||||
"coasting_enable": { "value": false },
|
||||
"fill_outline_gaps": { "value": true },
|
||||
"gantry_height": { "value": 35 },
|
||||
"infill_overlap": { "value": 15.0 },
|
||||
"jerk_print": { "value": 12 },
|
||||
"machine_acceleration": { "value": 3000 },
|
||||
"machine_depth": { "value": 235 },
|
||||
"machine_end_gcode": { "default_value": ";BIQU Hurakan end code. More complex. Such wow. Klipper4Life.\r\n\r\nEND_PRINT" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
[-31, -35.3],
|
||||
[-31, 25.5],
|
||||
[31, 25.5],
|
||||
[31, -35.5]
|
||||
]
|
||||
},
|
||||
"machine_height": { "value": 270 },
|
||||
"machine_max_acceleration_e": { "value": 10000 },
|
||||
"machine_max_acceleration_x": { "value": 3000 },
|
||||
"machine_max_acceleration_y": { "value": 3000 },
|
||||
"machine_max_acceleration_z": { "value": 100 },
|
||||
"machine_name": { "default_value": "Biqu Hurakan" },
|
||||
"machine_start_gcode": { "default_value": ";BIQU Hurakan start code. Much complex. Very wow. Klipper FTW.\r\n\r\nSTART_PRINT BED_TEMP={material_bed_temperature_layer_0} EXTRUDER_TEMP={material_print_temperature_layer_0}\r\n\r\n; Note: This start/end code is designed to work\r\n; with the stock cfg files provided with the \r\n; BIQU Hurakan. If you alter the macros in the \r\n; cfg files then you may also need to alter this code.\r\n\r\n; Another note: This profile will get you \r\n; part of the way to good prints.\r\n; You still need to tweak settings for each \r\n; different filament that you use.\r\n; Settings such as retraction distance/speed, \r\n; flow, pressure advance, bed/nozzle temperatures\r\n; and others may need to be adjusted.\r\n; Use https://teachingtechyt.github.io/calibration.html to calibrate.\r\n; Also see https://www.youtube.com/watch?v=Ae2G7hl_pZc\r\n; for some good tips." },
|
||||
"machine_width": { "value": 235 },
|
||||
"retract_at_layer_change": { "value": true },
|
||||
"retraction_amount": { "value": 3.0 },
|
||||
"retraction_extrusion_window": { "value": 3.0 },
|
||||
"retraction_speed": { "value": 45 },
|
||||
"roofing_layer_count": { "value": 2 },
|
||||
"skin_overlap": { "value": 15.0 },
|
||||
"speed_layer_0": { "value": 25 },
|
||||
"speed_print": { "value": 120 },
|
||||
"speed_travel": { "value": 200 },
|
||||
"speed_wall_0": { "value": 60 },
|
||||
"speed_wall_x": { "value": 75 },
|
||||
"support_angle": { "value": 45 },
|
||||
"support_enable": { "value": false },
|
||||
"support_infill_rate": { "value": 20 },
|
||||
"support_structure": { "value": "'normal'" },
|
||||
"support_type": { "value": "'buildplate'" },
|
||||
"top_thickness": { "value": 1.0 },
|
||||
"xy_offset_layer_0": { "value": -0.1 }
|
||||
}
|
||||
}
|
28
resources/definitions/creality_cr10smart.def.json
Normal file
28
resources/definitions/creality_cr10smart.def.json
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Creality CR-10 Smart",
|
||||
"inherits": "creality_base",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "ed3d.net",
|
||||
"quality_definition": "creality_base"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"gantry_height": { "value": 35 },
|
||||
"machine_depth": { "default_value": 300 },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
[-26, 34],
|
||||
[-26, -32],
|
||||
[32, -32],
|
||||
[32, 34]
|
||||
]
|
||||
},
|
||||
"machine_height": { "default_value": 400 },
|
||||
"machine_name": { "default_value": "Creality CR-10 Smart" },
|
||||
"machine_width": { "default_value": 300 }
|
||||
}
|
||||
}
|
@ -1,27 +1,19 @@
|
||||
{
|
||||
"name": "Creality Sermoon V1/V1 Pro",
|
||||
"version": 2,
|
||||
"name": "Creality Sermoon V1 & V1 Pro",
|
||||
"inherits": "creality_base",
|
||||
"metadata": {
|
||||
"author": "Luis Gabriel Gomez",
|
||||
"quality_definition": "creality_base",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"has_variants": true
|
||||
"author": "Luis Gabriel Gomez",
|
||||
"has_variants": true,
|
||||
"quality_definition": "creality_base"
|
||||
},
|
||||
"overrides": {
|
||||
"machine_name": {
|
||||
"default_value": "Creality Sermoon V1"
|
||||
},
|
||||
"machine_width": {
|
||||
"default_value": 175
|
||||
},
|
||||
"machine_depth": {
|
||||
"default_value": 175
|
||||
},
|
||||
"machine_height": {
|
||||
"default_value": 165
|
||||
},
|
||||
"machine_head_with_fans_polygon": {
|
||||
"overrides":
|
||||
{
|
||||
"machine_depth": { "default_value": 175 },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
[-26, 34],
|
||||
[-26, -32],
|
||||
@ -45,9 +37,6 @@
|
||||
"machine_center_is_zero": {
|
||||
"default_value": false
|
||||
},
|
||||
"machine_center_is_zero": {
|
||||
"default_value": false
|
||||
},
|
||||
"machine_start_gcode": {
|
||||
"default_value": "; -- START GCODE --\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y170.0 Z0.28 F1500.0 E12 ;Draw the first line\nG1 X10.4 Y170.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E25 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up"
|
||||
},
|
||||
|
@ -1,26 +1,27 @@
|
||||
{
|
||||
"name": "Dagoma Delta",
|
||||
"version": 2,
|
||||
"name": "Dagoma Delta",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata": {
|
||||
"metadata":
|
||||
{
|
||||
"visible": false,
|
||||
"author": "Dagoma",
|
||||
"manufacturer": "Dagoma"
|
||||
"manufacturer": "Dagoma",
|
||||
"first_start_actions": [ "MachineSettingsAction" ]
|
||||
},
|
||||
"overrides": {
|
||||
"machine_width": {
|
||||
"default_value": 195.55
|
||||
},
|
||||
"machine_height": {
|
||||
"default_value": 205
|
||||
},
|
||||
"machine_depth": {
|
||||
"default_value": 195.55
|
||||
},
|
||||
"machine_center_is_zero": {
|
||||
"default_value": true
|
||||
},
|
||||
"machine_head_with_fans_polygon": {
|
||||
"overrides":
|
||||
{
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"default_material_print_temperature": { "default_value": 205 },
|
||||
"gantry_height": { "value": "0" },
|
||||
"infill_before_walls": { "value": "False" },
|
||||
"inset_direction": { "value": "'inside_out'" },
|
||||
"layer_height_0": { "default_value": 0.26 },
|
||||
"machine_center_is_zero": { "default_value": true },
|
||||
"machine_depth": { "default_value": 195.55 },
|
||||
"machine_end_gcode": { "default_value": "\nM104 S0\nM106 S255\nM140 S0\nG91\nG1 E-1 F300\nG1 Z+3 E-2 F9000\nG90\nG28\n" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
[-36, -42],
|
||||
[-36, 42],
|
||||
@ -28,41 +29,14 @@
|
||||
[36, -42]
|
||||
]
|
||||
},
|
||||
"gantry_height": {
|
||||
"value": "0"
|
||||
},
|
||||
"machine_shape": {
|
||||
"default_value": "elliptic"
|
||||
},
|
||||
"machine_start_gcode": {
|
||||
"default_value": ";Gcode by Cura\nG90\nG28\nM107\nM109 R100\nG29\nM109 S{material_print_temperature_layer_0} U-55 X55 V-85 Y-85 W0.26 Z0.26\nM82\nG92 E0\nG1 F200 E6\nG92 E0\nG1 F200 E-3.5\nG0 Z0.15\nG0 X10\nG0 Z3\nG1 F6000\n"
|
||||
},
|
||||
"machine_end_gcode": {
|
||||
"default_value": "\nM104 S0\nM106 S255\nM140 S0\nG91\nG1 E-1 F300\nG1 Z+3 E-2 F9000\nG90\nG28\n"
|
||||
},
|
||||
"default_material_print_temperature": {
|
||||
"default_value": 205
|
||||
},
|
||||
"speed_print": {
|
||||
"default_value": 40
|
||||
},
|
||||
"retraction_amount": {
|
||||
"default_value": 3.8
|
||||
},
|
||||
"retraction_speed": {
|
||||
"default_value": 60
|
||||
},
|
||||
"adhesion_type": {
|
||||
"default_value": "skirt"
|
||||
},
|
||||
"skirt_line_count": {
|
||||
"default_value": 2
|
||||
},
|
||||
"layer_height_0": {
|
||||
"default_value": 0.26
|
||||
},
|
||||
"top_bottom_thickness": {
|
||||
"default_value": 1
|
||||
}
|
||||
"machine_height": { "default_value": 205 },
|
||||
"machine_shape": { "default_value": "elliptic" },
|
||||
"machine_start_gcode": { "default_value": ";Gcode by Cura\nG90\nG28\nM107\nM109 R100\nG29\nM109 S{material_print_temperature_layer_0} U-55 X55 V-85 Y-85 W0.26 Z0.26\nM82\nG92 E0\nG1 F200 E6\nG92 E0\nG1 F200 E-3.5\nG0 Z0.15\nG0 X10\nG0 Z3\nG1 F6000\n" },
|
||||
"machine_width": { "default_value": 195.55 },
|
||||
"retraction_amount": { "default_value": 3.8 },
|
||||
"retraction_speed": { "default_value": 60 },
|
||||
"skirt_line_count": { "default_value": 2 },
|
||||
"speed_print": { "default_value": 40 },
|
||||
"top_bottom_thickness": { "default_value": 1 }
|
||||
}
|
||||
}
|
@ -8,188 +8,33 @@
|
||||
"author": "Dagoma",
|
||||
"manufacturer": "Dagoma",
|
||||
"file_formats": "text/x-gcode",
|
||||
"platform": "dagoma_pro_430_base.3mf",
|
||||
"platform_offset": [-125, -118, -280],
|
||||
"platform": "dagoma_pro430.obj",
|
||||
"first_start_actions": [ "MachineSettingsAction" ],
|
||||
"has_machine_quality": true,
|
||||
"has_materials": true,
|
||||
"has_variants": true,
|
||||
"variants_name": "Steel Nozzle Size",
|
||||
"preferred_material": "dagoma_generic_pla",
|
||||
"preferred_quality_type": "high",
|
||||
"preferred_variant_name": "0.4",
|
||||
"exclude_materials":
|
||||
[
|
||||
"3D-Fuel_PLA_PRO_Black",
|
||||
"3D-Fuel_PLA_SnapSupport",
|
||||
"bestfilament_abs_skyblue",
|
||||
"bestfilament_petg_orange",
|
||||
"bestfilament_pla_green",
|
||||
"chromatik_pla",
|
||||
"dsm_arnitel2045_175",
|
||||
"dsm_novamid1070_175",
|
||||
"emotiontech_abs",
|
||||
"emotiontech_absx",
|
||||
"emotiontech_acetate",
|
||||
"emotiontech_asax",
|
||||
"emotiontech_bvoh",
|
||||
"emotiontech_copa",
|
||||
"emotiontech_hips",
|
||||
"emotiontech_nylon_1030",
|
||||
"emotiontech_nylon_1030cf",
|
||||
"emotiontech_nylon_1070",
|
||||
"emotiontech_pc",
|
||||
"emotiontech_pekk",
|
||||
"emotiontech_petg",
|
||||
"emotiontech_pla",
|
||||
"emotiontech_pla_hr_870",
|
||||
"emotiontech_pva-m",
|
||||
"emotiontech_pva-s",
|
||||
"emotiontech_tpu98a",
|
||||
"eryone_petg",
|
||||
"eryone_pla",
|
||||
"eryone_pla_glow",
|
||||
"eryone_pla_matte",
|
||||
"eryone_pla_wood",
|
||||
"eSUN_PETG_Black",
|
||||
"eSUN_PETG_Grey",
|
||||
"eSUN_PETG_Purple",
|
||||
"eSUN_PLA_PRO_Black",
|
||||
"eSUN_PLA_PRO_Grey",
|
||||
"eSUN_PLA_PRO_Purple",
|
||||
"eSUN_PLA_PRO_White",
|
||||
"Extrudr_GreenTECPro_Anthracite_175",
|
||||
"Extrudr_GreenTECPro_Black_175",
|
||||
"Extrudr_GreenTECPro_Blue_175",
|
||||
"Extrudr_GreenTECPro_Nature_175",
|
||||
"Extrudr_GreenTECPro_Red_175",
|
||||
"Extrudr_GreenTECPro_Silver_175",
|
||||
"Extrudr_GreenTECPro_White_175",
|
||||
"fabtotum_abs",
|
||||
"fabtotum_nylon",
|
||||
"fabtotum_pla",
|
||||
"fabtotum_tpu",
|
||||
"fdplast_abs_tomato",
|
||||
"fdplast_petg_gray",
|
||||
"fdplast_pla_olive",
|
||||
"fiberlogy_hd_pla",
|
||||
"filo3d_pla",
|
||||
"filo3d_pla_green",
|
||||
"filo3d_pla_red",
|
||||
"generic_bvoh_175",
|
||||
"generic_hips_175",
|
||||
"generic_pva_175",
|
||||
"generic_tough_pla",
|
||||
"goofoo_abs",
|
||||
"goofoo_asa",
|
||||
"goofoo_bronze_pla",
|
||||
"goofoo_emarble_pla",
|
||||
"goofoo_esilk_pla",
|
||||
"goofoo_hips",
|
||||
"goofoo_pa",
|
||||
"goofoo_pa_cf",
|
||||
"goofoo_pc",
|
||||
"goofoo_peek",
|
||||
"goofoo_petg",
|
||||
"goofoo_pla",
|
||||
"goofoo_pva",
|
||||
"goofoo_tpe_83a",
|
||||
"goofoo_tpu_87a",
|
||||
"goofoo_tpu_95a",
|
||||
"goofoo_wood_pla",
|
||||
"imade3d_petg_175",
|
||||
"imade3d_pla_175",
|
||||
"innofill_innoflex60_175",
|
||||
"layer_one_black_pla",
|
||||
"layer_one_dark_gray_pla",
|
||||
"layer_one_white_pla",
|
||||
"leapfrog_abs_natural",
|
||||
"leapfrog_epla_natural",
|
||||
"leapfrog_pva_natural",
|
||||
"octofiber_pla",
|
||||
"polyflex_pla",
|
||||
"polymax_pla",
|
||||
"polyplus_pla",
|
||||
"polywood_pla",
|
||||
"redd_abs",
|
||||
"redd_asa",
|
||||
"redd_hips",
|
||||
"redd_nylon",
|
||||
"redd_petg",
|
||||
"redd_pla",
|
||||
"redd_tpe",
|
||||
"structur3d_dap100silicone",
|
||||
"tizyx_abs",
|
||||
"tizyx_flex",
|
||||
"tizyx_petg",
|
||||
"tizyx_pla",
|
||||
"tizyx_pla_bois",
|
||||
"tizyx_pva",
|
||||
"verbatim_bvoh_175",
|
||||
"Vertex_Delta_ABS",
|
||||
"Vertex_Delta_PET",
|
||||
"Vertex_Delta_PLA",
|
||||
"Vertex_Delta_PLA_Glitter",
|
||||
"Vertex_Delta_PLA_Mat",
|
||||
"Vertex_Delta_PLA_Satin",
|
||||
"Vertex_Delta_PLA_Wood",
|
||||
"Vertex_Delta_TPU",
|
||||
"volumic_abs_ultra",
|
||||
"volumic_arma_ultra",
|
||||
"volumic_asa_ultra",
|
||||
"volumic_br80_ultra",
|
||||
"volumic_bumper_ultra",
|
||||
"volumic_cu80_ultra",
|
||||
"volumic_flex93_ultra",
|
||||
"volumic_medical_ultra",
|
||||
"volumic_nylon_ultra",
|
||||
"volumic_pekk_carbone",
|
||||
"volumic_petg_ultra",
|
||||
"volumic_petgcarbone_ultra",
|
||||
"volumic_pla_ultra",
|
||||
"volumic_pp_ultra",
|
||||
"volumic_strong_ultra",
|
||||
"volumic_support_ultra",
|
||||
"xyzprinting_abs",
|
||||
"xyzprinting_antibact_pla",
|
||||
"xyzprinting_carbon_fiber",
|
||||
"xyzprinting_colorinkjet_pla",
|
||||
"xyzprinting_flexible",
|
||||
"xyzprinting_metallic_pla",
|
||||
"xyzprinting_nylon",
|
||||
"xyzprinting_petg",
|
||||
"xyzprinting_pla",
|
||||
"xyzprinting_tough_pla",
|
||||
"zyyx_pro_flex",
|
||||
"zyyx_pro_pla",
|
||||
"xyzprinting_tpu"
|
||||
]
|
||||
"variants_name": "Nozzle"
|
||||
},
|
||||
|
||||
"overrides":
|
||||
{
|
||||
"machine_gcode_flavor": { "default_value": "Marlin" },
|
||||
"machine_width": { "default_value": 430 },
|
||||
"machine_depth": { "default_value": 320 },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_steps_per_mm_x": { "default_value": 80 },
|
||||
"machine_steps_per_mm_y": { "default_value": 80 },
|
||||
"machine_steps_per_mm_z": { "default_value": 800 },
|
||||
"machine_max_feedrate_x": { "default_value": 500 },
|
||||
"machine_max_feedrate_y": { "default_value": 500 },
|
||||
"machine_max_feedrate_z": { "default_value": 16 },
|
||||
"machine_max_acceleration_x": { "value": 1500 },
|
||||
"machine_max_acceleration_y": { "value": 1500 },
|
||||
"machine_max_acceleration_z": { "value": 70 },
|
||||
"machine_max_acceleration_e": { "value": 10000 },
|
||||
"machine_nozzle_cool_down_speed": { "default_value": 1.5 },
|
||||
"machine_nozzle_heat_up_speed": { "default_value": 7 },
|
||||
"machine_nozzle_expansion_angle": { "default_value": 60 },
|
||||
"default_material_print_temperature": { "default_value": 205 },
|
||||
"default_material_bed_temperature": { "default_value": 50 },
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"skirt_line_count": { "default_value": 3 },
|
||||
"nozzle_disallowed_areas": { "default_value": [ [[-215, 160], [-166, 160], [-215, 111]], [[215, 160], [166, 160], [215, 111]] ] },
|
||||
"machine_use_extruder_offset_to_offset_coords": {"default_value": false }
|
||||
"default_material_print_temperature":
|
||||
{
|
||||
"default_value": 205,
|
||||
"maximum_value": "430"
|
||||
},
|
||||
"infill_before_walls": { "value": "False" },
|
||||
"inset_direction": { "value": "'inside_out'" },
|
||||
"machine_depth": { "default_value": 320 },
|
||||
"machine_gcode_flavor": { "default_value": "Marlin" },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_width": { "default_value": 430 },
|
||||
"material_break_preparation_temperature": { "maximum_value": "430" },
|
||||
"material_break_temperature": { "maximum_value": "430" },
|
||||
"material_final_print_temperature": { "maximum_value": "430" },
|
||||
"material_initial_print_temperature": { "maximum_value": "430" },
|
||||
"material_print_temperature": { "maximum_value": "430" },
|
||||
"material_print_temperature_layer_0": { "maximum_value": "430" },
|
||||
"material_standby_temperature": { "maximum_value": "430" }
|
||||
}
|
||||
}
|
@ -1,40 +1,47 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Dagoma PRO 430B",
|
||||
"name": "Dagoma PRO 430 Bowden",
|
||||
"inherits": "dagoma_pro_430_base",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Dagoma",
|
||||
"manufacturer": "Dagoma",
|
||||
"machine_extruder_trains": { "0": "dagoma_pro_430_bowden_extruder_0" }
|
||||
"machine_extruder_trains": { "0": "dagoma_pro_430_bowden_extruder" },
|
||||
"preferred_quality_type": "h0.2",
|
||||
"preferred_variant_name": "Brass 0.4mm"
|
||||
},
|
||||
|
||||
"overrides":
|
||||
{
|
||||
"machine_name": { "default_value": "Dagoma PRO 430B" },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_height": { "default_value": 360 },
|
||||
"machine_head_with_fans_polygon": { "default_value": [ [-22.5, -22.5], [-22.5, 22.5], [22.5, 22.5], [22.5, -22.5] ] },
|
||||
"gantry_height": { "value": "35" },
|
||||
"machine_start_gcode": { "default_value": "\n;Start Gcode for {machine_name}\n;Author: Dagoma\n;Contact: contact-pro@dagoma3d.com\n\n;Sliced: {date} {time}\n\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG21 ;Set units to millimeters\nG90 ;Set all axes to absolute\nM140 S{material_bed_temperature} ;Preheat hotbed\nM117 Nozzle preheating ;Set message\nM109 R{material_standby_temperature} ;Preheat hotend before bed leveling\nM117 Hotbed preheating ;Set message\nM190 S{material_bed_temperature} ;Preheat hotbed before bed leveling\nG28 ;Go to origin on all axes\nG29 ; Bed Leveling\nG0 X215 Y1 Z0.4 ;Move XYZ axis before purge\nM117 Wait for print temp ;Set message\nM109 S{material_print_temperature_layer_0} ;Wait for initial print temp\nM83 ;Set E to relative positioning\nG1 E{retraction_amount} F200 ;Purge\nG0 Z3 ;Move Z axis before print start\nM82 ;Set E to absolute positioning\nG92 E0 ;Set E position\nG1 F{travel_speed} ;Set the feedrate to {travel_speed}mm/s\nM117 Print in progress ;Set message\n" },
|
||||
"machine_end_gcode": { "default_value": "\n;End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 S0 ;Set hotend temperature for cooldown\nM140 S0 ;Set hotbed temperature for cooldown\nG91 ;Set all axes to relative\nG0 Z+3 ;Move Z axis after print end\nG1 E-{retraction_amount} F5000 ;Retract filament to stop oozing\nG90 ;Set all axes to absolute\nG28 X Y ;Home the X and Y axes\nM18 ;Disable steppers motors\nM117 Print end ;Set message\n" },
|
||||
"machine_acceleration": { "value": 1250 },
|
||||
"machine_max_jerk_xy": { "value": 10 },
|
||||
"machine_max_jerk_z": { "value": 0.3 },
|
||||
"machine_max_jerk_e": { "value": 5 },
|
||||
"machine_max_feedrate_e": { "default_value": 200 },
|
||||
"machine_steps_per_mm_e": { "default_value": 139.5 },
|
||||
"acceleration_enabled": { "value": true },
|
||||
"acceleration_print": { "value": "1250", "maximum_value": 1500 },
|
||||
"acceleration_layer_0": { "value": "acceleration_topbottom", "maximum_value": 1500 },
|
||||
"acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 1250)", "maximum_value": 1500 },
|
||||
"acceleration_travel": { "value": "acceleration_print", "maximum_value": 1500 },
|
||||
"acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 1250)", "maximum_value": 1500 },
|
||||
"acceleration_wall_0": { "value": "math.ceil(acceleration_print * 800 / 1250)", "maximum_value": 1500 },
|
||||
"jerk_enabled": { "value": "True" },
|
||||
"jerk_print": { "value": "8", "minimum_value_warning": 8 },
|
||||
"jerk_travel": {"value": "10", "minimum_value_warning": 8 },
|
||||
"optimize_wall_printing_order": { "value": "True" }
|
||||
"machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 S0 ;Set hotend temperature for cooldown\nM140 S0 ;Set hotbed temperature for cooldown\nG91 ;Set all axes to relative\nG0 Z+3 ;Move Z axis after print end\nG1 E-{retraction_amount} F5000 ;Retract filament to stop oozing\nG28 X Y ;Home the X and Y axes\nM18 ;Disable steppers motors\n" },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
[-22.5, -22.5],
|
||||
[-22.5, 22.5],
|
||||
[22.5, 22.5],
|
||||
[22.5, -22.5]
|
||||
]
|
||||
},
|
||||
"machine_height": { "default_value": 350 },
|
||||
"machine_name": { "default_value": "Dagoma PRO 430 Bowden" },
|
||||
"machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Contact: contact-pro@dagoma3d.com\n\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG21 ;Set units to millimeters\nG90 ;Set all axes to absolute\nM104 S120 ; Launch hotend heating up to 120\u00b0C\nM190 S{material_bed_temperature} ;Preheat hotbed\nM106 S255; Activating layers fans for checkup and minimise filament on t\nG28 ;Go to origin on all axes\nG29 ; Bed Leveling\nM107 ; Turn off Layers Fans\nG0 X215 Y1 Z0.4 ;Move XYZ axis before purge\nM109 S{material_print_temperature_layer_0} ;Wait for initial print temp\nM83 ;Set E to relative positioning\nG1 E{retraction_amount} F200 ;Purge\nG0 Z3 ;Move Z axis before print start\nM82 ;Set E to absolute positioning\nG92 E0 ;Set E position\nG1 F{speed_travel} ;Set the feedrate to {speed_travel}mm/s\n" },
|
||||
"nozzle_disallowed_areas":
|
||||
{
|
||||
"default_value": [
|
||||
[
|
||||
[-215, 160],
|
||||
[-166, 160],
|
||||
[-215, 111]
|
||||
],
|
||||
[
|
||||
[215, 160],
|
||||
[166, 160],
|
||||
[215, 111]
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
55
resources/definitions/dagoma_pro_430_directdrive.def.json
Normal file
55
resources/definitions/dagoma_pro_430_directdrive.def.json
Normal file
@ -0,0 +1,55 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Dagoma PRO 430 Direct Drive",
|
||||
"inherits": "dagoma_pro_430_base",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Dagoma",
|
||||
"manufacturer": "Dagoma",
|
||||
"machine_extruder_trains": { "0": "dagoma_pro_430_directdrive_extruder" },
|
||||
"preferred_quality_type": "h0.2",
|
||||
"preferred_variant_name": "Brass 0.4mm"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 S0 ;Set hotend temperature for cooldown\nM140 S0 ;Set hotbed temperature for cooldown\nG91 ;Set all axes to relative\nG0 Z+3 ;Move Z axis after print end\nG1 E-5 F5000 ;Retract filament to stop oozing\nG28 X Y ;Home the X and Y axes\nM18 ;Disable steppers motors\n" },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_height": { "default_value": 310 },
|
||||
"machine_name": { "default_value": "Dagoma PRO 430 Direct Drive" },
|
||||
"machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Contact: contact-pro@dagoma3d.com\n\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG21 ;Set units to millimeters\nG90 ;Set all axes to absolute\nM104 S120 ; Launch hotend heating up to 120\u00b0C\nM190 S{material_bed_temperature} ;Preheat hotbed\nM106 S255; Activating layers fans for checkup and minimise filament on t\nG28 ;Go to origin on all axes\nG29 ; Bed Leveling\nM107 ; Turn off Layers Fans\nG0 X215 Y1 Z0.4 ;Move XYZ axis before purge\nM109 S{material_print_temperature_layer_0} ;Wait for initial print temp\nM83 ;Set E to relative positioning\nG1 E{retraction_amount} F200 ;Purge\nG0 Z3 ;Move Z axis before print start\nM82 ;Set E to absolute positioning\nG92 E0 ;Set E position\nG1 F{speed_travel} ;Set the feedrate to {speed_travel}mm/s\n" },
|
||||
"nozzle_disallowed_areas":
|
||||
{
|
||||
"default_value": [
|
||||
[
|
||||
[-215, 160],
|
||||
[-166, 160],
|
||||
[-215, 111]
|
||||
],
|
||||
[
|
||||
[215, 160],
|
||||
[166, 160],
|
||||
[215, 111]
|
||||
],
|
||||
[
|
||||
[-215, 160],
|
||||
[-200, 160],
|
||||
[-200, -160],
|
||||
[-215, -160]
|
||||
],
|
||||
[
|
||||
[215, 160],
|
||||
[200, 160],
|
||||
[200, -160],
|
||||
[215, -160]
|
||||
],
|
||||
[
|
||||
[-215, 160],
|
||||
[-215, 137.5],
|
||||
[215, 137.5],
|
||||
[215, 160]
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
60
resources/definitions/dagoma_pro_430_dual.def.json
Normal file
60
resources/definitions/dagoma_pro_430_dual.def.json
Normal file
@ -0,0 +1,60 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Dagoma PRO 430 Dual",
|
||||
"inherits": "dagoma_pro_430_base",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Dagoma",
|
||||
"manufacturer": "Dagoma",
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "dagoma_pro_430_dual_extruder_left",
|
||||
"1": "dagoma_pro_430_dual_extruder_right"
|
||||
},
|
||||
"preferred_quality_type": "h0.2",
|
||||
"preferred_variant_name": "Brass 0.4mm",
|
||||
"quality_definition": "dagoma_pro_430_bowden"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 T0 S0 ;Set hotend temperature for cooldown\nM104 T1 S0 ;Set hotend temperature for cooldown\nM140 S0 ;Set hotbed temperature for cooldown\nG91 ;Set all axes to relative\nG0 Z+3 ;Move Z axis after print end\nG1 E-{retraction_amount} F5000 ;Retract filament to stop oozing\nG90 ;Set all axes to absolute\nG28 X Y ;Home the X and Y axes\nM84 ; Disable steppers motors\nM18 ;Disable steppers motors\nM117 Print end ;Set message\n" },
|
||||
"machine_extruder_count": { "default_value": 2 },
|
||||
"machine_height": { "default_value": 310 },
|
||||
"machine_name": { "default_value": "Dagoma PRO 430 Dual" },
|
||||
"machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Contact: contact-pro@dagoma3d.com\n\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG21 ;Set units to millimeters\nG90 ;Set all axes to absolute\nM104 S120 ; Launch hotend heating up to 120\u00b0C\nM190 S{material_bed_temperature} ;Preheat hotbed\nM106 S255; Activating layers fans for checkup and minimise filament on t\nG28 ;Go to origin on all axes\nG29 ; Bed Leveling\nM107 ; Turn off Layers Fans\nG0 X215 Y1 Z0.4 ;Move XYZ axis before purge\nM109 S{material_print_temperature_layer_0} ;Wait for initial print temp\nM83 ;Set E to relative positioning\nG1 E{retraction_amount} F200 ;Purge\nG0 Z15.0 F6000 ;Move Z axis before print start\nM82 ;Set E to absolute positioning\nG92 E0 ;Set E position\nG1 F{travel_speed} ;Set the feedrate to {travel_speed}mm/s\n" },
|
||||
"nozzle_disallowed_areas":
|
||||
{
|
||||
"default_value": [
|
||||
[
|
||||
[-215, 160],
|
||||
[-166, 160],
|
||||
[-215, 111]
|
||||
],
|
||||
[
|
||||
[215, 160],
|
||||
[166, 160],
|
||||
[215, 111]
|
||||
],
|
||||
[
|
||||
[-215, 160],
|
||||
[-154, 160],
|
||||
[-154, -160],
|
||||
[-215, -160]
|
||||
],
|
||||
[
|
||||
[215, 160],
|
||||
[154, 160],
|
||||
[154, -160],
|
||||
[215, -160]
|
||||
],
|
||||
[
|
||||
[-215, 160],
|
||||
[-215, 125],
|
||||
[215, 125],
|
||||
[215, 160]
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
27
resources/definitions/dagoma_sigma.def.json
Normal file
27
resources/definitions/dagoma_sigma.def.json
Normal file
@ -0,0 +1,27 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Dagoma Sigma",
|
||||
"inherits": "dagoma_delta",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Dagoma",
|
||||
"manufacturer": "Dagoma",
|
||||
"file_formats": "text/x-gcode",
|
||||
"platform": "dagoma_sigma.obj",
|
||||
"has_machine_quality": true,
|
||||
"has_materials": true,
|
||||
"has_variants": true,
|
||||
"machine_extruder_trains": { "0": "dagoma_sigma_extruder" },
|
||||
"preferred_quality_type": "h0.2",
|
||||
"preferred_variant_name": "0.4mm",
|
||||
"variants_name": "Nozzle"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 S0\nM107\nM140 S0\nG91\nG1 E-1 F300\nG1 Z+3 E-2 F9000\nG90\nG28\n" },
|
||||
"machine_name": { "default_value": "Dagoma Sigma" },
|
||||
"machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG90 ;absolute positioning\nM104 S120 ;Launch heating up to 120\u00b0C\nM106 S255 ;Activating layers fans\nG29 ;Homing and Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature} U-55 X55 V-85 Y-85 W0.26 Z0.26 ;Temperature for the first layer only\nM82 ;Set extruder to absolute mode\nG92 E0 ;Zero the extruded length\nG1 F200 E6 ;Extrude 10mm of feed stock\nG92 E0 ;Zero the extruded length again\nG1 F200 E-3.5\nG0 Z0.15\nG0 X10\nG0 Z3\nG1 F{speed_travel}\nM117 Printing...\n" },
|
||||
"speed_travel": { "value": 150 }
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
161
resources/definitions/fusion3.def.json
Normal file
161
resources/definitions/fusion3.def.json
Normal file
@ -0,0 +1,161 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Fusion3 Base Printer",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": false,
|
||||
"author": "Keith Varin",
|
||||
"manufacturer": "Fusion3Design",
|
||||
"file_formats": "text/x-gcode",
|
||||
"exclude_materials": [
|
||||
"bestfilament_abs_skyblue",
|
||||
"bestfilament_petg_orange",
|
||||
"bestfilament_pla_green",
|
||||
"chromatik_pla",
|
||||
"dsm_arnitel2045_175",
|
||||
"dsm_novamid1070_175",
|
||||
"emotiontech_abs",
|
||||
"emotiontech_absx",
|
||||
"emotiontech_acetate",
|
||||
"emotiontech_asax",
|
||||
"emotiontech_bvoh",
|
||||
"emotiontech_copa",
|
||||
"emotiontech_hips",
|
||||
"emotiontech_nylon_1030",
|
||||
"emotiontech_nylon_1030cf",
|
||||
"emotiontech_nylon_1070",
|
||||
"emotiontech_pc",
|
||||
"emotiontech_pekk",
|
||||
"emotiontech_petg",
|
||||
"emotiontech_pla",
|
||||
"emotiontech_pla_hr_870",
|
||||
"emotiontech_pva-m",
|
||||
"emotiontech_pva-s",
|
||||
"emotiontech_tpu98a",
|
||||
"eryone_petg",
|
||||
"eryone_pla",
|
||||
"eryone_pla_glow",
|
||||
"eryone_pla_matte",
|
||||
"eryone_pla_wood",
|
||||
"eSUN_PETG_Black",
|
||||
"eSUN_PETG_Grey",
|
||||
"eSUN_PETG_Purple",
|
||||
"Extrudr_GreenTECPro_Anthracite_175",
|
||||
"Extrudr_GreenTECPro_Black_175",
|
||||
"Extrudr_GreenTECPro_Blue_175",
|
||||
"Extrudr_GreenTECPro_Nature_175",
|
||||
"Extrudr_GreenTECPro_Red_175",
|
||||
"Extrudr_GreenTECPro_Silver_175",
|
||||
"Extrudr_GreenTECPro_White_175",
|
||||
"fabtotum_abs",
|
||||
"fabtotum_nylon",
|
||||
"fabtotum_pla",
|
||||
"fabtotum_tpu",
|
||||
"fdplast_abs_tomato",
|
||||
"fdplast_petg_gray",
|
||||
"fdplast_pla_olive",
|
||||
"fiberlogy_hd_pla",
|
||||
"filo3d_pla",
|
||||
"filo3d_pla_green",
|
||||
"filo3d_pla_red",
|
||||
"generic_bam",
|
||||
"generic_bvoh_175",
|
||||
"generic_gffcpe",
|
||||
"generic_gffpa",
|
||||
"generic_hips",
|
||||
"generic_hips_175",
|
||||
"generic_pp",
|
||||
"generic_pva",
|
||||
"generic_pva_175",
|
||||
"goofoo_abs",
|
||||
"goofoo_asa",
|
||||
"goofoo_bronze_pla",
|
||||
"goofoo_emarble_pla",
|
||||
"goofoo_esilk_pla",
|
||||
"goofoo_hips",
|
||||
"goofoo_pa",
|
||||
"goofoo_pa_cf",
|
||||
"goofoo_pc",
|
||||
"goofoo_peek",
|
||||
"goofoo_petg",
|
||||
"goofoo_pla",
|
||||
"goofoo_pva",
|
||||
"goofoo_tpe_83a",
|
||||
"goofoo_tpu_87a",
|
||||
"goofoo_tpu_95a",
|
||||
"goofoo_wood_pla",
|
||||
"imade3d_petg_175",
|
||||
"imade3d_pla_175",
|
||||
"innofill_innoflex60_175",
|
||||
"layer_one_black_pla",
|
||||
"layer_one_dark_gray_pla",
|
||||
"layer_one_white_pla",
|
||||
"leapfrog_abs_natural",
|
||||
"leapfrog_epla_natural",
|
||||
"leapfrog_pva_natural",
|
||||
"octofiber_pla",
|
||||
"redd_abs",
|
||||
"redd_asa",
|
||||
"redd_hips",
|
||||
"redd_nylon",
|
||||
"redd_petg",
|
||||
"redd_pla",
|
||||
"redd_tpe",
|
||||
"structur3d_dap100silicone",
|
||||
"tizyx_abs",
|
||||
"tizyx_flex",
|
||||
"tizyx_petg",
|
||||
"tizyx_pla",
|
||||
"tizyx_pla_bois",
|
||||
"tizyx_pva",
|
||||
"verbatim_bvoh_175",
|
||||
"Vertex_Delta_ABS",
|
||||
"Vertex_Delta_PET",
|
||||
"Vertex_Delta_PLA",
|
||||
"Vertex_Delta_PLA_Glitter",
|
||||
"Vertex_Delta_PLA_Mat",
|
||||
"Vertex_Delta_PLA_Satin",
|
||||
"Vertex_Delta_PLA_Wood",
|
||||
"Vertex_Delta_TPU",
|
||||
"volumic_abs_ultra",
|
||||
"volumic_arma_ultra",
|
||||
"volumic_asa_ultra",
|
||||
"volumic_br80_ultra",
|
||||
"volumic_bumper_ultra",
|
||||
"volumic_cu80_ultra",
|
||||
"volumic_flex93_ultra",
|
||||
"volumic_medical_ultra",
|
||||
"volumic_nylon_ultra",
|
||||
"volumic_pekk_carbone",
|
||||
"volumic_petgcarbone_ultra",
|
||||
"volumic_petg_ultra",
|
||||
"volumic_pla_ultra",
|
||||
"volumic_pp_ultra",
|
||||
"volumic_strong_ultra",
|
||||
"volumic_support_ultra",
|
||||
"xyzprinting_abs",
|
||||
"xyzprinting_antibact_pla",
|
||||
"xyzprinting_carbon_fiber",
|
||||
"xyzprinting_colorinkjet_pla",
|
||||
"xyzprinting_flexible",
|
||||
"xyzprinting_metallic_pla",
|
||||
"xyzprinting_nylon",
|
||||
"xyzprinting_petg",
|
||||
"xyzprinting_pla",
|
||||
"xyzprinting_tough_pla",
|
||||
"xyzprinting_tpu",
|
||||
"zyyx_pro_flex",
|
||||
"zyyx_pro_pla"
|
||||
],
|
||||
"first_start_actions": [ "MachineSettingsAction" ],
|
||||
"has_machine_quality": true,
|
||||
"has_materials": true,
|
||||
"has_variants": true,
|
||||
"machine_extruder_trains": { "0": "fusion3_extruder_0" },
|
||||
"preferred_material": "generic_abs",
|
||||
"preferred_quality_type": "normal",
|
||||
"preferred_variant_name": "0.4mm Nozzle",
|
||||
"variants_name": "Nozzle Size"
|
||||
}
|
||||
}
|
138
resources/definitions/fusion3_f410.def.json
Normal file
138
resources/definitions/fusion3_f410.def.json
Normal file
@ -0,0 +1,138 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Fusion3 F410",
|
||||
"inherits": "fusion3",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"quality_definition": "fusion3"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"acceleration_print": { "value": "machine_acceleration" },
|
||||
"acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
|
||||
"acceleration_travel": { "value": "machine_acceleration" },
|
||||
"acceleration_travel_layer_0": { "value": "acceleration_travel" },
|
||||
"adaptive_layer_height_variation": { "value": 0.04 },
|
||||
"adaptive_layer_height_variation_step": { "value": 0.04 },
|
||||
"adhesion_type": { "value": "'skirt'" },
|
||||
"bottom_layers": { "value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))" },
|
||||
"brim_replaces_support": { "value": false },
|
||||
"cool_fan_full_at_height": { "value": "layer_height_0 * 4" },
|
||||
"cool_min_speed": { "value": "speed_print * 0.3" },
|
||||
"gantry_height": { "value": 40 },
|
||||
"infill_before_walls": { "value": false },
|
||||
"infill_overlap": { "value": 20.0 },
|
||||
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 89 else 'lines' if infill_sparse_density > 31 else 'cubic'" },
|
||||
"infill_wipe_dist": { "value": 0.0 },
|
||||
"jerk_print": { "value": 10 },
|
||||
"jerk_travel": { "value": "jerk_print" },
|
||||
"jerk_travel_layer_0": { "value": "jerk_travel" },
|
||||
"machine_acceleration": { "value": 2000 },
|
||||
"machine_depth": { "default_value": 355 },
|
||||
"machine_end_gcode": { "default_value": "; Fusion3 F410 end code\nG91 ;relative positioning\nG1 E-5.00 F1000 ;retract 5mm of filament\nG1 Z+1.00 X-20.0 Y+20.0 F10000 ;short quick move to disengage from print\nG90 ;absolute positioning\nG1 X0.0 Y350.0 F9000 ; move head to back left corner\nG91 ; relative positioning\nG1 E-5.00 F500 ;retract additional filament to prevent oozing\nG90 ;absolute positioning\nM104 S0 ;turn off hotend\nM140 S0 ;turn off heatbed\n; Reset filament monitor\nM42 P63 S0\nG4 P100\nG4 P50\nM42 P63 S1\nG1 Z315 F1000 ;move print bed down to idle position\nM106 S0 ; shut off blower\nM84 ;motors off\nM561 ;clear bed probe transformation\n" },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (RepRap)" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
[-30, 30],
|
||||
[-30, -30],
|
||||
[30, -30],
|
||||
[30, 30]
|
||||
]
|
||||
},
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 315 },
|
||||
"machine_max_acceleration_x": { "value": 5000 },
|
||||
"machine_max_acceleration_y": { "value": 5000 },
|
||||
"machine_max_acceleration_z": { "value": 500 },
|
||||
"machine_max_feedrate_e": { "value": 166 },
|
||||
"machine_max_feedrate_x": { "value": 550 },
|
||||
"machine_max_feedrate_y": { "value": 550 },
|
||||
"machine_max_feedrate_z": { "value": 40 },
|
||||
"machine_max_jerk_e": { "value": 30 },
|
||||
"machine_max_jerk_z": { "value": 1 },
|
||||
"machine_name": { "default_value": "Fusion3 F410" },
|
||||
"machine_start_gcode": { "default_value": "; Fusion3 F410 start code\nM104 S0 ; shutdown heater and prepare to print\nG21 ; set units to mm\nG90 ; use absolute coordinates\nT0 ; select tool 0\nG92 E0.0 ; reset e count\nM220 S100 ; reset speed multiplier\nM140 S{material_bed_temperature_layer_0} ; set bed temp and do not wait\nG32 ; call to run bed.g\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nM109 S{material_print_temperature_layer_0} ; set print head temperature and wait\n; === pause for heating ===\n; reset filament monitor\nM42 P63 S0\nG4 P100\nG4 P50\nM42 P63 S1\nG1 X350 Y0\nG1 Z10.0 F2000 ; move up\nG1 E10.0 F500 ; prime extruder\nG92 E0.0 ; reset e count\nG1 X330 Y15 F9000 ; move back\nG1 Z{layer_height_0} F1000 ; move down to begin wipe\nG1 X150 E4.0 F6000 ; wipe print head (extrude material while we do this)\nG92 E0.0 ; reset e count\n" },
|
||||
"machine_width": { "default_value": 355 },
|
||||
"material_final_print_temperature": { "value": "material_print_temperature" },
|
||||
"material_initial_print_temperature": { "value": "material_print_temperature" },
|
||||
"meshfix_maximum_resolution": { "value": "0.25" },
|
||||
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
|
||||
"minimum_interface_area": { "value": 10 },
|
||||
"minimum_support_area": { "value": 2 },
|
||||
"optimize_wall_printing_order": { "value": "True" },
|
||||
"retract_at_layer_change": { "value": true },
|
||||
"retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" },
|
||||
"retraction_combing_max_distance": { "value": 30 },
|
||||
"retraction_count_max": { "value": 100 },
|
||||
"retraction_extrusion_window": { "value": 5 },
|
||||
"retraction_hop": { "value": 0.2 },
|
||||
"retraction_hop_enabled": { "value": true },
|
||||
"retraction_prime_speed":
|
||||
{
|
||||
"maximum_value": "machine_max_feedrate_e",
|
||||
"maximum_value_warning": "machine_max_feedrate_e *0.75"
|
||||
},
|
||||
"retraction_retract_speed":
|
||||
{
|
||||
"maximum_value": "machine_max_feedrate_e",
|
||||
"maximum_value_warning": "machine_max_feedrate_e *0.75"
|
||||
},
|
||||
"retraction_speed":
|
||||
{
|
||||
"default_value": 100,
|
||||
"maximum_value": "machine_max_feedrate_e",
|
||||
"maximum_value_warning": "machine_max_feedrate_e *0.75"
|
||||
},
|
||||
"skin_overlap": { "value": 10.0 },
|
||||
"skirt_gap": { "value": 10.0 },
|
||||
"skirt_line_count": { "value": 3 },
|
||||
"speed_infill": { "value": "speed_print *0.7" },
|
||||
"speed_layer_0": { "value": "speed_print *0.4" },
|
||||
"speed_prime_tower": { "value": "speed_topbottom" },
|
||||
"speed_print": { "value": 100 },
|
||||
"speed_support": { "value": "speed_wall_0" },
|
||||
"speed_support_interface": { "value": "speed_topbottom" },
|
||||
"speed_travel": { "value": "speed_print * 1.5" },
|
||||
"speed_travel_layer_0": { "value": "speed_travel *0.5" },
|
||||
"speed_wall": { "value": "speed_print *0.6" },
|
||||
"speed_wall_x": { "value": "speed_print *0.85" },
|
||||
"speed_z_hop": { "value": 5 },
|
||||
"support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },
|
||||
"support_brim_enable": { "value": true },
|
||||
"support_brim_width": { "value": 4 },
|
||||
"support_infill_angles":
|
||||
{
|
||||
"value": [
|
||||
45
|
||||
]
|
||||
},
|
||||
"support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 30" },
|
||||
"support_interface_density": { "value": 33.333 },
|
||||
"support_interface_height": { "value": "layer_height * 4" },
|
||||
"support_interface_pattern": { "value": "'grid'" },
|
||||
"support_interface_skip_height": { "value": 0.2 },
|
||||
"support_pattern": { "value": "'zigzag'" },
|
||||
"support_use_towers": { "value": false },
|
||||
"support_wall_count": { "value": 0 },
|
||||
"support_xy_distance": { "value": "wall_line_width_0 * 3" },
|
||||
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
|
||||
"support_xy_overrides_z": { "value": "'xy_overrides_z'" },
|
||||
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
|
||||
"top_bottom_pattern": { "value": "'zigzag'" },
|
||||
"top_bottom_pattern_0": { "value": "'zigzag'" },
|
||||
"top_bottom_thickness":
|
||||
{
|
||||
"minimum_value_warning": "0.4",
|
||||
"value": "(layer_height*3) + layer_height_0"
|
||||
},
|
||||
"top_layers": { "value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))" },
|
||||
"travel_avoid_other_parts": { "value": false },
|
||||
"travel_avoid_supports": { "value": true },
|
||||
"travel_retract_before_outer_wall": { "value": true },
|
||||
"wall_0_wipe_dist": { "value": 0.0 },
|
||||
"z_seam_corner": { "value": "'z_seam_corner_inner'" },
|
||||
"z_seam_type": { "value": "'sharpest_corner'" }
|
||||
}
|
||||
}
|
15
resources/extruders/ankermake_m5_extruder_0.def.json
Normal file
15
resources/extruders/ankermake_m5_extruder_0.def.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "ankermake_m5",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
15
resources/extruders/dagoma_pro_430_bowden_extruder.def.json
Normal file
15
resources/extruders/dagoma_pro_430_bowden_extruder.def.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "dagoma_pro_430_bowden",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata": {
|
||||
"machine": "dagoma_pro_430_bowden",
|
||||
"position": "0"
|
||||
},
|
||||
|
||||
"overrides": {
|
||||
"extruder_nr": {
|
||||
"default_value": 0
|
||||
},
|
||||
"material_diameter": {
|
||||
"default_value": 1.75
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "dagoma_pro_430_directdrive",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "dagoma_pro_430_dual",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 0,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 2",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "dagoma_pro_430_dual",
|
||||
"position": "1"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 1,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
16
resources/extruders/dagoma_sigma_extruder.def.json
Normal file
16
resources/extruders/dagoma_sigma_extruder.def.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "dagoma_sigma",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
15
resources/extruders/fusion3_extruder_0.def.json
Normal file
15
resources/extruders/fusion3_extruder_0.def.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "fusion3",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
BIN
resources/images/ankermake_m5.png
Normal file
BIN
resources/images/ankermake_m5.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 113 KiB |
BIN
resources/meshes/BIQU_Hurakan_bed.stl
Normal file
BIN
resources/meshes/BIQU_Hurakan_bed.stl
Normal file
Binary file not shown.
745
resources/meshes/ankermake_m5_platform.obj
Normal file
745
resources/meshes/ankermake_m5_platform.obj
Normal file
@ -0,0 +1,745 @@
|
||||
# Exported from 3D Builder
|
||||
mtllib D:\Documents\Projects\AnkerMake-M5-Profile\5.1\images\AM-M5-bed.mtl
|
||||
|
||||
o Object.1
|
||||
v 121.092972 123.154205 -0.102764
|
||||
v 119.840958 123.932068 -0.102778
|
||||
v 119.840958 123.932068 0.097220
|
||||
v 121.092972 123.154205 0.097234
|
||||
v 78.657051 -126.525543 0.102253
|
||||
v 78.012062 -126.955132 0.102262
|
||||
v 78.012062 -126.955139 -0.097736
|
||||
v 78.657051 -126.525551 -0.097745
|
||||
v -75.704933 -141.014282 -0.097276
|
||||
v -75.352928 -141.851379 -0.097260
|
||||
v -75.352928 -141.851364 0.102738
|
||||
v -75.704933 -141.014282 0.102722
|
||||
v -74.881927 -142.616196 -0.097246
|
||||
v -74.881927 -142.616180 0.102752
|
||||
v 116.994965 124.874573 -0.102794
|
||||
v 118.468956 124.512222 -0.102788
|
||||
v 115.440956 125.000031 -0.102794
|
||||
v 122.205963 122.196655 -0.102746
|
||||
v 123.159973 121.079498 -0.102725
|
||||
v 123.935974 119.821854 -0.102701
|
||||
v 124.513977 118.444763 -0.102674
|
||||
v 124.874969 116.966278 -0.102645
|
||||
v 124.999969 115.405518 -0.102615
|
||||
v 79.364059 -126.202339 0.102246
|
||||
v 79.364059 -126.202347 -0.097752
|
||||
v -76.946938 -128.027161 0.102464
|
||||
v -76.946938 -128.027161 -0.097534
|
||||
v -76.547928 -128.674576 -0.097521
|
||||
v -76.547928 -128.674561 0.102477
|
||||
v 80.123062 -125.999588 0.102241
|
||||
v 80.123062 -125.999596 -0.097757
|
||||
v 80.924057 -125.929337 -0.097759
|
||||
v 80.924057 -125.929329 0.102239
|
||||
v 125.000061 -116.334778 -0.098002
|
||||
v 124.875061 -117.895561 -0.097971
|
||||
v -115.441032 124.999939 -0.102525
|
||||
v 75.924065 -140.114868 -0.097471
|
||||
v 75.924065 -140.114868 0.102527
|
||||
v 75.705070 -141.014221 0.102545
|
||||
v 75.705070 -141.014221 -0.097453
|
||||
v 74.301064 -143.294632 -0.097406
|
||||
v 74.301064 -143.294632 0.102592
|
||||
v 73.625069 -143.876816 -0.097394
|
||||
v 118.468956 124.512222 0.097210
|
||||
v 74.881050 -142.616135 -0.097420
|
||||
v 74.881050 -142.616135 0.102578
|
||||
v 116.994965 124.874573 0.097204
|
||||
v 75.353065 -141.851318 -0.097436
|
||||
v 75.353065 -141.851318 0.102562
|
||||
v 115.440956 125.000031 0.097204
|
||||
v 115.441055 -125.929314 0.102198
|
||||
v 115.441055 -125.929321 -0.097800
|
||||
v 116.995064 -125.803848 -0.097804
|
||||
v 116.995064 -125.803841 0.102194
|
||||
v 118.469055 -125.441521 -0.097813
|
||||
v 118.469055 -125.441513 0.102185
|
||||
v -124.999947 -116.334877 -0.097710
|
||||
v -125.000031 115.405426 0.097675
|
||||
v -125.000031 115.405418 -0.102323
|
||||
v 119.841057 -124.861359 -0.097826
|
||||
v 119.841057 -124.861351 0.102172
|
||||
v 121.093071 -124.082481 -0.097843
|
||||
v 121.093071 -124.082474 0.102155
|
||||
v -124.874954 -117.895653 0.102319
|
||||
v -124.513947 -119.374130 0.102348
|
||||
v -124.999947 -116.334869 0.102288
|
||||
v 124.514069 -119.374039 -0.097941
|
||||
v 123.936066 -120.751137 -0.097913
|
||||
v 123.160065 -122.008789 -0.097887
|
||||
v 122.206055 -123.124947 -0.097863
|
||||
v 122.206055 -123.124939 0.102135
|
||||
v 74.000061 -122.918182 -0.097811
|
||||
v -72.999939 -122.918236 -0.097640
|
||||
v 123.160065 -122.008789 0.102111
|
||||
v 123.936066 -120.751137 0.102085
|
||||
v -116.996040 124.874481 0.097477
|
||||
v -116.996040 124.874481 -0.102521
|
||||
v -118.469032 124.512131 -0.102512
|
||||
v -118.469032 124.512131 0.097486
|
||||
v 124.514069 -119.374039 0.102057
|
||||
v -119.841042 123.931976 -0.102499
|
||||
v -119.841042 123.931976 0.097499
|
||||
v 124.875061 -117.895561 0.102027
|
||||
v -121.094032 123.154114 -0.102482
|
||||
v -121.094032 123.154114 0.097516
|
||||
v 125.000061 -116.334778 0.101996
|
||||
v -122.207047 122.196564 -0.102462
|
||||
v -122.207047 122.196564 0.097537
|
||||
v -123.161026 121.079407 -0.102438
|
||||
v -123.161026 121.079407 0.097560
|
||||
v -123.936020 119.821762 -0.102412
|
||||
v -123.936020 119.821762 0.097586
|
||||
v 76.250061 -129.496536 -0.097683
|
||||
v 76.548050 -128.762833 -0.097698
|
||||
v 76.948059 -128.086334 -0.097712
|
||||
v -124.514038 118.444664 -0.102384
|
||||
v -124.514038 118.444672 0.097614
|
||||
v -124.875038 116.966179 -0.102354
|
||||
v -124.875038 116.966187 0.097644
|
||||
v 77.439056 -127.480080 -0.097724
|
||||
v 76.000069 -139.166367 0.102508
|
||||
v 76.000069 -139.166367 -0.097490
|
||||
v -115.441032 124.999939 0.097473
|
||||
v 76.000061 -131.083420 0.102347
|
||||
v 76.000061 -131.083420 -0.097651
|
||||
v -80.121941 -126.071922 0.102429
|
||||
v -80.922943 -126.007690 0.102429
|
||||
v -80.922943 -126.007698 -0.097569
|
||||
v -80.121941 -126.071930 -0.097569
|
||||
v 124.874969 116.966278 0.097353
|
||||
v 124.999969 115.405518 0.097383
|
||||
v 76.064056 -130.274429 0.102331
|
||||
v 76.064056 -130.274445 -0.097667
|
||||
v 124.513977 118.444763 0.097324
|
||||
v -79.363937 -126.258606 0.102432
|
||||
v -79.363937 -126.258614 -0.097566
|
||||
v 74.000069 -142.992523 -0.097412
|
||||
v 123.935974 119.821869 0.097297
|
||||
v 76.250061 -129.496536 0.102315
|
||||
v -78.656929 -126.557716 0.102437
|
||||
v -78.656929 -126.557724 -0.097561
|
||||
v 123.159973 121.079514 0.097273
|
||||
v 76.548050 -128.762817 0.102300
|
||||
v 122.205963 122.196655 0.097252
|
||||
v -78.011940 -126.959198 0.102444
|
||||
v -78.011940 -126.959206 -0.097554
|
||||
v 76.948059 -128.086319 0.102286
|
||||
v -77.438934 -127.452026 0.102454
|
||||
v -77.438934 -127.452034 -0.097544
|
||||
v 77.439056 -127.480072 0.102274
|
||||
v -74.301933 -143.294693 -0.097233
|
||||
v -74.301933 -143.294678 0.102765
|
||||
v -73.624931 -143.876877 -0.097222
|
||||
v -73.624931 -143.876862 0.102776
|
||||
v -88.022942 -125.929398 -0.097562
|
||||
v -121.093933 -124.082565 0.102437
|
||||
v -76.249939 -129.384201 -0.097507
|
||||
v -88.022942 -126.007698 -0.097561
|
||||
v -76.063942 -130.146011 -0.097492
|
||||
v -75.999939 -130.948990 -0.097476
|
||||
v -72.999931 -142.992584 -0.097240
|
||||
v 71.133072 -144.923676 -0.097370
|
||||
v 72.029060 -144.703873 -0.097375
|
||||
v 70.188072 -144.999969 -0.097367
|
||||
v 72.863068 -144.350555 -0.097383
|
||||
v -70.187927 -145.000031 -0.097204
|
||||
v -72.028931 -144.703934 -0.097207
|
||||
v -71.133934 -144.923737 -0.097204
|
||||
v -72.863922 -144.350616 -0.097213
|
||||
v -75.999931 -139.166428 -0.097313
|
||||
v -75.923935 -140.114929 -0.097294
|
||||
v 70.188072 -144.999969 0.102631
|
||||
v -70.187927 -145.000015 0.102794
|
||||
v 71.133072 -144.923676 0.102628
|
||||
v 72.029060 -144.703873 0.102623
|
||||
v 72.863068 -144.350555 0.102615
|
||||
v 73.625069 -143.876816 0.102604
|
||||
v -72.863922 -144.350601 0.102785
|
||||
v -72.028931 -144.703918 0.102791
|
||||
v -71.133934 -144.923721 0.102794
|
||||
v -115.440933 -125.929413 -0.097530
|
||||
v -116.995941 -125.803940 -0.097531
|
||||
v -118.468933 -125.441612 -0.097537
|
||||
v -119.840942 -124.861450 -0.097547
|
||||
v -121.093933 -124.082573 -0.097561
|
||||
v -122.206947 -123.125038 -0.097578
|
||||
v -123.160934 -122.008888 -0.097599
|
||||
v -123.935928 -120.751236 -0.097624
|
||||
v -124.513947 -119.374138 -0.097650
|
||||
v -124.874954 -117.895660 -0.097679
|
||||
v -76.249939 -129.384186 0.102491
|
||||
v -76.063942 -130.145996 0.102506
|
||||
v -75.999939 -130.948975 0.102522
|
||||
v -75.999931 -139.166428 0.102685
|
||||
v -88.022942 -125.929398 0.102436
|
||||
v -88.022942 -126.007698 0.102437
|
||||
v -123.935928 -120.751228 0.102374
|
||||
v -123.160934 -122.008881 0.102399
|
||||
v -122.206947 -123.125031 0.102420
|
||||
v -119.840942 -124.861443 0.102451
|
||||
v -118.468933 -125.441605 0.102461
|
||||
v -116.995941 -125.803932 0.102467
|
||||
v -115.440933 -125.929405 0.102468
|
||||
v -75.923935 -140.114929 0.102704
|
||||
|
||||
usemtl Material.001_0
|
||||
f 1 2 3
|
||||
f 1 3 4
|
||||
f 18 1 4
|
||||
f 18 4 124
|
||||
f 19 18 124
|
||||
f 19 124 122
|
||||
f 20 19 122
|
||||
f 20 122 118
|
||||
f 21 20 118
|
||||
f 21 118 114
|
||||
f 22 21 114
|
||||
f 22 114 110
|
||||
f 23 22 110
|
||||
f 23 110 111
|
||||
f 23 111 34
|
||||
f 17 36 50
|
||||
f 15 17 50
|
||||
f 15 50 47
|
||||
f 16 15 47
|
||||
f 16 47 44
|
||||
f 2 16 44
|
||||
f 70 74 71
|
||||
f 62 70 71
|
||||
f 69 68 75
|
||||
f 69 75 74
|
||||
f 35 86 83
|
||||
f 67 35 83
|
||||
f 35 34 86
|
||||
f 67 83 80
|
||||
f 68 67 80
|
||||
f 68 80 75
|
||||
f 60 62 63
|
||||
f 60 63 61
|
||||
f 55 60 61
|
||||
f 55 61 56
|
||||
f 53 55 56
|
||||
f 53 56 54
|
||||
f 51 53 54
|
||||
f 51 33 52
|
||||
f 32 52 33
|
||||
f 32 33 30
|
||||
f 32 30 31
|
||||
f 120 116 121
|
||||
f 125 120 121
|
||||
f 125 121 126
|
||||
f 128 125 126
|
||||
f 128 126 129
|
||||
f 128 129 27
|
||||
f 128 27 26
|
||||
f 130 127 95
|
||||
f 130 95 100
|
||||
f 6 130 100
|
||||
f 6 100 7
|
||||
f 5 6 7
|
||||
f 5 7 8
|
||||
f 24 5 8
|
||||
f 24 8 25
|
||||
f 30 24 25
|
||||
f 106 107 108
|
||||
f 106 108 109
|
||||
f 115 106 109
|
||||
f 115 109 116
|
||||
f 76 77 78
|
||||
f 76 78 79
|
||||
f 91 97 92
|
||||
f 89 91 92
|
||||
f 96 98 99
|
||||
f 96 99 97
|
||||
f 165 136 179
|
||||
f 165 179 166
|
||||
f 168 167 178
|
||||
f 168 178 177
|
||||
f 169 168 177
|
||||
f 169 177 65
|
||||
f 170 169 65
|
||||
f 170 65 64
|
||||
f 66 170 64
|
||||
f 66 57 170
|
||||
f 58 57 66
|
||||
f 57 58 59
|
||||
f 163 180 164
|
||||
f 164 180 136
|
||||
f 163 181 180
|
||||
f 162 181 163
|
||||
f 162 182 181
|
||||
f 175 183 135
|
||||
f 175 135 138
|
||||
f 175 138 176
|
||||
f 107 176 138
|
||||
f 161 183 182
|
||||
f 161 182 162
|
||||
f 161 135 183
|
||||
f 98 59 58
|
||||
f 167 166 179
|
||||
f 164 136 165
|
||||
f 167 179 178
|
||||
f 98 58 99
|
||||
f 87 89 90
|
||||
f 87 90 88
|
||||
f 84 87 88
|
||||
f 84 88 85
|
||||
f 81 84 85
|
||||
f 81 85 82
|
||||
f 78 81 82
|
||||
f 91 96 97
|
||||
f 89 92 90
|
||||
f 36 76 103
|
||||
f 78 82 79
|
||||
f 108 107 138
|
||||
f 123 93 94
|
||||
f 127 123 94
|
||||
f 123 119 93
|
||||
f 119 113 93
|
||||
f 119 112 113
|
||||
f 112 105 113
|
||||
f 104 102 105
|
||||
f 104 101 102
|
||||
f 102 101 37
|
||||
f 38 37 101
|
||||
f 37 38 39
|
||||
f 37 39 40
|
||||
f 45 42 41
|
||||
f 41 42 43
|
||||
f 43 42 157
|
||||
f 43 157 156
|
||||
f 43 156 145
|
||||
f 143 154 142
|
||||
f 142 154 152
|
||||
f 142 152 144
|
||||
f 144 152 146
|
||||
f 172 139 140
|
||||
f 172 140 173
|
||||
f 39 49 48
|
||||
f 48 49 46
|
||||
f 146 153 160
|
||||
f 146 160 148
|
||||
f 148 160 159
|
||||
f 148 159 147
|
||||
f 147 158 149
|
||||
f 149 158 133
|
||||
f 134 133 158
|
||||
f 13 132 14
|
||||
f 10 13 14
|
||||
f 133 132 131
|
||||
f 9 10 11
|
||||
f 9 11 12
|
||||
f 151 9 12
|
||||
f 151 12 184
|
||||
f 151 184 174
|
||||
f 150 151 174
|
||||
f 140 150 174
|
||||
f 13 131 132
|
||||
f 10 14 11
|
||||
f 133 134 132
|
||||
f 147 159 158
|
||||
f 140 174 173
|
||||
f 171 139 172
|
||||
f 171 137 139
|
||||
f 29 137 171
|
||||
f 29 28 137
|
||||
f 26 28 29
|
||||
f 146 152 153
|
||||
f 143 155 154
|
||||
f 145 155 143
|
||||
f 145 156 155
|
||||
f 45 46 42
|
||||
f 48 46 45
|
||||
f 39 48 40
|
||||
f 112 104 105
|
||||
f 127 94 95
|
||||
f 26 27 28
|
||||
f 120 115 116
|
||||
f 36 77 76
|
||||
f 30 25 31
|
||||
f 51 52 53
|
||||
f 70 69 74
|
||||
f 62 71 63
|
||||
f 103 50 36
|
||||
f 86 34 111
|
||||
f 2 44 3
|
||||
|
||||
vt -0.000000 0.964465
|
||||
vt 0.000000 0.106167
|
||||
vt 0.961764 1.000000
|
||||
vt 0.000500 0.100387
|
||||
vt 0.001944 0.094911
|
||||
vt 0.004256 0.089810
|
||||
vt 0.007360 0.085152
|
||||
vt 0.011176 0.081019
|
||||
vt 0.015628 0.077472
|
||||
vt 0.020636 0.074587
|
||||
vt 0.026124 0.072439
|
||||
vt 0.032020 0.071097
|
||||
vt 0.038236 0.070632
|
||||
vt 0.176304 0.070632
|
||||
vt 0.204000 0.081784
|
||||
vt 0.179508 0.070372
|
||||
vt 0.182544 0.069621
|
||||
vt 0.185372 0.068424
|
||||
vt 0.187952 0.066833
|
||||
vt 0.190244 0.064888
|
||||
vt 0.192208 0.062643
|
||||
vt 0.193808 0.060138
|
||||
vt 0.195000 0.057420
|
||||
vt 0.195744 0.054539
|
||||
vt 0.196000 0.051543
|
||||
vt 0.204000 0.007435
|
||||
vt 0.196000 0.021606
|
||||
vt 0.196304 0.018093
|
||||
vt 0.197180 0.014762
|
||||
vt 0.198588 0.011662
|
||||
vt 0.200476 0.008829
|
||||
vt 0.202796 0.006316
|
||||
vt 0.205500 0.004160
|
||||
vt 0.208548 0.002405
|
||||
vt 0.211884 0.001097
|
||||
vt 0.215468 0.000283
|
||||
vt 0.219248 0.000000
|
||||
vt 0.792000 0.007435
|
||||
vt 0.780752 0.000000
|
||||
vt 0.784536 0.000283
|
||||
vt 0.788116 0.001097
|
||||
vt 0.791456 0.002405
|
||||
vt 0.794500 0.004160
|
||||
vt 0.797208 0.006316
|
||||
vt 0.799528 0.008829
|
||||
vt 0.801412 0.011662
|
||||
vt 0.802820 0.014762
|
||||
vt 0.803696 0.018093
|
||||
vt 0.804000 0.021606
|
||||
vt 0.804000 0.052041
|
||||
vt 0.792000 0.081784
|
||||
vt 0.967984 0.999535
|
||||
vt 0.814628 0.068305
|
||||
vt 0.812048 0.066818
|
||||
vt 0.809756 0.064993
|
||||
vt 0.807788 0.062863
|
||||
vt 0.806192 0.060465
|
||||
vt 0.805000 0.057837
|
||||
vt 0.804256 0.055015
|
||||
vt 0.817456 0.069413
|
||||
vt 0.820488 0.070104
|
||||
vt 0.823692 0.070342
|
||||
vt 0.852092 0.070632
|
||||
vt 0.852092 0.070342
|
||||
vt 0.973876 0.998193
|
||||
vt 0.979364 0.996045
|
||||
vt 0.984376 0.993164
|
||||
vt 0.988828 0.989617
|
||||
vt 0.992644 0.985480
|
||||
vt 0.995744 0.980822
|
||||
vt 0.998056 0.975721
|
||||
vt 0.999500 0.970245
|
||||
vt 1.000000 0.964465
|
||||
vt 1.000000 0.106167
|
||||
vt 0.961764 0.070632
|
||||
vt 0.967984 0.071097
|
||||
vt 0.973876 0.072439
|
||||
vt 0.979364 0.074587
|
||||
vt 0.984376 0.077472
|
||||
vt 0.988828 0.081019
|
||||
vt 0.992644 0.085152
|
||||
vt 0.995744 0.089810
|
||||
vt 0.998056 0.094911
|
||||
vt 0.999500 0.100387
|
||||
vt 0.038236 1.000000
|
||||
vt 0.000500 0.970245
|
||||
vt 0.001944 0.975721
|
||||
vt 0.004256 0.980821
|
||||
vt 0.007360 0.985479
|
||||
vt 0.011176 0.989617
|
||||
vt 0.015628 0.993164
|
||||
vt 0.020636 0.996045
|
||||
vt 0.026124 0.998193
|
||||
vt 0.032020 0.999535
|
||||
|
||||
usemtl Mat_0
|
||||
f 23/1 34/2 36/3
|
||||
f 17/85 23/1 36/3
|
||||
f 16/93 2/92 17/85
|
||||
f 62/9 36/3 70/8
|
||||
f 70/8 36/3 69/7
|
||||
f 69/7 36/3 68/6
|
||||
f 67/5 36/3 35/4
|
||||
f 68/6 36/3 67/5
|
||||
f 60/10 36/3 62/9
|
||||
f 32/14 31/16 72/15
|
||||
f 32/14 72/15 36/3
|
||||
f 72/15 73/51 36/3
|
||||
f 77/52 36/3 73/51
|
||||
f 77/52 73/51 121/53
|
||||
f 116/60 77/52 121/53
|
||||
f 77/52 109/61 108/62
|
||||
f 108/62 135/63 77/52
|
||||
f 77/52 135/63 78/65
|
||||
f 89/69 135/63 91/70
|
||||
f 91/70 135/63 96/71
|
||||
f 96/71 135/63 98/72
|
||||
f 57/74 165/79 166/80
|
||||
f 57/74 166/80 167/81
|
||||
f 168/82 57/74 167/81
|
||||
f 57/74 59/73 135/63
|
||||
f 135/63 161/75 57/74
|
||||
f 161/75 162/76 57/74
|
||||
f 162/76 163/77 57/74
|
||||
f 57/74 163/77 164/78
|
||||
f 170/84 57/74 169/83
|
||||
f 169/83 57/74 168/82
|
||||
f 57/74 164/78 165/79
|
||||
f 59/73 98/72 135/63
|
||||
f 87/68 135/63 89/69
|
||||
f 81/66 135/63 84/67
|
||||
f 84/67 135/63 87/68
|
||||
f 78/65 135/63 81/66
|
||||
f 138/64 135/63 108/62
|
||||
f 25/17 8/18 72/15
|
||||
f 7/19 72/15 8/18
|
||||
f 7/19 100/20 72/15
|
||||
f 95/21 72/15 100/20
|
||||
f 95/21 94/22 72/15
|
||||
f 93/23 72/15 94/22
|
||||
f 105/25 72/15 113/24
|
||||
f 72/15 105/25 117/26
|
||||
f 102/27 117/26 105/25
|
||||
f 117/26 37/28 40/29
|
||||
f 117/26 40/29 48/30
|
||||
f 117/26 48/30 45/31
|
||||
f 41/32 117/26 45/31
|
||||
f 43/33 145/34 117/26
|
||||
f 145/34 143/35 117/26
|
||||
f 142/36 117/26 143/35
|
||||
f 146/39 141/38 144/37
|
||||
f 117/26 144/37 141/38
|
||||
f 141/38 73/51 117/26
|
||||
f 141/38 140/50 73/51
|
||||
f 139/59 73/51 140/50
|
||||
f 147/41 141/38 148/40
|
||||
f 149/42 141/38 147/41
|
||||
f 10/46 141/38 13/45
|
||||
f 131/44 13/45 141/38
|
||||
f 133/43 131/44 141/38
|
||||
f 9/47 141/38 10/46
|
||||
f 150/49 141/38 151/48
|
||||
f 151/48 141/38 9/47
|
||||
f 133/43 141/38 149/42
|
||||
f 137/58 28/57 73/51
|
||||
f 28/57 27/56 73/51
|
||||
f 139/59 137/58 73/51
|
||||
f 140/50 141/38 150/49
|
||||
f 146/39 148/40 141/38
|
||||
f 144/37 117/26 142/36
|
||||
f 43/33 117/26 41/32
|
||||
f 117/26 102/27 37/28
|
||||
f 93/23 113/24 72/15
|
||||
f 27/56 129/55 73/51
|
||||
f 129/55 126/54 73/51
|
||||
f 77/52 116/60 109/61
|
||||
f 126/54 121/53 73/51
|
||||
f 72/15 117/26 73/51
|
||||
f 25/17 72/15 31/16
|
||||
f 52/13 32/14 36/3
|
||||
f 53/12 52/13 36/3
|
||||
f 55/11 53/12 36/3
|
||||
f 55/11 36/3 60/10
|
||||
f 15/94 16/93 17/85
|
||||
f 34/2 35/4 36/3
|
||||
f 17/85 22/86 23/1
|
||||
f 17/85 21/87 22/86
|
||||
f 17/85 20/88 21/87
|
||||
f 17/85 19/89 20/88
|
||||
f 17/85 18/90 19/89
|
||||
f 17/85 1/91 18/90
|
||||
f 2/92 1/91 17/85
|
||||
|
||||
vt 0.992640 0.085152
|
||||
vt 0.038236 1.000000
|
||||
vt 0.015624 0.077472
|
||||
vt 0.995744 0.980822
|
||||
vt 0.979364 0.996045
|
||||
vt 0.967980 0.999535
|
||||
vt 0.973876 0.998193
|
||||
vt 0.961764 1.000000
|
||||
vt 0.988824 0.989617
|
||||
vt 0.992640 0.985480
|
||||
vt 0.984372 0.993164
|
||||
vt 1.000000 0.106167
|
||||
vt 0.998056 0.094911
|
||||
vt 0.995744 0.089810
|
||||
vt 0.999500 0.100387
|
||||
vt 0.999500 0.970245
|
||||
vt 1.000000 0.964465
|
||||
vt 0.998056 0.975721
|
||||
vt 0.001944 0.975721
|
||||
vt 0.015624 0.993164
|
||||
vt 0.026124 0.998193
|
||||
vt 0.032016 0.999535
|
||||
vt 0.020636 0.996045
|
||||
vt 0.007356 0.985479
|
||||
vt 0.011172 0.989617
|
||||
vt 0.004256 0.980821
|
||||
vt 0.001944 0.094911
|
||||
vt -0.000000 0.964465
|
||||
vt 0.000500 0.970245
|
||||
vt 0.000000 0.106167
|
||||
vt 0.000500 0.100387
|
||||
vt 0.007356 0.085152
|
||||
vt 0.004256 0.089810
|
||||
vt 0.011172 0.081019
|
||||
vt 0.147908 0.070632
|
||||
vt 0.026124 0.072439
|
||||
vt 0.020636 0.074587
|
||||
vt 0.032016 0.071097
|
||||
vt 0.038236 0.070632
|
||||
vt 0.973876 0.072439
|
||||
vt 0.823696 0.070632
|
||||
vt 0.176308 0.070342
|
||||
vt 0.147908 0.070342
|
||||
vt 0.820492 0.070372
|
||||
vt 0.179512 0.070104
|
||||
vt 0.817456 0.069621
|
||||
vt 0.182544 0.069413
|
||||
vt 0.814628 0.068424
|
||||
vt 0.185372 0.068305
|
||||
vt 0.812048 0.066833
|
||||
vt 0.187952 0.066818
|
||||
vt 0.809756 0.064889
|
||||
vt 0.190244 0.064993
|
||||
vt 0.807792 0.062643
|
||||
vt 0.192212 0.062862
|
||||
vt 0.806192 0.060138
|
||||
vt 0.193808 0.060465
|
||||
vt 0.805000 0.057420
|
||||
vt 0.195000 0.057836
|
||||
vt 0.804256 0.054539
|
||||
vt 0.195744 0.055015
|
||||
vt 0.794500 0.004160
|
||||
vt 0.196000 0.052041
|
||||
vt 0.208544 0.002405
|
||||
vt 0.198588 0.011662
|
||||
vt 0.202792 0.006316
|
||||
vt 0.205500 0.004160
|
||||
vt 0.200472 0.008829
|
||||
vt 0.196304 0.018093
|
||||
vt 0.196000 0.021606
|
||||
vt 0.197180 0.014762
|
||||
vt 0.780752 0.000000
|
||||
vt 0.215464 0.000283
|
||||
vt 0.211884 0.001097
|
||||
vt 0.219248 0.000000
|
||||
vt 0.788116 0.001097
|
||||
vt 0.784532 0.000283
|
||||
vt 0.791452 0.002405
|
||||
vt 0.804000 0.051543
|
||||
vt 0.802820 0.014762
|
||||
vt 0.799524 0.008829
|
||||
vt 0.797204 0.006316
|
||||
vt 0.801412 0.011662
|
||||
vt 0.804000 0.021606
|
||||
vt 0.803696 0.018093
|
||||
vt 0.967980 0.071097
|
||||
vt 0.961764 0.070632
|
||||
vt 0.984372 0.077472
|
||||
vt 0.979364 0.074587
|
||||
vt 0.988824 0.081019
|
||||
|
||||
usemtl Mat_0
|
||||
f 3/99 44/101 47/100
|
||||
f 3/99 47/100 103/96
|
||||
f 118/98 3/99 103/96
|
||||
f 74/95 118/98 103/96
|
||||
f 74/95 103/96 136/97
|
||||
f 136/97 175/129 74/95
|
||||
f 175/129 56/134 74/95
|
||||
f 56/134 63/182 74/95
|
||||
f 63/182 71/184 74/95
|
||||
f 74/95 75/108 80/107
|
||||
f 74/95 80/107 86/106
|
||||
f 80/107 83/109 86/106
|
||||
f 33/135 51/181 54/180
|
||||
f 128/147 26/149 127/148
|
||||
f 128/147 127/148 130/146
|
||||
f 106/139 24/140 30/138
|
||||
f 107/136 106/139 30/138
|
||||
f 103/96 76/116 79/115
|
||||
f 103/96 79/115 85/114
|
||||
f 103/96 85/114 97/113
|
||||
f 85/114 90/118 97/113
|
||||
f 90/118 92/120 97/113
|
||||
f 97/113 99/123 58/122
|
||||
f 97/113 58/122 65/121
|
||||
f 97/113 65/121 136/97
|
||||
f 65/121 178/126 136/97
|
||||
f 178/126 179/128 136/97
|
||||
f 136/97 180/131 181/130
|
||||
f 181/130 182/132 175/129
|
||||
f 182/132 183/133 175/129
|
||||
f 175/129 176/137 107/136
|
||||
f 175/129 107/136 33/135
|
||||
f 64/125 65/121 66/124
|
||||
f 65/121 177/127 178/126
|
||||
f 58/122 66/124 65/121
|
||||
f 85/114 88/119 90/118
|
||||
f 79/115 82/117 85/114
|
||||
f 106/139 115/141 24/140
|
||||
f 115/141 5/142 24/140
|
||||
f 115/141 120/143 5/142
|
||||
f 120/143 6/144 5/142
|
||||
f 125/145 130/146 6/144
|
||||
f 39/174 38/179 101/178
|
||||
f 172/155 173/157 157/156
|
||||
f 172/155 157/156 112/154
|
||||
f 171/153 172/155 112/154
|
||||
f 157/156 104/173 112/154
|
||||
f 157/156 39/174 104/173
|
||||
f 157/156 46/175 39/174
|
||||
f 46/175 49/177 39/174
|
||||
f 173/157 158/158 157/156
|
||||
f 158/158 152/166 157/156
|
||||
f 152/166 155/170 157/156
|
||||
f 158/158 160/167 152/166
|
||||
f 160/167 153/169 152/166
|
||||
f 132/160 134/161 158/158
|
||||
f 11/159 132/160 158/158
|
||||
f 11/159 14/162 132/160
|
||||
f 173/157 174/164 184/163
|
||||
f 173/157 184/163 11/159
|
||||
f 184/163 12/165 11/159
|
||||
f 158/158 159/168 160/167
|
||||
f 173/157 11/159 158/158
|
||||
f 29/151 171/153 119/152
|
||||
f 26/149 29/151 123/150
|
||||
f 152/166 154/171 155/170
|
||||
f 155/170 156/172 157/156
|
||||
f 157/156 42/176 46/175
|
||||
f 39/174 101/178 104/173
|
||||
f 171/153 112/154 119/152
|
||||
f 29/151 119/152 123/150
|
||||
f 26/149 123/150 127/148
|
||||
f 125/145 128/147 130/146
|
||||
f 120/143 125/145 6/144
|
||||
f 107/136 30/138 33/135
|
||||
f 33/135 54/180 56/134
|
||||
f 56/134 61/183 63/182
|
||||
f 175/129 33/135 56/134
|
||||
f 136/97 181/130 175/129
|
||||
f 103/96 97/113 136/97
|
||||
f 74/95 86/106 118/98
|
||||
f 86/106 110/110 118/98
|
||||
f 118/98 124/103 3/99
|
||||
f 47/100 50/102 103/96
|
||||
f 86/106 111/111 110/110
|
||||
f 110/110 114/112 118/98
|
||||
f 118/98 122/104 124/103
|
||||
f 124/103 4/105 3/99
|
||||
|
BIN
resources/meshes/artillery_hornet.stl
Normal file
BIN
resources/meshes/artillery_hornet.stl
Normal file
Binary file not shown.
2172
resources/meshes/dagoma_pro430.obj
Normal file
2172
resources/meshes/dagoma_pro430.obj
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
32787
resources/meshes/dagoma_sigma.obj
Normal file
32787
resources/meshes/dagoma_sigma.obj
Normal file
File diff suppressed because it is too large
Load Diff
16
resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg
Normal file
16
resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg
Normal file
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = ankermake_m5
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
quality_type = draft
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
layer_height = 0.28
|
||||
layer_height_0 = 0.28
|
||||
|
16
resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg
Normal file
16
resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg
Normal file
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = ankermake_m5
|
||||
name = Fine
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
quality_type = fine
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
layer_height = 0.12
|
||||
layer_height_0 = 0.2
|
||||
|
16
resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg
Normal file
16
resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg
Normal file
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = ankermake_m5
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
quality_type = normal
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
layer_height = 0.2
|
||||
layer_height_0 = 0.24
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Dynamic Quality
|
||||
definition = biqu_base
|
||||
name = Dynamic Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = adaptive
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = adaptive
|
||||
material = generic_tpu_175
|
||||
variant = 0.3mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Standard Quality
|
||||
definition = biqu_base
|
||||
name = Standard Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = standard
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = standard
|
||||
material = generic_tpu_175
|
||||
variant = 0.3mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Super Quality
|
||||
definition = biqu_base
|
||||
name = Super Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = super
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = super
|
||||
material = generic_tpu_175
|
||||
variant = 0.3mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Dynamic Quality
|
||||
definition = biqu_base
|
||||
name = Dynamic Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = adaptive
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = adaptive
|
||||
material = generic_tpu_175
|
||||
variant = 0.4mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Standard Quality
|
||||
definition = biqu_base
|
||||
name = Standard Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = standard
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = standard
|
||||
material = generic_tpu_175
|
||||
variant = 0.4mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Super Quality
|
||||
definition = biqu_base
|
||||
name = Super Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = super
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = super
|
||||
material = generic_tpu_175
|
||||
variant = 0.4mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Dynamic Quality
|
||||
definition = biqu_base
|
||||
name = Dynamic Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = adaptive
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = adaptive
|
||||
material = generic_tpu_175
|
||||
variant = 0.5mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Standard Quality
|
||||
definition = biqu_base
|
||||
name = Standard Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = standard
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = standard
|
||||
material = generic_tpu_175
|
||||
variant = 0.5mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Super Quality
|
||||
definition = biqu_base
|
||||
name = Super Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = super
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = super
|
||||
material = generic_tpu_175
|
||||
variant = 0.5mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Standard Quality
|
||||
definition = biqu_base
|
||||
name = Standard Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = standard
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = standard
|
||||
material = generic_tpu_175
|
||||
variant = 0.6mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Draft Quality
|
||||
definition = biqu_base
|
||||
name = Draft Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = draft
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = draft
|
||||
material = generic_tpu_175
|
||||
variant = 0.8mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -1,13 +1,15 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Draft Quality
|
||||
definition = biqu_base
|
||||
name = Draft Quality
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu_175
|
||||
quality_type = draft
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = draft
|
||||
material = generic_tpu_175
|
||||
variant = 1.0mm Nozzle
|
||||
|
||||
[values]
|
||||
speed_print = 30
|
||||
|
||||
|
@ -0,0 +1,27 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Fine
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.1
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.4mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
acceleration_infill = 2500
|
||||
acceleration_roofing = 1200
|
||||
acceleration_topbottom = 1200
|
||||
acceleration_wall_0 = 650.0
|
||||
acceleration_wall_x = 1200
|
||||
small_feature_speed_factor = 75
|
||||
speed_print = 50.0
|
||||
speed_roofing = 45.0
|
||||
speed_topbottom = 45.0
|
||||
speed_wall_0 = 35.0
|
||||
speed_wall_x = 45.0
|
||||
support_z_distance = 0.2
|
||||
|
@ -0,0 +1,25 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.2
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.4mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
acceleration_infill = 3000
|
||||
acceleration_roofing = 1600
|
||||
acceleration_topbottom = 1500
|
||||
acceleration_wall_0 = 850
|
||||
acceleration_wall_x = 1600
|
||||
small_feature_speed_factor = 60
|
||||
speed_print = 70
|
||||
speed_wall_0 = 50
|
||||
speed_wall_x = 60
|
||||
support_z_distance = 0.1
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.3
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.4mm
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,21 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.8mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
material_flow_layer_0 = 110
|
||||
material_print_temperature = =default_material_print_temperature + 35
|
||||
material_print_temperature_layer_0 = =default_material_print_temperature + 30
|
||||
speed_infill = 35
|
||||
speed_print = 45
|
||||
speed_wall_0 = =speed_wall
|
||||
|
@ -0,0 +1,20 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.6
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.8mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature + 60
|
||||
material_print_temperature_layer_0 = =default_material_print_temperature + 25
|
||||
speed_infill = 35
|
||||
speed_print = 50
|
||||
speed_wall_0 = 20
|
||||
|
@ -0,0 +1,19 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 1.0mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
material_flow_layer_0 = 110
|
||||
material_print_temperature = =default_material_print_temperature + 55
|
||||
speed_print = 45
|
||||
speed_wall_0 = 30
|
||||
|
@ -0,0 +1,19 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.6
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 1.0mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
material_flow_layer_0 = 150
|
||||
material_print_temperature = =default_material_print_temperature + 60
|
||||
speed_print = 50
|
||||
speed_wall_0 = 20.0
|
||||
|
@ -0,0 +1,21 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Coarse
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.8
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 1.0mm
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
bottom_layers = 2
|
||||
material_flow_layer_0 = 140
|
||||
material_print_temperature = =default_material_print_temperature + 65
|
||||
speed_print = 45
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
|
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Fine
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.1
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
layer_height = 0.1
|
||||
|
@ -1,20 +1,16 @@
|
||||
[general]
|
||||
|
||||
version = 4
|
||||
name = High Quality
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.2
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = high
|
||||
weight = -1
|
||||
global_quality = True
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
|
||||
layer_height = 0.2
|
||||
layer_height_0 = =round(0.38 * machine_nozzle_size, 2)
|
||||
|
||||
top_bottom_thickness = =6 * layer_height
|
@ -1,20 +1,16 @@
|
||||
[general]
|
||||
|
||||
version = 4
|
||||
name = Medium Quality
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.3
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = medium
|
||||
weight = -2
|
||||
global_quality = True
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
|
||||
layer_height = 0.3
|
||||
layer_height_0 = =round(0.38 * machine_nozzle_size, 2)
|
||||
|
||||
top_bottom_thickness = =4 * layer_height
|
@ -1,20 +1,16 @@
|
||||
[general]
|
||||
|
||||
version = 4
|
||||
name = Low Quality
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = low
|
||||
weight = -3
|
||||
global_quality = True
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
|
||||
layer_height = 0.4
|
||||
layer_height_0 = =round(0.38 * machine_nozzle_size, 2)
|
||||
|
||||
top_bottom_thickness = =3 * layer_height
|
@ -1,20 +1,16 @@
|
||||
[general]
|
||||
|
||||
version = 4
|
||||
name = Coarse Quality
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.6
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = coarse
|
||||
weight = -4
|
||||
global_quality = True
|
||||
weight = -3
|
||||
|
||||
[values]
|
||||
|
||||
layer_height = 0.6
|
||||
layer_height_0 = =round(0.38 * machine_nozzle_size, 2)
|
||||
|
||||
top_bottom_thickness = =2 * layer_height
|
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Coarse
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.8
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = -4
|
||||
|
||||
[values]
|
||||
layer_height = 0.8
|
||||
|
@ -0,0 +1,31 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Fine
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.1
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.4mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
acceleration_infill = 2500
|
||||
acceleration_roofing = 1200
|
||||
acceleration_topbottom = 1200
|
||||
acceleration_wall_0 = 650.0
|
||||
acceleration_wall_x = 1200
|
||||
material_print_temperature = =default_material_print_temperature + 30
|
||||
retraction_amount = 3.0
|
||||
retraction_speed = 40
|
||||
speed_print = 50.0
|
||||
speed_roofing = 45.0
|
||||
speed_topbottom = 45.0
|
||||
speed_wall_0 = 35.0
|
||||
speed_wall_x = 45.0
|
||||
support_interface_enable = False
|
||||
support_top_distance = 0.2
|
||||
support_z_distance = 0.2
|
||||
|
@ -0,0 +1,28 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.2
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.4mm
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
acceleration_infill = 3000
|
||||
acceleration_roofing = 1600
|
||||
acceleration_topbottom = 1500
|
||||
acceleration_wall_0 = 850
|
||||
acceleration_wall_x = 1600
|
||||
material_print_temperature = =default_material_print_temperature + 33
|
||||
retraction_amount = 5.0
|
||||
retraction_speed = 40.0
|
||||
speed_print = 70
|
||||
speed_wall_0 = 50
|
||||
speed_wall_x = 60
|
||||
support_top_distance = 0.1
|
||||
support_z_distance = 0.1
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.3
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.4mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,22 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.8mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
gradual_infill_step_height = 2
|
||||
gradual_infill_steps = 2
|
||||
infill_sparse_density = 20
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
retraction_amount = 3.5
|
||||
retraction_speed = 45
|
||||
top_layers = 4
|
||||
|
@ -0,0 +1,26 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_bowden
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.6
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.8mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
bottom_layers = 2
|
||||
infill_overlap = 5
|
||||
infill_sparse_density = 7
|
||||
material_flow = 100
|
||||
material_flow_layer_0 = 120
|
||||
material_print_temperature = =default_material_print_temperature + 60
|
||||
skin_overlap = 10
|
||||
speed_wall_x = 25
|
||||
top_layers = 3
|
||||
wall_line_count = 2
|
||||
z_seam_corner = z_seam_corner_none
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Fine
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.1
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.4mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,22 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.2
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.4mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
infill_pattern = triangles
|
||||
infill_sparse_density = 15
|
||||
material_bed_temperature = 70
|
||||
material_print_temperature = =default_material_print_temperature + 25
|
||||
retraction_amount = 1.5
|
||||
speed_print = 65
|
||||
wall_line_count = 3
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.3
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.4mm
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,22 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tpu
|
||||
quality_type = h0.2
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.4mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
infill_pattern = gyroid
|
||||
infill_sparse_density = 10
|
||||
material_bed_temperature = 60
|
||||
material_flow = 105
|
||||
material_print_temperature = =default_material_print_temperature - 8
|
||||
retraction_amount = 3
|
||||
speed_print = 30.0
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.8mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.6
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 0.8mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 1.0mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.6
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 1.0mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Coarse
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.8
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Brass 1.0mm
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Fine
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.1
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
layer_height = 0.1
|
||||
|
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.2
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
layer_height = 0.2
|
||||
|
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.3
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
layer_height = 0.3
|
||||
|
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
layer_height = 0.4
|
||||
|
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.6
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = -3
|
||||
|
||||
[values]
|
||||
layer_height = 0.6
|
||||
|
@ -0,0 +1,16 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Coarse
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
material = generic_pla
|
||||
quality_type = h0.8
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = -4
|
||||
|
||||
[values]
|
||||
layer_height = 0.8
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Fine
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.1
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.4mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.2
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.4mm
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.3
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.4mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.8mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
|
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_pro_430_directdrive
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.6
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = Steel 0.8mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
|
19
resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg
Normal file
19
resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg
Normal file
@ -0,0 +1,19 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Fine
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.1
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = 0.4mm
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature
|
||||
retraction_amount = 2.5
|
||||
small_feature_speed_factor = 75.0
|
||||
small_feature_speed_factor_0 = 35.0
|
||||
|
19
resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg
Normal file
19
resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg
Normal file
@ -0,0 +1,19 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.2
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = 0.4mm
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
retraction_amount = 3.5
|
||||
small_feature_speed_factor = 25.0
|
||||
small_feature_speed_factor_0 = =small_feature_speed_factor
|
||||
|
22
resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg
Normal file
22
resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg
Normal file
@ -0,0 +1,22 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.3
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = 0.4mm
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
speed_infill = 40
|
||||
speed_layer_0 = 17
|
||||
speed_print = 40
|
||||
speed_topbottom = 40
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
|
22
resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg
Normal file
22
resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg
Normal file
@ -0,0 +1,22 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = 0.8mm
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
speed_infill = 40
|
||||
speed_layer_0 = 17
|
||||
speed_print = 40
|
||||
speed_topbottom = 40
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
|
17
resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg
Normal file
17
resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg
Normal file
@ -0,0 +1,17 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Draft
|
||||
definition = dagoma_sigma
|
||||
|
||||
[metadata]
|
||||
setting_version = 20
|
||||
type = quality
|
||||
quality_type = h0.6
|
||||
weight = -3
|
||||
material = generic_pla
|
||||
variant = 0.8mm
|
||||
|
||||
[values]
|
||||
material_flow_layer_0 = 80
|
||||
material_print_temperature = =default_material_print_temperature + 35
|
||||
material_print_temperature_layer_0 = =default_material_print_temperature + 30
|
18
resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg
Normal file
18
resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg
Normal file
@ -0,0 +1,18 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Coarse
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = h0.8
|
||||
setting_version = 20
|
||||
type = quality
|
||||
variant = 0.8mm
|
||||
weight = -4
|
||||
|
||||
[values]
|
||||
material_flow_layer_0 = 80
|
||||
material_print_temperature = =default_material_print_temperature + 40
|
||||
material_print_temperature_layer_0 = =default_material_print_temperature + 35
|
||||
|
15
resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg
Normal file
15
resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg
Normal file
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Fine
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
quality_type = h0.1
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = 1
|
||||
|
||||
[values]
|
||||
layer_height = 0.1
|
||||
|
15
resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg
Normal file
15
resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg
Normal file
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Normal
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
quality_type = h0.2
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = 0
|
||||
|
||||
[values]
|
||||
layer_height = 0.2
|
||||
|
15
resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg
Normal file
15
resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg
Normal file
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
quality_type = h0.3
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = -1
|
||||
|
||||
[values]
|
||||
layer_height = 0.3
|
||||
|
15
resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg
Normal file
15
resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg
Normal file
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Very Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
quality_type = h0.4
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
layer_height = 0.4
|
||||
|
15
resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg
Normal file
15
resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg
Normal file
@ -0,0 +1,15 @@
|
||||
[general]
|
||||
definition = dagoma_sigma
|
||||
name = Draft
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
global_quality = True
|
||||
quality_type = h0.6
|
||||
setting_version = 20
|
||||
type = quality
|
||||
weight = -3
|
||||
|
||||
[values]
|
||||
layer_height = 0.6
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user