rnekler Acceleration of a car is The car

  • Slides: 6
Download presentation
Örnekler: Acceleration of a car is: The car starts its motion with an acceleration

Örnekler: Acceleration of a car is: The car starts its motion with an acceleration given above. Find the velocity of car a) By hand calculation b) By computer (MATLAB) a) k t f 0 0 1 1 2. 5 0. 40216 2 5 0. 0753 3 7. 5 0. 2358 4 10 0. 18178 b) With MATLAB v=3. 236 for m=2 (n=4) v=3. 318 for m=100 (n=200)

Example 1: Calculate the area between the intersection of curves y=x 2+2 with y=3

Example 1: Calculate the area between the intersection of curves y=x 2+2 with y=3 x. Roots >> roots([1 -3 2]) k x f 0 1 1. 25 0. 1875 2 1. 5 0. 25 3 1. 75 0. 1875 4 2 0

Example 2: The coordinates of certain points seen in the figure obtained with the

Example 2: The coordinates of certain points seen in the figure obtained with the coordinate measuring device (CMM) over a metal part having a weight of 10 N and a thickness of 2 mm are determined as ‘ cm’. How do you calculate the density of this metal using a curve that will pass through these points? a) Calculation by hand: The thickness of this piece is 0. 3 cm. Simpson method is used for field calculation. In the Simpson method, it is necessary to divide the x axis evenly. Intermediate values should be calculated because the points given are not equal. x y 0 5 2. 5 7. 8 3. 7 9. 3 4 10 If 0 -4 is divided into 4 equal parts by increments 1, y values for x = 1, 2 and 3 values that are not in the list must be calculated. .

Örnekler: x y 0 5 1 6. 763 2 7. 4969 3 8. 2323

Örnekler: x y 0 5 1 6. 763 2 7. 4969 3 8. 2323 4 10

Örnekler: b) By computer Prepare li. txt file given as below. li. txt 4

Örnekler: b) By computer Prepare li. txt file given as below. li. txt 4 4 4 0, 5 2. 5, 7. 8 3. 7, 9. 3 4, 10 1 2 3 Calculated intermediate values, which are obtained , are used in simpson method to get area. Density calculation is done as shown above.

Örnekler: u, w ve z’yi bilgisayarla nasıl bulursunuz? MATLAB ile clc; clear a=[-1 1

Örnekler: u, w ve z’yi bilgisayarla nasıl bulursunuz? MATLAB ile clc; clear a=[-1 1 -3; 0 3 -6; 1 1 1]; b=[9; 12; 5]; c=inv(a)*b