View Full Version : i need a calculator for this
rictec
6th July 2005, 02:16 PM
anybody knows of one that does this?
I need to calculate the length a roll of tape
without unwinding the tape. I know the diameter and thickness of the
tape. The tape is wound on a core. I know the diameter of the core.
Given that information, how do I calculate the length of the tape
thank you
saldous
6th July 2005, 08:30 PM
Why on earth do you need to know such info?!!
BoSJo
6th July 2005, 09:28 PM
use a loop in a script or something.
Do Until OutDia =< InDia
TempLength = OutDia * 3.14
OutDia = OutDia - Thick - Thick
Length = Length + TempLength
TempLength = 0
Response.Write "" & Length & "
"
Response.Write "" & OutDia & "
"
Response.Write "" & inDia & "
"
Loop
Response.Write "Total length is " & Length
havent tested this though
cruisin-thru
7th July 2005, 01:09 AM
Man that is neat.
rictec
7th July 2005, 01:29 AM
i got the math formula to do it but using excell is a bit slow
yo dont know any prog that simple does that
to saldous
imagine you have a tape if you cant unwrape it how can you tell its lenght?
maths is the answer lol
nice one bosjo thanks
i hoped some day they port mathematica to pocket pc :-DDD never lol
BoSJo
8th July 2005, 05:24 PM
Don't know of any prog. that will calc. it for you
Use the code
Dim Length, OutDia, InDia, Thick, TempLength
Length = Your Input
OutDia = Your Input
InDia = Your Input
Thick = Your Input
Do Until OutDia =< InDia
TempLength = OutDia * 3.14
OutDia = OutDia - Thick - Thick
Length = Length + TempLength
TempLength = 0
Response.Write "" & Length & "
"
Response.Write "" & OutDia & "
"
Response.Write "" & inDia & "
"
Loop
Response.Write "Total length is " & Length
and youll get your result, just notice that this is not 100% accurate since it dossent calculate the center line off the material, thus using thick material will give an inaccurate result
BoSJo
9th July 2005, 04:44 PM
Heyyy just came across this little proggi (http://www.saltire.com/xpander.html).
You can try and fool around with it, maybee you can get it to calc. it for you
buzz_lightyear
9th July 2005, 04:47 PM
Don't know of any prog. that will calc. it for you
Use the code
Dim Length, OutDia, InDia, Thick, TempLength
Length = Your Input
OutDia = Your Input
InDia = Your Input
Thick = Your Input
Do Until OutDia =< InDia
TempLength = OutDia * 3.14
OutDia = OutDia - Thick - Thick
Length = Length + TempLength
TempLength = 0
Response.Write "" & Length & "
"
Response.Write "" & OutDia & "
"
Response.Write "" & inDia & "
"
Loop
Response.Write "Total length is " & Length
and youll get your result, just notice that this is not 100% accurate since it dossent calculate the center line off the material, thus using thick material will give an inaccurate result
WOW!
i would never figure it out... cool!!
...was never good at mathematics... :o))
buzz
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.