Rotating a Point in Space, Function of time

AI Thread Summary
The discussion focuses on optimizing the rotation of a grid of points around the x-axis in a computationally efficient manner. The initial approach involved calculating the radius and angle for each point, which proved slow due to the use of square roots and trigonometric functions. The proposed solution is to utilize a rotation matrix, allowing for a single computation of the matrix per timestep, which can then be applied to all points simultaneously. This method significantly reduces computational load by avoiding repetitive calculations and can be implemented using matrix multiplication techniques. The user expresses confidence in adapting their approach to achieve faster performance with the help of matrix operations.
minger
Science Advisor
Messages
1,494
Reaction score
2
Hi guys, I have a problem that's bugging me. I am writing a subroutine, which basically takes a grid (collection of points in space), and rotates it around the x-axis at some given rotational velocity. I was doing it a very easy way. Basically:

Code:
x0 = 0.0
y0 = 0.0
dx = x - x0
dy = y - y0
radius = sqrt(dx*dx + dy*dy)
theta = atan(dy/dx)
theta = theta + dtheta
x = radius*cos(theta)
y = radius*sin(theta)

This works great, however it's very slow. To compute square roots and inverse trig functions in a computer code is very tedious, and when you need to do it for thousands or millions of gridpoints, it can take forever.

My idea was to just write a function for the gridpoints as a function of time alone. I won't be able to store any additional information, such as original or previous position. I had an idea of some sort of phase angle, and I think that would require that.

Also, I cannot simply find the velocity, and then calculate the displacement, and therefore new position, because apparently there are numerical problems and the grid could start to "walk" away from each other.

Hopefully I've explained this well enough, I appreciate any help.
 
Mathematics news on Phys.org
How much linear algebra do you know?
 
A bit. I'm finishing up my master's of science in Mech. Engineering. I have math background all the way through non-linear, high-order, transient partial diff. eqs.
 
Really, What school?
 
Ok, well hopefully this will make some sense then. Consider a single point, x_0,y_0,z_0 that gets rotated to x,y,z. Writing these points in vector notation,
\vec{x}_0 = \left(x_0,y_0,z_0\right)

\vec{x} = \left(x,y,z\right)

\vec{x} and \vec{x}_0 are related by a rotation, and rotations are just a matrix multiplication. In other words, for a rotation matrix R (scroll down on the link for 3d version),
\vec{x} = R \vec{x}_0

The key point is that the same rotation matrix will rotate any points by the same angle, so you only need to calculate R once per timestep and just reuse it for all the points. This is nice because all the trig functions and expensive computations are in R.

----

Now if you want to go crazy efficient, you could even express the rotation of all the points in a single matrix multiplication. Call all the points you want to rotate \vec{x1},\vec{x2},...,\vec{x1000000}. Then
\vec{x1} = R \vec{x1}_0
\vec{x2} = R \vec{x2}_0
...
\vec{x1000000} = R \vec{x1000000}_0

These can be combined together into a single matrix multiplication:
\left[\vec{x1} | \vec{x2} | ... | \vec{x1000000} \right] = R \left[\vec{x1}_0 | \vec{x2}_0 | \vec{x1000000}_0\right]

Then you can use a matrix multiplication package to be super efficient (mathematicians have worked very hard to figure out really really efficient ways to multiply matricies).
 
Last edited:
I think this is just what I'm looking for. It seems as though instead of using the 3D form of the equations, I will just ignore the x-component of the gridpoint location, and rotate it in R2 using the simple 2x2 rotation matrix (I assume this is fine, it doesn't make sense to me to use the 3D version if one is simply rotating around 1 axis).

I will have to change it up a little. Rather than rotation with a given speed, I'll just have to multiply the speed by the change in time and compute the d_theta.

Anyways though, I really appreciate the help maze. We have matrix operations classes in our program so I'm sure it won't be a problem to get it running fast.

Thanks again a bunch!
 
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Back
Top