Answer:
13.4 mm
Explanation:
Given data :
Load amplitude ( F ) = 22,000 N
factor of safety ( N )= 2.0
Take ( Fatigue limit stress amplitude for this alloy ) б = 310 MPa
<u>calculate the minimum allowable bar diameter to ensure that fatigue failure will not occur</u>
minimum allowable bar diameter = 13.4 * 10^-3 m ≈ 13.4 mm
<em>attached below is a detailed solution</em>
Answer:
The maximum water pressure at the discharge of the pump (exit) = 496 kPa
Explanation:
The equation expressing the relationship of the power input of a pump can be computed as:

where;
m = mass flow rate = 120 kg/min
the pressure at the inlet
= 96 kPa
the pressure at the exit
= ???
the pressure
= 1000 kg/m³
∴




400000 = P₂ - 96000
400000 + 96000 = P₂
P₂ = 496000 Pa
P₂ = 496 kPa
Thus, the maximum water pressure at the discharge of the pump (exit) = 496 kPa
Answer:
thank you for the free point have a great rest of your day
Answer:
Explanation:
var generator = new Random(1);
// Now the nextGaussian() function returns a normal distribution of random numbers with the following parameters: a mean of zero and a standard deviation of one
var draw = function() {
var num = generator.nextGaussian();
var standardDeviation = 60;
var mean = 2003;
// Multiply by the standard deviation and add the mean.
var x = standardDeviation * num + mean;
noStroke();
fill(214, 159, 214, 10);
ellipse(x, 200, 16, 16); };
Hope this will be helpful