discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Hutmutter with BOSL2

KE
Karl Exler
Mon, Jun 5, 2023 12:47 PM

Dear all!

In the past I learned to create nuts and bolts with BOSL2...  :-)

Now I have demand for a -in German so called "Hutmutter". Do I have to
construct it with a nut and a sphere on it's top ? Or is there a
function I did not found, looking for it??
Thanks in advance

Karl

Dear all! In the past I learned to create nuts and bolts with BOSL2...  :-) Now I have demand for a -in German so called "Hutmutter". Do I have to construct it with a nut and a sphere on it's top ? Or is there a function I did not found, looking for it?? Thanks in advance Karl
DS
Daniel Shriver
Mon, Jun 5, 2023 1:23 PM

Looking at your picture, those don't appear to be simple hemispheres.  It
looks like a cylinder, with a partial sphere above it (might be less than a
hemisphere), and the top of the sphere is cut off to make a flat circle.
Shouldn't be difficult to approximate, but if there is some requirement to
get the shape exactly right you might need to either do some measurements
or look into specifications.

On Mon, Jun 5, 2023 at 7:48 AM Karl Exler karl.exler@meinklang.cc wrote:

Dear all!

In the past I learned to create nuts and bolts with BOSL2...  :-)

Now I have demand for a -in German so called "Hutmutter". Do I have to
construct it with a nut and a sphere on it's top ? Or is there a function I
did not found, looking for it??
Thanks in advance

Karl


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

Looking at your picture, those don't appear to be simple hemispheres. It looks like a cylinder, with a partial sphere above it (might be less than a hemisphere), and the top of the sphere is cut off to make a flat circle. Shouldn't be difficult to approximate, but if there is some requirement to get the shape exactly right you might need to either do some measurements or look into specifications. On Mon, Jun 5, 2023 at 7:48 AM Karl Exler <karl.exler@meinklang.cc> wrote: > Dear all! > > In the past I learned to create nuts and bolts with BOSL2... :-) > > Now I have demand for a -in German so called "Hutmutter". Do I have to > construct it with a nut and a sphere on it's top ? Or is there a function I > did not found, looking for it?? > Thanks in advance > > Karl > > > > > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
HL
Hans L
Mon, Jun 5, 2023 5:32 PM

For what it's worth, those are called "acorn nuts" in the US (like what
squirrels eat).

On Mon, Jun 5, 2023 at 8:23 AM Daniel Shriver tabbydan@gmail.com wrote:

Looking at your picture, those don't appear to be simple hemispheres.  It
looks like a cylinder, with a partial sphere above it (might be less than a
hemisphere), and the top of the sphere is cut off to make a flat circle.
Shouldn't be difficult to approximate, but if there is some requirement to
get the shape exactly right you might need to either do some measurements
or look into specifications.

On Mon, Jun 5, 2023 at 7:48 AM Karl Exler karl.exler@meinklang.cc wrote:

Dear all!

In the past I learned to create nuts and bolts with BOSL2...  :-)

Now I have demand for a -in German so called "Hutmutter". Do I have to
construct it with a nut and a sphere on it's top ? Or is there a function I
did not found, looking for it??
Thanks in advance

Karl


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

For what it's worth, those are called "acorn nuts" in the US (like what squirrels eat). On Mon, Jun 5, 2023 at 8:23 AM Daniel Shriver <tabbydan@gmail.com> wrote: > Looking at your picture, those don't appear to be simple hemispheres. It > looks like a cylinder, with a partial sphere above it (might be less than a > hemisphere), and the top of the sphere is cut off to make a flat circle. > Shouldn't be difficult to approximate, but if there is some requirement to > get the shape exactly right you might need to either do some measurements > or look into specifications. > > On Mon, Jun 5, 2023 at 7:48 AM Karl Exler <karl.exler@meinklang.cc> wrote: > >> Dear all! >> >> In the past I learned to create nuts and bolts with BOSL2... :-) >> >> Now I have demand for a -in German so called "Hutmutter". Do I have to >> construct it with a nut and a sphere on it's top ? Or is there a function I >> did not found, looking for it?? >> Thanks in advance >> >> Karl >> >> >> >> >> _______________________________________________ >> OpenSCAD mailing list >> To unsubscribe send an email to discuss-leave@lists.openscad.org >> > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
RD
Revar Desmera
Mon, Jun 5, 2023 10:33 PM

BOSL2 does not currently have acorn/hutmutter nuts.  My first instinct would be to take a nut() from screws.scad, attach a short tube() from shapes3d.scad to the top of it, then attach the top_half() of a sphere() to the top of that.

Something like:

include <BOSL2/std.scad>
include <BOSL2/screws.scad>
nut("M4") {
attach(TOP) tube(id=4, wall=1, h=2) {
attach(TOP) top_half() sphere(d=6);
}
}

  • Revar

On Jun 5, 2023, at 5:47 AM, Karl Exler karl.exler@meinklang.cc wrote:

Dear all!

In the past I learned to create nuts and bolts with BOSL2...  :-)

Now I have demand for a -in German so called "Hutmutter". Do I have to construct it with a nut and a sphere on it's top ? Or is there a function I did not found, looking for it??
Thanks in advance

Karl

<UCXqrNoQJxQOnSvK.png>


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

BOSL2 does not currently have acorn/hutmutter nuts. My first instinct would be to take a `nut()` from screws.scad, attach a short `tube()` from shapes3d.scad to the top of it, then attach the `top_half()` of a `sphere()` to the top of that. Something like: include <BOSL2/std.scad> include <BOSL2/screws.scad> nut("M4") { attach(TOP) tube(id=4, wall=1, h=2) { attach(TOP) top_half() sphere(d=6); } }  - Revar > On Jun 5, 2023, at 5:47 AM, Karl Exler <karl.exler@meinklang.cc> wrote: > > Dear all! > > In the past I learned to create nuts and bolts with BOSL2... :-) > > Now I have demand for a -in German so called "Hutmutter". Do I have to construct it with a nut and a sphere on it's top ? Or is there a function I did not found, looking for it?? > Thanks in advance > > Karl > > > > > > <UCXqrNoQJxQOnSvK.png> > > > > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org
DS
Daniel Shriver
Mon, Jun 5, 2023 10:39 PM

I think you need to chop off the top.  I think that flat part on the top is
intentional.  Otherwise, what you came up with is the same as what I
suggested.  I have no idea if there are stringent specifications for the
top part though.

On Mon, Jun 5, 2023 at 5:34 PM Revar Desmera revarbat@gmail.com wrote:

BOSL2 does not currently have acorn/hutmutter nuts.  My first instinct
would be to take a nut() from screws.scad, attach a short tube() from
shapes3d.scad to the top of it, then attach the top_half() of a
sphere() to the top of that.

Something like:

include <BOSL2/std.scad>
include <BOSL2/screws.scad>
nut("M4") {
attach(TOP) tube(id=4, wall=1, h=2) {
attach(TOP) top_half() sphere(d=6);
}
}

[image: Screenshot 2023-06-05 at 3.30.10 PM.png]

  • Revar

On Jun 5, 2023, at 5:47 AM, Karl Exler karl.exler@meinklang.cc wrote:

Dear all!

In the past I learned to create nuts and bolts with BOSL2...  :-)

Now I have demand for a -in German so called "Hutmutter". Do I have to
construct it with a nut and a sphere on it's top ? Or is there a function I
did not found, looking for it??
Thanks in advance

Karl

<UCXqrNoQJxQOnSvK.png>


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

I think you need to chop off the top. I think that flat part on the top is intentional. Otherwise, what you came up with is the same as what I suggested. I have no idea if there are stringent specifications for the top part though. On Mon, Jun 5, 2023 at 5:34 PM Revar Desmera <revarbat@gmail.com> wrote: > BOSL2 does not currently have acorn/hutmutter nuts. My first instinct > would be to take a `nut()` from screws.scad, attach a short `tube()` from > shapes3d.scad to the top of it, then attach the `top_half()` of a > `sphere()` to the top of that. > > Something like: > > include <BOSL2/std.scad> > include <BOSL2/screws.scad> > nut("M4") { > attach(TOP) tube(id=4, wall=1, h=2) { > attach(TOP) top_half() sphere(d=6); > } > } > > [image: Screenshot 2023-06-05 at 3.30.10 PM.png] > > - Revar > > > On Jun 5, 2023, at 5:47 AM, Karl Exler <karl.exler@meinklang.cc> wrote: > > Dear all! > > In the past I learned to create nuts and bolts with BOSL2... :-) > > Now I have demand for a -in German so called "Hutmutter". Do I have to > construct it with a nut and a sphere on it's top ? Or is there a function I > did not found, looking for it?? > Thanks in advance > > Karl > > > > <UCXqrNoQJxQOnSvK.png> > > > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org > > > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >