Understanding the different types of speeds

I have read the documentation but still trying to understand the differences. When moving the router is that acceleration or travel? I want to increase the speeds a bit and possibly the time it takes to cut. I understand there really isnt a chart to go off based on size etc. I just want to understand what i need to change to test different speeds.

Here is my current M503

M503
echo:; Linear Units:
echo: G21 ; (mm)
echo:; Temperature Units:
echo: M149 C ; Units in Celsius
echo:; Steps per unit:
echo: M92 X100.0000 Y100.0000 Z400.0000
echo:; Max feedrates (units/s):
echo: M203 X50.0000 Y50.0000 Z15.0000
echo:; Max Acceleration (units/s2):
echo: M201 X180.0000 Y180.0000 Z80.0000
echo:; Acceleration (units/s2) (P R T):
echo: M204 P180.0000 R3000.0000 T180.0000
echo:; Advanced (B<min_segment_time_us> S<min_feedrate> T<min_travel_feedrate> J<junc_dev>):
echo: M205 B20000.0000 S0.0000 T0.0000 J0.0400
echo:; Home offset:
echo: M206 X0.0000 Y0.0000 Z0.0000
echo:; Endstop adjustment:
echo: M666 X0.0000
Y0.0000
echo:; Stepper driver current:
echo: M906 X900 Y900 Z900
echo: M906 I1 X900 Y900
echo:; Driver stepping mode:

How fast it moves when cutting is Feed Rate speed (G01 in g-code). How fast it goes when moving while not cutting is travel feed rate (AKA Rapid) speed (G00 in g-code). How quickly it reaches those speeds is acceleration.

The feed rates are usually set in your CAM program, those configuration max values are limits that the machine will not exceed, even if your CAM program tells it to go faster.

Your standard settings are fine as is . I don’t recommend messing with the max current, max feed rate or max acceleration settings unless you really know what you are doing, have a compelling reason to do so, and understand and are willing to accept the consequences when (not if) things go wrong.