3-Dimensional Position and Motion

From Physics Book
Revision as of 21:51, 5 December 2015 by Mvitek3 (talk | contribs)
Jump to navigation Jump to search

In order to be able to calculate the effect of forces on an object, you need to first be able to describe its position and motion in three dimensional space. For locating entities, we have position vectors. The change in position over time creates the velocity vector, which describes motion in space. From here, we can apply three dimensional forces.

The Main Idea

State, in your own words, the main idea for this topic


A Mathematical Model

What are the mathematical equations that allow us to model this topic. For example [math]\displaystyle{ \lt {\frac{d\vec{x}}{dt}}_{system},{\frac{d\vec{y}}{dt}}_{system},{\frac{d\vec{z}}{dt}}_{system}\gt }[/math] is the velocity and [math]\displaystyle{ \lt {\frac{d\vec{velocity}}{dt}}_{system} }[/math] is the acceleration.

A Computational Model

To program the position in VPython for an object, obj, write obj.pos=(xp,yp,zp). Here xp, yp, and zp are the x, y, and z coordinates, respectively, of the object. Velocity and acceleration are programmed similarly with obj.velocity=(xv,yv,zv) and obj.acceleration=(xa,ya,za). The x, y, and z velocity and acceleration values are xv, yv, and zv and xa, ya, and za respectively.

Examples

Be sure to show all steps in your solution and include diagrams whenever possible

Simple

Middling

Difficult

Connectedness

  1. How is this topic connected to something that you are interested in?
  2. How is it connected to your major?
  3. Is there an interesting industrial application?

History

Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.

See also

Are there related topics or categories in this wiki resource for the curious reader to explore? How does this topic fit into that context?

Further reading

Books, Articles or other print media on this topic

External links

[1]


References

This section contains the the references you used while writing this page


A Mathematical Model To program the position in VPython for an object, obj, write obj.pos=(xp,yp,zp). Here xp, yp, and zp are the x, y, and z coordinates, respectively, of the object. Velocity and acceleration are programmed similarly with obj.velocity=(xv,yv,zv) and obj.acceleration=(xa,ya,za). The x, y, and z velocity and acceleration values are xv, yv, and zv and xa, ya, and za respectively.