You are on page 1of 3

2 PROBLEMS

THERMODYNAMICS 1

5. A cup holds about 250 ml, or 0.25 kg of water. You want to carry a cup of water from the first floor to
your room on the second floor, 15 feet up. How much work is required?

Solution A cup holds about 250 ml, or 0.25 kg of water. The potential energy difference between the
first and second floor is ΔEp = mgh = (0.25 kg)(9.81 m/s 2)(15 ft)(0.3048 m/ft) = 11.2 J.

clc;
disp('CHE THERMODYNAMICS 1 PROBLEM 4: A cup holds about 250 ml, or 0.25 kg of water. You
want to carry a cup of water from the first floor to your room on the second floor, 15 feet up. How much
work is required? ‘); m=input('Enter the mass of water: ');
h=input('Enter the height from first floor to second floor:');
Work=m*9.18*h;
fprintf('The Work done on the system is %0.2f. ',Work );

PHYSICAL CHEMISTRY

4. What is the average velocity or root mean square velocity of a molecule in a sample of oxygen at 0 °C?

I disp(' What is the average velocity or root mean square velocity


of a molecule in a sample of oxygen at 0 °C? : ');
molarmass = input('Enter the molarmass :');
R =input('Enter the R : ');
temperature =input('Enter the temperature :');
averagevelocity =
sqrt(3*R*temperature/(molarmass/1000)) ;
fprintf('The average velocity %0.2f. m/s ',
averagevelocity );

RESULT:
DAQUE_PHYCHEMPROB2
What is the average velocity or root mean square velocity of a molecule in a sample of oxygen at 0 °C? :
Enter the molarmass :32
Enter the R : 8.314
Enter the temperature :273.15
The average velocity 461.41. m/s >>
5. The temperature of a given gas is −10°C. What are the equivalent Fahrenheit scale
disp('The temperature of a given gas is 10°C. What are the
equivalent Fahrenheit scale ');
T=input('Enter the temperature: ');
Fahrenheitscale=T*1.8+32;
fprintf('The Fahrenheit scale
is %0.2f. °F',Fahrenheitscale );

RESULT:

DAQUE_PHYCHEMPROBLEM1
The temperature of a given gas is 10°C. What are the equivalent Fahrenheit scale
Enter the temperature: 10
The Fahrenheit scale is 50.00. °F>>

TRANSPORT PHENOMENA

4. Calculate the heat loss per m^2 of surface area for an insulating wall composed of 25.4-mm-thick
fiber insulating board, where the inside temperature is 352.7K and the outside temperature is 297.1K.
The thermal conductivity of fiber board is 0.048 W/m-K.

Solution:

Q=(k/x)(T1-T2)

Enter the value for k: 0.048

Enter the value for x: 0.0254

Enter the value for T1: 352.7

Enter the value for T2: 297.1


The heat loss per m^2 of surface area is 33.30. Do you want to continue? If YES, press 1, and if finished, press
any key:1

5. A heavy hydrocarbon oil which has a cpm=2.30 kJ/kg-K is being cooled in a heat exchanger from
371.9K to 349.7K and flows inside the tube at a rate of 3630 kg/h. A flow of 1450 kg water/h enters at
288.6 K for cooling and flows outside the tube. Calculate the heat lost by the oil.

Solution:

q=mc(T2-T1)

Enter the value for m: 3630

Enter the value for c: 2.30

Enter the value for T1: 349.7

Enter the value for T2: 371.9

You might also like