#frame driver problem - MATH

How can I add a driver that rotates a cube 5/pi radians per second?
For animation I use just normal #frame/10 or other functions for rotation or transformation, but now I need it for mathematical animation.

1 rad = pi / 180

Driver:
#frame*(pi/180)

This is incorrect. you have this backward, it’s 180/pi. One radian is ~56 degrees, not .0017 degrees.

I’ve just realized that the #frame driver is 1 radian per frame. So if we want to rotate the object 1 radian per second, then we should write #frame/“frame rate”. For example, I needed 10 rad/s, so I wrote #frame/3 because frame rate was 30 and 10 * #frame / 30 = #frame/3
image