Threaded View
-
08-07-2015 #16
Just checked, the mess I just posted correctly calculates the total perimiter for what I drew.
Silvaski - your formula there is helpful for drawing the pulley, as it includes the correction (0.57mm) for finding the difference between the pitch diameter and the actual pulley diameter. However for calculating the center distance and belt length, we only need the pitch diameter (D=N*p/pi).
Looking at the javascrip on the website you're using (http://www.product-config.net/catalo...r_functions.js), we can see the following:
Code:theta = Math.asin((pitchDiameterA - pitchDiameterB) / (2 * englishDesiredCD)); costheta = Math.cos(Math.asin((pitchDiameterA - pitchDiameterB) / (2 * englishDesiredCD))); desiredBeltLength = 2 * englishDesiredCD * costheta + Math.PI * (pitchDiameterA + pitchDiameterB) / 2 + theta * (pitchDiameterA - pitchDiameterB);
For the overall belt length, the 2*CD*costheta is the same as my formula for 2*L, they just used trig not Pythagoras.
The expression pi*(D+d)/2 matches my formula - they've just factorized it and used diameters not radii.
The last item, theta*(D-d), is the extra length to account for the small angle of belt that is used due to the difference in pulley diameters. Again, if you re-arrange my formula then this term falls out. You can see if pulleys are the same size, i.e. d=D, then that part of the equation is zero.
So their formula is identical to what I just derived.
Then they round to the nearest integer teeth belt size and use some crazy looking formula to back-calculate the center distance.
Code:v = 4 * beltLength - 6.28 * (pitchDiameterA + pitchDiameterB); centerDistance = (v + Math.sqrt(v * v - 32 * (pitchDiameterA - pitchDiameterB) * (pitchDiameterA - pitchDiameterB))) / 16;
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
BUILD LOG: a Steel Box Section Build with SBR20 & Ballscrews Plus a few questions
By grain_r in forum DIY Router Build LogsReplies: 130Last Post: 27-01-2023, 06:47 PM -
BUILD LOG: New Build - For Your Amusement - MK-2 build
By Karl in forum DIY Router Build LogsReplies: 12Last Post: 08-02-2017, 08:03 PM -
Newbie CNC Build
By JunkieHobbo in forum Gantry/Router Machines & BuildingReplies: 35Last Post: 13-04-2012, 07:41 PM -
BUILD LOG: Newbie First Build 3000mm x 1500mm
By psiron in forum DIY Router Build LogsReplies: 16Last Post: 16-07-2010, 11:02 AM -
BUILD LOG: Newbie First Build
By Dr Snuggles in forum DIY Router Build LogsReplies: 0Last Post: 10-01-2010, 07:05 PM
Bookmarks