Rotating a Point in Space, Function of time

Click For 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!
 
Here is a little puzzle from the book 100 Geometric Games by Pierre Berloquin. The side of a small square is one meter long and the side of a larger square one and a half meters long. One vertex of the large square is at the center of the small square. The side of the large square cuts two sides of the small square into one- third parts and two-thirds parts. What is the area where the squares overlap?

Similar threads

  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 33 ·
2
Replies
33
Views
4K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 13 ·
Replies
13
Views
902
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 20 ·
Replies
20
Views
2K