Question

Introduction to MATLAB for Engineers Third Edition William J. Palm III


media%2Fcc5%2Fcc55532b-a9de-4382-beb1-a7


12. The height and speed of a projectile (such as a thrown ball) launched with a speed of \(v_{0}\) at an angle \(A\) to the horizontal are given by

$$ \begin{array}{c} h(t)=v_{0} t \sin A-0.5 g t^{2} \\ v(t)=\sqrt{v_{0}^{2}-2 v_{0} g t \sin A+g^{2} t^{2}} \end{array} $$

where \(g\) is the acceleration due to gravity. The projectile will strike the ground when \(h(t)=0\), which gives the time to hit \(t_{\text {hit }}=2\left(v_{0} / g\right) \sin A\). Suppose that \(A=30^{\circ}, v_{0}=40 \mathrm{~m} / \mathrm{s}\), and \(g=9.81 \mathrm{~m} / \mathrm{s}^{2}\). Use the

MATLAB relational and logical operators to nd the times when

a. The height is no less than \(15 \mathrm{~m}\).

b. The height is no less than \(15 \mathrm{~m}\) and the speed is simultaneously no greater than \(36 \mathrm{~m} / \mathrm{s}\).

c. The height is less than \(5 \mathrm{~m}\) or the speed is greater than \(35 \mathrm{~m} / \mathrm{s}\).

0 0
Add a comment Improve this question Transcribed image text
✔ Recommended Answer
Answer #1

It is helpful to plot the height and speed versus time before answering the questions specially for part c The plot is shown in the figure below

40 : Speed (m/s) : 25F.. Height (m) 0 2.5 3 3.5 4 4.5 2 Time (sec) 0 0.5 1.5 The rest of the following script file can be usetla (ua(1)-1) (t_hit/100) t2aua(length(ua)-1)-(t hit/100) % Part (b). ub find(h-15&v< 36); t1b (ub(1-1)-(t hit/100) t2b-ub(le

Add a comment
Know the answer?
Add Answer to:
The height and speed of a projectile (such as a thrown ball) launched with a speed of
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Similar Homework Help Questions
  • please part B 4. The height and speed of a projectile launched with a speed of...

    please part B 4. The height and speed of a projectile launched with a speed of vi at an angle w is given by: h(t) = vyt sing - gt? v(e) = //-zvgtsing + { g27% The projectile will strike the ground when h(t)=0 which gives the time to hit tat2(11/8) sino. Assume o = 30°, v = 40 g = 9.81 m/s?; (a) By plotting h(t) and (t) on the same graph for Ost < 12 (s), determine the...

  • If the ball strikes the ground at D, determine how long takes to travel from

    Figure \(Q 1(b)\) shows a \(2 \mathrm{~kg}\) ball rolling down a glass ramp from \(A\) to \(B\). It is observed that the ball leaves the ramp at point \(B\) at an angle \(\theta=25^{\circ}\) with the horizontal. The height of the ramp is \(1.3 \mathrm{~m}\) from the floor. The ball has an initial velocity of \(V_{0}=2.5 \mathrm{~m} / \mathrm{s}\) and its speed is increasing at a rate of \(4.9 \mathrm{~m} / \mathrm{s}^{2}\). If the ball strikes the ground at D, determine...

  • Consider a projectile launched at a height h feet above the ground and at an angle θ with the hor...

    Consider a projectile launched at a height h feet above the ground and at an angle θ with the horizontal. If the initial velocity is v0 feet per second, the path of the projectile is modeled by the parametric equations x = t(v0 cos(θ)) and y = h + (v0 sin(θ))t − 16t2. The center field fence in a ballpark is 10 feet high and 400 feet from home plate. The ball is hit h = 2 feet above the...

  • A baseball (a projectile) is launched from a height of 2 meters above the ground at...

    A baseball (a projectile) is launched from a height of 2 meters above the ground at a speed of 31 m/s at an of 28 degrees above the horizontal. The ball is directly hit a fielder who will catch the ball and the fielder is initially angle plate). If his reaction time is 0.30 seconds (time before he starts to move), what is the minimum speed he much run, in m/s, such that he catches the ball 2 meters above...

  • Height of an object (h) which is thrown vertically with the speed of V0 at each...

    Height of an object (h) which is thrown vertically with the speed of V0 at each time (t) can be calculated by the following formula: In a scripts create an anonymous function to calculate h at each time t for the value of g=9.81 m/s2 and V0 = 65 m/s. Also plot the height versus time and use fzero to determine the time when the object hits the ground.

  • EXAMPLE 7.9 Maximum height of a home-run ball imum height of a projectile launched with ORO...

    EXAMPLE 7.9 Maximum height of a home-run ball imum height of a projectile launched with ORO Earlier in ample 3.5) we derived an exression for de m initial speed the initial angle ignoring air resistance Video Tutor Solut 2 Now let's derive this expression using a conservation of energy analysis. Final point Velve- SOLUTION SET UP There are no sonconservative forces the work done by gravity is accounted for in the potential energy terms. As shown in Figure 7.30, we...

  • If the ball leaves the projectile launcher at a speed of 2.4 m/s at an angle...

    If the ball leaves the projectile launcher at a speed of 2.4 m/s at an angle of 30ᴼ, and the projectile launcher is on a table at a height of 1.1 m, how far horizontally will it hit the ground? Give your answer in meters. An error margin of +- 0.01 m/s will be considered correct.

  • EXPLORE A projectile is launched with a launch angle of 30° with respect to the horizontal...

    EXPLORE A projectile is launched with a launch angle of 30° with respect to the horizontal direction and with an initial speed of 40 m/s. (A) How do the vertical and horizontal components of the projectile's velocity vary with time? (B) How long does it remain in flight? (C) For a given launch speed, what launch angle produces the longest time of flight? CONCEPTUALIZE Consider the projectile to be a point mass that starts with an initial velocity, upward and...

  • 2. (a) An object thrown vertically with a speed vo reaches a height h at time...

    2. (a) An object thrown vertically with a speed vo reaches a height h at time t, where: he vot tgt Write a MATLAB program with a user defined function that computes the time required to reach a specified height h, for a given value of vo. The function's input should be h, Vo, and g. Test your function for the case where h 100 m, Vo-50 m/s and g9,81 m/s2 by free hand. Write the MATLAB command how you...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT