PrusaSlicer 2.5.0-alpha2 is out!
 
Notifications
Clear all

PrusaSlicer 2.5.0-alpha2 is out!  

Page 1 / 3
  RSS
Same Old Shane
(@same-old-shane)
Member Admin
PrusaSlicer 2.5.0-alpha2 is out!

Hello all;
We are happy to announce our release for Prusa Slicer 2.5.0 Please note that this is a alpha release and we are releasing it so the community can help test and report back any issues they might have to our developers.

Summary

​This is the first public alpha release of PrusaSlicer 2.5.0 (alpha1 was not public), introducing new perimeter generator Arachne, improved seam placement based on visibility, pressure equalizer, lightning infill and several more improvements and bugfixes.

The new perimeter generator Arachne and the new lightning infill were ported from Cura. The Arachne perimeter generator was implemented based on the paper [Kuipers et al., 2020], while the lightning infill was implemented based on [Tricard et al., 2019]. Big thanks to Ultimaker for keeping Cura open source and big kudos to Cura development team led by @nallath, to @BagelOrb for his research and majority of the Arachne implementation and to @BagelOrb and @rburema for the lightning infill implementation.

To let you enjoy the alpha without worries, the alpha builds save their profiles into PrusaSlicer-alpha directory, so you may use the alpha side by side with the current release without ruining your production configuration.

Arachne perimeter generator #5591

The 'classic' strategy for calculating perimeter extrusion paths is to offset contours of an object slice inwards by a constant extrusion width, one offset per perimeter. This was also the default algorithm in previous PrusaSlicer versions. However this simple algorithm does not handle thin regions well, as reported in these issues. Namely, thin regions cannot be filled with an integer number of fixed width extrusion lines. The classic way of handling narrow regions is to either not generate the innermost perimeter that does not quite fit, but to fill the remaining region with a gap fill algorithm, or to over-extrude the innermost perimeter. None of the two approaches are ideal: The gap fill may produce short segments of widely differing extrusion rates, while over-extruding may produce bulges on thin walls.

The developers of Cura recently implemented a new strategy named Arachne based on paper [Kuipers et al., 2020]. The Arachne generator produces perimeter loops and gap fills with varying extrusion width in such a way, that the slice area is filled without underflows and overflows with possibly continuous paths while respecting minimum / maximum extrusion width limits. The Arachne perimeter / gap fill generator really shines on objects with thin walls as thin boxes or labels.

In this PrusaSlicer version, we have ported the Arachne engine from Cura while keeping the old perimeter generator as an option. We made the Arachne perimeter generator default in our printer profiles. Thanks again to Ultimaker for developing Cura under open license.

image

The following picture demonstrates Arachne benefits on thin text: ​The classic perimeter generator fills text contours with many thin gap fill lines, while the Arachne perimeter generator widens the perimeter lines instead, producing cleaner prints quicker and with better surface quality.

image

However the Arachne perimeter generator has a tendency to round concave corners, as shown in the picture below. While the perimeter curves with circular segments at concave corners produced by Arachne are geometrically correct (they satisfy the constant offset distance requirement), they may not be optimal for FDM due to the tendency of extruded plastic to shrink into concave corners, thus the classic perimeter generator producing mitered offset curves with sharp corners may print more accurate concave corners. For most prints the Arachne perimeter generator is superior, but for some functional prints where the accuracy of concave corners is important the classic perimeter generator may be better.

image

Another case where the classic perimeter generator may be preferable are sharp corners. The classic perimeter generator with "detect thin walls" disabled trims the tips of sharp corners, but the print surface will likely be smooth due to constant extrusion width.
image
With "detect thin walls" enabled, the chopped off tip is filled with gap fill, which may not quite stick to the print.
image
Arachne generator produces connected lines with varying extrusion rate, where the extrusion rate variation will likely cause some visible artifacts on the outer surface of the print.
image

Lightning infill #7344

Infill serves dual purpose: To provide structural rigidity and to support top surfaces. In case the structural rigidity is not needed, a lot of material and printing time is saved with the new lightning infill, that is optimized to supports the top surfaces only. The lighting infill is based on paper [Tricard et al., 2019]. A branching structure is generated that gets progressively denser towards the top surfaces to support them reliably. Like the Arachne perimeter generator, we have ported the Lightning infill from Cura, thanks again for keeping Cura open source.

image

The following table compares the print time and filament consumption when printing the famous tree frog at 100% and 400% scale. The values for a 400% scale are enclosed in braces.

Infill type Print time [min] Filament total [g] Filament Infill [g] Filament saved on Infill
Gyroid 15% 54 (1104) 6.8 (204) 1.5 (114) 0%
Support Cubic 15% 51 (792) 6.3 (152) 1 (62) 33% (46%)
Lightning 15% 55 (840) 6.0 (111) 0.6 (20) 60% (82%)

Pressure equalizer (EXPERIMENTAL)​

FDM printer consists of a motion system and an extrusion system. While the motion system loves to accelerate and decelerate smoothly to reduce vibrations, the extruder loves to extrude at a constant rate for best extrusion consistency. Unfortunately the optimal conditions of the motion system and extruder are contradictory. Bowden style extruders are especially sensitive to pressure fluctuations, due to the slack in bowden tube they are not able to reproduce rapid changes in extrusion rate reliably.

With bowden style extruders, moving from internal perimeter printed at high speed to external perimeter printed at slower speed the extruder often produces a bulge at the start of the external perimeter due to an excess extruder pressure. Similarly when moving from external perimeter to infill the extruder produces gap at the start of infill because of the extruder pressure deficit. To lessen these artifacts caused by rapid extruder pressure fluctuations, we have implemented an experimental "Pressure equalizer" feature.

Before moving from faster internal perimeter to slower external perimeter, the pressure equalizer slows down gradually the end of the internal perimeter to reach the extrusion rate of the external perimeter. Similarly when moving from the external perimeter to infill, the start of the infill is slowed down to external perimeter speed and accelerated gradually. The volumetric rate fluctuations are configured at Print Settings->Speed->Pressure equalizer, they are limited by the new Max volumetric slope negative and Max volumetric slope positive configuration values. Slowing down infill after perimeter may increase print times excessively, thus it could be suppressed by setting Max volumetric slope positive to zero.

​The following two images show gradual slowdown when external perimeter is about to be printed and comparison of the result with and without the feature activated.

image

The right picture shows bulges on external perimeters due to excess extruder pressure on a bowden style printer, while the bulges are mitigated in left picture thanks to the pressure equalizer.

image

Visibility-based seam placement​

Starting with this version, seam placement algorithm prefers regions which are not visible from the outside of the model at all or which are occluded from most directions. The new visibility algorithm is applied for seams set to Nearest or Aligned.

image

In addition, when paint-on seams are used and 'Aligned' is set, the resulting seam line attempts to find a sharp corner in the painted area and snap to it, leading to smoother lines along the sharp edge. Previous versions did not detect the sharp edge in this scenario #5857 #6086 #7180 #8014.

image

Also the new algorithm strives to produce possibly long and smooth seams on smooth surfaces, while the old algorithm often produced disconnected random bits on such surfaces #4416 #7180 #7759.

image

For multi-material or multi-part objects where a slice is split into multiple regions with each region having its own perimeter, the seams are newly hidden inside the object between the regions #5144 #6751.

Other improvements with respect to PrusaSlicer 2.4.2

  • G-Code thumbnails can now be exported in JPG and QOI formats (until now, only PNG thumbnails were supported). This should make it possible to see the thumbnails on printers which do not support PNG thumbnails. Namely the Duet boards with RepRapFirmware are low on RAM to decode PNGs, but they happily consume QOI thumbnails. Thanks to @n8bot for initial implementation.
  • SLA hollowing was optimized and it is now significantly faster. The actual speed-up depends on the model, but in general it is several times faster. The difference is especially noticeable on bigger models, where it can be 10x faster than before.
  • SLA time estimate was improved and it is now more accurate for SL1S. In addition, "High viscosity tilt time" was added into Printer Settings so the time estimate is correct for printers supporting separate tilt time setting for high-viscosity SLA materials. #8421
  • Concentric infill is newly properly filled by the new Arachne perimeter generator if Arachne is enabled. #577#1461#3104

Bugfixes with respect to PrusaSlicer 2.4.2​

  • OSX specific: It is now possible to send G-Codes to OctoPrint using self-signed certificates. The OSX system SSL library does not accept self signed certificate, however OpenSSL based libcurl library shipped with OSX does. See also the following Prusa3D forum thread and #5984
  • Fixed a crash when using a selection rectangle with the cut gizmo open​.
  • Fixed a memory leak during slicing​ e0e34f6.
  • Windows specific: Dialog asking to send system info shown at startup no longer pops up in case the internet connection is not available.​
  • Fixed a crash when using auto-rotation with some specific models #8319​.
  • When using arrange in sequential printing mode, it sometimes tightly violated desired extruder clearance #8335.
  • Fixed flickering of colored rectangles in legend in the stand-alone G-Code Viewer.​
  • When using wipe tower with no sparse layers, the first layer might have ended up too thin and ruined the print #7090​, #8358.
  • OSX specific: Cmd+M shortcut should now minimize the application as expected, restoring the application using the "View All Windows" works. #6364#8352
  • When clicking the "Detach from system preset" button in Dependencies section of a profile, the button did not disappear. Also, detaching a printer profile from a system profile broke rendering of custom bed model for both the parent and child profile. Both issues are fixed now.
  • Fixed a very rare issue which led to generating a G-Code with commas instead of decimal points (caused by incorrectly set locales on one of the threads).
  • Windows specific: Improved detection of corrupted PrusaSlicer.ini configuration file. Very rarely for some unknown reason PrusaSlicer.ini is partially or fully filled in with binary zeros, most likely due to power outage or a bug in hard drive driver #8217.
  • OSX specific: When trying to open a G-Code file using drag and drop or "Open with" option, G-Code Viewer would report the file extension as unknown when PrusaSlicer was not already running #8300#8344
  • Filament usage estimate was incorrect when using MMU. The loading and unloading moves were not correctly accounted for, leading to much higher estimate then reality. Only the 'Sliced Info' box was affected, the statistics at the end of the G-Code were correct.
  • Fixed a crash when rescaling the windows or changing color mode (Windows, OSX). This should fix some spurious crashes happening when moving PrusaSlicer window between two monitors etc.
  • Fixed inadvertent deselection after changing and confirming object-specific settings #8342
  • Changing object-specific settings incorrectly inserted two undo/redo snapshots.
  • Some configuration options always showed as modified in profiles inherited from the ---default--- profile.
  • Fixed a crash when pressing Ctrl+A while using a painter tool or editing SLA support points or drainage holes #8416
  • Linux specific: Fixed a crash when confirming a value in Height range modifier #7531#8055#8408

Profiles

Translations

  • Updated CZ, DE, ES, FR, IT, JA and PL dictionaries.
  • Updated zn_CN translation (#8383, thanks @iBral)

References

[Kuipers et al., 2020] Tim Kuipers, Eugeni L. Doubrovski, Jun Wu, Charlie C.L. Wang. "A Framework for Adaptive Width Control of Dense Contour-Parallel Toolpaths in Fused Deposition Modeling." Computer-Aided Design, vol. 128, p. 102907. 2020.

[Tricard et al., 2019] Thibault Tricard, Frédéric Claux, Sylvain Lefebvre. "Ribbed support vaults for 3D printing of hollowed objects." Computer Graphics Forum. 2019.

Download
individual program download;
https://github.com/prusa3d/PrusaSlicer/releases/tag/version_2.5.0-alpha2

Packaged download with drivers and apps;
help.prusa3d.com/downloads
Please report any bug or issue here
github.com/prusa3d/PrusaSlicer/issues

Shane (AKA FromPrusa)

Posted : 29/06/2022 3:00 pm
jurassic73
(@jurassic73)
Estimable Member
RE:

Does Arachne perimeter generator help minimize bulging with solid layers inside affecting the outer perimeters?

 

e.g. - https://forum.prusa3d.com/forum/original-prusa-i3-mk3s-mk3-how-do-i-print-this-printing-help/bulge-remedied-but-still-exists-as-an-overall-wider-upper-wall/?mode=grid

MK3s / My IKEA Lack enclosure

Posted : 29/06/2022 9:25 pm
jsw
 jsw
(@jsw)
Famed Member
RE:

I just downloaded 2.50a2 and verified that the Arachne perimeter generator is active, and printed the test box that I did with the older PS and Cura yesterday, and quite honestly it's very difficult to see any visible difference, but it does seem to work fine and I'll probably keep using that version for a while.  No issues = good.  😉

Posted : 29/06/2022 9:36 pm
Swiss_Cheese
(@swiss_cheese)
Noble Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

@jurassic73

 

It depends on what your perceiving as bulge and your specific problem, I say this as I have never had a problem with "bulge" and as I once tried to explain this in a bulge thread, every single model is different and needs o be tuned for its specific properties. but it seems folks don't want to hear this, so the answer is maybe depending on what your problem was.

Another thing to keep in mind is the Arachne engine is not the only way to get the result you need, it is meant to be helpful but you still have to educate yourself, and tune your models for slicing. Cura was still having problems with this so you are the tester and the guinea pig, as Prusa strives toward what the masses desire.

 

Good Luck

 

Swiss_Cheese

The Filament Whisperer

Posted : 29/06/2022 11:06 pm
Swiss_Cheese
(@swiss_cheese)
Noble Member
RE:

BTW, anyone who is wondering, the seam placement algorithm will not produce a straight line regardless of setting, or line thickness anywhere but an inside or outside corner. My opinion, that's not desirable.

I'm also getting layers that won't even show seam placement at all even on the most simple of models.

 

 

Please feel free to ignore this if you like, just my experience & opinion.

 

Swiss_Cheese

 

The Filament Whisperer

Posted : 09/07/2022 2:48 am
kennd
(@kennd)
Reputable Member
RE:

I am not one to hang out on the bleeding edge with software. I prefer to let the blood dry first and then assess the situation. So far, none of the issues that I have encountered in PrusaSlicer 2.3.3 have been fixed in either 2.4.x or the 2.5.0-alpha2. I downloaded the 2.5.0-alpha2 hoping to be “wowed”, but... I loaded one of my existing projects and sliced it without making any changes. The top layer of the text that has a single perimeter in a contrasting colour with no infill looked like blobs with infill.

Sliced in PrusaSlicer 2.3.3

Sliced in 2.5.0-alpha2

"In this PrusaSlicer version, we have ported the Arachne engine from Cura while keeping the old perimeter generator as an option. We made the Arachne perimeter generator default in our printer profiles."

The Arachne algorithm is the “default” in 2.5.0-alpha2, and Prusa says there are circumstances where the conventional algorithm will provide better results. So, I went looking for a way to toggle it off. After checking everywhere I could think of, I put the task aside. I have hundreds of projects, and have put in many hours to tune my models to get good results as in the first image above. I see no advantage for me to think about 2.5.0.

FWIW: I think the conventional slicing algorithm should be the default.

 

Kenn

 

 

Quality is the Journey, not the Destination. My limited prints->

Posted : 09/07/2022 6:29 am
jsw
 jsw
(@jsw)
Famed Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

 

Posted by: @kennd

I prefer to let the blood dry first

I like that expression.  😉

Posted : 09/07/2022 8:19 am
Swiss_Cheese
(@swiss_cheese)
Noble Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

@kennd

 

It's not hidden, It's in Print Settings/ layer and perimeters [Advanced] Perimeter generator: Choose Classic from the drop down.

I'm very happy they left the Original engine intact, as Arachne is an ok tool, but will not be my go to, I'd rather see it in a form that allows me to apply it only to certain objects, or better yet only to certain Areas/Layers. Currently you can apply Arachne to different objects, but not different engines to different Objects, if you select the Original engine after applying the Arachne to an Object it just grays the settings out, so that's kinda of pointless. I also made several attempts to change the Arachne settings for an object to get it to print like the Original engine, but you can't quite get there, so it's one or the other, you have to pick.

 

I don't appreciate it as default myself, I'm hoping they only did that in the beginning so folks wouldn't have to look for it to test it, Speaking of which it has issues (obviously it's alpha with a beta engine). I have seen on several models after setting them up, slicing and getting a result, then just rotate the model 180° it gives a completely different result in most of my test cases so far not desirable. Then I switched to using only symmetrical models, some made to suit, and the engine slices them nice on the first try, then Rotate 180° and they would be completely wacked out on multiple layers (Randomly) the next slicing.

It feels kinda like a slot machine. Anyway there's a lot more, we'll see how it goes, I put the Arachne to bed for now, and started testing the Pressure equalizer, which I do have high hopes for.

 

Regards

 

Swiss_Cheese

 

The Filament Whisperer

Posted : 09/07/2022 10:14 pm
kennd
(@kennd)
Reputable Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

 

Posted by: @swiss_cheese

@kennd

 

It's not hidden, It's in Print Settings/ layer and perimeters [Advanced] Perimeter generator: Choose Classic from the drop down.

Doh!

I am glad I said "After checking everywhere I could think of," instead of 'I checked everywhere.'. On my screen the Advanced section is not visible unless I scroll down. Which I obviously didn't.

gjtuf gkru gjjdk <- sound of my forehead banging on the keyboard to help me remember to check if pages can be scrolled.

While I am probably the only one to miss this(or own up to it), the default should be classic. I hope the choice to make it default is just for the alpha/beta versions to get rapid feedback. 🙂 My personal preference would be to treat it like they do with the Wipe Tower. Under Print Settings > Advanced > Arachne perimeter generator, have a checkbox to enable it. When you enable it, you can change parameters on the same page instead of having to go to different page to configure it(current way).

Thanks for showing me the path to slicing happiness.

Kenn

Quality is the Journey, not the Destination. My limited prints->

Posted : 10/07/2022 12:42 am
fuchsr liked
Swiss_Cheese
(@swiss_cheese)
Noble Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

😉 👍 

The Filament Whisperer

Posted : 10/07/2022 1:54 am
jsw
 jsw
(@jsw)
Famed Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

I do agree that some of the organization of the settings in PS is not very intuitive.

Posted : 10/07/2022 8:24 am
Swiss_Cheese
(@swiss_cheese)
Noble Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

I was wrong with this statement you can apply both engines at the same time to different "Objects", I failed to see the "Perimeter engine" option in the "Object" settings menu's I finally noticed it while looking for [pressure equalizer] options for objects. This will help things greatly.

Currently you can apply Arachne to different objects, but not different engines to different Objects, if you select the Original engine after applying the Arachne to an Object it just grays the settings out, so that's kinda of pointless. I also made several attempts to change the Arachne settings for an object to get it to print like the Original engine, but you can't quite get there, so it's one or the other, you have to pick.

Retract

 

Swiss_Cheese

The Filament Whisperer

Posted : 11/07/2022 7:59 pm
tkostohryz
(@tkostohryz)
New Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

I can't figure out how to download the 5.0.0 a2, can anyone help me?

Posted : 12/07/2022 7:14 pm
SailorEric
(@sailoreric)
Trusted Member
RE:

Just had an issue with the beta version. several models printed with bad z banding in a cyclic pattern. Reprinted with 2.4.2 as slicer and it was smooth again.er and it was gone.

Posted : 12/07/2022 8:05 pm
jsw
 jsw
(@jsw)
Famed Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

In another thread I asked if those bands show up in the PS preview after slicing.

Those bands look severe enough and consistent enough that I would think they might show as irregularities in the generated gcode.

Posted : 12/07/2022 8:08 pm
SailorEric
(@sailoreric)
Trusted Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

The preview looked good. I was afraid I had something seriously out of whack with the printer. Don't know if it matters but the model was generated by OpenSCAD?

Posted : 12/07/2022 8:18 pm
Swiss_Cheese
(@swiss_cheese)
Noble Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

🤣 Super Bulge  🤣 

I just wanted to be the first to make the joke 😉 .

 

On a more serious note that's actually interesting looking.

The Filament Whisperer

Posted : 12/07/2022 8:22 pm
fuchsr liked
Swiss_Cheese
(@swiss_cheese)
Noble Member
RE:

@sailoreric

I've also been experiencing random patterns and problems on different layers with the Arachne engine, did you try it in 2.5 alpha2 with the classic engine and see if that changed things for the better?

This post was modified 2 years ago by Swiss_Cheese

The Filament Whisperer

Posted : 12/07/2022 8:27 pm
jsw
 jsw
(@jsw)
Famed Member
RE: PrusaSlicer 2.5.0-alpha2 is out!
Posted by: @swiss_cheese

🤣 Super Bulge  🤣 

I just wanted to be the first to make the joke 😉 .

 

On a more serious note that's actually interesting looking.

You misspelled that.  'Buldge' is the correct spelling.  😉  😉  😉

Posted : 12/07/2022 8:29 pm
Swiss_Cheese
(@swiss_cheese)
Noble Member
RE: PrusaSlicer 2.5.0-alpha2 is out!

I knew I didn't do it right 🙄 but I couldn't remember thanks for correcting me  😉 

The Filament Whisperer

Posted : 12/07/2022 8:30 pm
Page 1 / 3
Share: