Momentum
- is the (linear) momentum (in ) of a body with mass (in ) and velocity (in )
Impulse
- is the impulse (in ) delivered to an object by a constant force (in ) over a time interval (in )
- is the impulse delivered to an object by a variable force over the time interval (in )
- (Impulse-Momentum Theorem) (the impulse is equal to the change in momentum)
Motion in One Dimension
Constant Acceleration
- is the time duration
- is the initial velocity
- is the initial position
- is the acceleration
- (velocity as a function of time)
- (velocity as a function of position)
Motion in Multiple Dimensions
todo Ballistic coefficient
% Author: Izaak Neutelings (April 2021)
\usepackage{tikz}
\usepackage{amsmath}
\usepackage{physics}
\usepackage{siunitx}
\usepackage{xcolor}
\usepackage{etoolbox} %ifthen
\usepackage[outline]{contour} % glow around text
\tikzset{>=latex} % for LaTeX arrow head
\usetikzlibrary{angles,quotes,arrows.meta} % for pic
\contourlength{1.0pt}
\colorlet{myblue}{blue!70!black}
\colorlet{mydarkblue}{blue!40!black}
\colorlet{mygreen}{green!50!black}
\colorlet{myred}{red!65!black}
\colorlet{xcol}{blue!85!black}
\colorlet{vcol}{green!70!black}
\colorlet{projcol}{vcol!90!black!60}
\tikzstyle{wave}=[myblue,thick]
\tikzstyle{xline}=[very thick,myblue]
\tikzstyle{vline}=[very thick,mygreen]
\tikzstyle{vector}=[->,very thick,vcol,line cap=round]
\tikzstyle{mydashed}=[green!30!black!90,dash pattern=on 2pt off 2pt,very thin]
\tikzstyle{mymeas}=[{Latex[length=3,width=2]}-{Latex[length=3,width=2]},thin]
\def\tick#1#2{\draw[thick] (#1) ++ (#2:0.05*\ymax) --++ (#2-180:0.1*\ymax)}
\begin{document}
\def\xmax{3.8}
\def\ymax{2.4}
\def\v{1.0}
\def\ang{30}
\def\d{(0.9*\xmax)} % distance landing point
\def\b{tan(30)} % slope at x=0
\def\h{0.6*\ymax} % height h
\def\a{-((\b*\d+\h)/\d^2)} % coefficient
\def\nsamples{100}
% TRAJECTORY - PARABOLA + breakdown
\begin{tikzpicture}
\def\v{1.4}
\def\ang{35}
\def\h{0.5*\ymax} % height h
\def\vx{{\v*cos(\ang)}}
\def\vy{{\v*sin(\ang)}}
\coordinate (O) at (0,\h);
\coordinate (Vx) at ({\v*cos(\ang)},\h);
\coordinate (Vy) at (0,{\h+\v*sin(\ang)});
\coordinate (V) at ({\v*cos(\ang)},{\h+\v*sin(\ang)});
% AXES & TRAJECTORY
\draw[->,thick]
(-0.1*\ymax,0) -- (1.06*\xmax,0) node[right=4,below=-1] {$x$};
\draw[->,thick]
(0,-0.1*\ymax) -- (0,\ymax) node[below=4,left=0] {$y$};
\draw[xline,variable=\t,samples=\nsamples,smooth,domain=0:\d+0.1]
plot(\t,{\a*\t^2+\b*\t+\h}); %node[right=7,above=-2] {$x=x(t)$};
% VELOCITY VECTOR
\draw pic["\contour{white}{$\theta$}",draw=white,double=black,double distance=0.4,
angle radius=13,angle eccentricity=1.4] {angle = Vx--O--V};
\draw[mydashed]
(Vx) |- (Vy);
\draw[<->,projcol,thick]
(Vy) -- (O) node[scale=0.9,midway,left=-1] {$v_{0y}$}
-- (Vx) node[scale=0.9,midway,below=-1] {$v_{0x}$};
\draw[->,vcol,very thick,line cap=round]
(O) --++ ({\ang}:\v) node[above right=-4] {$\vec{v}_0$};
\tick{O}{0} node[left] {$y_0$};
\tick{{\d},0}{90} node[below] {$R$};
\end{tikzpicture}
\end{document}
Projectile Motion
- (neglecting air resistance)
- (force due to gravity)
- is the angle of projection
- is the initial velocity
- is the initial horizontal velocity
- is the initial vertical velocity
- is the initial position
- is the initial horizontal position (most often )
- is the initial vertical position
- is the velocity
- is the horizontal velocity (constant as the initial velocity, no horizontal acceleration)
- is the vertical velocity
- is the position
- is the horizontal position
- is the vertical position
- is the time of flight (time to reach the ground)
- is the maximum height
- is the range (horizontal distance)
Power
- is the power (in )
- is the force vector (in )
- is the velocity vector (in )