By continuing to use this site, you agree to our use of cookies. Find out more

Member postings for sam sokolik

Here is a list of all the postings sam sokolik has made in our forums. Click on a thread name to jump to the thread.

Thread: Alternative to PC based Cnc controllers
20/10/2020 14:40:33

Constant surface speed and feed per rev example with linuxcnc.. (about half way through the video - I ramble)

18/10/2020 22:08:32

I enjoyed this one.. (but he is using linuxcnc..) He is up to 25 episodes

Thread: Gemco shaper finally fixed.
08/10/2020 19:55:14

I guess I don't know how it is pronounced... Hard of soft G? Because of the e - it should be soft... But no clue.

Edited By sam sokolik on 08/10/2020 19:55:24

08/10/2020 14:40:16

The down feed wasn't working and finally dug into it. The pawl was sticking and the key was missing from the downfeed lead screw/drive gear. Back in business!

Edited By sam sokolik on 08/10/2020 14:40:58

Thread: Square turning...
04/10/2020 18:48:11
Posted by martin perman on 04/10/2020 09:37:40:

Have you tried any other shapes yet, I used to install industrial machines made by WERA a German company that turned the ends of punch tooling etc.

Martin P

I have been thinking about a few ways to send the component a shape to cut. certainly possible. Time - where is all my time!?

03/10/2020 21:56:41
Still goofing around - Added a way to apply a radius to the corners so that the change in direction isn't as abrupt.
Thread: Arduino Gear Hobber
29/07/2020 16:06:03
Posted by Joseph Noci 1 on 29/07/2020 13:24:24:
Posted by Robert Atkinson 2 on 29/07/2020 13:01:41:

One way to improve performance of these systems is to combine hardware and software. Use hardware ro keep track of the encoder(s) and software to do the clever bits. When doing this sort of things for the day job we used HP/Avago/Broadcom encoder interfaces like thw HCTL-1100 and HCTL-2020. Now for critical counting applications I use Microchip PICs with built-in hardware counters and dividers. They also do versions with encoder interfaces built in. See http://ww1.microchip.com/downloads/en/DeviceDoc/70208A.pdf

Sone of the Atmel (now Microchip) chip range used in Arduinos have hardware encoder interfaces but I'm not an Arduino user so don't know if the specific chips are used or supported by the development environment.

Robert G8RPI.

That is true to some extent Robert. It depends on what the 'divisor' method is that you wish to implement.

Since the objective here is to keep the stepper pulse rate AND TIMING synchronized to some relationship to the incoming encoder pulses, you cannot just let the hardware counter accumulate the encoder pulses and then get to them 'later' - in the meantime you were supposed to generate stepper pulse so you lost the plot...

Synchronized operations like this require real-time software response - and the definition of real time is any time as long at the software keeps up with the execution rate required.

Joe

This is actually how linuxcnc works with external interface hardware. (not a motion controller as the motion controller is in software - linuxcnc) The external hardware just does the stuff computers don't do well (fast encoder counting, High speed step generation, Pwm generation and such) Linuxcnc is running a realtime thread that polls the external hardware every 1ms (or 500us or whatever the system can handle) It gets the encoder counts, sets pwm levels, sets step rate and so on. This works very well. (as a cnc controller and hobber as others have shown)

The other thing you get with with a computer running linuxcnc - floating point calculations. (this is the stuff the computer does well)

sam

28/07/2020 17:06:18
Posted by SillyOldDuffer on 28/07/2020 16:04:08:
Posted by Bazyle on 28/07/2020 14:26:55:

...

The first problem with most of the micros with a 'high level' operating system is that they don't tell you that they go off and do their own thing every few milliseconds which interupts the flow.

Coincidently I've been looking at the possibility of using a RaspberryPi 3 or 4 and Rasbian Linux as a microcontroller. Advantages: a real operating system, multi-core 64 bit CPU, built-in GPU, FPU, wifi, usb, print support etc and cheap. The CPU in a Raspberry is considerably more powerful than both Arduino and Nucluo. Disadvantages: limited number of IO pins (about 40), delicate interface electronics, no easy access to hardware interrupts, and the default Completely Fair Scheduler (CFS) that causes Bazyle's impossible to predict interruptions.

CFS is the main problem: it's designed to share multiple tasks across multiple cores such that tasks don't get stuck. Basically tasks run in a time-slice allocated by the operating system and return to the queue when time runs out or they stop for any reason such as waiting for a disc drive. Tasks are restarted by CFS in a fresh time slice when whatever it's waiting for is available, or it rises to the top of the queue again. Although there's some notion of priority, the scheduler pays lip service to it, unless it's reduced! (You can volunteer to stay at the back of the queue.) Anyway, given a queue of tasks waiting for a time slice, CFS selects the task which has least time on the system so far and everything gets a fair crack of the whip. Works very well except when a program must run to a timetable or respond immediately to events. This sort of task needs to stay at the top of the queue without being mucked about by routine business!

The ideal answer is a Real Time Operating System, and there are some for the Raspberry for those with time to investigate. Bit too specialised for me. However, newer Linux Kernels come with scheduler options that might be 'good enough' for embedded work. The Deadline Schedule gives favoured tasks the priority they need to meet a deadline, FIFO does First In First Out, and Round Robin is FIFO with time slices. All these options override CFS and allow tasks to queue jump and dominate. Unfortunately they can't take the system over completely because Linux has other essential jobs, but - on a multicore CPU - they get close to running continually, behaving rather like a fast embedded microcontroller with short glitches.

The open question is, can a linux program with 4 cores available and top scheduling priority do better than an Arduino? Worth a try I think.

Not recommending Raspberry for John's Hobber. Nucleo is a very good choice if faster than an Arduino is needed, and the programming can be very similar.

Dave

I have been playing with linuxcnc on the RPI 4. Linuxcnc requires a realtime kernel. (in this situation - rt_preempt)

The thing with linuxcnc is you get a whole bunch of realtime building blocks. Like step generators with vel and acc limits, pwm generators, logic and tons of other pre-built realtime components. (plus you can make your own)

All of these components have been tested and are done

This was done on a RPI 4 With a custom realtime component - slaving the axis to spindle rotation. (well - most all the latest videos about the green machine are done with the rpi)

28/07/2020 15:11:52

Just a thought. Sir John did a bit of work on gear hobbing and ended up using Linuxcnc... You could even start with the printer port... It is a cool platform/framework that allows for a ton of easy development.

Thread: Emco servo conversion - compact 5 cnc
17/07/2020 16:09:54

That was all by hand gcode. The actual polygon turning is currently done by sending info to hal layer from gcode.. I hope to do a remap but I am not there yet. So something like (this is on the mill - polygon boring)

(polygon radius)
m68e0q.30625
(number of sides)
m68e1q6
(Cutter diameter - probably get from the tool table in the future)
m68e2q.375
(rotate poly 0deg)
m68e3q0

(enable polygon component)
m64p0

(disable polygon component)

m65p0

17/07/2020 04:20:54

more close up action...

13/07/2020 15:05:55
Posted by Dave Smith 14 on 13/07/2020 08:48:08:

Great result, but please keep your fingers away from the moving parts even a small machine will take a finger off.

Agreed - I was unprepared for the first run of the program.

13/07/2020 05:15:32

13/07/2020 05:12:15
I Thought I would show an update..
07/06/2020 21:49:07

Getting there

01/06/2020 21:10:53

some machining required...

24/05/2020 14:16:40

A bit of an update

21/05/2020 15:25:21
Posted by John Hilton on 21/05/2020 07:26:57:

Hi

I presume you are using service motors fitted with encodes?

What encoder interface have you used?

John

Yes - some Pitmann servos that came with 500 line encoders. I am using Mesa interface hardware that does the high speed pwm and encoder counting. (5i25) which acts like 2 super high speed printer ports. (expandable - you can get daughter boards that do all kinds of cool stuff - analog servos, steppers and such)

I am using it in kinda unconventional way (think cheap a$$) (mesa + cheap bob)

21/05/2020 03:34:26

addendum... There was a setting in the ini file that was capping the acceleration at 6in/sec^2.. No wonder why it looked so good. So - upping the acceleration to 50in/s^2 I get a peak following error of .0002" (10 encoder counts - which is exactly what I would expect) Now it feels as expected - accelerating to 150ipm is pretty instant.

sam

20/05/2020 17:10:07

I finally got back to the Emco project after a few years. Squirrel! I had thrown it together trying out some pwm drives I had - which seem to work great. When I started pllaying with the spindle I started getting noise. (sporadic estop pulses). (mainly because in my excitement of the servos working well - I didn't pay much attention to grounds..)

So - Taking the time to do it right.. (I want a little lathe to test the polygon turning..)

Currently the servos are tuned with a max following error of .00007", acceleration of 40in/sec^2 and top speed of 150ipm. Very happy with this - and it looks like I could up the acceleration.

Old steppers on the right - 72steps/rev - non hybrid.
Magazine Locator

Want the latest issue of Model Engineer or Model Engineers' Workshop? Use our magazine locator links to find your nearest stockist!

Find Model Engineer & Model Engineers' Workshop

Sign up to our Newsletter

Sign up to our newsletter and get a free digital issue.

You can unsubscribe at anytime. View our privacy policy at www.mortons.co.uk/privacy

Latest Forum Posts
Support Our Partners
cowells
Sarik
MERIDIENNE EXHIBITIONS LTD
Subscription Offer

Latest "For Sale" Ads
Latest "Wanted" Ads
Get In Touch!

Do you want to contact the Model Engineer and Model Engineers' Workshop team?

You can contact us by phone, mail or email about the magazines including becoming a contributor, submitting reader's letters or making queries about articles. You can also get in touch about this website, advertising or other general issues.

Click THIS LINK for full contact details.

For subscription issues please see THIS LINK.

Digital Back Issues

Social Media online

'Like' us on Facebook
Follow us on Facebook

Follow us on Twitter
 Twitter Logo

Pin us on Pinterest

 

Donate

donate