GH
Gene Heskett
Sun, Jul 4, 2021 8:12 AM
Greetings all;
I've obviously managed to make a loop, trying to defeat a bug in cura
that wants to retract between teeth thousands of times that is not
needed. The code:
...
module innerspline()
{// PETG now on printer, PolyProp (PP?) has arrived. And its a disaster, went back to PETG
// and the nozzle troubles started, plugged up whole damned hotend. 3 times so far
// Magicgoo for PP must be very caustic warnings galore
// new example, low ratio 30/1 harmonic drive floating splined belt.
teeth = 60; // define number of teeth
arcx = ( 360 / teeth ); // arc of circle per tooth
$fr = 0.000000;
// adjust this to just barely get an overlap at inner corners of spline triangle
toothdia = arcx/1.60;// no bigger then needed
// adjust this for outer teeth fit in internal spline
toothrad=53.5 / 2.000;// make radius was 53.0, reduce backlash but dont compress it either
// adjust this to thin or thicken flex valleys
linerdia=51.62; // thins web at bottom of spline, helps flex if larger, was 52.2
height=12;
tranz=height / 2.000;
echo (177,teeth,arcx,toothrad,linerdia) ;
union()
{ // make splines first
for($fr=[ 0: 6 : 359 ])
{
rotate([0, 0, $fr])
translate([toothrad, 0, tranz]) // mv x=[$lr + $r1] y,z=0
cylinder(d=toothdia, h=height, $fn=3, center=true);
// made triangles, now smooth inner wall by making 2 rings, outer same as base of teeth
difference()
{
translate([0,0,tranz])cylinder(d=linerdia+.5, h=height+.01, $fn=60,center=true);
translate([0,0,tranz])cylinder(d=linerdia, h=height+.02, $fn=360,center=true);
} //but the innards needs smooth finish
}
}
}
The above reflects some comments I added as it was stuck rendering with
the blue line showing 999/1000 for around 10 minutes. A rerender after
makeing line one of the difference at an $fn=60 was still 6 minutes plus.
So the difference is being executed 60 times and getting the same results
everytime.
So I closed the "for" before the difference, getting exactly the same render
in .8 seconds. Maybe this old fart will learn how to do efficient code yet.
;o)
But cura is still miss-rendering it, doing a retraction per tooth, 60 teeth,
times layer height=6000 times. No wonder its 4 hours per print. Its spending
half its time doing useless retracts and restores. hell on the filament and
inviting a freezeup.
Thanks all.
Cheers, Gene Heskett
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
Greetings all;
I've obviously managed to make a loop, trying to defeat a bug in cura
that wants to retract between teeth thousands of times that is not
needed. The code:
...
module innerspline()
{// PETG now on printer, PolyProp (PP?) has arrived. And its a disaster, went back to PETG
// and the nozzle troubles started, plugged up whole damned hotend. 3 times so far
// Magicgoo for PP must be very caustic warnings galore
// new example, low ratio 30/1 harmonic drive floating splined belt.
teeth = 60; // define number of teeth
arcx = ( 360 / teeth ); // arc of circle per tooth
$fr = 0.000000;
// adjust this to just barely get an overlap at inner corners of spline triangle
toothdia = arcx/1.60;// no bigger then needed
// adjust this for outer teeth fit in internal spline
toothrad=53.5 / 2.000;// make radius was 53.0, reduce backlash but dont compress it either
// adjust this to thin or thicken flex valleys
linerdia=51.62; // thins web at bottom of spline, helps flex if larger, was 52.2
height=12;
tranz=height / 2.000;
echo (177,teeth,arcx,toothrad,linerdia) ;
union()
{ // make splines first
for($fr=[ 0: 6 : 359 ])
{
rotate([0, 0, $fr])
translate([toothrad, 0, tranz]) // mv x=[$lr + $r1] y,z=0
cylinder(d=toothdia, h=height, $fn=3, center=true);
// made triangles, now smooth inner wall by making 2 rings, outer same as base of teeth
difference()
{
translate([0,0,tranz])cylinder(d=linerdia+.5, h=height+.01, $fn=60,center=true);
translate([0,0,tranz])cylinder(d=linerdia, h=height+.02, $fn=360,center=true);
} //but the innards needs smooth finish
}
}
}
The above reflects some comments I added as it was stuck rendering with
the blue line showing 999/1000 for around 10 minutes. A rerender after
makeing line one of the difference at an $fn=60 was still 6 minutes plus.
So the difference is being executed 60 times and getting the same results
everytime.
So I closed the "for" before the difference, getting exactly the same render
in .8 seconds. Maybe this old fart will learn how to do efficient code yet.
;o)
But cura is still miss-rendering it, doing a retraction per tooth, 60 teeth,
times layer height=6000 times. No wonder its 4 hours per print. Its spending
half its time doing useless retracts and restores. hell on the filament and
inviting a freezeup.
Thanks all.
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
- Louis D. Brandeis
Genes Web page <http://geneslinuxbox.net:6309/gene>
NH
nop head
Sun, Jul 4, 2021 8:30 AM
If the teeth aren't connected by a section big enough for infill then it
will have separate infill in each tooth which would require retraction for
each tooth. That should not be a problem.
On Sun, 4 Jul 2021 at 09:12, Gene Heskett gheskett@shentel.net wrote:
Greetings all;
I've obviously managed to make a loop, trying to defeat a bug in cura
that wants to retract between teeth thousands of times that is not
needed. The code:
...
module innerspline()
{// PETG now on printer, PolyProp (PP?) has arrived. And its a disaster,
went back to PETG
// and the nozzle troubles started, plugged up whole damned hotend. 3
times so far
// Magicgoo for PP must be very caustic warnings galore
// new example, low ratio 30/1 harmonic drive floating splined belt.
teeth = 60; // define number of teeth
arcx = ( 360 / teeth ); // arc of circle per tooth
$fr = 0.000000;
// adjust this to just barely get an overlap at inner corners of spline
triangle
toothdia = arcx/1.60;// no bigger then needed
// adjust this for outer teeth fit in internal spline
toothrad=53.5 / 2.000;// make radius was 53.0, reduce backlash but dont
compress it either
// adjust this to thin or thicken flex valleys
linerdia=51.62; // thins web at bottom of spline, helps flex if larger,
was 52.2
height=12;
tranz=height / 2.000;
echo (177,teeth,arcx,toothrad,linerdia) ;
union()
{ // make splines first
for($fr=[ 0: 6 : 359 ])
{
rotate([0, 0, $fr])
translate([toothrad, 0, tranz]) // mv x=[$lr + $r1] y,z=0
cylinder(d=toothdia, h=height, $fn=3, center=true);
// made triangles, now smooth inner wall by making 2 rings, outer
same as base of teeth
difference()
{
translate([0,0,tranz])cylinder(d=linerdia+.5,
h=height+.01, $fn=60,center=true);
translate([0,0,tranz])cylinder(d=linerdia, h=height+.02,
$fn=360,center=true);
} //but the innards needs smooth finish
}
}
}
The above reflects some comments I added as it was stuck rendering with
the blue line showing 999/1000 for around 10 minutes. A rerender after
makeing line one of the difference at an $fn=60 was still 6 minutes plus.
So the difference is being executed 60 times and getting the same results
everytime.
So I closed the "for" before the difference, getting exactly the same
render
in .8 seconds. Maybe this old fart will learn how to do efficient code yet.
;o)
But cura is still miss-rendering it, doing a retraction per tooth, 60
teeth,
times layer height=6000 times. No wonder its 4 hours per print. Its
spending
half its time doing useless retracts and restores. hell on the filament and
inviting a freezeup.
Thanks all.
Cheers, Gene Heskett
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
If the teeth aren't connected by a section big enough for infill then it
will have separate infill in each tooth which would require retraction for
each tooth. That should not be a problem.
On Sun, 4 Jul 2021 at 09:12, Gene Heskett <gheskett@shentel.net> wrote:
> Greetings all;
>
> I've obviously managed to make a loop, trying to defeat a bug in cura
> that wants to retract between teeth thousands of times that is not
> needed. The code:
> ...
> module innerspline()
> {// PETG now on printer, PolyProp (PP?) has arrived. And its a disaster,
> went back to PETG
> // and the nozzle troubles started, plugged up whole damned hotend. 3
> times so far
> // Magicgoo for PP must be very caustic warnings galore
> // new example, low ratio 30/1 harmonic drive floating splined belt.
> teeth = 60; // define number of teeth
> arcx = ( 360 / teeth ); // arc of circle per tooth
> $fr = 0.000000;
> // adjust this to just barely get an overlap at inner corners of spline
> triangle
> toothdia = arcx/1.60;// no bigger then needed
> // adjust this for outer teeth fit in internal spline
> toothrad=53.5 / 2.000;// make radius was 53.0, reduce backlash but dont
> compress it either
> // adjust this to thin or thicken flex valleys
> linerdia=51.62; // thins web at bottom of spline, helps flex if larger,
> was 52.2
> height=12;
> tranz=height / 2.000;
> echo (177,teeth,arcx,toothrad,linerdia) ;
> union()
> { // make splines first
> for($fr=[ 0: 6 : 359 ])
> {
> rotate([0, 0, $fr])
> translate([toothrad, 0, tranz]) // mv x=[$lr + $r1] y,z=0
> cylinder(d=toothdia, h=height, $fn=3, center=true);
> // made triangles, now smooth inner wall by making 2 rings, outer
> same as base of teeth
> difference()
> {
> translate([0,0,tranz])cylinder(d=linerdia+.5,
> h=height+.01, $fn=60,center=true);
> translate([0,0,tranz])cylinder(d=linerdia, h=height+.02,
> $fn=360,center=true);
> } //but the innards needs smooth finish
> }
> }
> }
>
> The above reflects some comments I added as it was stuck rendering with
> the blue line showing 999/1000 for around 10 minutes. A rerender after
> makeing line one of the difference at an $fn=60 was still 6 minutes plus.
> So the difference is being executed 60 times and getting the same results
> everytime.
>
> So I closed the "for" before the difference, getting exactly the same
> render
> in .8 seconds. Maybe this old fart will learn how to do efficient code yet.
> ;o)
>
> But cura is still miss-rendering it, doing a retraction per tooth, 60
> teeth,
> times layer height=6000 times. No wonder its 4 hours per print. Its
> spending
> half its time doing useless retracts and restores. hell on the filament and
> inviting a freezeup.
>
> Thanks all.
>
> Cheers, Gene Heskett
> --
> "There are four boxes to be used in defense of liberty:
> soap, ballot, jury, and ammo. Please use in that order."
> -Ed Howdershelt (Author)
> If we desire respect for the law, we must first make the law respectable.
> - Louis D. Brandeis
> Genes Web page <http://geneslinuxbox.net:6309/gene>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
GH
Gene Heskett
Sun, Jul 4, 2021 11:04 AM
On Sunday 04 July 2021 04:30:13 nop head wrote:
If the teeth aren't connected by a section big enough for infill then
it will have separate infill in each tooth which would require
retraction for each tooth. That should not be a problem.
But it is, its doing a worthless build with yards of string hangin off the part and jammed up the hot end only about 2mm up in a 12mm build. asking the teeth big enough to share/connect the infill is not an option because then its too thick and rigid to survive more than a minute or so.
And thats about a 4 hour teardown to clear that as there will be solid plastic in the heat sink that will have to be burned out of the heat sink and heat break tube. That gets old, very quickly as I just did that yesterday. And the only way to fix it is get rid of the bowden tube so you aren't retracting far enough to pull hot plastic back up into the heat sink. Screw it, a biqu bx will be here Wednesday, has the h2 head, auto bed level, silent motherboard, yadda yadda. Not as big a bed as this CR10-S Pro v2, but still like the ender 3, big enough for most projects. And likely only 1 z screw. But with the H2 head, no bowden tube, so a 2mm retraction is a good starter. At some point, I may see if the direct drive head from another cheap, Chinese disappearing maker printer can be transplated to the CR-10S pro v2. This CR10-S has done a good job, but has very high maintenance needs. The cheep chinky printer, only printed half a very small job, badly when the mainboard died. I also put 2 grand in dremels best, but it was the highest trouble maker I've had to date and less than half its features actually worked.
I've ranted enough for one day. Thanks for reading. I put the flag out since its the 4th, but I feel a nap is the next thing on my agenda.
Cheers, Gene Heskett
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
On Sunday 04 July 2021 04:30:13 nop head wrote:
> If the teeth aren't connected by a section big enough for infill then
> it will have separate infill in each tooth which would require
> retraction for each tooth. That should not be a problem.
But it is, its doing a worthless build with yards of string hangin off the part and jammed up the hot end only about 2mm up in a 12mm build. asking the teeth big enough to share/connect the infill is not an option because then its too thick and rigid to survive more than a minute or so.
And thats about a 4 hour teardown to clear that as there will be solid plastic in the heat sink that will have to be burned out of the heat sink and heat break tube. That gets old, very quickly as I just did that yesterday. And the only way to fix it is get rid of the bowden tube so you aren't retracting far enough to pull hot plastic back up into the heat sink. Screw it, a biqu bx will be here Wednesday, has the h2 head, auto bed level, silent motherboard, yadda yadda. Not as big a bed as this CR10-S Pro v2, but still like the ender 3, big enough for most projects. And likely only 1 z screw. But with the H2 head, no bowden tube, so a 2mm retraction is a good starter. At some point, I may see if the direct drive head from another cheap, Chinese disappearing maker printer can be transplated to the CR-10S pro v2. This CR10-S has done a good job, but has very high maintenance needs. The cheep chinky printer, only printed half a very small job, badly when the mainboard died. I also put 2 grand in dremels best, but it was the highest trouble maker I've had to date and less than half its features actually worked.
I've ranted enough for one day. Thanks for reading. I put the flag out since its the 4th, but I feel a nap is the next thing on my agenda.
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
- Louis D. Brandeis
Genes Web page <http://geneslinuxbox.net:6309/gene>
NH
nop head
Sun, Jul 4, 2021 12:14 PM
I have never used a bowden tube myself. All I can say is with direct drive
it can retract as many times as it wants without any jams or stringing. It
does add a bit of time but with 1mm retracts done as fast as possible it
isn't much.
Seems like you are retracting too far if the retract causes a jam.
With some slicers you can specify to not retract when moving small
distances. That might give a little stringing but the idea with bowden
machines is the head can move so fast it doesn't need a retract. That only
works for moving head machines, which I think are the only ones where
bowden makes sense. With a bed slinger the bed weighs more than a direct
drive extruder so not much point in using bowden to make the head lighter.
On Sun, 4 Jul 2021 at 12:04, Gene Heskett gheskett@shentel.net wrote:
On Sunday 04 July 2021 04:30:13 nop head wrote:
If the teeth aren't connected by a section big enough for infill then
it will have separate infill in each tooth which would require
retraction for each tooth. That should not be a problem.
But it is, its doing a worthless build with yards of string hangin off the
part and jammed up the hot end only about 2mm up in a 12mm build. asking
the teeth big enough to share/connect the infill is not an option because
then its too thick and rigid to survive more than a minute or so.
And thats about a 4 hour teardown to clear that as there will be solid
plastic in the heat sink that will have to be burned out of the heat sink
and heat break tube. That gets old, very quickly as I just did that
yesterday. And the only way to fix it is get rid of the bowden tube so you
aren't retracting far enough to pull hot plastic back up into the heat
sink. Screw it, a biqu bx will be here Wednesday, has the h2 head, auto bed
level, silent motherboard, yadda yadda. Not as big a bed as this CR10-S Pro
v2, but still like the ender 3, big enough for most projects. And likely
only 1 z screw. But with the H2 head, no bowden tube, so a 2mm retraction
is a good starter. At some point, I may see if the direct drive head from
another cheap, Chinese disappearing maker printer can be transplated to the
CR-10S pro v2. This CR10-S has done a good job, but has very high
maintenance needs. The cheep chinky printer, only printed half a very small
job, badly when the mainboard died. I also put 2 grand in dremels best, but
it was the highest trouble maker I've had to date and less than half its
features actually worked.
I've ranted enough for one day. Thanks for reading. I put the flag out
since its the 4th, but I feel a nap is the next thing on my agenda.
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
Genes Web page http://geneslinuxbox.net:6309/gene
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
I have never used a bowden tube myself. All I can say is with direct drive
it can retract as many times as it wants without any jams or stringing. It
does add a bit of time but with 1mm retracts done as fast as possible it
isn't much.
Seems like you are retracting too far if the retract causes a jam.
With some slicers you can specify to not retract when moving small
distances. That might give a little stringing but the idea with bowden
machines is the head can move so fast it doesn't need a retract. That only
works for moving head machines, which I think are the only ones where
bowden makes sense. With a bed slinger the bed weighs more than a direct
drive extruder so not much point in using bowden to make the head lighter.
On Sun, 4 Jul 2021 at 12:04, Gene Heskett <gheskett@shentel.net> wrote:
> On Sunday 04 July 2021 04:30:13 nop head wrote:
>
> > If the teeth aren't connected by a section big enough for infill then
>
> > it will have separate infill in each tooth which would require
>
> > retraction for each tooth. That should not be a problem.
>
> But it is, its doing a worthless build with yards of string hangin off the
> part and jammed up the hot end only about 2mm up in a 12mm build. asking
> the teeth big enough to share/connect the infill is not an option because
> then its too thick and rigid to survive more than a minute or so.
>
> And thats about a 4 hour teardown to clear that as there will be solid
> plastic in the heat sink that will have to be burned out of the heat sink
> and heat break tube. That gets old, very quickly as I just did that
> yesterday. And the only way to fix it is get rid of the bowden tube so you
> aren't retracting far enough to pull hot plastic back up into the heat
> sink. Screw it, a biqu bx will be here Wednesday, has the h2 head, auto bed
> level, silent motherboard, yadda yadda. Not as big a bed as this CR10-S Pro
> v2, but still like the ender 3, big enough for most projects. And likely
> only 1 z screw. But with the H2 head, no bowden tube, so a 2mm retraction
> is a good starter. At some point, I may see if the direct drive head from
> another cheap, Chinese disappearing maker printer can be transplated to the
> CR-10S pro v2. This CR10-S has done a good job, but has very high
> maintenance needs. The cheep chinky printer, only printed half a very small
> job, badly when the mainboard died. I also put 2 grand in dremels best, but
> it was the highest trouble maker I've had to date and less than half its
> features actually worked.
>
> I've ranted enough for one day. Thanks for reading. I put the flag out
> since its the 4th, but I feel a nap is the next thing on my agenda.
>
> Cheers, Gene Heskett
>
> --
>
> "There are four boxes to be used in defense of liberty:
>
> soap, ballot, jury, and ammo. Please use in that order."
>
> -Ed Howdershelt (Author)
>
> If we desire respect for the law, we must first make the law respectable.
>
> - Louis D. Brandeis
>
> Genes Web page <http://geneslinuxbox.net:6309/gene>
>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
J
jon
Sun, Jul 4, 2021 12:20 PM
I believe that if the extruder has a PTFE tube and that tube can move
vertically, retractions can pull the tube up, which can fill the space
below the tube with melted plastic, which can cause an extruder jam.
Eliminating retractions can also help in this case, although switching
filaments by a huge retraction could cause the problem even without
retractions during printing.
On 7/4/2021 8:14 AM, nop head wrote:
I have never used a bowden tube myself. All I can say is with direct
drive it can retract as many times as it wants without any jams or
stringing. It does add a bit of time but with 1mm retracts done as
fast as possible it isn't much.
Seems like you are retracting too far if the retract causes a jam.
With some slicers you can specify to not retract when moving small
distances. That might give a little stringing but the idea with bowden
machines is the head can move so fast it doesn't need a retract. That
only works for moving head machines, which I think are the only ones
where bowden makes sense. With a bed slinger the bed weighs more than
a direct drive extruder so not much point in using bowden to make the
head lighter.
unsubscribe send an email to discuss-leave@lists.openscad.org
I believe that if the extruder has a PTFE tube and that tube can move
vertically, retractions can pull the tube up, which can fill the space
below the tube with melted plastic, which can cause an extruder jam.
Eliminating retractions can also help in this case, although switching
filaments by a huge retraction could cause the problem even without
retractions during printing.
On 7/4/2021 8:14 AM, nop head wrote:
> I have never used a bowden tube myself. All I can say is with direct
> drive it can retract as many times as it wants without any jams or
> stringing. It does add a bit of time but with 1mm retracts done as
> fast as possible it isn't much.
>
> Seems like you are retracting too far if the retract causes a jam.
>
> With some slicers you can specify to not retract when moving small
> distances. That might give a little stringing but the idea with bowden
> machines is the head can move so fast it doesn't need a retract. That
> only works for moving head machines, which I think are the only ones
> where bowden makes sense. With a bed slinger the bed weighs more than
> a direct drive extruder so not much point in using bowden to make the
> head lighter.
> unsubscribe send an email to discuss-leave@lists.openscad.org
GH
Gene Heskett
Sun, Jul 4, 2021 1:51 PM
On Sunday 04 July 2021 08:14:57 nop head wrote:
I have never used a bowden tube myself. All I can say is with direct
drive it can retract as many times as it wants without any jams or
stringing. It does add a bit of time but with 1mm retracts done as
fast as possible it isn't much.
Seems like you are retracting too far if the retract causes a jam.
With some slicers you can specify to not retract when moving small
distances. That might give a little stringing but the idea with bowden
machines is the head can move so fast it doesn't need a retract. That
only works for moving head machines, which I think are the only ones
where bowden makes sense. With a bed slinger the bed weighs more than
a direct drive extruder so not much point in using bowden to make the
head lighter.
With a big bed such as the cr10 has, that that thought sure has come up
as a question.
In re the problem nop-head explained as causing the retractions. Which
cura set at 5mm as default but that leaves stringing during travels, so
I reset it to 6mm. A method that specs the max ID that would result in a
good fit on the armatures bearings, then adjust the tooth size to get
sufficient overlap at the base of the triangle to do away with the
retractions while leaving the ID fixed. And with 60 flats. That would
leave this part at the minimum web thickness which might be enough for
decent life. IDK until I've tried it.
I do have room to expand the outer rings yet. Then using that tooth size,
make new outer rings with the tooth point faceing inwards. I also have
the code written but commented out that puts locking keys in those parts
which might slip if not enough friction. But I am concerned with this
part, that the keys will serve as stress concentrators so they've
remained as // comments so far. So I think I'll fire up the husky and do
something about the back yards jungle. 'bout a week overdue.
Thanks muchly.
Cheers, Gene Heskett
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
On Sunday 04 July 2021 08:14:57 nop head wrote:
> I have never used a bowden tube myself. All I can say is with direct
> drive it can retract as many times as it wants without any jams or
> stringing. It does add a bit of time but with 1mm retracts done as
> fast as possible it isn't much.
>
> Seems like you are retracting too far if the retract causes a jam.
>
> With some slicers you can specify to not retract when moving small
> distances. That might give a little stringing but the idea with bowden
> machines is the head can move so fast it doesn't need a retract. That
> only works for moving head machines, which I think are the only ones
> where bowden makes sense. With a bed slinger the bed weighs more than
> a direct drive extruder so not much point in using bowden to make the
> head lighter.
>
With a big bed such as the cr10 has, that that thought sure has come up
as a question.
In re the problem nop-head explained as causing the retractions. Which
cura set at 5mm as default but that leaves stringing during travels, so
I reset it to 6mm. A method that specs the max ID that would result in a
good fit on the armatures bearings, then adjust the tooth size to get
sufficient overlap at the base of the triangle to do away with the
retractions while leaving the ID fixed. And with 60 flats. That would
leave this part at the minimum web thickness which might be enough for
decent life. IDK until I've tried it.
I do have room to expand the outer rings yet. Then using that tooth size,
make new outer rings with the tooth point faceing inwards. I also have
the code written but commented out that puts locking keys in those parts
which might slip if not enough friction. But I am concerned with this
part, that the keys will serve as stress concentrators so they've
remained as // comments so far. So I think I'll fire up the husky and do
something about the back yards jungle. 'bout a week overdue.
Thanks muchly.
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
- Louis D. Brandeis
Genes Web page <http://geneslinuxbox.net:6309/gene>
GH
Gene Heskett
Sun, Jul 4, 2021 11:43 PM
On Sunday 04 July 2021 04:30:13 nop head wrote:
If the teeth aren't connected by a section big enough for infill then
it will have separate infill in each tooth which would require
retraction for each tooth. That should not be a problem.
It was a huge problem, 2 days in a row. So I enlarged the teeth so there
was a bigger x section at the base of the tooth where they overlapped
with the next one, until the retractions disappeared. And I just now
burned out the jam, which went all the way back to the extruder,
breaking the filament where it entered the lever on the extruder, put
all new capricorn in and saved an hour+ in render time. Then it
autozeroed about 50 thou off the plate, redid the homeing for the third
time, got it too close so raised it .1. Now its printing, without the
retractions, but I've not a clue if its going to be usable sizewise, or
if with that thick a web, it will be flexible enough to survive an hour
running without breaking it.
That was after all, the general idea, to make it thin enough that it
could flex without near instant breakage.
I suspect that if I get the inner fit correct, that I'll have to make new
outer splines, and possibly enable a dozen keys around the edges of
those to prevent slippage which would screw up LinuxCNC real bad.
Thank you for the clue that explained the sudden appearance of all those
retractions. I hope I can work around it using PETG for those 3 parts.
With retraction reset to 4mm, was 6mm, stringing doesn't appear to be
hugely worse. PETG strings 50x worse than PLA, with strings so fine they
make a spider jealous. You can feel them in the hair on your arm, but
can't see them.
[elide code no longer valid]
Cheers, Gene Heskett
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
On Sunday 04 July 2021 04:30:13 nop head wrote:
> If the teeth aren't connected by a section big enough for infill then
> it will have separate infill in each tooth which would require
> retraction for each tooth. That should not be a problem.
It was a huge problem, 2 days in a row. So I enlarged the teeth so there
was a bigger x section at the base of the tooth where they overlapped
with the next one, until the retractions disappeared. And I just now
burned out the jam, which went all the way back to the extruder,
breaking the filament where it entered the lever on the extruder, put
all new capricorn in and saved an hour+ in render time. Then it
autozeroed about 50 thou off the plate, redid the homeing for the third
time, got it too close so raised it .1. Now its printing, without the
retractions, but I've not a clue if its going to be usable sizewise, or
if with that thick a web, it will be flexible enough to survive an hour
running without breaking it.
That was after all, the general idea, to make it thin enough that it
could flex without near instant breakage.
I suspect that if I get the inner fit correct, that I'll have to make new
outer splines, and possibly enable a dozen keys around the edges of
those to prevent slippage which would screw up LinuxCNC real bad.
Thank you for the clue that explained the sudden appearance of all those
retractions. I hope I can work around it using PETG for those 3 parts.
With retraction reset to 4mm, was 6mm, stringing doesn't appear to be
hugely worse. PETG strings 50x worse than PLA, with strings so fine they
make a spider jealous. You can feel them in the hair on your arm, but
can't see them.
[elide code no longer valid]
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
- Louis D. Brandeis
Genes Web page <http://geneslinuxbox.net:6309/gene>
NH
nop head
Mon, Jul 5, 2021 8:17 AM
Not sure if you know, but hair like strings can be removed easily with a
flame.
The only PET I have printed is E3D Edge. I didn't get strings with my
default 1mm retraction but it stuck to the nozzle, so couldn't bridge, and
was very weak. I have since learnt I should have dried it.
Dry filament works much better because when the extruder retracts the flow
stops completely. With very dry filament I get zero ooze from the nozzle at
the end of a build. With filament that hasn't been dried I get around 20mm
that I have to snap off before starting the next build. I use that length
to indicate how much moisture there is in the filament.
The other thing that can cause strings is excess temperature that makes the
filament too liquid.
On Mon, 5 Jul 2021 at 00:44, Gene Heskett gheskett@shentel.net wrote:
On Sunday 04 July 2021 04:30:13 nop head wrote:
If the teeth aren't connected by a section big enough for infill then
it will have separate infill in each tooth which would require
retraction for each tooth. That should not be a problem.
It was a huge problem, 2 days in a row. So I enlarged the teeth so there
was a bigger x section at the base of the tooth where they overlapped
with the next one, until the retractions disappeared. And I just now
burned out the jam, which went all the way back to the extruder,
breaking the filament where it entered the lever on the extruder, put
all new capricorn in and saved an hour+ in render time. Then it
autozeroed about 50 thou off the plate, redid the homeing for the third
time, got it too close so raised it .1. Now its printing, without the
retractions, but I've not a clue if its going to be usable sizewise, or
if with that thick a web, it will be flexible enough to survive an hour
running without breaking it.
That was after all, the general idea, to make it thin enough that it
could flex without near instant breakage.
I suspect that if I get the inner fit correct, that I'll have to make new
outer splines, and possibly enable a dozen keys around the edges of
those to prevent slippage which would screw up LinuxCNC real bad.
Thank you for the clue that explained the sudden appearance of all those
retractions. I hope I can work around it using PETG for those 3 parts.
With retraction reset to 4mm, was 6mm, stringing doesn't appear to be
hugely worse. PETG strings 50x worse than PLA, with strings so fine they
make a spider jealous. You can feel them in the hair on your arm, but
can't see them.
[elide code no longer valid]
Cheers, Gene Heskett
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Not sure if you know, but hair like strings can be removed easily with a
flame.
The only PET I have printed is E3D Edge. I didn't get strings with my
default 1mm retraction but it stuck to the nozzle, so couldn't bridge, and
was very weak. I have since learnt I should have dried it.
Dry filament works much better because when the extruder retracts the flow
stops completely. With very dry filament I get zero ooze from the nozzle at
the end of a build. With filament that hasn't been dried I get around 20mm
that I have to snap off before starting the next build. I use that length
to indicate how much moisture there is in the filament.
The other thing that can cause strings is excess temperature that makes the
filament too liquid.
On Mon, 5 Jul 2021 at 00:44, Gene Heskett <gheskett@shentel.net> wrote:
> On Sunday 04 July 2021 04:30:13 nop head wrote:
>
> > If the teeth aren't connected by a section big enough for infill then
> > it will have separate infill in each tooth which would require
> > retraction for each tooth. That should not be a problem.
>
> It was a huge problem, 2 days in a row. So I enlarged the teeth so there
> was a bigger x section at the base of the tooth where they overlapped
> with the next one, until the retractions disappeared. And I just now
> burned out the jam, which went all the way back to the extruder,
> breaking the filament where it entered the lever on the extruder, put
> all new capricorn in and saved an hour+ in render time. Then it
> autozeroed about 50 thou off the plate, redid the homeing for the third
> time, got it too close so raised it .1. Now its printing, without the
> retractions, but I've not a clue if its going to be usable sizewise, or
> if with that thick a web, it will be flexible enough to survive an hour
> running without breaking it.
>
> That was after all, the general idea, to make it thin enough that it
> could flex without near instant breakage.
>
> I suspect that if I get the inner fit correct, that I'll have to make new
> outer splines, and possibly enable a dozen keys around the edges of
> those to prevent slippage which would screw up LinuxCNC real bad.
>
> Thank you for the clue that explained the sudden appearance of all those
> retractions. I hope I can work around it using PETG for those 3 parts.
>
> With retraction reset to 4mm, was 6mm, stringing doesn't appear to be
> hugely worse. PETG strings 50x worse than PLA, with strings so fine they
> make a spider jealous. You can feel them in the hair on your arm, but
> can't see them.
>
> [elide code no longer valid]
>
> Cheers, Gene Heskett
> --
> "There are four boxes to be used in defense of liberty:
> soap, ballot, jury, and ammo. Please use in that order."
> -Ed Howdershelt (Author)
> If we desire respect for the law, we must first make the law respectable.
> - Louis D. Brandeis
> Genes Web page <http://geneslinuxbox.net:6309/gene>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
GH
Gene Heskett
Mon, Jul 5, 2021 8:44 AM
On Monday 05 July 2021 04:17:45 nop head wrote:
Not sure if you know, but hair like strings can be removed easily with
a flame.
I've been shaveing it with a fresh box knife blade.
The only PET I have printed is E3D Edge. I didn't get strings with my
default 1mm retraction but it stuck to the nozzle, so couldn't bridge,
and was very weak. I have since learnt I should have dried it.
Dry filament works much better because when the extruder retracts the
flow stops completely. With very dry filament I get zero ooze from the
nozzle at the end of a build. With filament that hasn't been dried I
get around 20mm that I have to snap off before starting the next
build. I use that length to indicate how much moisture there is in the
filament.
Obviously from that as an indicator I need to rig a dryer box of some
sort to feed filament from.
Been looking for such a food container at wally's but havn't seen a
suitable candidate yet. This PETG has been out of the bag for about 90
days worth of sweaty humidity.
The other thing that can cause strings is excess temperature that
makes the filament too liquid.
Running at 235C and 50C now, I should lower that. Recently sanded
surface, bed adhesion is once again excellent.
Thanks for the newbie info.
Cheers, Gene Heskett
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
On Monday 05 July 2021 04:17:45 nop head wrote:
> Not sure if you know, but hair like strings can be removed easily with
> a flame.
I've been shaveing it with a fresh box knife blade.
>
> The only PET I have printed is E3D Edge. I didn't get strings with my
> default 1mm retraction but it stuck to the nozzle, so couldn't bridge,
> and was very weak. I have since learnt I should have dried it.
>
> Dry filament works much better because when the extruder retracts the
> flow stops completely. With very dry filament I get zero ooze from the
> nozzle at the end of a build. With filament that hasn't been dried I
> get around 20mm that I have to snap off before starting the next
> build. I use that length to indicate how much moisture there is in the
> filament.
Obviously from that as an indicator I need to rig a dryer box of some
sort to feed filament from.
Been looking for such a food container at wally's but havn't seen a
suitable candidate yet. This PETG has been out of the bag for about 90
days worth of sweaty humidity.
> The other thing that can cause strings is excess temperature that
> makes the filament too liquid.
Running at 235C and 50C now, I should lower that. Recently sanded
surface, bed adhesion is once again excellent.
Thanks for the newbie info.
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
- Louis D. Brandeis
Genes Web page <http://geneslinuxbox.net:6309/gene>
MM
Michael Marx
Mon, Jul 5, 2021 8:58 AM
From: nop head [mailto:nop.head@gmail.com]
Sent: Mon, 5 Jul 2021 18:18
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: loooooooong f6, like 10+ minutes but works finally
Not sure if you know, but hair like strings can be removed easily with a flame.
I thought you were going to show a tiny flame-thrower next to your nozzle.
--
This email has been checked for viruses by AVG.
https://www.avg.com
_____
From: nop head [mailto:nop.head@gmail.com]
Sent: Mon, 5 Jul 2021 18:18
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: loooooooong f6, like 10+ minutes but works finally
Not sure if you know, but hair like strings can be removed easily with a flame.
I thought you were going to show a tiny flame-thrower next to your nozzle.
--
This email has been checked for viruses by AVG.
https://www.avg.com
NH
nop head
Mon, Jul 5, 2021 10:02 AM
I use this tiny blowtorch:
[image: IMG_20210705_105737372.jpg]
Plastic has a high specific heat capacity, so if you run it over the part
quickly it doesn't do any damage but the tiny hairs have so little mass
they instantly vaporise.
On Mon, 5 Jul 2021 at 09:59, Michael Marx michael@marx.id.au wrote:
I use this tiny blowtorch:
[image: IMG_20210705_105737372.jpg]
Plastic has a high specific heat capacity, so if you run it over the part
quickly it doesn't do any damage but the tiny hairs have so little mass
they instantly vaporise.
On Mon, 5 Jul 2021 at 09:59, Michael Marx <michael@marx.id.au> wrote:
>
> ------------------------------
>
> *From:* nop head [mailto:nop.head@gmail.com]
> *Sent:* Mon, 5 Jul 2021 18:18
> *To:* OpenSCAD general discussion
> *Subject:* [OpenSCAD] Re: loooooooong f6, like 10+ minutes but works
> finally
>
>
>
> Not sure if you know, but hair like strings can be removed easily with a
> flame.
>
>
>
> I thought you were going to show a tiny flame-thrower next to your nozzle.
>
>
>
>
> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> Virus-free.
> www.avg.com
> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
> <#m_4783178097182476984_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
RW
Ray West
Mon, Jul 5, 2021 10:57 AM
I don't think it is just moisture in your case. To test that, simply
unwind enough filament from the spool, place in your oven for an hour or
so at 50deg C, then print with that length asap. I've mentioned before
about the cura extensions - there are retract tests in there. You need
to set up the printer for your filament. tolerances between filament
blends, nozzle size, feed mechanism, thermistors, etc, can not
necessarily cancel each other out, and then there is the hot end cooling
fan on the ender,which also cools the part. You need to do the tests -
they wouldn't be available if they were not needed. If you are getting
an allmetal/direct drive hotend, you will have to start all over again
wrt the settings. If you are getting jams now, with a bowden tube setup,
and you use the same 'gung-ho' approach to settings, you will be forever
trying unsuccessfully to unblock the nozzle (been there, done that- not
the gung-ho, but the unblocking..). But properly set up, it is easy to
unblock the hot end, when you forget, and turn off the printer after the
print has finished, but before the hot end has fully cooled. And those
little 'cob-webs' - they will jam the fans. If humidity is the problem,
then move to Arizona, or just print with HIPS, but you will love that!.
On 05/07/2021 09:44, Gene Heskett wrote:
On Monday 05 July 2021 04:17:45 nop head wrote:
Not sure if you know, but hair like strings can be removed easily with
a flame.
I've been shaveing it with a fresh box knife blade.
I don't think it is just moisture in your case. To test that, simply
unwind enough filament from the spool, place in your oven for an hour or
so at 50deg C, then print with that length asap. I've mentioned before
about the cura extensions - there are retract tests in there. You need
to set up the printer for your filament. tolerances between filament
blends, nozzle size, feed mechanism, thermistors, etc, can not
necessarily cancel each other out, and then there is the hot end cooling
fan on the ender,which also cools the part. You need to do the tests -
they wouldn't be available if they were not needed. If you are getting
an allmetal/direct drive hotend, you will have to start all over again
wrt the settings. If you are getting jams now, with a bowden tube setup,
and you use the same 'gung-ho' approach to settings, you will be forever
trying unsuccessfully to unblock the nozzle (been there, done that- not
the gung-ho, but the unblocking..). But properly set up, it is easy to
unblock the hot end, when you forget, and turn off the printer after the
print has finished, but before the hot end has fully cooled. And those
little 'cob-webs' - they will jam the fans. If humidity is the problem,
then move to Arizona, or just print with HIPS, but you will love that!.
On 05/07/2021 09:44, Gene Heskett wrote:
> On Monday 05 July 2021 04:17:45 nop head wrote:
>
>> Not sure if you know, but hair like strings can be removed easily with
>> a flame.
> I've been shaveing it with a fresh box knife blade.
>
AM
Adrian Mariano
Mon, Jul 5, 2021 12:39 PM
I feel like Gene is having a remarkable amount of trouble getting
successful prints. I print PETG all the time with my Prusa with the
default settings in PruseSlicer (aka slic3er) and it just works. The only
way my prints ever fail is through failed bed adhesion. PETG is not
particularly sensitive to moisture and does not have to be printed from a
drybox like nylon, for example. I do store all of my filaments in air
tight boxes with bags of desiccant, but I just print them in the open air
and have never had trouble.
On Mon, Jul 5, 2021 at 6:57 AM Ray West raywest@raywest.com wrote:
I don't think it is just moisture in your case. To test that, simply
unwind enough filament from the spool, place in your oven for an hour or
so at 50deg C, then print with that length asap. I've mentioned before
about the cura extensions - there are retract tests in there. You need
to set up the printer for your filament. tolerances between filament
blends, nozzle size, feed mechanism, thermistors, etc, can not
necessarily cancel each other out, and then there is the hot end cooling
fan on the ender,which also cools the part. You need to do the tests -
they wouldn't be available if they were not needed. If you are getting
an allmetal/direct drive hotend, you will have to start all over again
wrt the settings. If you are getting jams now, with a bowden tube setup,
and you use the same 'gung-ho' approach to settings, you will be forever
trying unsuccessfully to unblock the nozzle (been there, done that- not
the gung-ho, but the unblocking..). But properly set up, it is easy to
unblock the hot end, when you forget, and turn off the printer after the
print has finished, but before the hot end has fully cooled. And those
little 'cob-webs' - they will jam the fans. If humidity is the problem,
then move to Arizona, or just print with HIPS, but you will love that!.
On 05/07/2021 09:44, Gene Heskett wrote:
On Monday 05 July 2021 04:17:45 nop head wrote:
Not sure if you know, but hair like strings can be removed easily with
a flame.
I've been shaveing it with a fresh box knife blade.
I feel like Gene is having a remarkable amount of trouble getting
successful prints. I print PETG all the time with my Prusa with the
default settings in PruseSlicer (aka slic3er) and it just works. The only
way my prints ever fail is through failed bed adhesion. PETG is not
particularly sensitive to moisture and does not have to be printed from a
drybox like nylon, for example. I do *store* all of my filaments in air
tight boxes with bags of desiccant, but I just print them in the open air
and have never had trouble.
On Mon, Jul 5, 2021 at 6:57 AM Ray West <raywest@raywest.com> wrote:
> I don't think it is just moisture in your case. To test that, simply
> unwind enough filament from the spool, place in your oven for an hour or
> so at 50deg C, then print with that length asap. I've mentioned before
> about the cura extensions - there are retract tests in there. You need
> to set up the printer for your filament. tolerances between filament
> blends, nozzle size, feed mechanism, thermistors, etc, can not
> necessarily cancel each other out, and then there is the hot end cooling
> fan on the ender,which also cools the part. You need to do the tests -
> they wouldn't be available if they were not needed. If you are getting
> an allmetal/direct drive hotend, you will have to start all over again
> wrt the settings. If you are getting jams now, with a bowden tube setup,
> and you use the same 'gung-ho' approach to settings, you will be forever
> trying unsuccessfully to unblock the nozzle (been there, done that- not
> the gung-ho, but the unblocking..). But properly set up, it is easy to
> unblock the hot end, when you forget, and turn off the printer after the
> print has finished, but before the hot end has fully cooled. And those
> little 'cob-webs' - they will jam the fans. If humidity is the problem,
> then move to Arizona, or just print with HIPS, but you will love that!.
>
> On 05/07/2021 09:44, Gene Heskett wrote:
> > On Monday 05 July 2021 04:17:45 nop head wrote:
> >
> >> Not sure if you know, but hair like strings can be removed easily with
> >> a flame.
> > I've been shaveing it with a fresh box knife blade.
> >
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
J
jon
Mon, Jul 5, 2021 1:17 PM
I agree that I get perfect PETG prints from my Prusa MK3S essentially
all of the time. I use hairspray to help the prints adhere to the build
plate, and I did need to dry a reel of PETG that had been out in the
humidity for a while, but other than that, it is simple and reliable for me.
On 7/5/2021 8:39 AM, Adrian Mariano wrote:
I feel like Gene is having a remarkable amount of trouble getting
successful prints. I print PETG all the time with my Prusa with the
default settings in PruseSlicer (aka slic3er) and it just works. The
only way my prints ever fail is through failed bed adhesion. PETG is
not particularly sensitive to moisture and does not have to be printed
from a drybox like nylon, for example. I do store all of my
filaments in air tight boxes with bags of desiccant, but I just print
them in the open air and have never had trouble.
I agree that I get perfect PETG prints from my Prusa MK3S essentially
all of the time. I use hairspray to help the prints adhere to the build
plate, and I did need to dry a reel of PETG that had been out in the
humidity for a while, but other than that, it is simple and reliable for me.
On 7/5/2021 8:39 AM, Adrian Mariano wrote:
> I feel like Gene is having a remarkable amount of trouble getting
> successful prints. I print PETG all the time with my Prusa with the
> default settings in PruseSlicer (aka slic3er) and it just works. The
> only way my prints ever fail is through failed bed adhesion. PETG is
> not particularly sensitive to moisture and does not have to be printed
> from a drybox like nylon, for example. I do *store* all of my
> filaments in air tight boxes with bags of desiccant, but I just print
> them in the open air and have never had trouble.
>
JW
Jan Wieck
Mon, Jul 5, 2021 2:22 PM
On 7/5/21 4:17 AM, nop head wrote:
Not sure if you know, but hair like strings can be removed easily with a
flame.
The only PET I have printed is E3D Edge. I didn't get strings with my
default 1mm retraction but it stuck to the nozzle, so couldn't bridge,
and was very weak. I have since learnt I should have dried it.
+1 on dry PET filament.
I use my Nesco American Harvest food dehydrator for that. It is a round
one with a thermostat (model FD-61). They sell extra trays to expand it.
With the inner grid cut out, the trays become spacers. One regular tray
plus two spacers holds one spool of filament. With that setup I can dry
up to 4 spools at the same time and when set to 60°C over night, they do
get super dry.
When I am not printing it still works perfectly fine to make jerky,
dried tomatoes and all the other things it was meant for.
Regards, Jan
--
Jan Wieck
On 7/5/21 4:17 AM, nop head wrote:
> Not sure if you know, but hair like strings can be removed easily with a
> flame.
>
> The only PET I have printed is E3D Edge. I didn't get strings with my
> default 1mm retraction but it stuck to the nozzle, so couldn't bridge,
> and was very weak. I have since learnt I should have dried it.
+1 on dry PET filament.
I use my Nesco American Harvest food dehydrator for that. It is a round
one with a thermostat (model FD-61). They sell extra trays to expand it.
With the inner grid cut out, the trays become spacers. One regular tray
plus two spacers holds one spool of filament. With that setup I can dry
up to 4 spools at the same time and when set to 60°C over night, they do
get super dry.
When I am not printing it still works perfectly fine to make jerky,
dried tomatoes and all the other things it was meant for.
Regards, Jan
--
Jan Wieck
JW
Jan Wieck
Mon, Jul 5, 2021 2:27 PM
On 7/5/21 6:57 AM, Ray West wrote:
I don't think it is just moisture in your case. To test that, simply
unwind enough filament from the spool, place in your oven for an hour or
so at 50deg C, then print with that length asap. I've mentioned before
The success of that method depends on the oven. My gas oven produces too
much moisture by itself and I can't dial it low enough, so that method
has the risk of deforming the filament here.
Regards, Jan
--
Jan Wieck
On 7/5/21 6:57 AM, Ray West wrote:
> I don't think it is just moisture in your case. To test that, simply
> unwind enough filament from the spool, place in your oven for an hour or
> so at 50deg C, then print with that length asap. I've mentioned before
The success of that method depends on the oven. My gas oven produces too
much moisture by itself and I can't dial it low enough, so that method
has the risk of deforming the filament here.
Regards, Jan
--
Jan Wieck
NH
nop head
Mon, Jul 5, 2021 2:37 PM
On 7/5/21 6:57 AM, Ray West wrote:
I don't think it is just moisture in your case. To test that, simply
unwind enough filament from the spool, place in your oven for an hour or
so at 50deg C, then print with that length asap. I've mentioned before
The success of that method depends on the oven. My gas oven produces too
much moisture by itself and I can't dial it low enough, so that method
has the risk of deforming the filament here.
Regards, Jan
--
Jan Wieck
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Probably a bit OTT but I make my own drying boxes that are twin walled with
insulation in between, so very much like an oven.
https://hydraraptor.blogspot.com/2020/07/over-cooked-it.html
On Mon, 5 Jul 2021 at 15:33, Jan Wieck <jan@wi3ck.info> wrote:
> On 7/5/21 6:57 AM, Ray West wrote:
> > I don't think it is just moisture in your case. To test that, simply
> > unwind enough filament from the spool, place in your oven for an hour or
> > so at 50deg C, then print with that length asap. I've mentioned before
>
> The success of that method depends on the oven. My gas oven produces too
> much moisture by itself and I can't dial it low enough, so that method
> has the risk of deforming the filament here.
>
>
> Regards, Jan
>
> --
> Jan Wieck
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
J
jon
Mon, Jul 5, 2021 2:39 PM
I have about a kilo of desiccant in small bags, because each spool of
filament came with a bag. You should be able to heat the desiccant in
the oven to drive the moisture out and then use the desiccant on the
filament. You can also get desiccant at crafts stores like Michael's
(in the States)
On 7/5/2021 10:27 AM, Jan Wieck wrote:
On 7/5/21 6:57 AM, Ray West wrote:
I don't think it is just moisture in your case. To test that, simply
unwind enough filament from the spool, place in your oven for an hour or
so at 50deg C, then print with that length asap. I've mentioned before
The success of that method depends on the oven. My gas oven produces
too much moisture by itself and I can't dial it low enough, so that
method has the risk of deforming the filament here.
Regards, Jan
I have about a kilo of desiccant in small bags, because each spool of
filament came with a bag. You should be able to heat the desiccant in
the oven to drive the moisture out and then use the desiccant on the
filament. You can also get desiccant at crafts stores like Michael's
(in the States)
On 7/5/2021 10:27 AM, Jan Wieck wrote:
> On 7/5/21 6:57 AM, Ray West wrote:
>> I don't think it is just moisture in your case. To test that, simply
>> unwind enough filament from the spool, place in your oven for an hour or
>> so at 50deg C, then print with that length asap. I've mentioned before
>
> The success of that method depends on the oven. My gas oven produces
> too much moisture by itself and I can't dial it low enough, so that
> method has the risk of deforming the filament here.
>
>
> Regards, Jan
>
GH
Gene Heskett
Mon, Jul 5, 2021 3:25 PM
On Monday 05 July 2021 04:58:40 Michael Marx wrote:
From: nop head [mailto:nop.head@gmail.com]
Sent: Mon, 5 Jul 2021 18:18
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: loooooooong f6, like 10+ minutes but works
finally
Not sure if you know, but hair like strings can be removed easily with
a flame.
I thought you were going to show a tiny flame-thrower next to your
nozzle.
Don't tempt me Michael, I have reached that age, 86, where life in prison
has become a very small deterrent. ;o) I'm using my gas cookstove to
clean plugged nozzles and heat breaks already.
Cheers, Gene Heskett
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
On Monday 05 July 2021 04:58:40 Michael Marx wrote:
> _____
>
> From: nop head [mailto:nop.head@gmail.com]
> Sent: Mon, 5 Jul 2021 18:18
> To: OpenSCAD general discussion
> Subject: [OpenSCAD] Re: loooooooong f6, like 10+ minutes but works
> finally
>
>
>
> Not sure if you know, but hair like strings can be removed easily with
> a flame.
>
>
>
> I thought you were going to show a tiny flame-thrower next to your
> nozzle.
Don't tempt me Michael, I have reached that age, 86, where life in prison
has become a very small deterrent. ;o) I'm using my gas cookstove to
clean plugged nozzles and heat breaks already.
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
- Louis D. Brandeis
Genes Web page <http://geneslinuxbox.net:6309/gene>
RW
Ray West
Mon, Jul 5, 2021 3:29 PM
Humidity may, or may not be a problem. It depends where you are in the
world. Epson ink jet printers, for example, if using pigment ink, don't
like it in a dry atmosphere, most plastic fdm filaments don't like a
damp atmosphere. In many locations the little bag of silica gel is
useless, and at least one filament manufacturer is not providing them in
the vac sealed bag. Wrt petg, it'll stick to most things when hot, in
that case the hair spray is used as a release film, and is easier to
apply (if more messy) compared to a glue stick. Just because something
works for me or you, in the case of 3d printing, does not mean the same
will work for others, there are too many variables in play. The best
that can be done is to thoroughly test your own system, with your own
filament, although other folk's settings may be used as a starting point.
And then, of course, there is the thing that Gene is trying to print. If
it was easy, then the drive manufacturers would be doing it, but afaik,
they are not able to do so, at least with the cheap/diy/common type
filaments/printers.
On 05/07/2021 14:17, jon wrote:
I agree that I get perfect PETG prints from my Prusa MK3S essentially
all of the time. I use hairspray to help the prints adhere to the
build plate, and I did need to dry a reel of PETG that had been out in
the humidity for a while, but other than that, it is simple and
reliable for me.
On 7/5/2021 8:39 AM, Adrian Mariano wrote:
I feel like Gene is having a remarkable amount of trouble getting
successful prints. I print PETG all the time with my Prusa with the
default settings in PruseSlicer (aka slic3er) and it just works. The
only way my prints ever fail is through failed bed adhesion. PETG is
not particularly sensitive to moisture and does not have to be
printed from a drybox like nylon, for example. I do store all of
my filaments in air tight boxes with bags of desiccant, but I just
print them in the open air and have never had trouble.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Humidity may, or may not be a problem. It depends where you are in the
world. Epson ink jet printers, for example, if using pigment ink, don't
like it in a dry atmosphere, most plastic fdm filaments don't like a
damp atmosphere. In many locations the little bag of silica gel is
useless, and at least one filament manufacturer is not providing them in
the vac sealed bag. Wrt petg, it'll stick to most things when hot, in
that case the hair spray is used as a release film, and is easier to
apply (if more messy) compared to a glue stick. Just because something
works for me or you, in the case of 3d printing, does not mean the same
will work for others, there are too many variables in play. The best
that can be done is to thoroughly test your own system, with your own
filament, although other folk's settings may be used as a starting point.
And then, of course, there is the thing that Gene is trying to print. If
it was easy, then the drive manufacturers would be doing it, but afaik,
they are not able to do so, at least with the cheap/diy/common type
filaments/printers.
On 05/07/2021 14:17, jon wrote:
> I agree that I get perfect PETG prints from my Prusa MK3S essentially
> all of the time. I use hairspray to help the prints adhere to the
> build plate, and I did need to dry a reel of PETG that had been out in
> the humidity for a while, but other than that, it is simple and
> reliable for me.
>
> On 7/5/2021 8:39 AM, Adrian Mariano wrote:
>> I feel like Gene is having a remarkable amount of trouble getting
>> successful prints. I print PETG all the time with my Prusa with the
>> default settings in PruseSlicer (aka slic3er) and it just works. The
>> only way my prints ever fail is through failed bed adhesion. PETG is
>> not particularly sensitive to moisture and does not have to be
>> printed from a drybox like nylon, for example. I do *store* all of
>> my filaments in air tight boxes with bags of desiccant, but I just
>> print them in the open air and have never had trouble.
>>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org