Advanced Search

Search Results (Searched for: )

  • WKS-3D
  • WKS-3D's Avatar
19 Jul 2024 17:34

Brauche bitte Hilfe bei der Steuerung des Werkzeugrevolvers

Category: Deutsch

Found file(REL): ./custom.hal
note: MAXV     max: 166.000 units/sec 9960.000 units/min
note: LJOG     max: 166.000 units/sec 9960.000 units/min
note: LJOG default: 6.000 units/sec 360.000 units/min
note: AJOG     max: 180.000 units/sec 10800.000 units/min
note: AJOG default: 12.000 units/sec 720.000 units/min
note: jog_order='ZXUW'
note: jog_invert={'X'}
 4999: 1.000000
 current_ tool: 0.000000
 selected_ tool before M61: 0.000000
 selected_ tool after M61: 0.000000
 4999: 1.000000
 current_ tool: 0.000000
 selected_ tool before M61: 0.000000
 selected_ tool after M61: 0.000000
 4999: 1.000000
 current_ tool: 1.000000
 selected_ tool before M61: 0.000000
 selected_ tool after M61: 0.000000
emc/task/emctask.cc 68: interp_error: Werkzeug muss vorbereitet sein -Txx- für Werkzeugwechsel
Werkzeug muss vorbereitet sein -Txx- für Werkzeugwechsel
  • Aciera
  • Aciera's Avatar
19 Jul 2024 17:23

Brauche bitte Hilfe bei der Steuerung des Werkzeugrevolvers

Category: Deutsch

Das Gleiche bitte nochmals mit dieser Subroutine:
o<toolchange> sub
#4001=45
(print, 4999: #4999)
(print, current_ tool: #<_current_tool>)
(print, selected_ tool before M61: #<_selected_tool>)
M61 Q#4999
(print, selected_ tool after M61: #<_selected_tool>)
o500 if[#<_current_tool> EQ #<_selected_tool>]
    (DEBUG,Tool bereits in Spindel)
o500 else
    G0 W[#<_selected_tool> * #4001-#4001]
    M6 G43
    #4999=#5400
o500 endif
o<toolchange> endsub
m2
  • my1987toyota
  • my1987toyota's Avatar
19 Jul 2024 16:51
Replied by my1987toyota on topic Interesting Youtube Video

Interesting Youtube Video

Category: Off Topic and Test Posts

this video should help explain.
  • shasse
  • shasse
19 Jul 2024 16:32

"error finishing read" with Mesa 7i92T on fresh install

Category: Driver Boards

I updated the RTK 8168 driver following the procedure in Rod's document, and that seems to have resolved the issue. I did do that previously, but after setting the "r8168.aspm=0 r8168.eee_enable=0 pcie_aspm=off loglevel=3" kernel parameters in /etc/default/grub I previously had neglected to run "sudo update-grub". So the kernel parameters were not actually applied previously. When I worked through it this time I did that and that seems to have made a significant difference.

Rod: Your detailed document was extremely helpful. It might be worth adding a small blurb about editing /etc/default/grub and running sudo update-grub to get them to stick, or point folks to an existing location where that procedure is documented. I struggled to find a canonical "clean" location of documentation for how to do that. askubuntu.com/questions/19486/how-do-i-a...ernel-boot-parameter was the closest I could find.

But this issue is resolved for me now. Thanks so much Rod and Peter!
  • WKS-3D
  • WKS-3D's Avatar
19 Jul 2024 15:43

Brauche bitte Hilfe bei der Steuerung des Werkzeugrevolvers

Category: Deutsch

Found file(REL): ./custom.hal
note: MAXV     max: 166.000 units/sec 9960.000 units/min
note: LJOG     max: 166.000 units/sec 9960.000 units/min
note: LJOG default: 6.000 units/sec 360.000 units/min
note: AJOG     max: 180.000 units/sec 10800.000 units/min
note: AJOG default: 12.000 units/sec 720.000 units/min
note: jog_order='ZXUW'
note: jog_invert={'X'}
 4999: 1.000000
 current_ tool: 0.000000
 selected_ tool: 0.000000
task: main loop took 0.127948 seconds
 4999: 1.000000
 current_ tool: 0.000000
 selected_ tool: 0.000000
 4999: 1.000000
 current_ tool: 1.000000
 selected_ tool: 0.000000
USRMOT: ERROR: invalid command
Bewegung Linear in Zeile 10 würde von Achse/Gelenk W den Anschlag Negativ überschreiten
Bewegung Linear in Zeile 10 würde neg. Anschlag von Achse/Gelenk 3 überschreiten
ungültige Parameter in linearem Kommando

Das verstehe ich aber nicht, denn in der INI-Datei steht für die W-Achse:

[AXIS_W]
MAX_VELOCITY = 66
MAX_ACCELERATION = 1000
MIN_LIMIT = -0
MAX_LIMIT = 360

[JOINT_3]

TYPE = ANGULAR
WRAPPED_ROTARY = 1
HOME = 0.0
FERROR = 10.0
MIN_FERROR = 1.0
MAX_VELOCITY = 66
MAX_ACCELERATION = 1000
STEPGEN_MAXVEL = 100
STEPGEN_MAXACCEL = 2000

# these are in nanoseconds
DIRSETUP   = 5000
DIRHOLD    = 5000
STEPLEN    = 5000
STEPSPACE  = 5000
# 12800 Microsteps : 360 = 35,555556, Uebersetzungsverhaeltnis 2:1 = 71,111111111
STEP_SCALE = 71.111111
MIN_LIMIT = -0
MAX_LIMIT = 360
HOME_OFFSET = 0.0
HOME_SEQUENCE = 1

Und unter MDI kann ich die W-Achse sauber ansteuern 
  • Aciera
  • Aciera's Avatar
19 Jul 2024 15:29

Brauche bitte Hilfe bei der Steuerung des Werkzeugrevolvers

Category: Deutsch

Also I würde folgendes vorschlagen:

1. ändere mal deine 'toochange.ngc':
o<toolchange> sub
#4001=45
(print, 4999: #4999)
(print, current_ tool: #<_current_tool>)
(print, selected_ tool: #<_selected_tool>)
M61 Q#4999
o500 if[#<_current_tool> EQ #<_selected_tool>]
    (DEBUG,Tool bereits in Spindel)
o500 else
    G0 W[#<_selected_tool> * #4001-#4001]
    M6 G43
    #4999=#5400
o500 endif
o<toolchange> endsub
m2

2. Starte deine Konfiguration von einem Terminal:
linuxcnc

3. Ruf die Routine über MDI auf:
[code]o<toolchange> call

4. Schau mal im Terminaloutput was da für Werte von der 'toolchange.ngc' ausgegeben werden.

Vielleicht ergeben sich so neue Hinweise.
  • Toribio1898
  • Toribio1898
19 Jul 2024 15:17 - 19 Jul 2024 15:29
Reconfigurar mi LinuxCNC was created by Toribio1898

Reconfigurar mi LinuxCNC

Category: General LinuxCNC Questions

Hola y disculpas, por mi falta de inglés. Diría que sólo he actualizado LinuCnc, instalado otros software, como kdenlive, que se que tal vez no sea la distro adecuada para editar videos, pero quería probarla más, es más hago música, me gustaría probar Ardour, Lmms, entre otros, con su kernel, obviamente, pero de golpe, veo que mi gestor de tareas, no se agranda, ni veo la opción de maximizar, queda chiquito. Si hago un clik, no puedo bajar con el mouse, para elegir alguna opción, debo hacerlo con las flechas, y apretar el enter, no hay otra manera y considero que debo reestablecer mi LinuxCNC, no tengo ninguna máquina conectado a mi LnuxCnc, que está instalado en una netbook táctil, que me encanta, con su i3, 4 gigas de ram y ssd, tiene salida vga anulada, pero abriéndola se ven las conexiones internas de su circuito interno, voy a medir sus voltajes y hdmi.

El torno GSK 980TDb, tiene un cable con conexión semejante a un vga, pero de 2 lineas, con solo 3 cablecitos muy finos, que lo conforman. osea, con forma de vga, pero más chuito, veo si puedo anexar una foto de él mismo, me gustaría poder armar una hermbra, para ese cable y ahi si poder conectar el cnc a mi maquina, me encantaría, ojala conozcan el torno y halla algo de guía, o trabajo realizado, que me puedan compartir. Nunca lo hice.

_ Otro cosa que pienso en utilizar el Freecad último o estable, para realizar los gcode, es muy completo y complejo, me gusta mucho, que opinan?. Se de Inskape, que otras opciones?.

_ Cuando consulte por el LinuxCNC 32 bits, que amablemente me compartieron, se lo instale a 8 cpus muy viejos, disco ide y 512 megas de ram ddr, quedaron hermosas, que ya compartí con ustedes, pero no encuentro el Freecad de 32 bits, por ahí ustedes lo tienen para compartirlo?. Si es válida mi mirada de utilizar Freecad, claro está. 

_ Perdonen mi extensión, soy novato en LinuxCNC, obviamente se darán cuenta, pero me gusta mucho ésta hermosa opción, lo esecial es recuperarlo y no tener que instalar todo de nuevo.
Al escribirles veo mi Firefox, maximizado a un 3/4 de mi pantalla totao, si aprieto maximizar, ya está a fondo, no da opción, tampoco minimizar,  si cierra con su X.

Desde ya Muchísimas Gracias, los saluda un gran admirador de ustedes, al Equiepo de LinuxCNC, es más, tengo unas netbook de la Escuela, que les voy a instalar un W11 activado, para los dormidos, y dual boot para instalar LinuxCNC, 64 bits para mi, y quienes bajan entendiendo que en la Educación, si queremos la libertad real de nuestros estudiantes, debemos utilizar software libre, como LinuxCNC. Muy amables!...
Finalmente no me reconoce mi celular, que conecté por usb, como siempre a mi LinuxCnc 64 bits. Lástima. Envió mi consulta y si es posible que me respondan, desde ya les agradezco, descargaré mis fotos en otra distro, para poder tenerla en mi netbook. Muchísimas Gracias nuevamente.
  • Caffink
  • Caffink
19 Jul 2024 15:05
MesaCT config - Help was created by Caffink

MesaCT config - Help

Category: General LinuxCNC Questions

Hey,
I am trying to do a Mesa Config for Mesa board 7i95T. I have a Nema 34 stepper motor, and a CL86T-V41 stepper driver from Stepperonline. This is for X-axis on benchtop mill. I will use Mesa Hardware Stepgen. I also attached the manual for stepper driver.

Here are my specs:
  • 2:1 gear reduction
  • Ball screw pitch 4mm
  • Fullstep = 200steps/rev
  • 20 microstep, 4000steps/rev
  • Driver has max 500KHz input frequency
  • Recommended specs from driver manual:
    • Step space should not be less than 1us
    • Step length should not be less than 1us
  • Duty cycle of PUL signal is recommended 50%

Question 1) Is step length + step space = step pulse?

Question 2) What does they mean with Duty cycle of PUL signal is recommended 50%? Do they mean that Step space should be 50% of Step length?

Question 3) Regarding Step scale (Which I believe is steps(step pulses) required per 1mm). Are my calculations correct?:
  • (200steps/1rev)*(20microsteps/step)*(2revs/1ballscrew rev)*(1ballscrew rev/4mm)= 2000step pulse/1mm
Question 4) What is maximum linear velocity? Is this the max speed at the gear/pulley after reduction? Or is it the max speed at the stepper motor shaft? I assume it is after reduction, aka at the gear/pulley?

Question 5) What is the lowest step length and step width I can have? I know you shouldn't use max settings specified by the manual, but this is just for my understanding/learning. Stated by the driver: 500KHz max input frequency
  • Maximum input Pulse Rate of stepper driver 500KHz = 1pulse/0.000002nano sec = 1pulse/2000nano sec  
  • Since (I assume) Step pulse = Step length + Step space. I can Divide Step Pulse by 2 and get:
  • Step length settings in Mesa CT: 1000nano sec
  • Step space settings in Mesa CT: 1000nano sec
Question 6) Is the maximum linear velocity calculated by this formula?:
  • Maximum input pulse rate of stepper / driver step scale
  • (500000step pulse) / (2000step pulse/mm) = 250mm/s Maximum linear velocity? 
Question 7) What should my maximum acceleration be(For trapezoid linear motion)? And how do I calculate it? A formula with explanation would be appreciated.

Best regards
Caf
  • Cant do this anymore bye all
  • Cant do this anymore bye all's Avatar
19 Jul 2024 14:50
Replied by Cant do this anymore bye all on topic Reconnect to Mesa ethernet card

Reconnect to Mesa ethernet card

Category: General LinuxCNC Questions

I have separate power controls for PC, MESA, Steppers & Spindle, if I'm going to be a away for a bit I just turn the Stepper & Spindle power off. And the way I have the relays that control the contactors if the mains goes & comes back on nothing energizes. To an outsider it may seem I have too many separate power supplies.
  • PCW
  • PCW's Avatar
19 Jul 2024 14:30

"error finishing read" with Mesa 7i92T on fresh install

Category: Driver Boards

rtt min/avg/max/mdev = 0.057/0.101/10.259/0.057 ms, pipe 2

> 10 ms suggests either network power management is enabled
(in the BIOS) or a problem with the RTK driver. I would try
using the DKMS RTK 8168 driver:

docs.google.com/document/d/1jeV_4VKzVmOI...ading=h.7ydcp08f6tyu
  • WKS-3D
  • WKS-3D's Avatar
19 Jul 2024 14:25

Brauche bitte Hilfe bei der Steuerung des Werkzeugrevolvers

Category: Deutsch

Lösche mal diese Zeile in deiner HAL

setp hm2_7i92.0.7i76.0.0.output-00 true
dann versuch mal im MDI die subroutinen aufzurufen:

o<Ventil_an> call

o<Ventil_aus> call
 


Klasse, das funktioniert 
Jetzt bleibt nur noch das 1. Problem, warum dreht der Stepper nicht beim Toolchange bzw. es passiert ja garnichts.
Wenn ich im MDI die W-Achse aufrufe zB. mit G0 W180, dann dreht sich der Stepper zu dieser Position.
  • shasse
  • shasse
19 Jul 2024 14:11

"error finishing read" with Mesa 7i92T on fresh install

Category: Driver Boards

Here are the ping statistics without driver/kernel/isolcpu changes:

root@router:~# sudo chrt 99 ping -i .001 -q 10.10.10.10
PING 10.10.10.10 (10.10.10.10) 56(84) bytes of data.
c^C
--- 10.10.10.10 ping statistics ---
3449 packets transmitted, 3448 received, 0.0289939% packet loss, time 3458ms
rtt min/avg/max/mdev = 0.059/0.110/1.041/0.047 ms
root@router:~# sudo chrt 99 ping -i .001 -q 10.10.10.10
PING 10.10.10.10 (10.10.10.10) 56(84) bytes of data.
^C
--- 10.10.10.10 ping statistics ---
67441 packets transmitted, 67441 received, 0% packet loss, time 67678ms
rtt min/avg/max/mdev = 0.057/0.101/10.259/0.057 ms, pipe 2

and here is the lshw output:

root@router:~# lshw -class network
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:03:00.0
logical name: enp3s0
version: 0c
serial: 1c:1b:0d:86:b9:6e
size: 100Mbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=6.1.0-18-rt-amd64 duplex=full firmware=rtl8168g-2_0.0.1 02/06/13 ip=10.1.65.122 latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s
resources: irq:18 ioport:e000(size=256) memory:d0604000-d0604fff memory:d0600000-d0603fff


I'm at the shop for a good while today so I plan on working through the rest of the suggestions in this thread today.

Thanks!

Scott
  • PCW
  • PCW's Avatar
19 Jul 2024 14:10
Replied by PCW on topic Getting started with 6i25+7i75+7i85s

Getting started with 6i25+7i75+7i85s

Category: PnCConf Wizard

At some point you may need to move on from the GUI and make changes directly in the hal/ini files
  • mooser
  • mooser
19 Jul 2024 13:34 - 19 Jul 2024 13:36
Replied by mooser on topic Fuse for toroid transformer... sanity check

Fuse for toroid transformer... sanity check

Category: CNC Machines

Thanks for that info. I went through all the references on the ametherm webiste/videos and calculators and ended up realizing that those guys and the guys at Hammond need to go out for lunch together... The numbers needed for some of the calculations don't seem to be on any of the transformer data sheets.
I did finially find a reference for a different brand of toroid that oddly enough has the exact same specs as this one and they actually listed
For 115V use: primary: 6.3A, 5x20mm, IEC127, high I²t value
in series with 2 NTC-resistors type NTC2.5
secondary: none

So.... both a slow blow fuse close to what I figured AND a NTC, belt and suspenders I guess.  On order now

For Stepper power fuses, Never thought about protecting that side.... The stepper is a 12Nm nema 32 rated at 6A, so are you saying you would add a 6A (or 6.5~7.0) to each of the four leads? between the controller and the stepper?
It's a hybrid stepper/encoder system if that matters

Thanks for the help
M  
  • PCW
  • PCW's Avatar
19 Jul 2024 13:13
Replied by PCW on topic Reconnect to Mesa ethernet card

Reconnect to Mesa ethernet card

Category: General LinuxCNC Questions

Seems like it would be a lot easier to just keep the interface card powered
we are only talking a few watts here...
Displaying 24496 - 24510 out of 25551 results.
Time to create page: 1.317 seconds
Powered by Kunena Forum