Answer:
Evaporator,Compressor,Condensor ,Expanding valve
Explanation:
Split air conditioning :
Split air conditioning means that, condensor unit or some time called outdoor unit is split from evaporator.It means that evaporator and condensor are placed at some distance.
The four component of split air conditioning system are as follows
1.Evaporator
It absorb heat from room and produces the cooling effect.
2.Compressor
It compresses the refrigerant which exits from evaporator.
3.Condensor
It rejects the heat and cool the evaporator.
4.Expanding valve
It allows to refrigerant to cool up to evaporator pressure.
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Metering valves. These valves should be initially adjusted to provide adequate lubrication to each location
Answer:
a) , b)
Explanation:
A rigid tank means a storage whose volume is constant. Process is entirely isobaric. Initial and final properties of water are included below:
State 1 - Gas-Vapor Mixture
State 2 - Gas-Vapor Mixture
The model for the rigid tank is created by using the First Law of Thermodynamics:
Initial and final masses are:
a) The final mass within the tank is:
b) The total amount of heat transfer is: