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:
/* C Program to rotate matrix by 90 degrees */
#include<stdio.h>
int main()
{
int matrix[100][100];
int m,n,i,j;
printf("Enter row and columns of matrix: ");
scanf("%d%d",&m,&n);
/* Enter m*n array elements */
printf("Enter matrix elements: \n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&matrix[i][j]);
}
}
/* matrix after the 90 degrees rotation */
printf("Matrix after 90 degrees roration \n");
for(i=0;i<n;i++)
{
for(j=m-1;j>=0;j--)
{
printf("%d ",matrix[j][i]);
}
printf("\n");
}
return 0;
}
Answer:
The answer to the question is
The heat transferred in the process is -274.645 kJ
Explanation:
To solve the question, we list out the variables thus
R-134a = Tetrafluoroethane
Intitial Temperaturte t₁ = 100 °C
Initial pressure = 3.5 bar = 350 kPa
For closed system we have m₁ = m₂ = m
ΔU = m×(u₂ - u₁) = ₁Q₂ -₁W₂
For constant pressure process we have
Work done = W =
= P×ΔV = P × (V₂ - V₁) = P×m×(v₂ - v₁)
From the tables we have
State 1 we have h₁ = (490.48 +489.52)/2 = 490 kJ/kg
State 2 gives h₂ = 206.75 + 0.75 × 194.57= 352.6775 kJ/kg
Therefore Q₁₂ = m×(u₂ - u₁) + W₁₂ = m × (u₂ - u₁) + P×m×(v₂ - v₁)
= m×(h₂ - h₁) = 2.0 kg × (352.6775 kJ/kg - 490 kJ/kg) =-274.645 kJ
Answer:
14.506°C
Explanation:
Given data :
flow rate of water been cooled = 0.011 m^3/s
inlet temp = 30°C + 273 = 303 k
cooling medium temperature = 6°C + 273 = 279 k
flow rate of cooling medium = 0.02 m^3/s
Determine the outlet temperature
we can determine the outlet temperature by applying the relation below
Heat gained by cooling medium = Heat lost by water
= ( Mcp ( To - 6 ) = Mcp ( 30 - To )
since the properties of water and the cooling medium ( water ) is the same
= 0.02 ( To - 6 ) = 0.011 ( 30 - To )
= 1.82 ( To - 6 ) = 30 - To
hence To ( outlet temperature ) = 14.506°C