Answer:
The tube surface temperature immediately after installation is 120.4°C and after prolonged service is 110.8°C
Explanation:
The properties of water at 100°C and 1 atm are:
pL = 957.9 kg/m³
pV = 0.596 kg/m³
ΔHL = 2257 kJ/kg
CpL = 4.217 kJ/kg K
uL = 279x10⁻⁶Ns/m²
KL = 0.68 W/m K
σ = 58.9x10³N/m
When the water boils on the surface its heat flux is:

For copper-water, the properties are:
Cfg = 0.0128
The heat flux is:
qn = 0.9 * 18703.42 = 16833.078 W/m²

The tube surface temperature immediately after installation is:
Tinst = 100 + 20.4 = 120.4°C
For rough surfaces, Cfg = 0.0068. Using the same equation:
ΔT = 10.8°C
The tube surface temperature after prolonged service is:
Tprolo = 100 + 10.8 = 110.8°C
Answer:
Ususushehehehhuuiiïbbb
Explanation:
Yyshehshehshshsheyysysueueue
Answer:
Complete answer to the question is explained in the attached files.please have a look on it.
Explanation:
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)