Answer:
All 3 principal stress
1. 56.301mpa
2. 28.07mpa
3. 0mpa
Maximum shear stress = 14.116mpa
Explanation:
di = 75 = 0.075
wall thickness = 0.1 = 0.0001
internal pressure pi = 150 kpa = 150 x 10³
torque t = 100 Nm
finding all values
∂1 = 150x10³x0.075/2x0,0001
= 0.5625 = 56.25mpa
∂2 = 150x10³x75/4x0.1
= 28.12mpa
T = 16x100/(πx75x10³)²
∂1,2 = 1/2[(56.25+28.12) ± √(56.25-28.12)² + 4(1.207)²]
= 1/2[84.37±√791.2969+5.827396]
= 1/2[84.37±28.33]
∂1 = 1/2[84.37+28.33]
= 56.301mpa
∂2 = 1/2[84.37-28.33]
= 28.07mpa
This is a 2 d diagram donut is analyzed in 2 direction.
So ∂3 = 0mpa
∂max = 56.301-28.07/2
= 14.116mpa
Answer:
- the capacity of the pump reduces by 35%.
- the head gets reduced by 57%.
the power consumption by the pump is reduced by 72%
Explanation:
the pump capacity is related to the speed as speed is reduces by 35%
so new speed is (100 - 35) = 65% of orginal speed
speed Q ∝ N ⇒ Q1/Q2 = N1/N2
Q2 = (N2/N1)Q1
Q2 = (65/100)Q1
which means that the capacity of the pump is also reduces by 35%.
the head in a pump is related by
H ∝ N² ⇒ H1/H2 = N1²/N2²
H2 = (N2N1)²H1
H2 = (65/100)²H1 = 0.4225H1
so the head gets reduced by 1 - 0.4225 = 0.5775 which is 57%.
Now The power requirement of a pump is related as
P ∝ N³ ⇒ P1/P2 = N1³/N2³
P2 = (N2/N1)³P1
H2 = (65/100)²P1 = 0.274P1
So the reduction in power is 1 - 0.274 = 0.725 which is 72%
Therefore for a reduction of 35% of speed there is a reduction of 72% of the power consumption by the pump.
Answer:
Explanation gives the answer
Explanation:
% Using MATLAB,
% Matlab file : fieldtovar.m
function varargout = fieldtovar(S)
% function that accepts single structure as input, assigning each
% of the field values to user-defined variables
fields = fieldnames(S); % get the field names of the input structure
% check if number of user-defined variables and number of fields in
% structure are equal
if nargout == length(fields)
% if equal assign each value of structure to user-defined varable
for i=1:nargout
varargout{i} = getfield(S,fields{i});
end
else
% if not equal display an error message
error('The number of output variables does not equal the number of fields');
end
end
%This brings an end to the program
Answer:
Java is called portable because you can compile a java code which will spew out a byte-code, and then you run that code with Java Virtual Machine. Java Virtual Machine is like an interpreter, which reads the compiled byte-code and runs it. So first of all, you need to install the JVM on the system you want.
Explanation: