When you use c_trace to determine how far your entity is from the ground, if you then use the value to move your entity, move your entity 3-5 quants above the ground, to keep it floating to avoid the hull colliding with the ground.

Alternativly before the c_trace
my.z += 10;

then after the c_trace
my.z -= 10;