Free 186 More Best Homemade Tools eBook:  
Get 2,000+ tool plans, full site access, and more.

User Tag List

Page 3 of 5 FirstFirst 1 2 3 4 5 LastLast
Results 21 to 30 of 41

Thread: Extending the range of calipers

  1. #21
    WmRMeyers's Avatar
    Join Date
    Dec 2014
    Posts
    883
    Thanks
    402
    Thanked 366 Times in 252 Posts

    WmRMeyers's Tools
    Quote Originally Posted by mklotz View Post
    Tony Foale has described a radius gauge...

    http://www.homemadetools.net/forum/r...ineering-70673

    based on the principle of measuring a chord and its related sagitta and then using these values to compute the radius of the measured curve.

    The same principle can be applied to measure the diameter of circular objects whose diameter exceeds the capacity of your calipers. (Capacity here can refer to: calipers whose jaws do not open far enough to encompass the diameter to be measured or calipers whose jaws are too short to reach the diameter of the object.)

    The first photo shows a too small caliper attempting to measure the diameter of an object. The caliper's jaws are too short to reach the diameter so it ends up measuring the length of some chord of the circle formed by the object. Note how the object is touching the beam of the caliper; it's pushed as far into the gape of the caliper as it will go.



    This diagram will help to understand the mathematical notation...



    The tips of the caliper jaws are at locations B and D. The line BD is the chord and that is what the calipers are measuring. The sagitta, EC (marked S in the diagram) is the distance from the chord to the circle's circumference. It should be obvious that that is the length of the caliper's jaws. Just to be clear, the following picture shows what you need to measure to find the length of your caliper's jaws...



    (but use calipers not a scale; the picture is meant to show what to measure, not how to measure it.)


    Now, if you know the length of the chord and the sagitta, you can compute the radius of the curve from a simple formula...

    r = (c^2 + 4 * s^2) / (8 * s)

    d = 2 * r = (c^2 + 4 * s^2) / (4 * s)

    c = chord
    s = sagitta
    r = radius
    d = diameter

    How well does it work ? Well, of course, that depends on your instruments and how carefully you measure.

    For the bench block pictured, I made the following measurements...
    c = 2.859
    s = 1.159

    and computed a diameter of 2.922. I then used my height gauge to measure the diameter (the jaws of my larger calipers are too short) and got a diameter of 2.924. YMMV.
    Stuff like this makes me reconsider not finding my HS algebra teacher's grave and desecrating it. He told me the only reason I needed to learn algebra was to graduate from high school. It took me most of a decade to realize he was wrong. I hope he found out that I wound up teaching math for a short time. That would, I'm sure, have helped him shuffle off this mortal coil.

    OK, it probably didn't help that I was a smart-aleck, and I do lack all talent for mathematics, but I did finally learn that it was useful in so very many ways, and I've spent far more time trying to make up for the deficits I allowed to remain back when my brain was younger and might have benefited more from the exercise. Though thank God for digital calculators.

    Bill

    186 More Best Homemade Tools eBook

  2. #22
    Supporting Member mklotz's Avatar
    Join Date
    Aug 2015
    Location
    LA, CA, USA
    Posts
    3,434
    Thanks
    357
    Thanked 6,379 Times in 2,117 Posts

    mklotz's Tools
    Quote Originally Posted by old_toolmaker View Post
    ...
    Back in my early years before the electronic calculator, we solved these trigonometric issues via long hand with pencil and paper.
    And you used a sundial to find the time :-)

    Thankfully, now we have electronic, self-setting timepieces and inexpensive scientific calculators.

    One learns nothing from doing the arithmetic, other than one's inability to do arithmetic. The real, generalized understanding comes from manipulating symbols, not numbers, and implies using algebra.

    2000 Tool Plans
    ---
    Regards, Marv

    Home Shop Freeware
    https://www.myvirtualnetwork.com/mklotz

  3. The Following User Says Thank You to mklotz For This Useful Post:

    old_toolmaker (Jun 12, 2021)

  4. #23
    WmRMeyers's Avatar
    Join Date
    Dec 2014
    Posts
    883
    Thanks
    402
    Thanked 366 Times in 252 Posts

    WmRMeyers's Tools
    Quote Originally Posted by mklotz View Post
    And you used a sundial to find the time :-)

    Thankfully, now we have electronic, self-setting timepieces and inexpensive scientific calculators.

    One learns nothing from doing the arithmetic, other than one's inability to do arithmetic. The real, generalized understanding comes from manipulating symbols, not numbers, and implies using algebra.
    Everything you need to do with arithmetic can be done with a mechanical adding machine. It's just slow, and error-prone. That's one of the things that convinced me as a kid that I wanted nothing to do with math. I had access to an adding machine at my dad's place. When the Texas Instruments SR-51 came out, I bought one. I couldn't afford the HP wristwatch calculator, as it was about $600, where the SR-51 was about $100, and I was still single. For a few more months. After that, I had other priorities. For a while. In 1983 or 84, I took a college Rock Math class. That is math for rocks. I actually got a B in the class, highest math grade I'd ever earned at that point. I had figured out by then that I needed math for what I wanted to do. The rock brain still prevented it, but I did keep working at it as and when I could, and found books on subjects I was interested in to find out what math I needed for them. Except that I kept crashing on trigonometry. Ah, well. No Astronaut wings for me.

    Bill

  5. #24
    Supporting Member mklotz's Avatar
    Join Date
    Aug 2015
    Location
    LA, CA, USA
    Posts
    3,434
    Thanks
    357
    Thanked 6,379 Times in 2,117 Posts

    mklotz's Tools
    Quote Originally Posted by WmRMeyers View Post
    Everything you need to do with arithmetic can be done with a mechanical adding machine. It's just slow, and error-prone.
    Ever tried extracting a square root with a mechanical, four function (no square root key) calculator? :-)

    In grade school they taught us an alogorithm that was as complex as it was impossible to remember; I made a point of forgetting it as soon as the class was over.

    The easiest way is to use Heron's iterative algorithm. Say 'N' is the number whose root is to be found. Make a guess of the root, 'x'. Then if x is smaller than the true root, N/x will be larger; If x is larger than N/x is smaller. Thus a better estimate is the average of these two...

    z = (x + N/x) / 2

    Now, keep iterating. Use z in place of x and compute a new value of z. As these iterations proceed, z will converge to the true value of the root.

    A good initial guess for x is the largest integer whose square is less than N. The better the guess, the faster the convergence.

    In the example below, I deliberately chose a poor initial guess; six would have been better. Despite this poor guess, I've got a damn accurate value in only three iterations.

    N = 49
    x = 5

    z = (5 + 49/5) / 2 = 7.4

    z = (7.4 + 49/7.4) / 2 = 7.0108...

    z = (7.0108 +49/7.0108) / 2 = 7.00000833525

    Close enough for government work.

    Choosing a first guess larger than the correct value doesn't matter...

    N = 49
    x = 9

    z = (9 + 49/9) / 2 = 7.222...

    z = (7.222 + 49/7.222) / 2 = 7.0034

    etc.
    Last edited by mklotz; Jun 12, 2021 at 12:59 PM.
    ---
    Regards, Marv

    Home Shop Freeware
    https://www.myvirtualnetwork.com/mklotz

  6. #25
    WmRMeyers's Avatar
    Join Date
    Dec 2014
    Posts
    883
    Thanks
    402
    Thanked 366 Times in 252 Posts

    WmRMeyers's Tools
    Quote Originally Posted by mklotz View Post
    Ever tried extracting a square root with a mechanical, four function (no square root key) calculator? :-)

    In grade school they taught us an alogorithm that was as complex as it was impossible to remember; I made a point of forgetting it as soon as the class was over.

    The easiest way is to use Heron's iterative algorithm. Say 'N' is the number whose root is to be found. Make a guess of the root, 'x'. Then if x is smaller than the true root, N/x will be larger; If x is larger than N/x is smaller. Thus a better estimate is the average of these two...

    z = (x + N/x) / 2

    Now, keep iterating. Use z in place of x and compute a new value of z. As these iterations proceed, z will converge to the true value of the root.

    A good initial guess for x is the largest integer whose square is less than N. The better the guess, the faster the convergence.

    In the example below, I deliberately chose a poor initial guess; six would have been better. Despite this poor guess, I've got a damn accurate value in only three iterations.

    N = 49
    x = 5

    z = (5 + 49/5) / 2 = 7.4

    z = (7.4 + 49/7.4) / 2 = 7.0108...

    z = (7.0108 +49/7.0108) / 2 = 7.00000833525

    Close enough for government work.
    Either I missed that class, or they weren't teaching it when I was going to elementary school. I was getting much of my info from books. I do have problems remembering complex written processes, like the kind of algorithm you described. This is one reason why I like checklists. Check off the steps as you go and you're less likely to goof it. I was getting my early math instruction in the days of the New Math that Tom Lehrer described so neatly.


    I was also anemic as a baby, and required blood transfusions directly into the veins in the temple since they couldn't hit anything else. Quite possibly, I'm dain brammaged. Though the family joke is that my mom dropped me on my head. Repeatedly.

    I've actually had some corroboration on that. The middle child, my eldest daughter, enlisted as a Navy Nuc. Went to the tech school for that career field in 2014. In her class of 38 students, she was the only one who didn't have calculus-based math and physics in high school. There were 8 graduates. She was the lowest ranked grad, but she learned enough calculus and physics in her copious spare time to pass the class, when 30 of her classmates who'd already had that work did not. She is the most like me of my children, so it's possible she got the unimpaired brain I should have had. OTH, her mom is also a math wiz, so she could have just gotten Mom's math brain. I know which one I want to believe.

    She says if you know someone who needs that sort of education and can't get it in their school, that Khan Academy is the place to go. https://www.khanacademy.org/ & https://www.youtube.com/results?sear...y=khan+academy

    Bill

  7. #26
    Supporting Member old_toolmaker's Avatar
    Join Date
    Dec 2017
    Location
    Cape Coral, FL
    Posts
    579
    Thanks
    647
    Thanked 442 Times in 180 Posts

    old_toolmaker's Tools

    Calculator

    When electronic calculators first came out we didn’t trust them, so we cross checked the calculator with pencil and paper! When both agreed we were satisfied. I’m sure this sounds strange to the younger crowd, but “true story”.
    Dick


    Links to some of my plans:

    https://www.homemadetools.net/forum/...965#post105972 OFF-SET TAILSTOCK CENTER PLANS
    http://www.homemadetools.net/forum/s...995#post112113 SMALL TURRET TOOL POST PLANS
    http://www.homemadetools.net/forum/l...994#post112111 LARGE TURRET TOOL POST PLANS
    http://www.homemadetools.net/forum/m...383#post110340 MINI-LATHE CARRIAGE LOCK PLANS
    http://www.homemadetools.net/forum/s...191#post106483 SMALL QC TOOL POST PLANS
    http://www.homemadetools.net/forum/q...849#post119345 QUICK CHANGE LATHE TURRET
    http://www.homemadetools.net/forum/m...949#post119893 MINI LATHE COMPOUND PIVOT MODIFICATION

  8. #27
    WmRMeyers's Avatar
    Join Date
    Dec 2014
    Posts
    883
    Thanks
    402
    Thanked 366 Times in 252 Posts

    WmRMeyers's Tools
    Quote Originally Posted by old_toolmaker View Post
    When electronic calculators first came out we didn’t trust them, so we cross checked the calculator with pencil and paper! When both agreed we were satisfied. I’m sure this sounds strange to the younger crowd, but “true story”.
    There was a check for the digital calculators that involved multiplying the number 12345679 by a whole number multiple of 9 that was greater than 0 and less than 10. If the calculator gave a result that was the multiplier, supposedly the calculator was working correctly. 12345679 x 81 gave you 999999999, 12345679 x 18 gave you 222222222, etc. I doubt it checks all the functions even on a 4-function calculator, but I never ran into a calculator that didn't get the correct results. I was told that one of the spreadsheet programs, I think an early version of Excel didn't get it right, but my brain has fried a number of times since then. I barely remembered how to do this check myself. And the 2007 version does get it right.

    Trust but verify!

    Bill

  9. #28
    Supporting Member Toolmaker51's Avatar
    Join Date
    Feb 2016
    Location
    Midwest USA
    Posts
    5,330
    Thanks
    7,041
    Thanked 2,977 Times in 1,892 Posts

    Toolmaker51's Tools
    The arithmetic/ mathematics-education system generates all kinds of hoohah, apparently most everywhere. My initial years were ok, then something happened and it went kablooey. Some things like positive and negative numbers, no issue, but other students had trouble. Enjoyed geometry then and now, but I'm no Marv Klotz.
    Trig gave me trouble, due some variety of dyslexia, I suppose. Soon, but by accident, I turned a worksheet around to wherever the most recognizable intersection or right angle 'popped out', it no longer bothers me.
    I'm sure now, that some math works as a visual function, others not so well, abstract. It does seem trying to teach math should demonstrate more 'how' instead of 'why', in application, ignore algebraic types until the others are solid. I base this on personal experience, once exposed to how machining couples math to action, bingo, purely tangible. It worked again in auto shop, flight school, ocean navigation, some gunnery, and just now learning survey of plots.

    Afterall, how hard would language or music be, native or otherwise, if it was all on paper?

    Got so wound on my thoughts, completely fizzed on Marv's.......the calculator originally banned from education, I remember it.
    That never made sense. If you miss order operations, it will be wrong; burning up 6 sheets of paper won't make it apparent halfway through. Hate to think what state things like space program or major construction would be dependent on manual calculation. At same time, engineering being fully digitized is not perfect. We enjoy so many old products that were papered or slide-ruled, with that extra 10%~, while the newer comparatively shoddy from paring thickness, material shear strength, etc.
    Last edited by Toolmaker51; Jun 12, 2021 at 11:48 PM.
    Sincerely,
    Toolmaker51
    ...we'll learn more by wandering than searching...

  10. #29
    WmRMeyers's Avatar
    Join Date
    Dec 2014
    Posts
    883
    Thanks
    402
    Thanked 366 Times in 252 Posts

    WmRMeyers's Tools
    Quote Originally Posted by Toolmaker51 View Post
    The arithmetic/ mathematics-education system generates all kinds of hoohah, apparently most everywhere. My initial years were ok, then something happened and it went kablooey. Some things like positive and negative numbers, no issue, but other students had trouble. Enjoyed geometry then and now, but I'm no Marv Klotz.
    Trig gave me trouble, due some variety of dyslexia, I suppose. Soon, but by accident, I turned a worksheet around to wherever the most recognizable intersection or right angle 'popped out', it no longer bothers me.
    I'm sure now, that some math works as a visual function, others not so well, abstract. It does seem trying to teach math should demonstrate more 'how' instead of 'why', in application, ignore algebraic types until the others are solid. I base this on personal experience, once exposed to how machining couples math to action, bingo, purely tangible. It worked again in auto shop, flight school, ocean navigation, some gunnery, and just now learning survey of plots.

    Afterall, how hard would language or music be, native or otherwise, if it was all on paper?

    Got so wound on my thoughts, completely fizzed on Marv's.......the calculator originally banned from education, I remember it.
    That never made sense. If you miss order operations, it will be wrong; burning up 6 sheets of paper won't make it apparent halfway through. Hate to think what state things like space program or major construction would be dependent on manual calculation. At same time, engineering being fully digitized is not perfect. We enjoy so many old products that were papered or slide-ruled, with that extra 10%~, while the newer comparatively shoddy from paring thickness, material shear strength, etc.
    I spent a short time as a teacher, and a good part of that, I was teaching math. Mostly arithmetic, but some of my teaching time I was subbing for a higher maths HS teacher undergoing chemo. For most of that, all I could do was tell them that I didn't know how to do that math myself, but I did know folks who used it daily, and told them some of the fields where that math was used. My wife had done physical chemistry in college, working for her BS in Chemistry, and that is a calculus-based course. I'd worked with communications and aeronautics engineers myself, and knew that to become an astronaut when I was a kid you had to be an engineer of some sort, and a test pilot. Had one kid in that class that wanted to be a machinist. I'd been bringing in books from various fields that showed the maths they needed. Mostly electronics, but I had a copy of the USAF's Space Handbook, my wife's P-Chem text book, and some others. Brought my Machinery's Handbook in for the kid who wanted to be a machinist, and after it passed around the classroom, he spent the rest of that class thumbing through the book finding all the places where it described math useful to a machinist. Funny thing, after that, he started applying himself to the classwork. When I was in HS, math was all theory, and they thought you'd get the practical aspects in college. When I was teaching, they were talking some of the practical aspects, but mostly they were doing theoretical environmental stuff. I guess they were getting ready for "Climate Change."

    And I've since learned that for practical aspects of math, you need to be in the field for a while, whatever the field is. Much of my wife's P-Chem course was teaching the future chemists how to use the technology, both lab equipment, and software to do analysis. A lot of the students were having to thumb through books on using Excel, for example.

    For the classes I was teaching, I tried for the more practical maths. Cooking, finance and book keeping. Had the kids in the government class I was teaching one semester calculate their share of our National Debt. Had my special ed kids figuring out what it cost their families to live, and what they'd have to make to be able to live the way they wanted. Of course, one of the kids wanted a Lamborghini. So I set him to finding jobs that paid enough he could get one. He didn't much like the answers, but he did figure them out!

    A lot of kids don't get abstract. That is apparently something that develops after the teen years, for most folks. And for decades, that is all they taught in school. I hope they someday learn to actually follow the research on what when and how to teach. I wasn't seeing a great deal of it when I was teaching, and that ended in 2012, finally, though I should have realized it was really done in 2008.

    Bill

  11. The Following User Says Thank You to WmRMeyers For This Useful Post:

    Toolmaker51 (Jun 13, 2021)

  12. #30
    Supporting Member old_toolmaker's Avatar
    Join Date
    Dec 2017
    Location
    Cape Coral, FL
    Posts
    579
    Thanks
    647
    Thanked 442 Times in 180 Posts

    old_toolmaker's Tools

    Geometry

    I did very well with geometry in high school. I was an A+ student. I struggled with Trigonometry though.
    It wasn’t until I began my first year in Trade school the geometry really began to click for me. Suddenly I saw how it could be applied and used in the real world! I became an ace with geometry, so much so that I became the go to person if anyone had a geometry problem they deemed unsolvable. My ego became inflated! Then came CAD and now we were all on equal footing again. Everything seems to go full circle in the end. New technology replaces old an si goes evolution. Nothing is forever. Enjoy today!
    Dick


    Links to some of my plans:

    https://www.homemadetools.net/forum/...965#post105972 OFF-SET TAILSTOCK CENTER PLANS
    http://www.homemadetools.net/forum/s...995#post112113 SMALL TURRET TOOL POST PLANS
    http://www.homemadetools.net/forum/l...994#post112111 LARGE TURRET TOOL POST PLANS
    http://www.homemadetools.net/forum/m...383#post110340 MINI-LATHE CARRIAGE LOCK PLANS
    http://www.homemadetools.net/forum/s...191#post106483 SMALL QC TOOL POST PLANS
    http://www.homemadetools.net/forum/q...849#post119345 QUICK CHANGE LATHE TURRET
    http://www.homemadetools.net/forum/m...949#post119893 MINI LATHE COMPOUND PIVOT MODIFICATION

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •