Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding pellet printer suppor to OrcaSlicer #4836

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

analysis230
Copy link

@analysis230 analysis230 commented Apr 1, 2024

Large format printers with print volumes in the order of 1m3 generally use pellets for printing. The overall tech is very similar to FDM printing. It is FDM printing, but instead of filaments, it uses pellets.

The difference here is that where filaments have a filament_diameter that is used to calculate the volume of filament ingested, pellets have a particular flow_coefficient that is empirically devised for that particular pellet.

We are translating the flow_coefficient into filament_diameter so that everything works just like it does already with very minor adjustments.

filament_diameter = sqrt( (4 * flow_coefficient) / PI )

sqrt just makes the relationship between flow_coefficient and volume linear.

This will allow a lot of accessibility for an increasing market of pellet 3d printers. Ginger additives, Colossus and CEAD being some of the leading names.

double pellet_flow_coefficient_value = filament->config.opt_float("pellet_flow_coefficient", 0);
double calculated_filament_diamter = Preset::convert_pellet_flow_to_filament_diameter(
pellet_flow_coefficient_value);
filament->config.set_key_value("filament_diameter",
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since there is logic to handle the sync issue in Tab.cpp, is there any reason to have this check here? It's not a desired behavior here

src/libslic3r/PresetBundle.cpp Outdated Show resolved Hide resolved
@SoftFever
Copy link
Owner

Can I check what's the status of this PR?

@analysis230
Copy link
Author

analysis230 commented Jun 15, 2024

Some more changes are in the works. I have added a printers from the company that hired me to make the changes "Ginger Additive".

Here's our fork: https://github.com/gingeradditive/OrcaSlicer/tree/pellet-printer-implementation-rebased-onto-main

Just going to rebase/merge with the current OrcaSlicer main on Monday. and raise a proper pull request

@analysis230 analysis230 marked this pull request as ready for review June 18, 2024 04:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants