Rotating a Point in Space, Function of time

Click For Summary
SUMMARY

This discussion focuses on optimizing the rotation of a grid of points in 3D space around the x-axis using matrix multiplication. The initial approach involved calculating the radius and angles for each point, which proved inefficient due to the computational cost of square roots and trigonometric functions. The proposed solution involves using a rotation matrix R to perform the rotation in a single matrix multiplication, significantly improving performance by reusing R for all points. The user plans to adjust the method to compute angular displacement based on time, enhancing efficiency further.

PREREQUISITES
  • Understanding of linear algebra, specifically rotation matrices.
  • Familiarity with 3D coordinate systems and transformations.
  • Basic knowledge of matrix multiplication and its computational efficiency.
  • Experience with programming in a language suitable for numerical computations (e.g., Python, C++).
NEXT STEPS
  • Research the implementation of rotation matrices in numerical libraries (e.g., NumPy for Python).
  • Learn about optimizing matrix operations for large datasets using techniques like SIMD (Single Instruction, Multiple Data).
  • Explore the use of quaternions for 3D rotations to avoid gimbal lock and improve performance.
  • Investigate time-stepping methods for calculating angular displacement in simulations.
USEFUL FOR

Engineers, computer scientists, and developers working on simulations or graphics programming that require efficient 3D transformations and rotations.

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.
 
Physics 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!
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 33 ·
2
Replies
33
Views
4K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 13 ·
Replies
13
Views
939
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 20 ·
Replies
20
Views
2K