So how does the framerate affect player physics?
Basically, your position is calculated every time a frame is rendered by Quake.
So if you are using a higher framerate, your position will be calcualted more times per second.
In Quake 3, the standard gravitational field strength is 800 units/second2.
Also, as there is no air in Quake, there is no air resistance to affect your movement.
When you press your jump button - whether you are stood still, running, whatever - you are instantly given a vertical velocity of 270 units/second upwards.
This initial velocity is fixed and never changes.
So, when you jump there are 2 factors involved: 1) Your 270 units/second of upwards velocity and 2) The 800 units/second2 of deceleration caused by gravity.
As Quake has to calculate your position for every frame, it calculates the effect that gravity is having on you every frame.
However, every time it calculates your new position, direction and speed, it has to remember that the Quake world is discrete.
It is all based around a very fine grid matrix where the smallest division is called a unit.
Therefore, when it is calcualting players' positions and velocities etc., they cannot be half-way between one unit and another unit.
They have to snap exactly to an exact position, to a particular unit. There is no in-between.
But the biggest effect is due to the velocity also being rounded to an integer, in order to save bandwidth, which gives large framerate-dependent rounding errors.
This means there is a rounding error in the results of Quake's calculations and it is these rounding errors which causes the differences in movement - most noticeably when jumping.
Indeed, many players say they feel like they are 'floating' when they first try one of the magic framerates that has a large effect, such as 125fps.
However there is another side to the story.
Just as some framerates can appear to reduce the effect of gravity, others can actually appear to increase the effect of gravity, which can serve as a disadvantage through loss of height.