Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Plot a formula for several parameters. Make a program that reads a set of \(v_{0}\) values from the command line and plots the corresponding curves \(y(t)=v_{0} t-0.5 g t^{2}\) in the same figure (set \(g=9.81\) ). Let \(t \in\left[0,2 v_{0} / g\right]\) for each curve, which implies that you need a different vector of \(t\) coordinates for each curve. Name of program file: plot_bal12.py.

Short Answer

Expert verified
Use Python with matplotlib to plot the curves for each input initial velocity.

Step by step solution

01

Understanding the problem

We need to write a program named `plot_bal12.py` that takes a list of initial velocity values, \( v_0 \), as input from the command line. For each \( v_0 \), we will plot the trajectory of an object under gravity described by the equation \( y(t) = v_0 t - 0.5 g t^2 \) where \( g = 9.81 \). The time interval \( t \) ranges from 0 to \( 2v_0/g \).
02

Setting up the environment

Before writing the code, ensure you have Python and a plotting library like matplotlib installed. You can install matplotlib using the command `pip install matplotlib`. This library will be used for plotting the curves.
03

Writing the script

Create a new Python file named `plot_bal12.py`. This program will need to import necessary modules, accept command line arguments, compute the required values, and plot the graphs.
04

Importing libraries

In `plot_bal12.py`, import necessary libraries: `matplotlib.pyplot` for plotting and `sys` for command line argument handling: ```python import matplotlib.pyplot as plt import sys ```
05

Reading command line arguments

Using `sys.argv`, read the initial velocities provided from the command line. Convert these values to a list of floats: ```python v0_values = list(map(float, sys.argv[1:])) ```
06

Calculating and plotting each curve

Loop over each value of \( v_0 \), creating a time vector \( t \) from 0 to \( 2v_0/g \). Compute \( y(t) \) for each \( t \) and plot the curve:```pythonfor v0 in v0_values: g = 9.81 t_max = 2 * v0 / g t = np.linspace(0, t_max, num=100) y = v0 * t - 0.5 * g * t**2 plt.plot(t, y, label=f'v0={v0}')```
07

Finishing the plot

Add labels, title, and legend to the plot for clarity, then display it: ```python plt.xlabel('Time (t)') plt.ylabel('Height (y)') plt.title('Projectile Motion for different initial velocities v0') plt.legend() plt.show() ```

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

Key Concepts

These are the key concepts you need to understand to accurately answer the question.

Command Line Arguments
Command line arguments are a way to provide input to a program while executing it via the command line interface. In Python, these inputs are accessed using the `sys` module. By using `sys.argv`, you can capture these arguments in your script.
  • `sys.argv` is a list where the first element (`sys.argv[0]`) is the name of the script and the subsequent elements are the arguments provided.
  • To convert these arguments from strings to a usable numeric format, use type conversion functions like `float` or `int`.
This capability is particularly useful when you need to change the parameters of a program without modifying its code, such as different initial velocities in the projectile motion problem.
For example, you might execute the script `plot_bal12.py` with various velocities by typing: `python plot_bal12.py 10 15 20`. Each number following the script name will be interpreted as an initial velocity.
Matplotlib
Matplotlib is a powerful plotting library in Python that provides a wide array of graphing capabilities. It is particularly well-suited for creating static, interactive, and animated visualizations in Python.
  • To use Matplotlib for plotting data, you need to import `matplotlib.pyplot` as it provides the functions needed to create plots.
  • Plots can be customized by adding titles, labels, legends, and by adjusting the axes.
To create a plot, you start by defining your data points or equations, like the projectile motion equation in this exercise. Using functions like `plt.plot()`, you can draw your curves onto a graph. After setting up your plot with labels and titles using `plt.xlabel()` and `plt.title()`, the `plt.show()` function will display your final graph. This visualization helps in understanding how different initial velocity values affect the trajectory of a projectile.
Projectile Motion
Projectile motion refers to the motion of an object that is thrown or projected into the air, subject to only the acceleration of gravity. The trajectory or path of such an object is typically a parabola.
  • The equation of motion used in this problem \[ y(t) = v_0 t - 0.5 g t^2 \] describes vertical position as a function of time, where:
    • \( y(t) \) is the height at time \( t \).
    • \( v_0 \) is the initial velocity.
    • \( g \) is the acceleration due to gravity, a constant \( 9.81 \ m/s^2 \).
  • This formula assumes no air resistance and that only gravity is acting on the object.
Understanding projectile motion is crucial in fields like physics and engineering, as it helps predict the path of an object based on initial conditions. By using different initial velocities in our Python script, we are able to visualize these different paths.
Numerical Calculation
Numerical calculation involves computing values using numerical methods rather than analytical solutions. In this exercise, we use numerical methods to calculate values of \( y(t) \) for various time points.
  • The use of `numpy.linspace()` allows us to create a sequence of numbers over a specified interval. For example, it generates the time intervals from 0 to \( 2v_0/g \).
  • Calculating \( y(t) \) involves applying the function over all values in this numerical array.
These calculations are essential for plotting because they provide the actual data points that are drawn on the graph. In plots involving physics or motion, such numerical methods are suitable as they allow for precision over discrete points, aiding in visualizing continuous processes or paths like trajectory curves.

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Plot the velocity profile for pipeflow. A fluid that flows through a (very long) pipe has zero velocity on the pipe wall and a maximum velocity along the centerline of the pipe. The velocity \(v\) varies through the pipe cross section according to the following formula: $$ v(r)=\left(\frac{\beta}{2 \mu_{0}}\right)^{1 / n} \frac{n}{n+1}\left(R^{1+1 / n}-r^{1+1 / n}\right) $$ where \(R\) is the radius of the pipe, \(\beta\) is the pressure gradient (the force that drives the flow through the pipe), \(\mu_{0}\) is a viscosity coefficient (small for air, larger for water and even larger for toothpaste), \(n\) is a real number reflecting the viscous properties of the fluid ( \(n=1\) for water and air, \(n<1\) for many modern plastic materials), and \(r\) is a radial coordinate that measures the distance from the centerline \((r=0\) is the centerline, \(r=R\) is the pipe wall). Make a function that evaluates \(v(r) .\) Plot \(v(r)\) as a function of \(r \in[0, R]\), with \(R=1, \beta=0.02, \mu=0.02\), and \(n=0.1 .\) Thereafter, make an animation of how the \(v(r)\) curves varies as \(n\) goes from 1 and down to \(0.01\). Because the maximum value of \(v(r)\) decreases rapidly as \(n\) decreases, each curve can be normalized by its \(v(0)\) value such that the maximum value is always unity. Name of program file: plot_velocity_pipeflow.py.

Plot a smoothed "hat" function. The "hat" function \(N(x)\) defined by (3.5) on page 109 has a discontinuity in the derivative at \(x=1\). Suppose we want to "round" this function such that it looks smooth around \(x=1\). To this end, replace the straight lines in the vicinity of \(x=1\) by a (small) cubic curve $$ y=a(x-1)^{3}+b(x-1)^{2}+c(x-1)+d $$ for \(x \in[1-\epsilon, 1+\epsilon]\), where \(a, b, c\), and \(d\) are parameters that must be adjusted in order for the cubic curve to match the value and the derivative of the function \(N(x)\). The new rounded functions has the specification $$ \tilde{N}(x)= \begin{cases}0, & x<0 \\ x, & 0 \leq x<1-\epsilon \\\ a_{1}(x-1)^{3}+b(x-1)+c(x-1)+d_{1}, & 1-\epsilon \leq x<1 \\\ a_{2}(x-1)^{3}+b(x-1)+c(x-1)+d_{2}, & 1 \leq x<1+\epsilon \\ 2-x, & 1+\epsilon \leq x<2 \\ 0, & x \geq 2\end{cases} $$ with \(a_{1}=\frac{1}{3} \epsilon^{-2}, a_{2}=-a_{1}, d_{1}=1-\epsilon+a_{1} \epsilon^{3}, d_{2}=1-\epsilon-a_{2} \epsilon^{3}\), and \(b=c=0 .\) Plot this function. (Hint: Be careful with the choice of \(x\) coordinates!) Name of program file: plot_hat.py.

Fill lists with function values. A function with many applications in science is defined as $$ h(x)=\frac{1}{\sqrt{2 \pi}} e^{-\frac{1}{2} x^{2}} $$ Fig. 5.13 Plot of the dimensionless temperature \(T(z, t)\) in the ground for two different \(t\) values and \(b=2\). Fill lists xlist and hlist with \(x\) and \(h(x)\) values for uniformly spaced \(x\) coordinates in \([-4,4]\). You may adapt the example in Chapter 5.2.1. Name of program file: fill_lists.py.

Experience overflow in a function. When an object (ball, car, airplane) moves through the air, there is a very, very thin layer of air close to the object's surface where the air velocity varies dramatically \(^{18}\), from the same value as the velocity of the object at the object's surface to zero a few centimeters away. The change in velocity is quite abrupt and can be modeled by the functiion $$ v(x)=\frac{1-e^{x / \mu}}{1-e^{1 / \mu}} $$ where \(x=1\) is the object's surface, and \(x=0\) is some distance away where one cannot notice any wind velocity \(v\) because of the passing object \((v=0)\). The vind velocity coincides with the velocity of the object at \(x=1\), here set to \(v=1\). The parameter \(\mu\) is very small and related to the viscosity of air. With a small value of \(\mu\), it becomes difficult to calculate \(v(x)\) on a computer. Make a function \(v(x, m u=1 E-6\), exp=math.exp) for calculating the formula for \(v(x)\) using exp as a possibly user-given exponentional function. Let the v function return the nominator and denominator in the formula as well as the fraction (result). Call the v function for various \(\mathrm{x}\) values between 0 and 1 in a for loop, let mu be \(1 \mathrm{E}-3\), and have an inner for loop over two different exp functions: math. exp and numpy. exp. The output will demonstrate how the denominator is subject to overflow and how difficult it is to calculate this function on a computer. Also plot \(v(x)\) for \(\mu=1,0.01,0.001\) on \([0,1]\) using 10,000 points to see what the function looks like. Name of program file: boundary_layer_func1.py.

Plot the viscosity of water. The viscosity of water, \(\mu\), varies with the temperature \(T\) (in Kelvin) according to $$ \mu(T)=A \cdot 10^{B /(T-C)} $$ where \(A=2.414 \cdot 10^{-5} \mathrm{~Pa} \mathrm{~s}, B=247.8 \mathrm{~K}\), and \(C=140 \mathrm{~K}\). Plot \(\mu(T)\) for \(T\) between 0 and 100 degrees Celsius. Label the \(x\) axis with 'temperature (C)' and the \(y\) axis with 'viscosity (Pa s)'. Note that \(T\) in the formula for \(\mu\) must be in Kelvin. Name of program file: water_viscosity.py.

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free