Advanced Search

Search Results (Searched for: )

  • grijalvap
  • grijalvap's Avatar
30 Apr 2025 17:50
Replied by grijalvap on topic Zero Pierce delay After pierce Only

Zero Pierce delay After pierce Only

Category: Plasmac

So basically if you select piercing only
1-Make  piercing. 
2- Ask the operator to clean dross.
3 - Ask the operators to change consumables (if the case).
4 - Start cutting with 0 piercing delay.
  • Hakan
  • Hakan
30 Apr 2025 16:57 - 30 Apr 2025 16:57
Replied by Hakan on topic Zero Pierce delay After pierce Only

Zero Pierce delay After pierce Only

Category: Plasmac

I use a separate material config for piercing and switch to normal when cutting.
Going a bit further, one could have automatic shift to a piercing-only material config when doing piercing only.
And shift back afterwards.
  • Adam Maszynotwór
  • Adam Maszynotwór's Avatar
30 Apr 2025 16:42

Is there a bug in the carousel component or am I doing it wrong ATC Denford

Category: Advanced Configuration

I'm not good at typical programming languages. I'm best at G-code.

Here, G4 has to be because after reaching the pocket, the READY pin is active so the toolchange procedure runs without moving the engine

Yes, I know that ATC is not a priority, but I'm asking in advance (I'll eventually write ATC on CL .. I think that thanks to the knowledge I've gained from trying to start CAROUSEL, I'll manage, and if not, I'll treat it as an axis and use g-code)

This machine is a challenge because:
I've never used a tool magazine
I've never done anything on servos
I didn't have a Mesa card either
and here it will be all

GUI AXIS
  • DarkPhoinix
  • DarkPhoinix
30 Apr 2025 16:36 - 30 Apr 2025 16:53
Replied by DarkPhoinix on topic [SOLVED]linuxcnc Latency test ambiguous results

[SOLVED]linuxcnc Latency test ambiguous results

Category: General LinuxCNC Questions

STEPLEN = 150000
STEPSPACE = 150000
to
STEPLEN = 5000
STEPSPACE = 5000
or
STEPLEN = 10000
STEPSPACE = 10000
As you have it it is way to long so it limits the max velocity a lot and can cause joint errors, depending on the scale and velocity set in the ini file.

 

[AXIS_Y]
MAX_VELOCITY = 175
MAX_ACCELERATION = 2000.0
MIN_LIMIT = -5.0
MAX_LIMIT = 300.0

[JOINT_1]
TYPE = LINEAR
HOME = 0.0
MIN_LIMIT = -5.0
MAX_LIMIT = 300.0
#MAX_VELOCITY = 175
MAX_VELOCITY = 175
MAX_ACCELERATION = 2000.0
STEPGEN_MAXACCEL = 2200.0
SCALE = 160.0
FERROR = 1.0
MIN_FERROR = 0.5
HOME_OFFSET = 0.0
HOME_SEARCH_VEL = 0
HOME_LATCH_VEL = 0
HOME_SEQUENCE = 0
[STEPGEN]
#150000
DIRSETUP = 150000
DIRHOLD = 150000
STEPLEN = 5000
STEPSPACE = 5000

and

[AXIS_Y]
MAX_VELOCITY = 175
MAX_ACCELERATION = 2000.0
MIN_LIMIT = -5.0
MAX_LIMIT = 300.0

[JOINT_1]
TYPE = LINEAR
HOME = 0.0
MIN_LIMIT = -5.0
MAX_LIMIT = 300.0
#MAX_VELOCITY = 175
MAX_VELOCITY = 175
MAX_ACCELERATION = 2000.0
STEPGEN_MAXACCEL = 2200.0
SCALE = 160.0
FERROR = 1.0
MIN_FERROR = 0.5
HOME_OFFSET = 0.0
HOME_SEARCH_VEL = 0
HOME_LATCH_VEL = 0
HOME_SEQUENCE = 0
#[STEPGEN] <
need this???
#150000
DIRSETUP = 150000
DIRHOLD = 150000
STEPLEN = 5000
STEPSPACE = 5000

same of the conf with:
#DIRSETUP = 150000
#DIRHOLD = 150000
#STEPLEN = 5000
#STEPSPACE = 5000
  • PCW
  • PCW's Avatar
30 Apr 2025 16:25
Replied by PCW on topic LinuxCNC S-Curve Accelerations

LinuxCNC S-Curve Accelerations

Category: General LinuxCNC Questions

Indeed if you set acceleration to 200, the scurve max acceleration will be 400 at inflection point.
Exceeding your max acc off 240.


I will try this, note that this is a difference from LinuxCNCs standard TP where the
acceleration bound in the ini file is obeyed at all points.
(unless you have backlash compensation enabled)
  • tommylight
  • tommylight's Avatar
30 Apr 2025 16:23
Replied by tommylight on topic [SOLVED]linuxcnc Latency test ambiguous results

[SOLVED]linuxcnc Latency test ambiguous results

Category: General LinuxCNC Questions

STEPLEN = 150000
STEPSPACE = 150000
to
STEPLEN = 5000
STEPSPACE = 5000
or
STEPLEN = 10000
STEPSPACE = 10000
As you have it it is way to long so it limits the max velocity a lot and can cause joint errors, depending on the scale and velocity set in the ini file.
  • tommylight
  • tommylight's Avatar
30 Apr 2025 16:21
Replied by tommylight on topic Can I home X and Y axes simultaneously?

Can I home X and Y axes simultaneously?

Category: General LinuxCNC Questions

From the "machine" menu, choose "homing" then the axis you want to home.
  • DarkPhoinix
  • DarkPhoinix
30 Apr 2025 15:45 - 30 Apr 2025 15:46
Replied by DarkPhoinix on topic [SOLVED]linuxcnc Latency test ambiguous results

[SOLVED]linuxcnc Latency test ambiguous results

Category: General LinuxCNC Questions

Yes i have, but not a default config, it is for NV something or another.
Do you get the dropped connection?
Do you get joint errors?
 

No the connection is stable( joint error only 3 video Youtube+stresstest+rustdesk remote desktop) but i have bad stepper movement.
Try to put:
[JOINT_1]
DIRSETUP   = 150000
DIRHOLD    = 150000
STEPLEN    = 150000
STEPSPACE  = 150000

 and

[STEPGEN]
#150000
DIRSETUP   = 150000
DIRHOLD    = 150000
STEPLEN    = 150000
STEPSPACE  = 150000

and
[STEPGEN]
#150000
STEPGEN_DIRSETUP   = 150000
STEPGEN_DIRHOLD    = 150000
STEPGEN_STEPLEN    = 150000
STEPGEN_STEPSPACE  = 150000

and 

[STEPGEN]
#150000
STEPGEN_1_DIRSETUP   = 150000
STEPGEN_1_DIRHOLD    = 150000
STEPGEN_1_STEPLEN    = 150000
STEPGEN_1_STEPSPACE  = 150000

my driver is a  TB6560 (only for testing not final hardware)
all conf not change the movement



the work is linuxcnc classic engrave test
  • RotarySMP
  • RotarySMP's Avatar
30 Apr 2025 15:41
Replied by RotarySMP on topic Lathe project

Lathe project

Category: Turning

Nice clean up.
  • liutas4x4
  • liutas4x4
30 Apr 2025 15:38

Installation 2.9.4 Debian Bookworm Preempt-RT ISO // Probleme

Category: Deutsch

Problem 1: gelöst

Wie hast du das Problem gelöst?
Ich habe den gleichen Fehler.

Eugenius.
  • tommylight
  • tommylight's Avatar
30 Apr 2025 15:20
Replied by tommylight on topic Can I home X and Y axes simultaneously?

Can I home X and Y axes simultaneously?

Category: General LinuxCNC Questions

Yes, set the same home sequence for both in the ini file.
  • Aciera
  • Aciera's Avatar
30 Apr 2025 15:18
  • IB_CnC
  • IB_CnC
30 Apr 2025 14:51 - 30 Apr 2025 15:20

Probe Basic and Carousel ATC with Geneva and Stepper

Category: QtPyVCP

I think it has to do with the 10 bucks stepgen PCB, it also happened before I removed the physical pushbuttons and soldered wires to it.

It's not a big issue, but would be nice if it responds faster.

I have to double check the stepper driver dip switch settings.
If no luck i think it might be possible to put a relay on the EN+/- wire, between the PCB and the stepper driver and just leave the PCB ON constantly, only changing direction by switching the DIR and activating the stepper driver via the Enabled signal.
That could solve it, will test later on. It would send out pulse signal constantly, but can't think of a reason why that would be an issue.
  • PCW
  • PCW's Avatar
30 Apr 2025 14:49

AC Servo tuning - Joint 0 following error at high velocities

Category: Basic Configuration

With the above setup is it possible to achieve 15,000 mm/min feedrate within 20 micron positional accuracy and +- 20 micron repeatability? I doubt whether the control loop is fast enough to reach this speed and accuracy ?

The main control loop in this case is in the drive, its velocity feedback loop.
The position control loop in LinuxCNC can run more slowly and maintain
high accuracy and repeatability. Note that at 15000 mm/m you move only 250
microns per ms, so it takes only relatively crude velocity commands to keep
within 20 microns. Note that as you increase acceleration, tuning becomes more
difficult as you run into various physical limits.

 
  • grijalvap
  • grijalvap's Avatar
30 Apr 2025 14:49 - 30 Apr 2025 14:55
Zero Pierce delay After pierce Only was created by grijalvap

Zero Pierce delay After pierce Only

Category: Plasmac

Hi, yesterday I used the Pierce only funtion in  1 inch plate, it worked very well, I saw the inconvenient of having to edit the file to change pierce delay to 0.0 after pierce only. 
I wonder if we can have a control to override the pierce delay vaule and make it zero, maybe the same button that changes from Normal Cut to Pierce Only can has the funtions Normal Cut - Pierce Only - After Pierce.
 
Displaying 15766 - 15780 out of 17609 results.
Time to create page: 0.307 seconds
Powered by Kunena Forum