Add Prusa MK4S profiles (#8279)

* Whitespace cleanup in Prusa profile

```
$ diff -u Prusa.json <(jq --indent 4 < Prusa.json) | wc -l
       0
```

* Add Prusa MK4S profiles

There were generated from the PrusaSlicer profiles[0] using some scripts
which try to faithfully convert the profiles[1]. The high flow nozzle
settings have been modeled as a separate printer model.

A few things I'm aware of that haven't been converted:

 - Filament multi-material settings (eg loading speeds)
 - High-flow and abrasive nozzle check in gcode, which, as far as I
   know, isn't available in the current firmware anyways

I've also found that disabling z-hop on layer change in OrcaSlicer seems
more similar to the behavior in PrusaSlicer (which allows travel
distance limitations to override that setting), so I've disabled that.

Fixes #7391

[0]: 0bca90da13/resources/profiles/PrusaResearch.ini
[1]: https://github.com/rcloran/SuperSlicer_to_Orca_scripts/tree/20d2881
This commit is contained in:
Russell Cloran
2025-02-07 08:12:55 -08:00
committed by GitHub
parent 2af5aa56d8
commit 06c809c598
107 changed files with 3370 additions and 24 deletions

View File

@@ -0,0 +1,22 @@
{
"bottom_shell_layers": "3",
"compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/",
"from": "system",
"inherits": "process_common_mk4s",
"inner_wall_line_width": "0.5",
"inner_wall_speed": "220",
"instantiation": "true",
"internal_solid_infill_line_width": "0.5",
"internal_solid_infill_speed": "240",
"layer_height": "0.25",
"name": "0.25mm SPEED @MK4S HF0.4",
"outer_wall_line_width": "0.5",
"outer_wall_speed": "200",
"sparse_infill_line_width": "0.5",
"sparse_infill_speed": "240",
"support_interface_top_layers": "3",
"support_top_z_distance": "0.25",
"top_shell_layers": "4",
"top_surface_acceleration": "2000",
"type": "process"
}