Weird plot of a constant vector field with cylindrical coordinates
I just started using sagemath for some visualizations with vector fields and I stumbled upon some behaviour I cannot explain myself. I hope this is the correct place to ask this.
E.<rh,ph,z> = EuclideanSpace(coordinates='cylindrical')
r = E.vector_field(1, 0.01, 0, name='r')
r.plot()
I'm creating a field with constant vectors, which to my mathematical understanding should all look the same, the plot however looks rather different. (I cannot upload a picture as I'm new here)
Increasing the angle phi just a bit more leads to insanely large vectors in the first row in the plot. And the plot getting umanagable and also incorrect. Is this a bug or did I do something incorrectly?