Search found 4071 matches
- Wed Jan 07, 2015 3:30 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Will the DC all in one board run these motors?
- Replies: 5
- Views: 3670
Re: Will the DC all in one board run these motors?
The shaft is .625 and I now I think I cannot use either?? Is that the drive shaft, or the back shaft? For NEMA42 servo motors, the drive shaft (front) is always 5/8". The back shaft, where the encoder mounts, is usually reduced. Typical dimensions are 1/4", 3/8", or 6mm. You can prob...
This post has been liked 0 time(s).
- Wed Jan 07, 2015 3:20 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Quencharc
- Replies: 2
- Views: 2579
Re: Quencharc
Yes, you should always install appropriately-rated overload protection for motor loads. This is best done with a 3-pole contactor and overload assembly. If your overload unit has "single phase sensitivity", meaning that it will trip in the event that one (or two) of the three phases is not...
This post has been liked 0 time(s).
- Tue Dec 02, 2014 11:41 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Ajax DM45 - New RT150 4th Axis M10/M11 not working
- Replies: 12
- Views: 6699
Re: Ajax DM45 - New RT150 4th Axis M10/M11 not working
Someone from Ajax needs to post a copy of the CNC10 PLC programming manual. The CNC10 (XPLC) PLC programming manual explains the format of a PLC program; how to identify your source files; why there are two programs and what each one does; how custom M functions work; how to compile and install chan...
This post has been liked 0 time(s).
- Tue Dec 02, 2014 8:40 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Ajax DM45 - New RT150 4th Axis M10/M11 not working
- Replies: 12
- Views: 6699
Re: Ajax DM45 - New RT150 4th Axis M10/M11 not working
What do your cnc10.m10 and cnc10.m11 files contain?
This post has been liked 0 time(s).
- Tue Dec 02, 2014 8:38 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Ajax DM45 - New RT150 4th Axis M10/M11 not working
- Replies: 12
- Views: 6699
Re: Ajax DM45 - New RT150 4th Axis M10/M11 not working
The other half of your PLC program -- probably contained in a file named dm45dc3p.src, compiled with xplccomp, and executed by the PC-based interpreter -- needs to control OUT30 based on the M10 request. Typically that is done with a line similar to this: IF M10 XOR ReverseClamp THEN (Clamp) The com...
This post has been liked 0 time(s).
- Wed Nov 19, 2014 9:32 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Teco FM50 to all in one dc
- Replies: 6
- Views: 4792
Re: Teco FM50 to all in one dc
When you say you want to use the Teco inverter as a phase converter, many would assume you mean to connect the 3-phase output of the inverter to the control's incoming power terminals; have it run all the time at 60Hz; and still use contactors to turn the spindle motor on and off. If that is what yo...
This post has been liked 0 time(s).
- Tue Nov 18, 2014 12:37 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Homing issue
- Replies: 3
- Views: 2734
Re: Homing issue
... and if you want to home the Y axis minus instead of plus, then use: M91/Y in your cncm.hom file. If you run M91/Y, but the Y axis immediately moves plus (and eventually stops on the plus limit switch with a "Y+ limit tripped" error), then your Y- home switch is stuck open or has a loos...
This post has been liked 0 time(s).
- Fri Nov 07, 2014 3:10 am
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Aux key programming
- Replies: 5
- Views: 3263
Re: Aux key programming
The PLC program source file is usually stored in the control software directory. Supposing you have a mill control, that is the c:\cncm directory. Supposing you are using an All-in-one DC control unit, with a typical software installation, then your original PLC program source file would be named al...
This post has been liked 0 time(s).
- Wed Nov 05, 2014 10:25 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Aux key programming
- Replies: 5
- Views: 3263
Re: Aux key programming
I would put the OUT9 definition in the "Output Definitions" section, usually around line 200 of the source file.
This post has been liked 0 time(s).
- Sat Nov 01, 2014 1:54 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Aux key programming
- Replies: 5
- Views: 3263
Re: Aux key programming
You need to add code to your PLC program to do that. For example, supposing you wanted to use the OUT9 relay for the vacuum, and you wanted to turn it on and off with the Aux9 key: ; in definitions section: VacuumOut IS OUT9 ; dust vacuum ;... ; in MainStage: IF Aux9Key THEN (Aux9PD) ; detect rising...
This post has been liked 0 time(s).