0% found this document useful (0 votes)
14 views11 pages

Lecture Notes Week 2a

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views11 pages

Lecture Notes Week 2a

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

Slide 1 of 6

Physics through Computational Thinking


Visual Thinking and Non-dimensionalization
Auditya Sharma and Ambar Jain
Dept. of Physics, IISER Bhopal
Outline
In this lecture you will

1. learn to translate physics problems to represent visually after suitably non-dimensionalizing the equations

2. apply skills of visual thinking to solve a physics problems

3. apply skills of visual thinking to interpret results from graphs


2 Module-2 Visual Thinking and Non Dimensionalization-2.nb

(non-)Dimensional Analysis and Visualization - The Simple Pendulum


Slide 2 of 6
“The career of a young theoretical physicist consists of treating the harmonic oscillator in ever-increasing levels of abstraction -- Sidney Coleman”

Example 1: Consider the pendulum of mass m shown in the figure. Find the potential and plot it as a function of θ.

Solution: [Define] The potential is given by

V (θ) = m g ℓ(1 - cos θ) (1)

In order to plot this as a function of θ, we need to convert it into abstract mathematical form by removing physical dimensions from the problem. Its easy! We measure the poten-
tial in units of the natural potential scale present in the problem that is m g ℓ. Thus we can re-write the potential as [Translate]

V (θ)
'(θ) ≡ = 1 - cos θ (2)
mgℓ

Now the resulting right hand side is dimensionless and depends only on dimensionless variable θ. Thus we plot our dimensionless potential '(θ) with respect to θ [Compute]
Module-2 Visual Thinking and Non Dimensionalization-2.nb 3

Plot[1 - Cos[θ], {θ, -Pi, Pi}]


2.0

1.5

1.0

0.5

-3 -2 -1 1 2 3

) Let me make my plot prettier by labelling the axes and put some styling. I will leave it as an Homework exercise for you to figure out how this is done. Just some tinkering
with the code below will help you understand that. [Compute]
4 Module-2 Visual Thinking and Non Dimensionalization-2.nb

θ2
Plot1 - Cos[θ], , 1, {θ, -Pi, Pi}, PlotRange → {-1, 2}, AxesLabel → {Style[θ, 16], Style[+[θ], 16]},
2
AxesStyle → Thick, TicksStyle → Directive["Label", 14], PlotLegends → "Expressions"

#(θ)
2.0

1.5

1.0 1 - cos(θ)
θ2
0.5 2

1
θ
-3 -2 -1 1 2 3
-0.5

-1.0

) We note that the potential near θ ≃ 0 behaves like a quadratic function with a stable minima, thus we expect the pendulum to behave like Simple Harmonic Oscillator for small
oscillations.

Answer the following questions by analyzing the plot [Interpret]


) Question: What does '(θ) = 1 represent? What physical value of the potential does it correspond to? What is the angle of maximum deflection θmax for ' = 1.

) Question: By eyeballing the picture above estimate the maximum energy of the pendulum for which it may still qualify for a simple harmonic oscillator.

) Question: By eyeballing the picture above estimate the maximum deflection angle θmax for which the pendulum may still qualify for a simple harmonic oscillator.
Module-2 Visual Thinking and Non Dimensionalization-2.nb 5

(non-)Dimensional Analysis and Visualization - 2


Slide
Example3 of2:6Consider the following problem from your course on Mechanics. A man throws a ball from the top of the hill of height h and angle of inclination ϕ, as shown in the
figure below. Lets assume that the ball is thrown at an angle θ with speed v. Ignore the height of the man compared to the hill. Find the distance x0 where the ball hits the hill slope
for the first time. For what values of θ, ϕ, v and h there is a solution? Under what condition there is no solution? Explore the problem visually using graphics.

Define: First we need to lay out a coordinate system.

1. We identify the trajectory of the ball as a quadratic function from the information that projectiles follow parabolic trajectories or more appropriately that most general trajectory
of a particle under constant acceleration is parabolic. Thus, we can write:

yball (x) = a x2 + b x + c (3)


6 Module-2 Visual Thinking and Non Dimensionalization-2.nb

2. Equation of the hill is represented by a straight line

yhill (x) = α x + β (4)

3. We need to determine coefficients, a, b, c, α and β by using some known data points. After that intersection of these two lines give me a solution.
Translate: Now we will extract appropriate information out of the problem and so that we can compute these coefficients and find second point of intersection. We will express
this information in mathematical form:
(i) Position: yball (0) = h
ⅆ yball
(ii) Velocity: ⅆt
 = v sin θ
x =0
ⅆ2 yball
(iii) Acceleration:  = -g
ⅆ t2 x =0
(iv) Hill Top: yhill (0) = h
ⅆ yhill (0)
(v) Hill Angle: ⅆx
= -tan ϕ
Compute: Using the five pieces of information we can determine the coefficients a, b, c, α and β.

(i) ⇒ c=h
(ii) ⇒ b = tan θ
-g
(iii) ⇒ a= (5)
2 v2 cos2 θ
(iv) ⇒ β=h
(v) ⇒ α = -tan ϕ

The equations now become

-g
yball (x) = x2 + tan θ x + h (6)
2 2
2 v cos θ

yhill (x) = -tan ϕ x + h (7)

At this point you can solve for intersection of two curves and find where they intersect next. We will explore this problem by visualization and and cross-check with analytical
result.
h is the only length scale in the problem, so we will non-dimensionalize y and x in units of h so that we can make a plot. This gives
Module-2 Visual Thinking and Non Dimensionalization-2.nb 7

yball (x) -g h x 2 x
= + tan θ +1
h 2 v2 cos2 θ h h
(8)
-γ 2
⇒ Yball ( X ) = X + tan θ X + 1
cos2 θ

gh
where Y and X are dimensionless coordinates measured in units of h, and γ = . For the hill, we get
2 v2

yhill (x) x
= -tan ϕ+1
h h (9)
⇒ Yhill ( X ) = -tan ϕ X + 1

To summarize, the two abstract equations that we are dealing with now are


Yball ( X ) = X 2 + tan θ X + 1
cos2 θ (10)
Yhill ( X ) = -tan ϕ X + 1

which have got three independent dimensionless parameters: γ, θ and ϕ. Few things to note here:

) γ is a measure of inverse of speed in units of g h .


) All the dimensionless parameters that define the problem for physically relevant values are typically order 1 numbers. Its always easy to analyze a problem in terms of order 1
numbers.
) The effects created by changing v and h are not independent. γ can be changed either by changing v or h.
Interpret: We will now plot and interpret our results:
8 Module-2 Visual Thinking and Non Dimensionalization-2.nb

-γ Pi Pi
Plot x2 + Tan[θ] x + 1, - Tan[ϕ] x + 1, 0 /. ϕ → ,θ→ , γ → 1, {x, 0, 1}
Cos[θ]2 6 3

1.0

0.5

0.2 0.4 0.6 0.8 1.0

-0.5

-1.0
Module-2 Visual Thinking and Non Dimensionalization-2.nb 9

-γ Pi Pi
In[& ]:= ManipulatePlot x2 + Tan[θ] x + 1, - Tan[ϕ] x + 1, 0, {x, 0, 2}, PlotRange → {0, 2}, ϕ, , 0, ,
Cos[θ]2 6 2
Pi Pi 1
θ, , 0, , {γ, 1}, , 2
3 2 2

2.0

1.5
Out[& ]=

1.0

0.5

0.0 0.5 1.0 1.5 2.0

Homework:
(a) Find X0 and x0 for a given θ, ϕ and γ.
(b) For a fixed θ and ϕ, Find the critical value of γ below which there is no solution. Verify that the plot above agrees with your result.
10 Module-2 Visual Thinking and Non Dimensionalization-2.nb

Parametric plot for trajectory


Slide
Example4 of(Problem
6 adapted from Kleppner & Kolenkow): A bead moves outward with constant speed u along the spoke of a wheel. It starts from the center at t = 0. The angular
position of the spoke is given by θ = ω t, where ω is constant. Find the trajectory of the particle and plot it.
Solution: Velocity and Acceleration in the polar coordinates is given by

5 6 5 6
v=rr+rθθ
.. 52 6 ..
5 5 6 (11)
a = r - r θ  r + r θ + 2 r θ θ

From the problem we identify


5
r=u
5
θ=ω
(12)
r=ut
θ = ωt

For trajectory, we have

x = r cos(θ) = u t cos(ω t)
(13)
y = r sin(θ) = u t sin(ω t)

1
We non-dimensionalize time and distance by noting that ω
is constant with dimensions of time while u / ω is a constant with dimensions of distance. Thus we can define,

ω
X= x
u
ω (14)
Y= y
u
T =ωt

Therefore, in terms of dimensionless variables

X = T cos(T )
(15)
Y = T sin(T )
Module-2 Visual Thinking and Non Dimensionalization-2.nb 11

We plot the trajectory using ParametricPlot function:

ParametricPlotT Cos[T], T Sin[T], {T, 0, 20}, AxesLabel → {"X", "Y"}

15

10

X
-15 -10 -5 5 10 15

-5

-10

-15

After non-dimensionalization, the equation for trajectory became scaleless and we got a unique solution.

Question: Interpret what is the effect of changing ω and u on this trajectory? This one solution in the plot contains all the solutions corresponding to various values of u and ω.
Can you explain how?

You might also like