Problem 1
Rotational speed can be measured in revolutions per minute (rpm) or
in radian per second (rad/s). Write a
MATLAB function called hw4_p1_lastname that accepts as input
rotational speed in rpm and provides as
output the rotational speed in rad/s. For example if the input is
60 rpm, the output should be 6.283185
rad/s. The function should also print a line on the screen that
says:
Rotational Speed: 60 rpm = 6.238 rad/s
Notice the rad/s value is limited to 3 decimal places.

function rotational_speed = hw4_p1_lastname( w )
rotational_speed = 2*pi*w/60;
fprintf('Rotational Speed: %d rpm = %5.3f
rad/s',w,rotational_speed);
end
Problem 1 Rotational speed can be measured in revolutions per minute (rpm) or in radian per...
MATLAB Convert between radians per second, revolutions per minute, and degrees per second. The program must create a 1 x n vector consisting of random integers between 0 and 5000 (These values will be assigned units of rpm). The program will prompt the user for the value of n, and will include a for loop with a print statement what will print n lines. Idea of what it will look like: ###rpm=###rad/s=###deg/s ###rpm=###rad/s=###deg/s ###rpm=###rad/s=###deg/s
Example 7.1 Whirlybirds Goal Convert an angular speed in revolutions per minute to radians per second. Problem The rotor on a helicopter turns at an angular speed of 3.40 x 102 revolutions per minute. Express the angular speed in radians per second. Strategy During one revolution, the rotor turns through an angle of 27 radians. Use this relationship as a conversion factor. Solution Apply the conversion factors 1 rev = 2r and 60 S = 1 min. = 3.40 x...
4) A top-loading washing machine spins the clothes at 850 rpm (revolutions per minute). a) What is their angular velocity in radians per second? b) If the agitator (the spindle in the middle which provides the rotation) has radius 8.2 cm, what is the speed of a point on its rim in m/s?
4. What would be the steady-state mechanical speed in revolutions per minute (RPM) for an 8- pole synchronous machine connected to a 60 Hz electric grid?
During a motor test, the motor rpm (revolutions per minute) is measured and recorded at regular intervals as: 990 1030 950 1050 1000 980 Calculate the mean value ?̅, standard deviation ??, and the best estimate of the true value ?́ for this data set with 95% confidence. Over what interval would 50% of the entire population of motor speed values fall?
A DVD has a maximum speed of 7200 revolutions per minute(rpm). If a DVD diameter is 12cm, what is the linear speed in km/h of a point form the disc's center if it is spinning at 5400 rpm?
A record player goes from stopped to rotating at 45 revolutions per minute (rpm) in 4.0seconds. What is its angular acceleration? A.3pi/4 rad/s^2 B.3pi/2rad/s^2 C.3pi/8 rad/s^2 D.11.25pi rad/s^2 Answer is C, but please show reasoning.
Constants Part A A high-speed flywheel in a motor is spinning at 500 rpm (revolutions per minute) when a power failure suddenly occurs. The flywheel has mass 39.0 kg and diameter 79.0 cm. The power is off for 25.0 s and during this time the flywheel slows due to friction in its axle bearings. During the time the power is off, the flywheel makes 150 complete revolutions. At what rate is the flywheel spinning when the power comes back on?...
Problem 2: A photo of a gearbox and its schematic are shown in the figure. The gearbox consists of four spur gears. Gear1 and Gear3 have 100 teeth (N;=N3=100) and Gear2 and Gear4 have 150 teeth (N2=No=150). As indicated on the schematic, Gear1 is connected to the input shaft. Gear 2 and gear 3 are fixed on a same rotating axis/shaft so they will rotate together at the same rotational speed at all times (.e. n2=na). Gear4 is on the...