1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
xz_007 [3.2K]
3 years ago
13

The small washer is sliding down the cord OA. When it is at the midpoint, its speed is 28 m/s and its acceleration is 7 m/s 2 .

Express the velocity and acceleration of the washer at this point in terms of its cylindrical components.

Engineering
1 answer:
Neporo4naja [7]3 years ago
3 0

Answer:

Velocity components

V_r = -16.28 m/s

V_z = -22.8 m/s

V_q = 0 m/s

For Acceleration components;

a_r = -4.07m/s^2

a_z = -5.70m/s^2

a_q = 0m/s^2

Explanation:

We are given:

Speed v_o = 28 m/s

Acceleration a_o= 7 m/s^2

We first need to find the radial position r of washer in x-y plane.

Therefore

r = \sqrt{300^2 + 400^2}

r = 500 mm

To find length along direction OA we have:

L = \sqrt{500^2 + 700^2}L = 860 mm

Therefore, the radial and vertical components of velocity will be given as:

V_r = V_o*cos(Q)

V_z = V_o*sin(Q)

Where Q is the angle between OA and vector r.

Therefore,

V_r = 28 * \frac{r}{L} = > 28 * \frac{500}{860}

V_r = -16.28 m/s

• V_z = 28 * \frac{700}{860} = -22.8

• V_q = 0 m/s

The radial and vertical components of acceleration will be:

a_r = a_o*cos(Q)

a_z = a_o*sin(Q)

Therefore we have:

• a_r = 7* \frac{500}{860} = -4.07m/s^2

• a_z = 7 * \frac{700}{860} = -5.70 m/s^2

• a_q = 0 m/s^2

Note : image is missing, so I attached it

You might be interested in
For laminar flow over a hot flat plate, the local heat transfer coefficient decreases with distance because (select all that are
kotegsom [21]

Answer:

B. The thickness of the heated region near the plate is increasing.

Explanation:

First we know that, a boundary layer is the layer of fluid in the immediate vicinity of a bounding surface where the effects of viscosity are significant. The fluid is often slower due to the effects of viscosity. Advection i.e the transfer of heat by the flow of liquid becomes less since the flow is slower, thereby the local heat transfer coefficient decreases.

From law of conduction, we observe that heat transfer rate will decrease based on a smaller rate of temperature, the thickness therefore increases while the local heat transfer coefficient decreases with distance.

3 0
3 years ago
A fatigue test was conducted in which the mean stress was 90 MPa (13050 psi), and the stress amplitude was 190 MPa (27560 psi).
Gwar [14]

Answer:

a) 280MPa

b) -100MPa

c) -0.35

d) 380 MPa

Explanation:

GIVEN DATA:

mean stress \sigma_m = 90MPa

stress amplitude \sigma_a = 190MPa

a) \sigma_m =\frac{\sigma_max+\sigma_min}{2}

    90 =\frac{\sigma_{max}+\sigma_{min}}{2} --------------1

\sigma_a =\frac{\sigma_{max}-\sigma_{min}}{2}

   190 = \frac{\sigma_{max}-\sigma_{min}}{2} -----------2

solving 1 and 2 equation we get

\sigma_{max} = 280MPa

b) \sigma_{min} = - 100MPa

c)

stress ratio=\frac{\sigma_{min}}{\sigma_{max}}

=\frac{-100}{280} = -0.35

d)magnitude of stress range

                      =(\sigma_{max} -\sigma_{min})

                       = 280 -(-100) = 380 MPa

3 0
3 years ago
How high a building could fire hoses effectively spray from the ground? Fire hose pressures are around 1 MPa. (It is also said t
Mrac [35]

Answer:

z_{2} = 91.640\,m

Explanation:

The phenomenon can be modelled after the Bernoulli's Principle, in which the sum of heads related to pressure and kinetic energy on ground level is equal to the head related to gravity.

\frac{P_{1}}{\rho\cdot g} + \frac{v_{1}^{2}}{2\cdot g}= z_{2}+\frac{P_{2}}{\rho\cdot g}

The velocity of water delivered by the fire hose is:

v_{1} = \frac{(300\,\frac{gal}{min} )\cdot(\frac{3.785\times 10^{-3}\,m^{3}}{1\,gal} )\cdot(\frac{1\,min}{60\,s} )}{\frac{\pi}{4}\cdot (0.3\,m)^{2}}

v_{1} = 0.267\,\frac{m}{s}

The maximum height is cleared in the Bernoulli's equation:

z_{2}= \frac{P_{1}-P_{2}}{\rho\cdot g} + \frac{v_{1}^{2}}{2\cdot g}

z_{2}= \frac{1\times 10^{6}\,Pa-101.325\times 10^{3}\,Pa}{(1000\,\frac{kg}{m^{3}} )\cdot(9.807\,\frac{m}{s^{2}} )} + \frac{(0.267\,\frac{m}{s} )^{2}}{2\cdot (9.807\,\frac{m}{s^{2}} )}

z_{2} = 91.640\,m

7 0
3 years ago
The substance is steam (H2O). NOTE: The purpose of this problem is to illustrate that there are conditions where water vapor is
Gennadij [26K]

Answer:

See the attached pictures for detailed answer.

Explanation:

See the attached pictures for step by step explanation.

7 0
3 years ago
Number pattern Write a recursive method called print Pattern() to output the following number pattern. Given a positive integer
lilavasa [31]

Answer:

See explaination

Explanation:

Code;

import java.util.Scanner;

public class NumberPattern {

public static int x, count;

public static void printNumPattern(int num1, int num2) {

if (num1 > 0 && x == 0) {

System.out.print(num1 + " ");

count++;

printNumPattern(num1 - num2, num2);

} else {

x = 1;

if (count >= 0) {

System.out.print(num1 + " ");

count--;

if (count < 0) {

System.exit(0);

}

printNumPattern(num1 + num2, num2);

}

}

}

public static void main(String[] args) {

Scanner scnr = new Scanner(System.in);

int num1;

int num2;

num1 = scnr.nextInt();

num2 = scnr.nextInt();

printNumPattern(num1, num2);

}

}

See attachment for sample output

3 0
3 years ago
Read 2 more answers
Other questions:
  • When the outside temperature is 5.2 ⁰C, a steel beam of cross-sectional area 52 cm2 is installed in a building with the ends of
    8·1 answer
  • Controlling your vehicle
    5·1 answer
  • Occurs between a tire on a vehicle and the roadway when a wall of water separates the tire from
    15·1 answer
  • Consider casting a concrete driveway 40 feet long, 12 feet wide and 6 in. thick. The proportions of the mix by weight are given
    6·1 answer
  • If you are a government authority what extend will you modify the existing policy
    11·1 answer
  • Is air conditioner a refrigerator?
    10·1 answer
  • Calculate the density of the FCC nickel lattice with an interstitial hydrogen in the centered position of the unit cell. You may
    10·1 answer
  • 3. How can statistical analysis of a dataset inform a design process?<br> PLEASE I NEED THIS ANSWER
    8·1 answer
  • Type the correct answer in the box. Spell all words correctly.
    6·2 answers
  • What should be given to a customer before doing a repair?
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!