Flow Rate calibration - 105% top surface pattern

Changed the top surface pattern to 105% of nozzle diameter. The new archimedian style is more about precision and this improve the results. Also it match better with the old style line pattern.
See: https://github.com/SoftFever/OrcaSlicer/discussions/9609#discussioncomment-13796240
This commit is contained in:
Benik3 2025-08-01 22:37:55 +02:00 committed by GitHub
parent 468c8492b6
commit 39284d610a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9896,7 +9896,7 @@ void adjust_settings_for_flowrate_calib(ModelObjectPtrs& objects, bool linear, i
_obj->config.set_key_value("detect_thin_wall", new ConfigOptionBool(true));
_obj->config.set_key_value("filter_out_gap_fill", new ConfigOptionFloat(0));
_obj->config.set_key_value("sparse_infill_pattern", new ConfigOptionEnum<InfillPattern>(ipRectilinear));
_obj->config.set_key_value("top_surface_line_width", new ConfigOptionFloatOrPercent(nozzle_diameter * 1.2f, false));
_obj->config.set_key_value("top_surface_line_width", new ConfigOptionFloatOrPercent(nozzle_diameter * 1.05f, false));
_obj->config.set_key_value("internal_solid_infill_line_width", new ConfigOptionFloatOrPercent(nozzle_diameter * 1.2f, false));
_obj->config.set_key_value("top_surface_pattern", new ConfigOptionEnum<InfillPattern>(ipArchimedeanChords));
_obj->config.set_key_value("top_solid_infill_flow_ratio", new ConfigOptionFloat(1.0f));