Answer:
In the steel: 815 kPa
In the aluminum: 270 kPa
Explanation:
The steel pipe will have a section of:
A1 = π/4 * (D^2 - d^2)
A1 = π/4 * (0.8^2 - 0.7^2) = 0.1178 m^2
The aluminum core:
A2 = π/4 * d^2
A2 = π/4 * 0.7^2 = 0.3848 m^2
The parts will have a certain stiffness:
k = E * A/l
We don't know their length, so we can consider this as stiffness per unit of length
k = E * A
For the steel pipe:
E = 210 GPa (for steel)
k1 = 210*10^9 * 0.1178 = 2.47*10^10 N
For the aluminum:
E = 70 GPa
k2 = 70*10^9 * 0.3848 = 2.69*10^10 N
Hooke's law:
Δd = f / k
Since we are using stiffness per unit of length we use stretching per unit of length:
ε = f / k
When the force is distributed between both materials will stretch the same length:
f = f1 + f2
f1 / k1 = f2/ k2
Replacing:
f1 = f - f2
(f - f2) / k1 = f2 / k2
f/k1 - f2/k1 = f2/k2
f/k1 = f2 * (1/k2 + 1/k1)
f2 = (f/k1) / (1/k2 + 1/k1)
f2 = (200000/2.47*10^10) / (1/2.69*10^10 + 1/2.47*10^10) = 104000 N = 104 KN
f1 = 200 - 104 = 96 kN
Then we calculate the stresses:
σ1 = f1/A1 = 96000 / 0.1178 = 815000 Pa = 815 kPa
σ2 = f2/A2 = 104000 / 0.3848 = 270000 Pa = 270 kPa
Answer & Explanation:
function Temprature
NYC=[33 33 18 29 40 55 19 22 32 37 58 54 51 52 45 41 45 39 36 45 33 18 19 19 28 34 44 21 23 30 39];
DEN=[39 48 61 39 14 37 43 38 46 39 55 46 46 39 54 45 52 52 62 45 62 40 25 57 60 57 20 32 50 48 28];
%AVERAGE CALCULATION AND ROUND TO NEAREST INT
avgNYC=round(mean(NYC));
avgDEN=round(mean(DEN));
fprintf('\nThe average temperature for the month of January in New York city is %g (F)',avgNYC);
fprintf('\nThe average temperature for the month of January in Denvar is %g (F)',avgDEN);
%part B
count=1;
NNYC=0;
NDEN=0;
while count<=length(NYC)
if NYC(count)>avgNYC
NNYC=NNYC+1;
end
if DEN(count)>avgDEN
NDEN=NDEN+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in New York city was above the average',NNYC);
fprintf('\nDuring %g days, the temprature in Denvar was above the average',NDEN);
%part C
count=1;
highDen=0;
while count<=length(NYC)
if NYC(count)>DEN(count)
highDen=highDen+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in Denver was higher than the temprature in New York city.\n',highDen);
end
%output
check the attachment for additional Information
Answer:
if you are interested in working for a company then you should opt for c). Company Site
Explanation:
Industries can have the same scope of work but every company has their own way of achieving objectives. You should learn about the company, its job functions and the specific sector you're interested in. Review the current projects they are working on (specific to your job function), and how you can benefit the company on those projects.