Advanced Search

Search Results (Searched for: )

  • DauntlessA
  • DauntlessA
Yesterday 00:39
Replied by DauntlessA on topic Surfacemap Z compensation with Probe Basic

Surfacemap Z compensation with Probe Basic

Category: QtPyVCP

Hi,
I'm not too familiar with the integration into probe basic, but I'm pretty sure the surfacemap tab did work when it was released.

It's possible that posting your config might help narrow down any issues.
And can you show your halshow for the relevant pins when you believe it should be enabled?

Also, It is possible to use the compensation component standalone, with no involvement from probe basic, even if the process is slightly more manual.
Use the version from Scott's Repo and follow the instructions there:
github.com/scottalford75/LinuxCNC-3D-Pri.../master/compensation

For PCB milling, I think that this compensation component should work really well. Since the component is taking the current XY point and outputting compensation in Z, it's always 'playing catch-up' as the machine moves, but unless you're demanding very quick changes in the compensated value (think feeding fast over a rough surface) any deviation in the compensated position isn't really much of an issue.

I haven't tried any other compensation approaches, but G-Code Ripper with the Auto-Probe operation can warp your G-Code to the probed surface.
The version bundled with LinuxCNC is located in the /usr/lib/python3/dist-packages/qtvcp/lib/ripper/ directory (and you can run it standalone if you want).
  • PCW
  • PCW's Avatar
Yesterday 00:37
Replied by PCW on topic Mini pc recommendations?

Mini pc recommendations?

Category: Computers and Hardware

It may be fixable

What servo thread period are you using?

what does:

sudo chart 99 ping -i .001 -q -c 60000 [7i96_ip_address]

report?

(it should run for 1 minute and report timing statistics, [7i96_ip_address] is the IP address of your 7I96S card)

Did you run a standard latency test?
 
  • TheTinkeringMechanic1
  • TheTinkeringMechanic1
Yesterday 00:26
Replied by TheTinkeringMechanic1 on topic Spindle speed?

Spindle speed?

Category: Basic Configuration

I believe I got them and then some. 
  • PCW
  • PCW's Avatar
Yesterday 00:24

W5100S-EVB-PICO stepgenerator and encoder driver

Category: Driver Boards

Velocity estimation is unrelated to G33.1 as G33.1 only looks at position.

If you do position interpolation, it's only for threading (Constant speed)

Also, as I mentioned, you need hardware timestamp support for velocity estimation.
  • tuxcnc
  • tuxcnc
Yesterday 00:10

W5100S-EVB-PICO stepgenerator and encoder driver

Category: Driver Boards

The normal way  this is improved is by velocity estimation, which changes the velocity calculation from
delta_counts/sample_time to delta_counts/time_between_counts.

It is true, but not solution for G33.1
In most worst case, the spindle stops, but the component waits for next pulse from encoder...
I have for tests small lathe with servo as spindle engine (velocity mode). It can stops (from 1500 to 0 rpm) at about 100 ms. (This is especially intended for fast G33.1)
In my opinion, the best is use high resolution encoder, and average speed from a 8 or 16 servo_thread periods.
Some cheap chinese encoders has bandwith 100-150 kHz, so in most cases 2500 P/R will be good.
But there is another problem. In my project I use STM32 with hardware quadrature counter, so this uses interrupts only for counter overflows.
Chips with no hardware quadrature counter must use interrupts for every encoders edges, it means hundreds of thousands interrupts per seconds, so it is very bad idea...
  • ihavenofish
  • ihavenofish
Yesterday 23:18
Replied by ihavenofish on topic Mini wannabe datron build

Mini wannabe datron build

Category: CNC Machines

Fancy pants geneva mechanism finalised. steel pins for BCD encoding with induction sensors. fun fun! haha.
 
 
  • atrex77
  • atrex77's Avatar
Yesterday 22:02

W5100S-EVB-PICO stepgenerator and encoder driver

Category: Driver Boards

Thank you PCW, now everything is clear and understandable. I think i solve this purely on the Pico side.
  • scotta
  • scotta's Avatar
Yesterday 22:01
Replied by scotta on topic Remora - Does Analog input syntax exist?

Remora - Does Analog input syntax exist?

Category: Computers and Hardware

You're correct. In the currently available modules there is no basic analog input. But the underlying code is there and used in the thermistor module.
  • warwickben
  • warwickben
Yesterday 21:38
Mini pc recommendations? was created by warwickben

Mini pc recommendations?

Category: Computers and Hardware

I had bought a mini pc from Amazon and I’m not sure if it’s causing latency issues or not ? I’m using a mesa 7i96s .   This is the mini pc I bought.
www.amazon.com/gp/aw/d/B0DNT28BV1?psc=1&...pop_mob_b_asin_title 
i shut every thing i could off in the bios including WiFi. 

I was using probe basic but I get a latency error and random disconnects . 
Could I just switch to a raspberry pi5 16gih version? 
  • PCW
  • PCW's Avatar
Yesterday 21:16 - Yesterday 21:19

W5100S-EVB-PICO stepgenerator and encoder driver

Category: Driver Boards

The issue with the sampling speed has to do with velocity calculations,
mainly at lower speeds or lower resolution encoders:

Imagine you have a 1000 count (250 PPR) encoder turning at 30 RPM (= 0.5 RPS so 500 Hz count rate)
If sampled at LinuxCNCs standard 1 KHz rate, you would get 1 count every other
sample, since the most basic velocity calculations would use the difference in counts to determine
the velocity, the velocity calculation would alternate between 0 RPM (count change of 0) and 60 RPM
(count change of 1). At higher speeds the problem gets better but does not go away, at 90 RPM
with the same encoder/sample rate, you would get alternating counts of 1 and 2 so alternating
velocity calculations of 60 and 120 RPM.

You can of course filter the velocity value since the average value will be correct, but this is not desirable
if the velocity is used for feedback as it lowers the control bandwidth.

The normal way  this is improved is by velocity estimation, which changes the velocity calculation from
delta_counts/sample_time to delta_counts/time_between_counts. This typically requires that the low level
hardware timestamp count changes to allow the time_between_counts to be determined.

Once you have decent velocity estimation, you can do tricks like position interpolation, allowing
use of very low resolution encoders for constant speed spindle synchronized motion like threading.
  • PCW
  • PCW's Avatar
Yesterday 20:41
Replied by PCW on topic Spindle speed?

Spindle speed?

Category: Basic Configuration

 You posted Knuth.hal but not:

6i24.hal
LadderIO.hal
custom.hal
custom_postgui.hal

These are all parts of the configuration
  • TheTinkeringMechanic1
  • TheTinkeringMechanic1
Yesterday 20:17
Replied by TheTinkeringMechanic1 on topic Spindle speed?

Spindle speed?

Category: Basic Configuration

Looking into halshow now.
  • TheTinkeringMechanic1
  • TheTinkeringMechanic1
Yesterday 20:12
Replied by TheTinkeringMechanic1 on topic Spindle speed?

Spindle speed?

Category: Basic Configuration

Is there something specific you are looking for? There are a myriad of back up files stored in here.
  • TheTinkeringMechanic1
  • TheTinkeringMechanic1
Yesterday 19:35
Replied by TheTinkeringMechanic1 on topic Spindle speed?

Spindle speed?

Category: Basic Configuration

Unfortunately, I got the lovely task of coming in behind somebody else and I need to figure it out. I knew nothing of Linux prior to a month ago, but I'm a fast learner. This has had me stumped for quite some time. If you could point me towards some documentation or if you could give some guidance on how to accomplish what is needed, that would be greatly appreciated.
  • PCW
  • PCW's Avatar
Yesterday 19:15 - Yesterday 19:35
Replied by PCW on topic Spindle speed?

Spindle speed?

Category: Basic Configuration

If you look at the hal file, none of the important spindle connections
actually connect to anything, that is, the hi-lighted signal names are
not connected to any driving source.

EDIT: can you post the other hal files? I suspect the missing
connections are there.

HALFILE = Knuth.hal
HALFILE = 6i24.hal
HALFILE = LadderIO.hal
HALFILE = custom.hal
POSTGUI_HALFILE = custom_postgui.hal


Also using halshow to watch hm2_5i24.0.7i83.0.2.analogout0
when running the spindle in each direction would help debug this
Displaying 16 - 30 out of 24577 results.
Time to create page: 0.266 seconds
Powered by Kunena Forum