Question

In: Mechanical Engineering

Consider 4 blocks with different masses mi connected by ropes of negligible mass.

use python.

Consider 4 blocks with different masses mi connected by ropes of negligible mass. Three of the blocks lie on an inclined plane and the fourth lies in the direction of the gravity vector. The coefficients of friction between the blocks and the inclined plane are µi. The equations of motion governing these four blocks are described by the following system of equations:

T1 + m1a = m1g(sin(theta) - µ1*cos(theta))

-T1 + T2 +m2a = m2g(sin(theta) - µ2*cos(theta))

-T2 + T3 + m3a = m3g(sin(theta) - µ3*cos(theta))

-T3 + m4a = -m4g

Where the Ti denote the tensile forces in the ropes and a is the acceleration of the system. Determine a and the three Ti for θ = 45°, g = 9.82 m/s2 , {mi} = [10, 4, 5, 6]^T kg, and {µi} = [0.25, 0.3, 0.2]^T

The output to the command terminal prompt within Spyder should read:

T1 =

T2 =

T3 =

a =

All values should be printed out to 4 significant digits of accuracy and units must be assigned.

Solutions

Expert Solution

 

import math
import numpy as np

theta = math.pi / 4
g = 9.82
m = [10,4,5,6]
mu = [0.25,0.3,0.2]

# coeffients of variables T1, T2, T3, a in order in each equation
a = np.array([1, 0, 0, m[0]], [-1, 1, 0, m[1]], [0, -1, 1, m[2]], [0,0,-1,m[3]])

# RHS values of the equations
b = np.array([m[0] * g* (math.sin(theta) - mu[0] * math.cos(theta)), m[1] * g * (math.sin(theta) - mu[1] * math.cos(theta)), m[2] * g * (math.sin(theta) - mu[2] * math.cos(theta)), -m[3] * g])

T = np.linalg.solve(a, b)

print("T1 = " + T[0])
print("T2 = " + T[1])
print("T3 = " + T[2])
print("a = " + T[3])


Related Solutions

two small blocks with masses m and 2m are attached to a spring with negligible mass,...
two small blocks with masses m and 2m are attached to a spring with negligible mass, spring constant k, and has a natural length defined by L. The blocks and the springs rest on a horizontal surface without friction with the block with mass m in frictionless contact with a wall located at x=0. the system is entirely released from rest at t=0 with spring compressed to a length l/2. Determine the linear momentum impulse delivered to the lighter block...
In the figure below the two blocks are connected by a string of negligible mass passing...
In the figure below the two blocks are connected by a string of negligible mass passing over a frictionless pulley. m1 = 10.0 kg and m2 = 4.50 kg and the angle of the incline is θ = 44.0°. Assume that the incline is smooth. (Assume the +x direction is down the incline of the plane.) (a) With what acceleration does the mass m2 move on the incline surface? Indicate the direction with the sign of your answer. (b) What...
Two blocks of masses ?1 = 700 ? and ?2 = 1100 ? are connected by...
Two blocks of masses ?1 = 700 ? and ?2 = 1100 ? are connected by a cord of negligible mass and hung over a disk- shaped pulley, as shown in the figure. The pulley has a mass of ? = 1.50 ?? and a radius of ? = 14 ??, and rotates about a light- weight axle through its center. The axle itself is hung from the ceiling by two like cords of negligible mass and is held horizontally....
A spring of negligible mass is compressed between two masses on a frictionless table with sloping...
A spring of negligible mass is compressed between two masses on a frictionless table with sloping ramps at each end. (Note: the masses are not attached to the spring in any way, and so will fly apart after release.) The masses are released simultaneously. The mass M1 is greater than that of M2. Select the appropriate symbol for each statement: G (Greater than), L (Less than), or E (Equal to). (If the first two are 'greater than,' and the last...
Two small spheres, each of mass m and of negligible radius, are connected by a massless...
Two small spheres, each of mass m and of negligible radius, are connected by a massless rigid rod of length d such that the there is length d between the centers of masses of the two spheres, and the centers of masses of the spheres and the center of mass of the rod are in the same plane.   1. The moment of inertia about an axis perpendicular to the connecting rod and through its center is: a. 0 b. 0.25md2...
1. Suppose we have two blocks of masses m1 and m2. The block with mass m1...
1. Suppose we have two blocks of masses m1 and m2. The block with mass m1 is moving towards block m2 at speed v. After the collision, we measure the total kinetic energy and find that the total kinetic energy after the collision is m2/(m1+m2) less than the kinetic energy before the collision. Find the final speeds of the two blocks. What type of collision is this? 2. Explain, in words, how we know that a freely spinning asteroid in...
Consider that you have two blocks and they are connected to each other with a spring....
Consider that you have two blocks and they are connected to each other with a spring. Block AA  has mass 1.00 kgkg, and block BB has mass 3.00 kgkg. The blocks are compressed with a spring SS between them; then the system is released from rest on a level, frictionless surface. The spring, which has negligible mass, is not fastened to either block and drops to the surface after it has expanded. The spring has force constant 720 N/mN/m and is...
Three odd-shaped blocks of chocolate have the following masses and center-of-mass coordinates: (1) 0.310 kg ,...
Three odd-shaped blocks of chocolate have the following masses and center-of-mass coordinates: (1) 0.310 kg , ( 0.200 m , 0.310 m ); (2) 0.410 kg , ( 0.110 m , -0.380 m );(3) 0.210 kg , ( -0.290 m , 0.630 m ). Part A Find the x-coordinate of the center of mass of the system of three chocolate blocks. Part B Find the y-coordinate of the center of mass of the system of three chocolate blocks.
Two blocks with different mass are attached to either end of a light rope that passes...
Two blocks with different mass are attached to either end of a light rope that passes over a light, frictionless pulley that is suspended from the ceiling. The masses are released from rest, and the more massive one starts to descend. After this block has descended a distance 1.20m , its speed is 1.50m/s . a. If the total mass of the two blocks is 16.0kg , what is the mass of the more massive block? Take free fall acceleration...
Three different blocks of Al, Cu, and Fe, each of them with a mass of 8.5...
Three different blocks of Al, Cu, and Fe, each of them with a mass of 8.5 g, 4) absorb 0.845 kJ of heat at 25°C. The specific heats of Al, Cu, and Fe are 0.900 J/g·°C, 0.385J/g·°C, and 0.444 J/g·°C, respectively. a) Which block reaches the highest temperature? b) What is that temperature (in oC)?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT