mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-19 23:01:22 -06:00
Creality Ender 3 and Prusa Mk3s 0,2;0,4,06 and 0,8 profiles (#4029)
* Ender 3 - All nozzles and Quality Profiles Ender 3 Profiles. 0.20 Nozzle 0.40 Nozzle 0.60 Nozzle 0.80 Nozzle 0.12 to 0.24 Quality Profiles for every Nozzle in Process Folder * all all * Ender 3 Profiles Ender 3 Profiles for: 0,2;0,4;0,6;0,8 5 Different and independent Quality profiles for each Nozzle. Fine, Optimal, Standard, Draft and Superdraft * aa aa * aa aa * aa aa * Prusa Mk3s Profiles Prusa Mk3s Profiles * Mk3s FIXED mk3s FIXED --------- Co-authored-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
parent
cc55c2dde7
commit
31d1d03578
58 changed files with 3785 additions and 28 deletions
57
resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json
Normal file
57
resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json
Normal file
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Prusa MK3S 0.25 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_machine_common",
|
||||
"printer_model": "MK3S",
|
||||
"default_filament_profile": [
|
||||
"Prusa Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.20mm Speed @MK3S 0.25",
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"bed_exclude_area": [
|
||||
"0x0"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x210",
|
||||
"0x210"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"2500",
|
||||
"2500"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"120",
|
||||
"120"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"200",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"200",
|
||||
"200"
|
||||
],
|
||||
"host_type": "prusalink",
|
||||
"printable_height": "210",
|
||||
"machine_pause_gcode": "M601",
|
||||
"machine_start_gcode": "M862.3 P \"[printer_model]\" ; printer model check\nM862.1 P[nozzle_diameter] ; nozzle diameter check\nM115 U3.13.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n{if filament_settings_id[initial_tool]=~/.*Prusament PA11.*/}\nG1 Z0.3 F720\nG1 Y-3 F1000 ; go outside print area\nG92 E0\nG1 X60 E9 F1000 ; intro line\nG1 X100 E9 F1000 ; intro line\n{else}\nG1 Z0.2 F720\nG1 Y-3 F1000 ; go outside print area\nG92 E0\nG1 X60 E9 F1000 ; intro line\nG1 X100 E12.5 F1000 ; intro line\n{endif}\nG92 E0\nM221 S{if layer_height<0.075}100{else}95{endif}",
|
||||
"machine_end_gcode": "{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+1, max_print_height)} F720 ; Move print head up{endif}\nG1 X0 Y200 F3600 ; park\n{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+49, max_print_height)} F720 ; Move print head further up{endif}\nG4 ; wait\nM221 S100 ; reset flow\nM900 K0 ; reset LA\n{if print_settings_id=~/.*(DETAIL @MK3S|QUALITY @MK3S|@0.25 nozzle MK3).*/}M907 E538 ; reset extruder motor current{endif}\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nM84 ; disable motors\n; max_layer_z = [max_layer_z]",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
|
||||
"printer_notes": "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK3\n",
|
||||
"scan_first_layer": "0",
|
||||
"machine_load_filament_time": "17",
|
||||
"machine_unload_filament_time": "16",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"thumbnails": [
|
||||
"160x120"
|
||||
],
|
||||
"auxiliary_fan": "0"
|
||||
}
|
|
@ -9,7 +9,7 @@
|
|||
"default_filament_profile": [
|
||||
"Prusa Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.20mm Speed @MK3S",
|
||||
"default_print_profile": "0.20mm Speed @MK3S 0.4",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
|
|
57
resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json
Normal file
57
resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json
Normal file
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Prusa MK3S 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_machine_common",
|
||||
"printer_model": "MK3S",
|
||||
"default_filament_profile": [
|
||||
"Prusa Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.30mm Quality @MK3S 0.6",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"bed_exclude_area": [
|
||||
"0x0"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x210",
|
||||
"0x210"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"2500",
|
||||
"2500"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"120",
|
||||
"120"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"200",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"200",
|
||||
"200"
|
||||
],
|
||||
"host_type": "prusalink",
|
||||
"printable_height": "210",
|
||||
"machine_pause_gcode": "M601",
|
||||
"machine_start_gcode": "M862.3 P \"[printer_model]\" ; printer model check\nM862.1 P[nozzle_diameter] ; nozzle diameter check\nM115 U3.13.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n{if filament_settings_id[initial_tool]=~/.*Prusament PA11.*/}\nG1 Z0.3 F720\nG1 Y-3 F1000 ; go outside print area\nG92 E0\nG1 X60 E9 F1000 ; intro line\nG1 X100 E9 F1000 ; intro line\n{else}\nG1 Z0.2 F720\nG1 Y-3 F1000 ; go outside print area\nG92 E0\nG1 X60 E9 F1000 ; intro line\nG1 X100 E12.5 F1000 ; intro line\n{endif}\nG92 E0\nM221 S{if layer_height<0.075}100{else}95{endif}",
|
||||
"machine_end_gcode": "{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+1, max_print_height)} F720 ; Move print head up{endif}\nG1 X0 Y200 F3600 ; park\n{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+49, max_print_height)} F720 ; Move print head further up{endif}\nG4 ; wait\nM221 S100 ; reset flow\nM900 K0 ; reset LA\n{if print_settings_id=~/.*(DETAIL @MK3S|QUALITY @MK3S|@0.25 nozzle MK3).*/}M907 E538 ; reset extruder motor current{endif}\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nM84 ; disable motors\n; max_layer_z = [max_layer_z]",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
|
||||
"printer_notes": "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK3\n",
|
||||
"scan_first_layer": "0",
|
||||
"machine_load_filament_time": "17",
|
||||
"machine_unload_filament_time": "16",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"thumbnails": [
|
||||
"160x120"
|
||||
],
|
||||
"auxiliary_fan": "0"
|
||||
}
|
57
resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json
Normal file
57
resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json
Normal file
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Prusa MK3S 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_machine_common",
|
||||
"printer_model": "MK3S",
|
||||
"default_filament_profile": [
|
||||
"Prusa Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.15mm Detail @MK3S 0.8",
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"bed_exclude_area": [
|
||||
"0x0"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x210",
|
||||
"0x210"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"2500",
|
||||
"2500"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"120",
|
||||
"120"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"200",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"200",
|
||||
"200"
|
||||
],
|
||||
"host_type": "prusalink",
|
||||
"printable_height": "210",
|
||||
"machine_pause_gcode": "M601",
|
||||
"machine_start_gcode": "M862.3 P \"[printer_model]\" ; printer model check\nM862.1 P[nozzle_diameter] ; nozzle diameter check\nM115 U3.13.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n{if filament_settings_id[initial_tool]=~/.*Prusament PA11.*/}\nG1 Z0.3 F720\nG1 Y-3 F1000 ; go outside print area\nG92 E0\nG1 X60 E9 F1000 ; intro line\nG1 X100 E9 F1000 ; intro line\n{else}\nG1 Z0.2 F720\nG1 Y-3 F1000 ; go outside print area\nG92 E0\nG1 X60 E9 F1000 ; intro line\nG1 X100 E12.5 F1000 ; intro line\n{endif}\nG92 E0\nM221 S{if layer_height<0.075}100{else}95{endif}",
|
||||
"machine_end_gcode": "{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+1, max_print_height)} F720 ; Move print head up{endif}\nG1 X0 Y200 F3600 ; park\n{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+49, max_print_height)} F720 ; Move print head further up{endif}\nG4 ; wait\nM221 S100 ; reset flow\nM900 K0 ; reset LA\n{if print_settings_id=~/.*(DETAIL @MK3S|QUALITY @MK3S|@0.25 nozzle MK3).*/}M907 E538 ; reset extruder motor current{endif}\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nM84 ; disable motors\n; max_layer_z = [max_layer_z]",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
|
||||
"printer_notes": "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK3\n",
|
||||
"scan_first_layer": "0",
|
||||
"machine_load_filament_time": "17",
|
||||
"machine_unload_filament_time": "16",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"thumbnails": [
|
||||
"160x120"
|
||||
],
|
||||
"auxiliary_fan": "0"
|
||||
}
|
|
@ -2,11 +2,11 @@
|
|||
"type": "machine_model",
|
||||
"name": "Prusa MK3S",
|
||||
"model_id": "MK3S",
|
||||
"nozzle_diameter": "0.4",
|
||||
"nozzle_diameter": "0.25;0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Prusa",
|
||||
"bed_model": "mk3_bed.stl",
|
||||
"bed_texture": "mk3.svg",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Prusa Generic ABS;Prusa Generic PLA;Prusa Generic PLA-CF;Prusa Generic PETG;Prusa Generic TPU;Prusa Generic ASA;Prusa Generic PC;Prusa Generic PVA;Prusa Generic PA;Prusa Generic PA-CF"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.05mm UltraDetail @MK3S 0.25",
|
||||
"name": "0.05mm UltraDetail @MK3S 0.25",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "10",
|
||||
"bridge_acceleration": "300",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "20",
|
||||
"inner_wall_acceleration": "300",
|
||||
"inner_wall_speed": "30",
|
||||
"internal_solid_infill_speed": "30",
|
||||
"layer_height": "0.05",
|
||||
"outer_wall_speed": "20",
|
||||
"raft_contact_distance": "0.1",
|
||||
"small_perimeter_speed": "20",
|
||||
"sparse_infill_acceleration": "800",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "30",
|
||||
"support_base_pattern_spacing": "1.5",
|
||||
"support_bottom_z_distance": "0.1",
|
||||
"support_interface_speed": "24",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_speed": "30",
|
||||
"support_top_z_distance": "0.1",
|
||||
"thick_bridges": "1",
|
||||
"top_shell_layers": "14",
|
||||
"top_surface_speed": "20",
|
||||
"wall_loops": "3",
|
||||
"initial_layer_infill_speed": "30",
|
||||
"initial_layer_line_width": "0.3",
|
||||
"inner_wall_line_width": "0.25",
|
||||
"internal_solid_infill_line_width": "0.25",
|
||||
"is_custom_defined": "0",
|
||||
"line_width": "0.25",
|
||||
"outer_wall_line_width": "0.25",
|
||||
"sparse_infill_line_width": "0.25",
|
||||
"support_line_width": "0.25",
|
||||
"top_surface_line_width": "0.25",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.25 nozzle"
|
||||
]
|
||||
|
||||
}
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.05mm UltraDetail @MK3S 0.4",
|
||||
"name": "0.05mm UltraDetail @MK3S 0.4",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "10",
|
||||
"bridge_acceleration": "300",
|
||||
"bridge_flow": "0.6",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "20",
|
||||
"inner_wall_acceleration": "300",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "30",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"internal_solid_infill_speed": "30",
|
||||
"layer_height": "0.05",
|
||||
"line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"outer_wall_speed": "20",
|
||||
"raft_contact_distance": "0.1",
|
||||
"small_perimeter_speed": "20",
|
||||
"sparse_infill_acceleration": "800",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "30",
|
||||
"support_base_pattern_spacing": "1.5",
|
||||
"support_bottom_z_distance": "0.1",
|
||||
"support_interface_speed": "24",
|
||||
"support_line_width": "0.33",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_speed": "30",
|
||||
"support_top_z_distance": "0.1",
|
||||
"thick_bridges": "1",
|
||||
"top_shell_layers": "14",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_surface_speed": "20",
|
||||
"wall_loops": "3",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
|
||||
}
|
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.07mm UltraDetail @MK3S 0.25",
|
||||
"name": "0.07mm UltraDetail @MK3S 0.25",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "8",
|
||||
"bridge_acceleration": "300",
|
||||
"bridge_flow": "0.6",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "20",
|
||||
"inner_wall_acceleration": "300",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "30",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"layer_height": "0.07",
|
||||
"line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"outer_wall_speed": "20",
|
||||
"raft_contact_distance": "0.1",
|
||||
"small_perimeter_speed": "20",
|
||||
"sparse_infill_acceleration": "800",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"support_base_pattern_spacing": "1.5",
|
||||
"support_bottom_z_distance": "0.1",
|
||||
"support_interface_speed": "32",
|
||||
"support_line_width": "0.33",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_top_z_distance": "0.1",
|
||||
"thick_bridges": "1",
|
||||
"top_shell_layers": "10",
|
||||
"top_surface_line_width": "0.4",
|
||||
"internal_solid_infill_speed": "30",
|
||||
"is_custom_defined": "0",
|
||||
"sparse_infill_speed": "30",
|
||||
"support_speed": "20",
|
||||
"top_surface_speed": "20",
|
||||
"wall_loops": "3",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.25 nozzle"
|
||||
]
|
||||
|
||||
}
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.07mm UltraDetail @MK3S 0.4",
|
||||
"name": "0.07mm UltraDetail @MK3S 0.4",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "8",
|
||||
"bridge_acceleration": "300",
|
||||
"bridge_flow": "0.6",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "20",
|
||||
"inner_wall_acceleration": "300",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "30",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"internal_solid_infill_speed": "40",
|
||||
"layer_height": "0.07",
|
||||
"line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"outer_wall_speed": "20",
|
||||
"raft_contact_distance": "0.1",
|
||||
"small_perimeter_speed": "20",
|
||||
"sparse_infill_acceleration": "800",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "40",
|
||||
"support_base_pattern_spacing": "1.5",
|
||||
"support_bottom_z_distance": "0.1",
|
||||
"support_interface_speed": "32",
|
||||
"support_line_width": "0.33",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_speed": "40",
|
||||
"support_top_z_distance": "0.1",
|
||||
"thick_bridges": "1",
|
||||
"top_shell_layers": "10",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_surface_speed": "30",
|
||||
"wall_loops": "3",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.10mm Detail @MK3S 0.25",
|
||||
"name": "0.10mm Detail @MK3S 0.25",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "7",
|
||||
"bridge_acceleration": "800",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "20",
|
||||
"layer_height": "0.1",
|
||||
"raft_contact_distance": "0.15",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.17",
|
||||
"support_interface_speed": "40",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_top_z_distance": "0.17",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "8",
|
||||
"gap_infill_speed": "30",
|
||||
"initial_layer_acceleration": "500",
|
||||
"initial_layer_infill_speed": "20",
|
||||
"initial_layer_line_width": "0.3",
|
||||
"inner_wall_acceleration": "500",
|
||||
"inner_wall_line_width": "0.25",
|
||||
"inner_wall_speed": "30",
|
||||
"internal_solid_infill_line_width": "0.25",
|
||||
"internal_solid_infill_speed": "45",
|
||||
"is_custom_defined": "0",
|
||||
"line_width": "0.25",
|
||||
"outer_wall_line_width": "0.25",
|
||||
"outer_wall_speed": "20",
|
||||
"small_perimeter_speed": "30",
|
||||
"sparse_infill_line_width": "0.25",
|
||||
"sparse_infill_speed": "45",
|
||||
"support_line_width": "0.25",
|
||||
"support_speed": "40",
|
||||
"top_surface_line_width": "0.25",
|
||||
"top_surface_speed": "30",
|
||||
"wall_loops": "3",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.25 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.10mm Detail @MK3S 0.4",
|
||||
"name": "0.10mm Detail @MK3S 0.4",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "7",
|
||||
"bridge_acceleration": "800",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "20",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "600",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "45",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"internal_solid_infill_speed": "80",
|
||||
"layer_height": "0.1",
|
||||
"line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"outer_wall_speed": "25",
|
||||
"raft_contact_distance": "0.15",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "80",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.17",
|
||||
"support_interface_speed": "40",
|
||||
"support_line_width": "0.35",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_speed": "50",
|
||||
"support_top_z_distance": "0.17",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "8",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_surface_speed": "40",
|
||||
"wall_loops": "3",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.15mm Detail @MK3S 0.6",
|
||||
"name": "0.15mm Detail @MK3S 0.6",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "5",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "800",
|
||||
"layer_height": "0.15",
|
||||
"outer_wall_speed": "25",
|
||||
"raft_contact_distance": "0.2",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "40",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "6",
|
||||
"bottom_shell_thickness": "0.6",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"infill_wall_overlap": "15%",
|
||||
"initial_layer_line_width": "0.65",
|
||||
"inner_wall_line_width": "0.65",
|
||||
"inner_wall_speed": "40",
|
||||
"internal_solid_infill_line_width": "0.65",
|
||||
"internal_solid_infill_speed": "70",
|
||||
"is_custom_defined": "0",
|
||||
"line_width": "0.65",
|
||||
"outer_wall_line_width": "0.65",
|
||||
"sparse_infill_line_width": "0.65",
|
||||
"sparse_infill_speed": "70",
|
||||
"support_line_width": "0.55",
|
||||
"support_speed": "40",
|
||||
"top_shell_thickness": "0.9",
|
||||
"top_surface_line_width": "0.6",
|
||||
"top_surface_speed": "45",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.6 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.15mm Quality @MK3S 0.25",
|
||||
"name": "0.15mm Quality @MK3S 0.25",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "5",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "25",
|
||||
"layer_height": "0.15",
|
||||
"raft_contact_distance": "0.2",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "40",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "6",
|
||||
"bridge_acceleration": "500",
|
||||
"gap_infill_speed": "30",
|
||||
"initial_layer_acceleration": "500",
|
||||
"initial_layer_infill_speed": "30",
|
||||
"initial_layer_line_width": "0.3",
|
||||
"inner_wall_acceleration": "500",
|
||||
"inner_wall_line_width": "0.27",
|
||||
"inner_wall_speed": "30",
|
||||
"internal_solid_infill_line_width": "0.27",
|
||||
"internal_solid_infill_speed": "45",
|
||||
"is_custom_defined": "0",
|
||||
"line_width": "0.25",
|
||||
"outer_wall_line_width": "0.27",
|
||||
"outer_wall_speed": "20",
|
||||
"small_perimeter_speed": "20",
|
||||
"sparse_infill_line_width": "0.27",
|
||||
"sparse_infill_speed": "45",
|
||||
"support_line_width": "0.25",
|
||||
"support_speed": "15",
|
||||
"top_surface_line_width": "0.25",
|
||||
"top_surface_speed": "30",
|
||||
"wall_loops": "3",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.25 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.15mm Quality @MK3S 0.4",
|
||||
"name": "0.15mm Quality @MK3S 0.4",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "5",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "800",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "45",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"internal_solid_infill_speed": "80",
|
||||
"layer_height": "0.15",
|
||||
"line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"outer_wall_speed": "25",
|
||||
"raft_contact_distance": "0.2",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"sparse_infill_pattern": "gyroid",
|
||||
"sparse_infill_speed": "80",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "40",
|
||||
"support_line_width": "0.35",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_speed": "50",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "6",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_surface_speed": "40",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
43
resources/profiles/Prusa/process/0.15mm Speed @MK3S 0.4.json
Normal file
43
resources/profiles/Prusa/process/0.15mm Speed @MK3S 0.4.json
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.15mm Speed @MK3S",
|
||||
"name": "0.15mm Speed @MK3S",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "5",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "800",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "60",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"layer_height": "0.15",
|
||||
"line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"outer_wall_speed": "35",
|
||||
"raft_contact_distance": "0.2",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"sparse_infill_speed": "200",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "40",
|
||||
"support_line_width": "0.35",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_speed": "50",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "6",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_surface_speed": "50",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.20mm Detail @MK3S 0.6",
|
||||
"name": "0.20mm Detail @MK3S 0.6",
|
||||
"from": "system",
|
||||
"renamed_from":"0.20mm Standard @MK3S",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "4",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "800",
|
||||
"inner_wall_speed": "60",
|
||||
"layer_height": "0.2",
|
||||
"raft_contact_distance": "0.2",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "40",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "5",
|
||||
"bottom_shell_thickness": "0.6",
|
||||
"bridge_flow": "1",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"infill_wall_overlap": "15%",
|
||||
"initial_layer_infill_speed": "40",
|
||||
"initial_layer_line_width": "0.65",
|
||||
"inner_wall_line_width": "0.65",
|
||||
"internal_solid_infill_line_width": "0.65",
|
||||
"internal_solid_infill_speed": "70",
|
||||
"is_custom_defined": "0",
|
||||
"line_width": "0.65",
|
||||
"outer_wall_line_width": "0.65",
|
||||
"outer_wall_speed": "45",
|
||||
"small_perimeter_speed": "35",
|
||||
"sparse_infill_line_width": "0.65",
|
||||
"sparse_infill_speed": "70",
|
||||
"support_line_width": "0.55",
|
||||
"support_speed": "40",
|
||||
"top_shell_thickness": "0.9",
|
||||
"top_surface_line_width": "0.6",
|
||||
"top_surface_speed": "45",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.6 nozzle"
|
||||
]
|
||||
}
|
44
resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json
Normal file
44
resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.20mm Speed @MK3S 0.4",
|
||||
"name": "0.20mm Speed @MK3S 0.4",
|
||||
"from": "system",
|
||||
"renamed_from":"0.20mm Standard @MK3S",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "4",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "800",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "60",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"layer_height": "0.2",
|
||||
"line_width": "0.45",
|
||||
"outer_wall_line_width": "0.45",
|
||||
"outer_wall_speed": "35",
|
||||
"raft_contact_distance": "0.2",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"sparse_infill_speed": "200",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "40",
|
||||
"support_line_width": "0.35",
|
||||
"support_object_xy_distance": "0.27",
|
||||
"support_speed": "50",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "5",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_surface_speed": "50",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.20mm Standard @MK3S 0.4",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_process_common",
|
||||
"initial_layer_speed": "20",
|
||||
"initial_layer_infill_speed": "25",
|
||||
"outer_wall_speed": "35",
|
||||
"inner_wall_speed": "60",
|
||||
"sparse_infill_speed": "200",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"top_surface_speed": "50",
|
||||
"gap_infill_speed": "40",
|
||||
"travel_speed": "180",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.30mm Detail @MK3S 0.8",
|
||||
"name": "0.30mm Detail @MK3S 0.8",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "3",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_speed": "25",
|
||||
"inner_wall_acceleration": "800",
|
||||
"layer_height": "0.3",
|
||||
"raft_contact_distance": "0.2",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "36",
|
||||
"support_object_xy_distance": "0.36",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "4",
|
||||
"bottom_shell_thickness": "0.8",
|
||||
"bridge_flow": "0.9",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"gap_infill_speed": "30",
|
||||
"infill_wall_overlap": "15%",
|
||||
"initial_layer_line_width": "0.9",
|
||||
"initial_layer_print_height": "0.3",
|
||||
"inner_wall_line_width": "0.9",
|
||||
"inner_wall_speed": "35",
|
||||
"internal_solid_infill_line_width": "0.9",
|
||||
"internal_solid_infill_speed": "50",
|
||||
"is_custom_defined": "0",
|
||||
"line_width": "0.9",
|
||||
"outer_wall_line_width": "0.9",
|
||||
"outer_wall_speed": "25",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_line_width": "0.9",
|
||||
"sparse_infill_speed": "50",
|
||||
"support_line_width": "0.7",
|
||||
"support_speed": "40",
|
||||
"top_shell_thickness": "1.2",
|
||||
"top_surface_line_width": "0.8",
|
||||
"top_surface_speed": "35",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.8 nozzle"
|
||||
]
|
||||
}
|
43
resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json
Normal file
43
resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.30mm Draft @MK3S 0.4",
|
||||
"name": "0.30mm Draft @MK3S 0.4",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "3",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "800",
|
||||
"inner_wall_line_width": "0.5",
|
||||
"inner_wall_speed": "50",
|
||||
"internal_solid_infill_line_width": "0.5",
|
||||
"internal_solid_infill_speed": "80",
|
||||
"layer_height": "0.3",
|
||||
"line_width": "0.5",
|
||||
"outer_wall_line_width": "0.6",
|
||||
"outer_wall_speed": "35",
|
||||
"raft_contact_distance": "0.2",
|
||||
"small_perimeter_speed": "30",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_line_width": "0.5",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"sparse_infill_speed": "85",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "36",
|
||||
"support_line_width": "0.38",
|
||||
"support_object_xy_distance": "0.36",
|
||||
"support_speed": "45",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "4",
|
||||
"top_surface_line_width": "0.45",
|
||||
"top_surface_speed": "40",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.30mm Quality @MK3S 0.6",
|
||||
"name": "0.30mm Quality @MK3S 0.6",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "800",
|
||||
"inner_wall_speed": "50",
|
||||
"layer_height": "0.3",
|
||||
"outer_wall_speed": "35",
|
||||
"raft_contact_distance": "0.2",
|
||||
"small_perimeter_speed": "30",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "36",
|
||||
"support_object_xy_distance": "0.36",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "4",
|
||||
"bottom_shell_layers": "4",
|
||||
"bottom_shell_thickness": "0.6",
|
||||
"bridge_flow": "1",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"infill_wall_overlap": "15%",
|
||||
"initial_layer_line_width": "0.65",
|
||||
"inner_wall_line_width": "0.65",
|
||||
"internal_solid_infill_line_width": "0.65",
|
||||
"internal_solid_infill_speed": "70",
|
||||
"is_custom_defined": "0",
|
||||
"line_width": "0.65",
|
||||
"outer_wall_line_width": "0.65",
|
||||
"sparse_infill_line_width": "0.65",
|
||||
"sparse_infill_speed": "70",
|
||||
"support_line_width": "0.55",
|
||||
"support_speed": "50",
|
||||
"top_shell_thickness": "0.9",
|
||||
"top_surface_line_width": "0.6",
|
||||
"top_surface_speed": "45",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.6 nozzle"
|
||||
]
|
||||
}
|
43
resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json
Normal file
43
resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.35mm Speed @MK3S 0.6",
|
||||
"name": "0.35mm Speed @MK3S 0.6",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "3",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "800",
|
||||
"inner_wall_line_width": "0.5",
|
||||
"inner_wall_speed": "50",
|
||||
"internal_solid_infill_line_width": "0.5",
|
||||
"internal_solid_infill_speed": "80",
|
||||
"layer_height": "0.3",
|
||||
"line_width": "0.5",
|
||||
"outer_wall_line_width": "0.6",
|
||||
"outer_wall_speed": "35",
|
||||
"raft_contact_distance": "0.2",
|
||||
"small_perimeter_speed": "30",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_line_width": "0.5",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"sparse_infill_speed": "85",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "36",
|
||||
"support_line_width": "0.38",
|
||||
"support_object_xy_distance": "0.36",
|
||||
"support_speed": "45",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "4",
|
||||
"top_surface_line_width": "0.45",
|
||||
"top_surface_speed": "40",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.6 nozzle"
|
||||
]
|
||||
}
|
49
resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json
Normal file
49
resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.40mm Draft @MK3S 0.6",
|
||||
"name": "0.40mm Draft @MK3S 0.6",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "3",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_speed": "25",
|
||||
"gap_infill_speed": "40",
|
||||
"inner_wall_acceleration": "800",
|
||||
"outer_wall_speed": "35",
|
||||
"raft_contact_distance": "0.2",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "36",
|
||||
"support_object_xy_distance": "0.36",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "4",
|
||||
"bottom_shell_thickness": "0.6",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"infill_wall_overlap": "15%",
|
||||
"initial_layer_line_width": "0.65",
|
||||
"inner_wall_line_width": "0.68",
|
||||
"inner_wall_speed": "45",
|
||||
"internal_solid_infill_line_width": "0.68",
|
||||
"internal_solid_infill_speed": "70",
|
||||
"is_custom_defined": "0",
|
||||
"layer_height": "0.4",
|
||||
"line_width": "0.65",
|
||||
"outer_wall_line_width": "0.68",
|
||||
"small_perimeter_speed": "35",
|
||||
"sparse_infill_line_width": "0.68",
|
||||
"sparse_infill_speed": "70",
|
||||
"support_line_width": "0.55",
|
||||
"support_speed": "50",
|
||||
"top_shell_thickness": "0.9",
|
||||
"top_surface_line_width": "0.6",
|
||||
"top_surface_speed": "45",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.6 nozzle"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.40mm Quality @MK3S 0.8",
|
||||
"name": "0.40mm Quality @MK3S 0.8",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "3",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_speed": "25",
|
||||
"inner_wall_acceleration": "800",
|
||||
"outer_wall_line_width": "0.6",
|
||||
"raft_contact_distance": "0.2",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "36",
|
||||
"support_object_xy_distance": "0.36",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "4",
|
||||
"bottom_shell_thickness": "0.8",
|
||||
"bridge_flow": "0.9",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"gap_infill_speed": "30",
|
||||
"infill_wall_overlap": "15%",
|
||||
"initial_layer_infill_speed": "35",
|
||||
"initial_layer_line_width": "0.9",
|
||||
"initial_layer_print_height": "0.3",
|
||||
"inner_wall_line_width": "0.9",
|
||||
"inner_wall_speed": "35",
|
||||
"internal_solid_infill_line_width": "0.9",
|
||||
"internal_solid_infill_speed": "45",
|
||||
"is_custom_defined": "0",
|
||||
"layer_height": "0.4",
|
||||
"line_width": "0.9",
|
||||
"outer_wall_speed": "25",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_line_width": "0.9",
|
||||
"sparse_infill_speed": "50",
|
||||
"support_line_width": "0.7",
|
||||
"support_speed": "40",
|
||||
"top_shell_thickness": "1.2",
|
||||
"top_surface_line_width": "0.8",
|
||||
"top_surface_speed": "35",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.8 nozzle"
|
||||
]
|
||||
}
|
49
resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json
Normal file
49
resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"type": "process",
|
||||
"print_settings_id": "0.55mm Draft @MK3S 0.8",
|
||||
"name": "0.55mm Draft @MK3S 0.8",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "process_common_mk3",
|
||||
"bottom_shell_layers": "3",
|
||||
"bridge_acceleration": "1000",
|
||||
"bridge_speed": "25",
|
||||
"inner_wall_acceleration": "800",
|
||||
"raft_contact_distance": "0.2",
|
||||
"sparse_infill_acceleration": "1000",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_interface_speed": "36",
|
||||
"support_object_xy_distance": "0.36",
|
||||
"support_top_z_distance": "0.2",
|
||||
"thick_bridges": "0",
|
||||
"top_shell_layers": "4",
|
||||
"bottom_shell_thickness": "0.8",
|
||||
"bridge_flow": "0.9",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"gap_infill_speed": "30",
|
||||
"initial_layer_line_width": "0.9",
|
||||
"initial_layer_print_height": "0.3",
|
||||
"inner_wall_line_width": "1",
|
||||
"inner_wall_speed": "30",
|
||||
"internal_solid_infill_line_width": "0.9",
|
||||
"internal_solid_infill_speed": "50",
|
||||
"is_custom_defined": "0",
|
||||
"layer_height": "0.55",
|
||||
"line_width": "0.9",
|
||||
"outer_wall_line_width": "1",
|
||||
"outer_wall_speed": "25",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_line_width": "0.9",
|
||||
"sparse_infill_speed": "50",
|
||||
"support_line_width": "0.7",
|
||||
"support_speed": "35",
|
||||
"top_shell_thickness": "1.2",
|
||||
"top_surface_line_width": "0.8",
|
||||
"top_surface_speed": "30",
|
||||
"wall_loops": "2",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.8 nozzle"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue