The conical logarithmic spiral viscosity pump design is well suited for pumping applications where small size, high pressure, valveless, and gasketless operation are important. Examples include:
pumping grease or other lubricants through a mechanical system;
injection molding;
high temperature pumping of plastics, tars, and waxes;
liquid chromatography analysis;
hydraulic power conversion;
deposition of molten metal alloys and composites.
In addition to the properties that the pump can generate high pressure at high temperature, the design also has very low pressure fluctuation (unlike gearpumps). It can change pressure very quickly, allowing the flow rate to track with other variable such as the velocity of an extruding nozzle. The mass is low enough (due to the small size) that the pump itself can be mounted at the depositing nozzle of a robotic system.
Will need to figure out a reasonable way to model a logarithmic spiral on a cone...
On Monday, November 30, 2015 at 13:34, Ryan Carlyle wrote:
Hmm yeah not a bad idea.Will need to figure out a reasonable way to model a logarithmic spiral on a cone...
--You received this message because you are subscribed to the Google Groups "3DP Ideas" group.To unsubscribe from this group and stop receiving emails from it, send an email to 3dp-ideas+...@googlegroups.com.To post to this group, send email to 3dp-...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/3dp-ideas/4f1d680c-a386-4d2c-b069-28f0176c0fee%40googlegroups.com.For more options, visit https://groups.google.com/d/optout.
On Monday, November 30, 2015 at 14:02, Ryan Carlyle wrote:
Well, there's "Boolean some primitives" easy and there's "decompose a complex 3D shape into a series of non-linear equations" easy. Not exactly an "intro to OpenSCAD" level project, I don't think. Wouldn't mind being proven wrong if you want to take a stab at it though...?
--You received this message because you are subscribed to the Google Groups "3DP Ideas" group.To unsubscribe from this group and stop receiving emails from it, send an email to 3dp-ideas+...@googlegroups.com.To post to this group, send email to 3dp-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/3dp-ideas/1b152330-29b1-4fce-a85d-b6e60a4fd1e9%40googlegroups.com.
For me, the hardest part is deciding whether to build it on top of the screw ahead script I just wrote (which would be easier for me, but harder to comprehend) or to do it the "intro to openscad" way.On Monday, November 30, 2015 at 14:02, Ryan Carlyle wrote:
Well, there's "Boolean some primitives" easy and there's "decompose a complex 3D shape into a series of non-linear equations" easy. Not exactly an "intro to OpenSCAD" level project, I don't think. Wouldn't mind being proven wrong if you want to take a stab at it though...?--You received this message because you are subscribed to the Google Groups "3DP Ideas" group.
To unsubscribe from this group and stop receiving emails from it, send an email to 3dp-ideas+unsubscribe@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to 3dp-ideas+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/3dp-ideas/b7df5e6b-3f54-442d-acc6-3e3d608d7b2e%40googlegroups.com.
Not too shabby :-)
On Monday, November 30, 2015 at 5:28:25 PM UTC-6, Whosa whatsis wrote:
Not having looked at the patent description or any of the numbers (just solving the "how to model a logarithmic spiral on a cone" problem for now), here it is in OpenSCAD. I chose the "intro to OpenSCAD method, which isn't as clean (and is much slower to render), but will allow you to get in there and play with the values more easily.e = 2.71828;a = 1;b = .002;step = .2;difference() {cylinder(r = 100, r1 = 0, h = 100);for(r1 = [0:step:100]) hull() for(r = [r1, r1 + step], theta = 1/b * ln(r/a)) rotate(theta) translate([r, 0, r]) rotate([0, 45, 0]) rotate(74) cube([.1, r/3, r/3], center = true);}On Monday, November 30, 2015 at 15:20, Ryan Carlyle wrote:
Either's fine by me if you actually do it :-)
Make sure you check the patent description, the IBM guys claim there's some pretty specific geometry you want to hit.
On Monday, November 30, 2015 at 4:49:56 PM UTC-6, Whosa whatsis wrote:
For me, the hardest part is deciding whether to build it on top of the screw ahead script I just wrote (which would be easier for me, but harder to comprehend) or to do it the "intro to openscad" way.On Monday, November 30, 2015 at 14:02, Ryan Carlyle wrote:
Well, there's "Boolean some primitives" easy and there's "decompose a complex 3D shape into a series of non-linear equations" easy. Not exactly an "intro to OpenSCAD" level project, I don't think. Wouldn't mind being proven wrong if you want to take a stab at it though...?--You received this message because you are subscribed to the Google Groups "3DP Ideas" group.
To unsubscribe from this group and stop receiving emails from it, send an email to 3dp-ideas+...@googlegroups.com.
To post to this group, send email to 3dp-...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/3dp-ideas/1b152330-29b1-4fce-a85d-b6e60a4fd1e9%40googlegroups.com.For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "3DP Ideas" group.
To unsubscribe from this group and stop receiving emails from it, send an email to 3dp-ideas+...@googlegroups.com.