Nabble removed Mailing-list integration from the Forum.
This killed the Forum. This is now an ARCHIVE.
It is likely Nabble will shutdown in the future.

So basically the Forum is now out of date, we are looking into migrating the history.

OpenSCAD support is now provided by the Mailing List.
See the first pinned post here for instructions on subscribing to the mailing list.

Belt: Fascinating but not much use?

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Belt: Fascinating but not much use?

Caddiy
Twisted toothed belt

Looks nice but the continuous motion is an illusion: the teeth each move one position then jump back to zero and statr again. Seems that's the only way to do it.
But I cant integrate it in a design with parts that move at continuous $t*360 speed, which is much faster. Any ideas, anyone?

It would be a start if it were possible to get the teeth to move continuously all the way to the end of the straight sections then jump back one by one to the beginning of the section, but while that is possible with "rotate", it can't be done with "translate".

translaterotate

The green and blue squares "rotate" around the same circle, but the red squares "translate" in different ranges, 0-100 and 50 to 150. I would need each square to jump back to zero when it hits the ton.

BTW I have often wondered whether it is possible to show gears with different numbers of teeth rotating at the correct speed - I think not. Multiples of $t*360 are no problem but fractions are tricky.

Would be grateful for any ideas.
Reply | Threaded
Open this post in threaded view
|

Re: Belt: Fascinating but not much use?

MichaelAtOz
Administrator
Please read the first pinned post, posts here will not generally get seen so people won't see them.
You may want to post the above message as an email to the Mailing-list.
OpenSCAD Admin - email* me if you need anything, or if I've done something stupid...
* on the Forum, click on my MichaelAtOz label, there is a link to email me.

Unless specifically shown otherwise above, my contribution is in the Public Domain;
to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work.
Obviously inclusion of works of previous authors is not included in the above.
Reply | Threaded
Open this post in threaded view
|

Re: Belt: Fascinating but not much use?

Parkinbot
In reply to this post by Caddiy
Concerning the belt: You seem to spend one cycle on moving the belt one tooth. Say your gears have 20 teeth. Then you need 20 cycles to get a full revolution that can be synchronized with some other object also doing a full revolution.
In this case you need to stretch $t with the least common multiple (and also raise the steps value). I.e. you get something like this:

a =20*360*$t;
b = 360*$t;

do_belt(a%360);
do_obj(b);  

If you want to animate a gearing system e.g. with i=13:4. You need 13*4 cycles to correctly display the gears. Thus you use

a = 4*360*$t;   // larger gear1
b = 13*360*$t; // smaller gear2

To synchronize the object with the gears use a or b respectively.
If factors get too large you have to cheat. But this is another theme.

Concerning the squares: Use multiplication instead instead of offseting the second golden square.

a = $t*360;
translate([0,0,a/360*150]) obj();
translate([0,0,a/360*75]) obj();

rotate([0,0,a])
{
  translate([50, 0, 0])obj("blue");
  translate([-50, 0, 0])obj("red");
}

module obj(color="gold")
  color(color)square(10, center=true);