Dear OpenSCAD Forum Members,
I am requesting assistance in modifying one drawing file as I am not
familiar with OpenSCAD code.
If anyone would be willing to help, please contact me I can send you the
file to review for your consideration.
Basically, it is an Auger that I need to add one turn / blade too and
remove the end drive plates. I suspect it would be straight forward, but
again, I'm not qualified.
I sincerely appreciate any offers for assistance.
T.Hartlove, Old Dominion University, Nuclear & Particle Physics Group
--
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
Tom Hartlove wrote
I sincerely appreciate any offers for assistance.
Hi,
I'll have a look and see if it is within my math limits.
You can use the More button to attach a file (then others can look too), or
if you want it private, click on my Username and there is an email button.
Unless specifically shown otherwise above, my contribution is in the Public Domain; To the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. This work is published globally via the internet. :) Inclusion of works of previous authors is not included in the above.
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837p11838.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
Hi Michael,
I am attaching the file for you. This is a first for me too, hope it works.
Again, I would like to remove the end parts (round plates) and extend the
auger one full turn.
Thanks for your interest.
Tom
auger.scad http://forum.openscad.org/file/n11839/auger.scad
--
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837p11839.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
Tom, it uses two external files
Thread_Library.scad
auger.stl
I'll need those too.
Unless specifically shown otherwise above, my contribution is in the Public Domain; To the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. This work is published globally via the internet. :) Inclusion of works of previous authors is not included in the above.
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837p11840.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
OK,
I hope these are correct....
/Users/thomashartlovesr/Downloads/auger_screwplate.stl
/Users/thomashartlovesr/Downloads/uploads_83_df_7c_d4_19_Thread_Library.scad
--
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837p11841.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
let me try that again,
auger_screwplate.stl
http://forum.openscad.org/file/n11842/auger_screwplate.stl
uploads_83_df_7c_d4_19_Thread_Library.scad
http://forum.openscad.org/file/n11842/uploads_83_df_7c_d4_19_Thread_Library.scad
--
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837p11842.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
looks like only one went through, here is the .stl file
auger_screwplate.stl
http://forum.openscad.org/file/n11843/auger_screwplate.stl
--
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837p11843.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
I found thread_library.scad
The auger.scad code, as it is, uses the auger.stl (or _screwplate) as the
source of the auger shape.
Currently the auger_screwplate.stl is a bit broken, and is split in halt for
printing. Looks like this (I've rotated it, it is normally flat):
http://forum.openscad.org/file/n11847/auger_netfabb.jpg
Those brown lines are the broken bits. But seeing I managed to print one of
these http://www.thingiverse.com/thing:27854 some time ago it may work.
As it sounds like you don't want all the other bits, servershim, tubemount,
drivemount etc.
Back to basics.
I presume you want to 3D print the auger?
What type of printer do you have? What slicer software?
It would be easier to make a new auger than try to work with the existing
.stl file.
The important parameters are, outside diameter, diameter of the central
cylinder, length of the auger.
Since parameters are defined here:
module auger() {
cylinder(h=96, r=4, $fn=24);
trapezoidThread(
length=118,
pitch=26,
pitchRadius=8,
threadHeightToPitch=0.70,
profileRatio=0.20,
threadAngle=10,
RH=true,
clearance=0.1,
backlash=0.1,
stepsPerTurn=48
);
}
It looks like that is what the original author used, it appears s/he
exported the auger, split it in two and rotated it for printing, then
chopped the end to length.
So if you give me the length of the auger you want, and how the ends should
be (flat?) I should be able to produce one.
Presumably also split in half for printing in a FFF (ie Reprap) style
printer?
Unless specifically shown otherwise above, my contribution is in the Public Domain; To the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. This work is published globally via the internet. :) Inclusion of works of previous authors is not included in the above.
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837p11847.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
Hi Michael,
I did use the auger from the cat feeder, it's pretty cool and seems a lot of
work.
I would like the center shaft the same diameter, about 8mm, the blade
diameter at 31.5mm and the length of 114.5mm, that is the length of the tube
I am inserting it into, I wish to have 6 full blades in that length.
I printed several of them (split in two as you say) on a MakerBot2, and
assembled one from all the parts for the 114.5 length and 6 full blades, it
worked out great, I only adjusted the original file for the diameter before
printing.
It is important to remove those end pieces, I need just the auger blades on
the shaft.
Hope that helps.
Thanks very much!
Tom
--
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837p11849.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
So you don't need and additional shaft protruding without the blade?
Unless specifically shown otherwise above, my contribution is in the Public Domain; To the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. This work is published globally via the internet. :) Inclusion of works of previous authors is not included in the above.
View this message in context: http://forum.openscad.org/Assistance-modifying-aa-scad-file-tp11837p11850.html
Sent from the OpenSCAD mailing list archive at Nabble.com.