How do i calculate an object's velocity along a vector?

  • Context: Undergrad 
  • Thread starter Thread starter Nanako
  • Start date Start date
  • Tags Tags
    Vector Velocity
Click For Summary
SUMMARY

This discussion focuses on calculating an object's velocity along a vector in 3D space, specifically when the object is moving towards a wall. The key method identified is vector projection, which allows for the resolution of the velocity vector into components: one directed towards the wall and another parallel to it. The Unity function Vector3.Project is highlighted as a practical tool for implementing this calculation. Additionally, the mathematical formula for the normal component of the velocity is provided: v_n = n · (n · v) / (n^2).

PREREQUISITES
  • Understanding of 3D vector mathematics
  • Familiarity with vector projection concepts
  • Basic knowledge of Unity game development
  • Ability to work with normal vectors
NEXT STEPS
  • Research vector projection in depth
  • Learn about vector resolution techniques
  • Explore Unity's physics engine and its vector functions
  • Study the mathematical derivation of velocity components
USEFUL FOR

Game developers, physics simulation engineers, and anyone interested in understanding motion dynamics in 3D environments.

Nanako
Messages
39
Reaction score
0
assuming 3D space. i have an object moving in a fairly arbitrary direction. Say it's being fired in an arc, and it hits a wall.

What i want to find out is, how much of that object's velocity is "toward" the wall. Ie, if i define a direction from the object to the wall, how do i calculate its velocity in that direction

i could swear I've done this before, but i have only vague inklings left.
is vector projection what I'm looking for?
 
Physics news on Phys.org
Nanako said:
assuming 3D space. i have an object moving in a fairly arbitrary direction. Say it's being fired in an arc, and it hits a wall.

What i want to find out is, how much of that object's velocity is "toward" the wall. Ie, if i define a direction from the object to the wall, how do i calculate its velocity in that direction

i could swear I've done this before, but i have only vague inklings left.
is vector projection what I'm looking for?

You need to resolve the velocity vector into two vectors! One towards the wall (perpendicular to the wall) and one parallel to the wall. You'll need to know the angle of velocity for that.
How can you do that?
 

Attachments

  • direction.JPG
    direction.JPG
    7.5 KB · Views: 434
i'm afraid i have no idea. I'm probably wrong, but to me that sounds like a tiny modification of the same problem

what exactly do you mean the angle of the velocity? as defined in radians or degrees relative to world up?
 
Yes. The vector projection would work and would be the most general way to describe the direction of the velocity in relation to the direction of the wall. If the wall has a definite orientation (say, the y direction) and you know the angle that the velocity vector makes with respect to the position vector of the wall then siddarth23's suggestion is certainly the simplest way to express this component of the velocity.
 
Nanako said:
Ie, if i define a direction from the object to the wall, how do i calculate its velocity in that direction

If v is the velocity and n the normal vector than

\vec v_n = \vec n \cdot \frac{{\vec n \cdot \vec v}}{{\vec n^2 }}

is the normal component of the velocity.
 

Similar threads

Replies
5
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 39 ·
2
Replies
39
Views
5K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 39 ·
2
Replies
39
Views
5K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 30 ·
2
Replies
30
Views
3K