Question

please solve it using MATLAB

The range of an object shot at an angle θ with respect to the x-axis and an initial velocity th (Figure P3.16) is given by 3.16 Range = sin(20) Range Figure P3.16 The range depends on the launch angle and the launch velocity. for 0 θ π/2 and neglecting air resistance. Use g = 9.81 m/s2 and an initial velocity vo of 100 m/s. Show that the maximum range is obtained at approximately θ = π/4 by computing the range in increments of π/100 between 0 θ π/2. You wont be able to find the exact angle that results in the maximum range, because your calculations are at evenly spaced angles of π/ 100 radian.

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

clear
clc
g=9.81;
v0=100;
Range=@(theta)v0^2*sin(2*theta)/g;
theta=0:pi/100:2*pi;
All_Range=Range(theta);
[Max,index]=max(All_Range);
fprintf('Theta for which range is maximum:%f\n',theta(index))

Command Window 1lear 2lc Theta for which range is maximum:0.785398 p1/4 g=9.81; v0-100: Range=@ (theta)v0^^*sin (2*theca) /g;

Add a comment
Know the answer?
Add Answer to:
please solve it using MATLAB The range of an object shot at an angle theta with...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Please solve using Matlab ONLY Computational Modeling The range of an object shot at an angle...

    Please solve using Matlab ONLY Computational Modeling The range of an object shot at an angle theta with respect to the x-axis and an initial velocity v0 is given by the trajectory shown below. The Range can be obtained by the following equation, The above equation neglects air resistance and uses standard gravity of g = 9.81 m/s2. Write a matlab code in order to calculate the Range for velocity range 0≤ vo ≤100 m/s and shooting angle range 0...

  • Please help with this exercise in Matlab 4 The range of an object shot at an...

    Please help with this exercise in Matlab 4 The range of an object shot at an angle θ (with respect toxaos), with the initial velocity of Va (in the absence of air resistance), is calculated by the following formula: va , sin(20) Range (0 052) And the trajectory of object is given by where h is the height of the object at each x location and g 9.81 m/s. Using n/8 increment size for the angle and Vo-10 m/s, plot...

  • can you answer both #1 (a&B) and #2 please 1. Write MATLAB code to do the...

    can you answer both #1 (a&B) and #2 please 1. Write MATLAB code to do the following: (4 pts) a) Find the area of the circles where r=[7, 8, 10] using A = tr2 b) Find the distance traveled by a ball falling in the air is given by the equation x=x0+vot+ at?. Calculate the position of the ball at time t = 5s, XO = 10m, vo= 15 m/s, and a = 9.81 m/sec^2. Write MATLAB code to accomplish...

  • MATLAB Program Problem A projectile is shot at an angle of 50 degrees with respect to...

    MATLAB Program Problem A projectile is shot at an angle of 50 degrees with respect to the horizontal at a velocity of 200 m/s. Earth's gravity is 9.81 m/s 2. Take the variable x as the range and y as the altitude. Create a MATLAB plot, which plots that trajectory. Now, assume the terrain slopes up by 1 m in y for every 10 m in x. On the same axis, plot the line of the terrain in a different...

  • Find an approximate solution to the pendulum problem such that d2 theta /dt2 +g/l theta =...

    Find an approximate solution to the pendulum problem such that d2 theta /dt2 +g/l theta = 0.    Use an approximate solver in matlab to find the solution to the exact equation d2 theta/dt2 +g/l * sin( theta) = 0. Compare the two solutions when the initial angle is 10, 30, and 90. Find a way to quantify the difference. One approximate method for solving differential equations is Runge-Kutta, which in Matlab goes by the name ode45. I have made a...

  • A projectile is shot at an angle of 50 degrees with respect to the horizontal at...

    A projectile is shot at an angle of 50 degrees with respect to the horizontal at a velocity of 200 m/s. Earth's gravity is 9.81 m/s^2. Take the variable x as the range and y as the altitude. Create a MATLAB plot, which plots that trajectory. Now, assume the terrain slopes up by 1 m in y for every 10 m in x. On the same axis, plot the line of the terrain in a different color. (without using a...

  • USE MATLAB TO SOLVE THIS PROBLEM USE MATLAB TO SOLVE THIS PROBLEM USE MATLAB TO SOLVE...

    USE MATLAB TO SOLVE THIS PROBLEM USE MATLAB TO SOLVE THIS PROBLEM USE MATLAB TO SOLVE THIS PROBLEM USE MATLAB TO SOLVE THIS PROBLEM USE MATLAB TO SOLVE THIS PROBLEM 3. The range, r, of a cannon projectile under the influence of gravity, g-9.81 m/s, and fired with muzzle velocity vo 10 m/s is determined by the angle its barrel makes with the ground, t. From your Physics classes you will recall that the range is calculated as: r() =...

  • In matlab I have created the following function function [distance, xplot, yplot] = Cannon_lab8(V, theta) %...

    In matlab I have created the following function function [distance, xplot, yplot] = Cannon_lab8(V, theta) % the function calculates the distance a projectile travels when shot from % a cannon given initial velocity and theta. g = -9.81; % m/s^2 k = 0.35; % drag coefficient Vx = V*cos(theta); Vy = V*sin(theta); dt = 0.01; % seconds x = 0; y = 0; xplot(1) = 0; yplot(1) = 0; i = 2; while y >= 0 ax = -k*Vx; ay...

  • HW02#2 Four Projectiles Four projectiles are all shot over level ground. The projectiles are launched at...

    HW02#2 Four Projectiles Four projectiles are all shot over level ground. The projectiles are launched at four different angles, 20, 30, 45° and 60° above horizontal. There are four steps for this problem: A. Intuition, B. Computation, C. Validation, and D. Discussion 5° Intuition: In the table, use your intuition (not computations!) to evaluate the greatest "G" and least "L" scenarios for the set of 4 angles below for the following criteria (1) same horizontal range, (2) same maximum height,...

  • can someone write me a wing101 python code for this please Question: For a projectile launched with a velocity vIm/s) at an angle to the horizontal 6 Iradl, the horizontal distance travelled (al...

    can someone write me a wing101 python code for this please Question: For a projectile launched with a velocity vIm/s) at an angle to the horizontal 6 Iradl, the horizontal distance travelled (also called the range) is given by where the altitude of the landing position is Δh higher than that of the launch position and g is the gravitational acceleration (use 9.81 m/s^2). Note: θ in theformula is in radians write a Python function that accepts ν, θ and...

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