1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Rasek [7]
3 years ago
11

Consider a Carnot refrigeration cycle executed in a closed system in the saturated liquid-vapor mixture region using 0.96 kg of

refrigerant-134a as the working fluid. Is it known that the maximum absolute temperature in the cycle is 1.2 times the minimum absolute temperature, and the net work input to the cycle I s 22 kJ. If the refrigerant changes from saturated vapor to saturated liquid during the heat rejection process, determine he minimum pressure in the cycle.
Engineering
1 answer:
Eduardwww [97]3 years ago
8 0

Answer:

P_m_i_n= 356.9 KPa

Explanation:

Coefficient of performance (COP) of refrigeration cycle is given by:

COP=\frac{1}{\frac{T_H}{T_L}-1 }

We are given:

T_H=1.2T_L

COP=\frac{1}{1.2-1 }

COP= 5

We can also write Coefficient of performance (COP) of refrigeration cycle  as:

COP_R=\frac{Q_L}{W_i_n}

Amount of heat absorbed by low temperature reservoir can be found as:

Q_L=COP_R * W_i_n

Q_L=5 * 22 KJ

Q_L=110 KJ

According to first law of thermodynamics amount of heat rejected by hot reservoir is given by:

Q_H=Q_L + W_i_n

Q_H=110 KJ + 22 KJ

Q_H=132 KJ

We are given the mass of 0.96 kg. So,

q_H=\frac{Q_H}{m}

q_H=\frac{132 KJ}{0.96Kg}

q_H=137.5 KJ/Kg

Since it is a saturated liquid-vapour mixture q_H=h_f_g.

q_H=h_f_g=137.5 KJ/Kg

From Refrigerant 134-a tables T_H at h_f_g=137.5 KJ/Kg is 61.3 C. (We calculated this by interpolation)

Converting T_H from Celsius to Kelvin:

61.3^{o} C+273 = 334.3^{o} K

T_H= 334.3^{o} K

We are given:

T_H=1.2T_L

T_L=\frac{T_H}{1.2}

T_L=\frac{334.3}{1.2}

T_L=278.58^{o} K

Converting T_L from Kelvin to Celsius:

278.58^{o} K-273 = 5.58^{o} C

T_L= 5.58^{o} C

From Refrigerant 134-a tables P_m_i_n at T_L=5.58^{o} C is 356.9 KPa. (We calculated this by interpolation).

P_m_i_n= 356.9 KPa

You might be interested in
Joey has a car that uses the hand crank to open the windows. Joey is wondering where the energy comes from to open the windows.T
Sedaia [141]

Explanation:

Joey has a car that uses the hand crank to open the windows. Joey is wondering where the energy comes from to open the windows.The sunHuman-powered energy from JoeyThe hand crankThe moving car

5 0
3 years ago
A 0.25in diameter steel rod BC is securely attached between two identical 1in diameter copper rods (AB and CD). Find the torque
Helen [10]

Answer:

Tmax= 46.0 lb-in

Explanation:

Given:

- The diameter of the steel rod BC d1 = 0.25 in

- The diameter of the copper rod AB and CD d2 = 1 in

- Allowable shear stress of steel τ_s = 15ksi

- Allowable shear stress of copper τ_c = 12ksi

Find:

Find the torque T_max

Solution:

- The relation of allowable shear stress is given by:

                             τ = 16*T / pi*d^3

                             T = τ*pi*d^3 / 16

- Design Torque T for Copper rod:

                             T_c = τ_c*pi*d_c^3 / 16

                             T_c = 12*1000*pi*1^3 / 16

                             T_c = 2356.2 lb.in

- Design Torque T for Steel rod:

                             T_s = τ_s*pi*d_s^3 / 16

                             T_s = 15*1000*pi*0.25^3 / 16

                             T_s = 46.02 lb.in

- The design torque must conform to the allowable shear stress for both copper and steel. The maximum allowable would be:

                             T = min ( 2356.2 , 46.02 )

                             T = 46.02 lb-in

6 0
3 years ago
Every two years or at recommendation by manufacturer.
9966 [12]

Answer:

Manufacturer’s Recommendations means the instructions, procedures, and recommendations which are issued by the manufacturer of any equipment used at the Facility relating to the operation, maintenance, or repair of such equipment, and any revisions or updates thereto from time to time issued by the manufacturer.

Manufacturer’s Recommendations means the instructions, procedures and recommendations which are issued by any manufacturer of the Equipment relating to the operation, maintenance and repair of the Equipment and any revisions to such instructions, procedures and recommendations agreed to by any manufacturer of the Equipment and which are valid at the time such operation, repair and maintenance is being carried out.

Manufacturer’s Recommendations means the written instructions, procedures and recommendations which are issued by the original equipment manufacturer of any plant or equipment used at the Utility Plant relating to the operation, maintenance and repair of such plant or equipment and any revisions thereto issued by the manufacturer, which are valid and applicable at the time such operation, maintenance or repair is undertaken. Notwithstanding the above, Manufacturer’s Recommendations shall not include any instructions, procedures or recommendations of a manufacturer of any plant or equipment that the Owner and the Operator have agreed in writing to exclude from this definition or have agreed in writing should not be followed.

Explanation:

4 0
3 years ago
Write a program that uses a function called Output_Array_Info. Output_Array_Info Properties: Input Parameters: 1. A pointer to a
Artyom0805 [142]

Answer:

C++ code explained below

Explanation:

Please note the below program has been tested on ubuntu 16.04 system and compiled using g++ compiler. This code will also work on other IDE's

-----------------------------------------------------------------------------------------------------------------------------------

Program:

-----------------------------------------------------------------------------------------------------------------------------------

//header files

#include<iostream>

//namespace

using namespace std;

//function defintion

void Output_Array_Info(int *array_ptr, int size)

{

//display all array elements

cout<<"Array elements are: "<<endl;

for(int i =0; i<size; i++)

{

cout<<*(array_ptr+i)<<endl;

}

//display address of each element

cout<<endl<<"memory address of each array elemnt is: "<<endl;

for(int i =0; i<size; i++)

{

cout<<array_ptr+i<<endl;

}

}

//start of main function

int main()

{

//pointer variables

int *pointer;

//an array

int numbers[] = { 5, 7, 9, 10, 12};

//pointer pointing to array

pointer = numbers;

//calculate the size of the array

int size = sizeof(numbers)/sizeof(int);

//call to function

Output_Array_Info(numbers, size);

return 0;

}

//end of the main program

8 0
3 years ago
Identify and describe the three stages of a life cycle analysis.
sesenic [268]
The LCA process is a systematic, phased approach and consists of four components: goal definition and scoping, inventory analysis, impact assessment, and interpretation. The standards are provided by the International Organisation for Standardisation (ISO) in ISO 14040 and 14044, and describe the four main phases of an LCA: Goal and scope definition. Inventory analysis. Impact assessment.

Hope this is helpful
5 0
3 years ago
Other questions:
  • Carbon dioxide (CO2) at 1 bar, 300 K enters a compressor operating at steady state and is compressed adiabatically to an exit st
    11·1 answer
  • A steam pipe passes through a chemical plant, where wind passes in cross-flow over the outside of the pipe. The steam is saturat
    13·1 answer
  • Suppose three companies, Optimax, Megachug, and Thirstoid, dominate the sports drink market. Optimax enjoys the largest market s
    9·1 answer
  • Which of the following refers to a full-scale version of a product used to validate performance?
    10·2 answers
  • Describe with an example how corroded structures can lead to environment pollution? ​
    13·1 answer
  • Find the dryness fraction, specific volume and internal energy of steam at 7bar nd enthalpy 2600kj/kh. (0.921,0.2515m³/kg , 2420
    5·1 answer
  • If the power to a condensing unit has been turned off for an extended period of time, the _________________________ should be en
    12·1 answer
  • 1)
    13·1 answer
  • A fine-grained soil has a liquid limit of 200%, determined from the Casagrande cup method. The plastic limit was measured by rol
    15·1 answer
  • The density of a certain type of steel is 8.1 g/cm3. What is the mass of a 100 cm3 chunk of this steel
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!