Not possible, but if you load your GCode into a text editor you can look for Z- and change those to a new value and you can change the F to change the feed rate, then save file with a new name, same extension.
g0 z4
g0 x2127.60194551 y1.27725505
g1 z-3 f400 ; Original depth 3mm
g2 i-1071.45722564 j1040.4427252 x1948.69684145 y-155.73246601 f1000 ; Feed rate 1000
g2 i-888.15394925 j1191.551836 x1747.5918822 y-281.97306464 f1000
g2 i-685.62363401 j1315.05853447 x1415.65544554 y-407.17981235 f1000
Becomes
g0 z4 ; Clearance height 4mm
g0 x2127.60194551 y1.27725505
g1 z-5 f400 ; Depth changes to 5mm
g2 i-1071.45722564 j1040.4427252 x1948.69684145 y-155.73246601 f2000 ; New Feed rate 2000
g2 i-888.15394925 j1191.551836 x1747.5918822 y-281.97306464 f2000
g2 i-685.62363401 j1315.05853447 x1415.65544554 y-407.17981235 f2000
To change the feed rate on the go would be a perfect feature while cutting.
AFAIK this is not possible in fluidnc
I was wrong, this is possible in the fluidnc tab.
you can send commands directly via telnet or USB serial
from the google search:
luidNC allows you to change the feed rate in real-time using feed override
commands (10%, 1%, coarse/fine) via the web UI dashboard, serial commands (f+, f-), or by
modifying the F value in G-code (G1 X… F100). The Web UI offers panels for
overriding speed during jobs, and max/min rates can be configured.
Methods to Change Feed Rate
FluidNC Web UI (Real-time): On the dashboard/web interface, locate the feed
override buttons to adjust the percentage of the current feed rate while running a job.
Serial Commands (Real-time): Send these commands in the terminal:
f+ / f-: Fine Increase/Decrease Feedrate.
F+ / F-: Coarse Increase/Decrease Feedrate.
I have never pressed those tho so while they should work I’m not sure
I second that it would be really nice to be able to adjust the depth of cut a bit while the gcode is running. I’ve several times discovered that I set my depth slightly off and I’m not quite cutting all the way through.
I gave it a try. The F adjustments work to adjust speed, obviously can’t adjust spindle speed. Clicking on X,Y and Z values (Left target) only works while not cutting