Answer:
The spring is compressed by 0.275 meters.
Explanation:
For equilibrium of the gas and the piston the pressure exerted by the gas on the piston should be equal to the sum of weight of the piston and the force the spring exerts on the piston
Mathematically we can write

we know that


Now the force exerted by an spring compressed by a distance 'x' is given by 
Using the above quatities in the above relation we get

Answer:
1) 
2) 
Explanation:
For isothermal process n =1

![V_o = \frac{5}{[\frac{72}{80}]^{1/1} -[\frac{72}{180}]^{1/1}}](https://tex.z-dn.net/?f=V_o%20%20%3D%20%5Cfrac%7B5%7D%7B%5B%5Cfrac%7B72%7D%7B80%7D%5D%5E%7B1%2F1%7D%20-%5B%5Cfrac%7B72%7D%7B180%7D%5D%5E%7B1%2F1%7D%7D)

calculate pressure ratio to determine correction factor

correction factor for calculate dpressure ration for isothermal process is
c1 = 1.03

b) for adiabatic process
n =1.4
volume of hydraulic accumulator is given as
![V_o =\frac{\Delta V}{[\frac{p_o}{p_1}]^{1/n} -[\frac{p_o}{p_2}]^{1/n}}](https://tex.z-dn.net/?f=V_o%20%3D%5Cfrac%7B%5CDelta%20V%7D%7B%5B%5Cfrac%7Bp_o%7D%7Bp_1%7D%5D%5E%7B1%2Fn%7D%20-%5B%5Cfrac%7Bp_o%7D%7Bp_2%7D%5D%5E%7B1%2Fn%7D%7D)
![V_o = \frac{5}{[\frac{72}{80}]^{1/1.4} -[\frac{72}{180}]^{1/1.4}}](https://tex.z-dn.net/?f=V_o%20%20%3D%20%5Cfrac%7B5%7D%7B%5B%5Cfrac%7B72%7D%7B80%7D%5D%5E%7B1%2F1.4%7D%20-%5B%5Cfrac%7B72%7D%7B180%7D%5D%5E%7B1%2F1.4%7D%7D)

calculate pressure ratio to determine correction factor

correction factor for calculate dpressure ration for isothermal process is
c1 = 1.15

Answer:
Explanation:
Thermostatic expansion valve is mainly a throttling device commonly used in air conditioning systems and refrigerators.
It is an automatic valve that maintains proper flow of refrigerant in the evaporator according to the load inside the evaporator. When the load in the evaporator is higher the valve opens and allows the increase in flow of refrigerant and when the load reduces the valve closes a bit and reduces the flow of refrigerant. This process leads to higher efficiency of compressor as well as the whole refrigeration system. Thus TEV works to reduce the pressure of refrigerant from higher condenser pressure to the lower evaporator pressure. It also keeps the evaporator active.
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}