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
faltersainse [42]
3 years ago
12

2. One of the many methods used for drying air is to cool the air below the dew point so that condensation or freezing of the mo

isture takes place. To what temperature must atmospheric air be cooled in order to have humidity ratio of 0.005 lb/lb?
Engineering
1 answer:
REY [17]3 years ago
6 0

Answer:

0.5°c

Explanation:

Humidity ratio by mass can be expressed as

the ratio between the actual mass of water vapor present in moist air - to the mass of the dry air

Humidity ratio is normally expressed in kilograms (or pounds) of water vapor per kilogram (or pound) of dry air.

Humidity ratio expressed by mass:

x = mw / ma                                  (1)

where

x = humidity ratio (kgwater/kgdry_air, lbwater/lbdry_air)

mw = mass of water vapor (kg, lb)

ma = mass of dry air (kg, lb)

It can be as:

x = 0.005 (100) / [(100 - 100)]

x = 0.005 x 100 / (100 - 100)

x = 0.005 x 100 / 0

x = 0.5°c

So the temperature to which atmospheric air must be cooled in order to have humidity ratio of 0.005 lb/lb is 0.5°c

You might be interested in
A police officer in a patrol car parked in a 70 km/h speed zone observes a passing automobile traveling at a slow, constant spee
Ludmilka [50]

Answer:

S = 0.5 km

velocity of motorist = 42.857 km/h

Explanation:

given data

speed  = 70 km/h

accelerates uniformly = 90 km/h

time = 8 s

overtakes motorist =  42 s

solution

we know  initial velocity u1 of police = 0

final velocity u2 = 90 km/h = 25 mps

we apply here equation of motion

u2 = u1 + at  

so acceleration a will be

a = \frac{25-0}{8}

a = 3.125  m/s²

so

distance will be

S1 = 0.5 × a × t²

S1 = 100 m = 0.1 km

and

S2 = u2 ×  t

S2 = 25  × 16

S2 = 400 m = 0.4 km  

so total distance travel by police

S = S1 + S2

S = 0.1 + 0.4

S = 0.5 km

and

when motorist travel with  uniform velocity

than total time = 42 s

so velocity of motorist will be

velocity of motorist = \frac{S}{t}

velocity of motorist =  \frac{500}{42}  

velocity of motorist = 42.857 km/h

3 0
3 years ago
Based on the graphs of stress-strain from the V-MSE site, how would you characterize the general differences between polymers an
Pepsi [2]

Answer:

Option A

Explanation:

Alloys are metal compounds with two or more metals or non metals to create new compounds that exhibit superior structural properties. Alloys have high level of hardness that resists deformation thereby making it less ductile compared to polymers. This is due to the varying difference in the chemical and physical characteristics of the constituent metals in the alloy.

6 0
3 years ago
A 50 mm diameter shaft is subjected to a static axial load of 160 kN. If the yield stress of the material is 350 MPa, the ultima
zvonat [6]

In order to develop this problem it is necessary to take into account the concepts related to fatigue and compression effort and Goodman equation, i.e, an equation that can be used to quantify the interaction of mean and alternating stresses on the fatigue life of a materia.

With the given data we can proceed to calculate the compression stress:

\sigma_c = \frac{P}{A}

\sigma_c = \frac{160*10^3}{\pi/4*0.05^2}

\sigma_c = 81.5MPa

Through Goodman's equations the combined effort by fatigue and compression is expressed as:

\frac{\sigma_a}{S_e}+\frac{\sigma_c}{\sigma_u}=\frac{1}{Fs}

Where,

\sigma_a=Fatigue limit for comined alternating and mean stress

S_e =Fatigue Limit

\sigma_c=Mean stress (due to static load)

\sigma_u = Ultimate tensile stress

Fs =Security Factor

We can replace the values and assume a security factor of 1, then

\frac{\sigma_a}{320}+\frac{81.5}{400}=\frac{1}{1}

Re-arrenge for \sigma_a

\sigma_a = 254.8Mpa

We know that the stress is representing as,

\sigma_a = \frac{M_c}{I}

Then,

Where M_c=Max Moment

I= Intertia

The inertia for this object is

I=\frac{\pi d^4}{64}

Then replacing and re-arrenge for M_c

M_c = \frac{\sigma_a*\pi*d^3}{32}

M_c = \frac{260.9*10^6*\pi*0.05^3}{32}

M_c = 3201.7N.m

Thereforethe moment that can be applied to this shaft so that fatigue does not occur is 3.2kNm

5 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
Your program will be a line editor. A line editor is an editor where all operations are performed by entering commands at the co
soldier1979 [14.2K]

Answer:

Java program given below

Explanation:

import java.util.*;

import java.io.*;

public class Lineeditor

{

private static Node head;

 

class Node

{

 int data;

 Node next;

 public Node()

 {data = 0; next = null;}

 public Node(int x, Node n)

 {data = x; next =n;}

}

 

public void Displaylist(Node q)

 {if (q != null)

       {  

        System.out.println(q.data);

         Displaylist(q.next);

       }

 }

 

public void Buildlist()

  {Node q = new Node(0,null);

       head = q;

       String oneLine;

       try{BufferedReader indata = new

                 BufferedReader(new InputStreamReader(System.in)); // read data from terminals

                       System.out.println("Please enter a command or a line of text: ");  

          oneLine = indata.readLine();   // always need the following two lines to read data

         head.data = Integer.parseInt(oneLine);

         for (int i=1; i<=head.data; i++)

         {System.out.println("Please enter another command or a new line of text:");

               oneLine = indata.readLine();

               int num = Integer.parseInt(oneLine);

               Node p = new Node(num,null);

               q.next = p;

               q = p;}

       }catch(Exception e)

       { System.out.println("Error --" + e.toString());}

 }

public static void main(String[] args)

{Lineeditor mylist = new Lineeditor();

 mylist.Buildlist();

 mylist.Displaylist(head);

}

}

7 0
3 years ago
Other questions:
  • Ammonia gas is diffusing at a constant rate through a layer of stagnant air 1 mm thick. Conditions are such that the gas contain
    14·1 answer
  • In what situation you would prefer to use a successive approximation ADC over flash ADC?
    13·1 answer
  • How an AK 47 gun was works​
    14·1 answer
  • Suppose an underground storage tank has been leaking for many years, contaminating a groundwater and causing a contaminant conce
    8·1 answer
  • Find the equivalent impedance Zeq seen by the source when Vs = 2 cos (5t) v, C = 0.2 F, R = 1 Ω and L = 0.1 H. (Give angles in d
    12·1 answer
  • Use the map to complete the table by selecting the boxes that best describe how ocean currents affect the
    14·1 answer
  • Consider that a system has two entities, Students, Instructors and Course. The Student has the following properties: student nam
    12·1 answer
  • Which design activity is part of the design for manufacturability (DFM) methodology?
    10·1 answer
  • Which option identifies the step skipped in the following scenario?
    9·2 answers
  • Shane's 100-watt radio draws 7 amps of current on a 120-volt circuit. What is the resistance in the radio?
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!