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
MariettaO [177]
3 years ago
9

An induced-draft cooling tower cools 90,000 gallons per minute of water from 84 to 68oF. Air at 14.61 psia, 70oF dry bulb and 60

oF wet bulb enters the tower and leaves saturated at 80oF. Find (a) the volume flow rate of air in cubic feet per minute, and (b) the makeup water required, in lbm/hr.

Engineering
1 answer:
belka [17]3 years ago
3 0

Answer:

a. V = 109.64 × 10⁵ ft/min

b. Mw = 654519.54 kg/hr

Explanation:

Given Parameters

mass flow rate of water, Mw = 90000g/min = 6607.33 kg/s

inlet temperature of water, T1 = 84 F = 28.89 C

outlet temperature of water, T2 = 68 F = 20 C

specific heat capacity of water, c = 4.18kJ/kgK

rate of heat remover from water, Qw is given by

Qw = 6607.33[28.89 - 20] * 4.18

Qw = 245529.545kw

For air, inlet condition

DBT = 70 F              hi = 43.43 kJ/kg

WBT = 60 F             wi = 0.00874 kJ/kg

                                u1 = 0.8445 m/kg

oulet condition,

DBT = 70 F        RH = 100.1

h1 = 83.504kJ/kg

Wo = 0.222kJ/kg

check the attached file for complete solution

You might be interested in
The emissivity of galvanized steel sheet, a common roofing material, is ε = 0.13 at temperatures around 300 K, while its absorpt
Step2247 [10]

Answer:

759.99W/m²

Explanation:

Question: If the temperature of the sheet is 77C,what is the incident solar radiation on aday with Tinf= Tsurr= 16°C?

Given

Energy Equation of the Gas

αs * Gs * A + h * A * (T inf - Tg) + εσA (Tsurr⁴- Tg⁴) = 0

Where σ= 5.67 *10^-8 W/m²K⁴ (Stefan-Boltzmann constant)

ε = 0.13 (Emisivity)

αs = 0.65 (Absorptivity for solar radiation)

h = 7W/m²K⁴

Tg = 77 + 273.15K = 350.15K

T inf = 16 + 273.15 = 288.15K

T surr= T inf = 288.15

Substitute the above values in the Gas Equation, we have

0.65 * Gs * A + 7 * A * (288.15 - 350.15) + 0.13 * 5.67 * 10^-8 * A * (288.15⁴ - 350.15⁴) = 0

0.65 * Gs * A = - 7 * A * (288.15 - 350.15) - 0.13 * 5.67 * 10^-8 * A * (288.15⁴ - 350.15⁴)

A cancels out, so we are left with

0.65 * Gs = - 7 * (288.15 - 350.15) - 0.13 * 5.67 * 10^-8 * (288.15⁴ - 350.15⁴)

0.65Gs = 434 - 0.7372 * 10^-8(−8,137,940,481.697)

0.65Gs = 434 + 0.7372 * 81.37940481697

0.65Gs = 493.992897231070284

Gs = 493.992897231070284/0.65

Gs = 759.9890726631850

Gs = 759.99W/m² ------- Approximated

3 0
3 years ago
An engineer is working with archeologists to create a realistic Roman village in a museum. The plan for a balance in a marketpla
NeTakaya

Answer:

The minimum volume requirement for the granite stones is 1543.64 cm³

Explanation:

1 granite stone weighs 10 denarium

100 granted stones will weigh 1000 denarium

1 denarium = 3.396g

1000 denarium = 3396g.

But we're told that 20% of material is lost during the making of these stones.

This means the mass calculated represents 80% of the original mass requirement, m.

80% of m = 3396

m = 3396/0.8 = 4425 g

This mass represents the minimum mass requirement for making the stones.

To now obtain the corresponding minimum volume requirement

Density = mass/volume

Volume = mass/density = 4425/2.75 = 1543.64 cm³

Hope this helps!!!

3 0
3 years ago
Please help with my economics problem
morpeh [17]

Answer:

You first get a new job, and make a new company and then by amazon to traumatize Jeff Bezos after his divorce

Explanation:

5 0
3 years ago
Your Java program will be reading input from a file name strInput.txt. Each record contains String firstname String lastName Str
stiks02 [169]

Answer:

The program requires that you have the specified input files and it reads from each file at a time and processes salary in digits, states the city, state and bonus with respective first and last name as requested in the question. Note that you must have access to the mentioned output files for the program to work properly. Below is the java version of the program.

import java.io.File;

import java.io.FileNotFoundException;

import java.io.PrintWriter;

import java.util.Scanner;

class Driver

{

public static void main(String[] args) throws FileNotFoundException

{

Scanner sc = new Scanner(new File("strInput.txt"));

PrintWriter pd = new PrintWriter(new File("strOutputD"));

PrintWriter prf = new PrintWriter(new File("strOutputRF"));

String firstname = "", lastname = "", strSalary = "", status = "", cityState = "", city = "", state = "";

double salary = 0, bonus = 0;

int incorrectRecords = 0;

int dRecords = 0;

int fRecords = 0;

while(sc.hasNextLine())

{

firstname = sc.next();

lastname = sc.next();

strSalary = sc.next();

status = sc.next();

cityState = sc.next();

if(!status.equals("D") && !status.equals("F"))

{

System.out.println("Records is neither D nor F. Skipping this...");

incorrectRecords++;

continue;

}

else if(status.equals("D") || status.equals("F"))

{

char c = ' ';

int i = 0;

for(i=0; i<strSalary.length() && c != '.'; i++)

{

c = strSalary.charAt(i);

if(!Character.isDigit(c))

{

System.out.println("Char at position " + (i+1) + " in salary is not a digit");

incorrectRecords++;

continue;

}

}

if(c == '.')

{

if(i+1 == strSalary.length()-1)

{

if(!Character.isDigit(strSalary.charAt(i)))

{

System.out.println("Char at position " + (i+1) + " in salary is not a digit");

incorrectRecords++;

continue;

}

if(!Character.isDigit(strSalary.charAt(i+1)))

{

System.out.println("Char at position " + (i+1+1) + " in salary is not a digit");

incorrectRecords++;

continue;

}

}

else

{

System.out.println("Period is in the wrong position. Expected at " + (strSalary.length()-3) + " but found at " + (i+1));

continue;

}

}

city = cityState.split(",")[0];

state = cityState.split(",")[1];

salary = Double.parseDouble(strSalary);

if(status.equals("D"))

{

bonus = salary * 0.125;

dRecords++;

pd.write(firstname + " " + lastname + " " + status + " " + salary + " " + bonus + " " + city + " " + state);

}

else

{

bonus = salary * 0.18;

fRecords++;

prf.write(firstname + " " + lastname + " " + status + " " + salary + " " + bonus + " " + city + " " + state);

}

}

}

System.out.println("No of D records : " + dRecords);

System.out.println("No of F records : " + fRecords);

System.out.println("No of incorrect records : " + incorrectRecords);

}

}

6 0
3 years ago
Just to let you know Christmas is in 10 days&lt;3<br><br> lol
Harrizon [31]

Answer:

yay yay

Explanation:

im so excited i cant wait

7 0
3 years ago
Read 2 more answers
Other questions:
  • Thermal energy storage systems commonly involve a packed bed of solid spheres, through which a hot gas flows if the system is be
    13·1 answer
  • A closed, rigid, 0.45 m^3 tank is filled with 12 kg of water. The initial pressure is p1 = 20 bar. The water is cooled until the
    15·1 answer
  • The decay of a radioactive isotope can be theoretically modeled with the following equation, where C0 is the initial amount of t
    6·1 answer
  • : A pneumatic "cannon" is a device that launches a low mass projectile from a cylindrical tube using pressurized air stored upst
    6·1 answer
  • Plz answer all of these questions!
    15·1 answer
  • [10] Create a program called SelectionSort.java that implements the Selection Sort algorithm (The Art of Computer Programming -
    10·1 answer
  • Select the correct answer
    8·1 answer
  • What is 203593^54/38n^7
    6·1 answer
  • An ideal gas is contained in a closed assembly with an initial pressure and temperature of
    14·1 answer
  • It is acceptable to mix used absorbents.
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!