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
Thepotemich [5.8K]
3 years ago
11

An 80-L vessel contains 4 kg of refrigerant-134a at a pressure of 160kPa. Determine (a) the temperature, (b) the quality, (c) th

e enthalpy of the refrigerant, and (d) the volume occupied by the vapor phase.
Engineering
1 answer:
makvit [3.9K]3 years ago
7 0

Answer:

temperature -15.6 C, quality x=0.646, enthalpy h=667.20 KJ, volume of vapor phase Vg= 79.8 L

Explanation:

property table for R-134a

https://www.ohio.edu/mechanical/thermo/property_tables/R134a/R134a_PresSat.html

at 160 KPa , temperature = -15.66 C

quality x=mass of vapour/ total mass of liq-vap mixture

alternaternately: x=(v-vf)/(vg-vf)    

v=total volume i.e. volume of container"80L"   80L=0.08 cubic meter

vf=vol of liquid phase  vg=vol of vapor phase vf, vg values at 160Kpa

x=(0.08-0.0007437)/(0.1235-0.0007437)=0.646

enthalpy

h=hf+xhfg          hf, hfg values at 160Kpa

h=hf+xhfg=31.2+0.646(209.9)=166.80 KJ/Kg

for 4Kg R-134a h=m(166.80 KJ/Kg )=667.20 KJ

volume of vapor phase

vg at 160Kpa=0.1235 cubic meter for quality=1.

in this case quality=0.646 , so it will occupy 64.6% space of the vapor phase at quality=1.

vol. of vapor phase=0.646*0.1235=0.0798 cubic meter=79.8 L

You might be interested in
Four race cars are traveling on a 2.5-mile tri-oval track. The four cars are traveling at constant speeds of 195 mi/h, 190 mi/h,
Snezhnost [94]

Answer:

Explanation:

1) The number of times, the car with the speed of  195 mph will cross the given point is equal to 30 minutes divided by the time taken by car to cross the 2.5 miles.

0 .5*195/2.5 = 39

Likewise, the car with the speed of 190 mph crosses the point 38 times; the car with the speed of 185 mph crosses the point 37 times

and car with the speed of 180 mph crosses it 36 times

here, the time-mean speed, vt is given below,

vt = (39*195 +38*190+37*185+36*180)/(39+38+37+38)

= 186.433 mph

and space mean speed is given by,

= (39+38+37+36)/(39/195+38/190+37/1850+36/180)

1) The number of times, the car with the speed of  195 mph will cross the given point is equal to 30 minutes divided by the time taken by car to cross the 2.5 miles.

0 .5*195/2.5 = 39

Likewise, the car with the speed of 190 mph crosses the point 38 times; the car with the speed of 185 mph crosses the point 37 times

and car with the speed of 180 mph crosses it 36 times

here, the time-mean speed, vt is given below,

vt = (39*195 +38*190+37*185+36*180)/(39+38+37+38)

= 186.433 mph

and space mean speed is given by,

= (39+38+37+36)/(39/195+38/190+37/1850+36/180)

=187.5 mph

2)  There would be only four number of observations when the aerial photo is given, therefore time mean speed, vt in that condition will be calculated as

Vt = 195+190+185+180/4

  = 187.5

Vs= 4/(1/195+1/190+1/185+1/180)

= 188.36 mph

2)  There would be only four number of observations when the aerial photo is given, therefore time mean speed, vt, in that condition will be calculated as

Vt = 195+190+185+180/4

  = 187.5

Vs= 4/(1/195+1/190+1/185+1/180)

= 188.36 mph

4 0
3 years ago
To determine if a product or substance being used is hazardous, consult:__________.
qwelly [4]

Answer:

Option B: An MSDS

Explanation:

A dictionary is used to check up the meaning of general words and not for checking if a substance being used is hazardous. Option A is wrong.

MSDS means "Material Safety Data Sheet" and it contains documents with information that relates to occupational health & safety for checking various substances and products. Thus, option B is correct.

SAE stands for Society of Automotive Engineering and their standards pertain to mainly Automobiles. Thus option C is wrong.

EPA guidelines are mainly for checking facility and environmental health and safety compliance. Thus, option D is wrong.

3 0
3 years ago
(40 points) Program the following sorting algorithms: InsertionSort, MergeSort, and QuickSort. There are 9 test les uploaded for
babunello [35]

Answer:

Explanation:

MERGE SORT

#include<stdlib.h>

#include<stdio.h>

#include<string.h>

void merge(int arr[], int l, int m, int r)

{

int i, j, k;

int n1 = m - l + 1;

int n2 = r - m;

 

int L[n1], R[n2];

for (i = 0; i < n1; i++)

L[i] = arr[l + i];

for (j = 0; j < n2; j++)

R[j] = arr[m + 1+ j];

i = 0;

j = 0;

k = l;

while (i < n1 && j < n2)

{

if (L[i] <= R[j])

{

arr[k] = L[i];

i++;

}

else

{

arr[k] = R[j];

j++;

}

k++;

}

while (i < n1)

{

arr[k] = L[i];

i++;

k++;

}

while (j < n2)

{

arr[k] = R[j];

j++;

k++;

}

}

void mergeSort(int arr[], int l, int r)

{

if (l < r)

{

int m = l+(r-l)/2;

mergeSort(arr, l, m);

mergeSort(arr, m+1, r);

merge(arr, l, m, r);

}

}

void printArray(int A[], int size)

{

int i;

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

printf("%d ", A[i]);

printf("\n");

}

int main()

{

int arr[1000] = {0};

int arr_size =0;

int data;

char file1[20];

strcpy(file1,"data.txt");

FILE *fp;

fp = fopen(file1,"r+");

if (fp == NULL) // if file not opened return error

{

perror("Unable to open file");

return -1;

}

else

{

fscanf (fp, "%d", &data);    

arr[arr_size]=data;

arr_size++;

while (!feof (fp))

{  

fscanf (fp, "%d", &data);  

arr[arr_size]=data;

arr_size++;    

}

}

printf("Given array is \n");

printArray(arr, arr_size);

mergeSort(arr, 0, arr_size - 1);

printf("\nSorted array Using MERGE SORT is \n");

printArray(arr, arr_size);

return 0;

}

3 0
3 years ago
Define prisms. How to draw true shape of a prism?
aksik [14]

Answer:

In geometry, a prism is a polyhedron comprising an n-sided polygonal base, a second base which is a translated copy of the first, and n other faces joining corresponding sides of the two bases. All cross-sections parallel to the bases are translations of the bases.

4 0
3 years ago
¿Cuál de los siguientes factores reduciría el riesgo de roturas por un choque térmico a. Alto coeficiente de dilatación térmico
hoa [83]

Answer:

c. Alto módulo de elasticidad

Explanation:

The correct answer to the given question is c. Alto modulo de elasticidad

A Youngs modulus measures the resistance of any material to elastic deformation. It is basically the ratio of the stress applied to a body to the results of the stress which is the response of the body over the pressure applied. This is to test the stiffness of any material and most of time the material stays constant over stressing.

5 0
2 years ago
Other questions:
  • Complete function PrintPopcornTime(), with int parameter bagOunces, and void return type. If bagOunces is less than 3, print "To
    7·1 answer
  • Which view of an architectural design displays the complex interior features of an object concealed by hidden lines
    8·1 answer
  • Determine the total condensation rate of water vapor onto the front surface of a vertical plate that is 10 mm high and 1 m in th
    8·2 answers
  • The Hoover Dam is 221 m tall and 379 m wide. Approximating it as a flat plate, determine the effective resultant force on the da
    6·1 answer
  • Michelle is the general manager of a power plant. This morning, she will meet with city officials to discuss environmental issue
    5·1 answer
  • A hollow, spherical shell with mass 2.00kg rolls without slipping down a slope angled at 38.0?.
    15·1 answer
  • Which of the following positions would be responsible for attaching I-beams to a crane?
    7·1 answer
  • How is a disc brake system different from a drum brake system? Short answer
    7·2 answers
  • I need ideas of usernames for a 2021 Jeep Wrangler Rubicon!!
    15·1 answer
  • A full-adder is a combinational circuit that forms the arithmetic sum of three input bits.
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!