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
Fynjy0 [20]
3 years ago
15

A consultant has proposed that a pulse-jet baghouse with bags that are 15 cm in diameter and 5 m in length. Estimate the net num

ber of bags required if the manufacturer’s recommended air-to-cloth ratio for aggregate plants in 0.05 m/s, and a requirement that 1/8 of the bags are off-line for cleaning
Engineering
1 answer:
Dmitry_Shevchenko [17]3 years ago
5 0

Answer:

0,5 bags

Total number of bags = 0.5 +  4 = 4.5 bags or 5 bags

Explanation:

Convert 15cm to meters  = 15/100 = 0.15m

Flow rate Q = Area x velocity

= π d x v

= π (0.15) x 1

= 0.4712

A = Q/v = 0.4712/ 0.05

=<u> 9.435 m^2</u>

<u></u>

The net number of bags =  A/π dh

= 9.425/π (0.15)(5)

= <u>4 bags </u>

<u></u>

Requirement that 1/8 of the bags are off-line for cleaning

= Net number of bags / 8

= 4/8

= <u>0.5 bag or 1bag</u>

<u></u>

<u>Total number of bags </u>

<u>= 4bags + 1bag </u>

<u>= 5bags </u>

<u></u>

You might be interested in
Calculate the load, PP, that would cause AA to be displaced 0.01 inches to the right. The wires ABAB and ACAC are A36 steel and
Nataly [62]

Answer:

P = 4.745 kips

Explanation:

Given

ΔL = 0.01 in

E = 29000 KSI

D = 1/2 in  

LAB = LAC = L = 12 in

We get the area as follows

A = π*D²/4 = π*(1/2 in)²/4 = (π/16) in²

Then we use the formula

ΔL = P*L/(A*E)

For AB:

ΔL(AB) = PAB*L/(A*E) = PAB*12 in/((π/16) in²*29*10⁶ PSI)

⇒  ΔL(AB) = (2.107*10⁻⁶ in/lbf)*PAB

For AC:

ΔL(AC) = PAC*L/(A*E) = PAC*12 in/((π/16) in²*29*10⁶ PSI)

⇒  ΔL(AC) = (2.107*10⁻⁶ in/lbf)*PAC

Now, we use the condition

ΔL = ΔL(AB)ₓ + ΔL(AC)ₓ = ΔL(AB)*Cos 30° + ΔL(AC)*Cos 30° = 0.01 in

⇒  ΔL = (2.107*10⁻⁶ in/lbf)*PAB*Cos 30°+(2.107*10⁻⁶ in/lbf)*PAC*Cos 30°= 0.01 in

Knowing that   PAB*Cos 30°+PAC*Cos 30° = P

we have

(2.107*10⁻⁶ in/lbf)*P = 0.01 in

⇒  P = 4745.11 lb = 4.745 kips

The pic shown can help to understand the question.

5 0
3 years ago
If welding is being done in the vertical position, the torch should have a travel angle of?
siniylev [52]

Answer:

Between 35°– 45°

Explanation:

In the vertical position, Point the flame in the direction of travel. Keep the flame tip at the correct height above the base metal. An angle of 35°–45° should be maintained between the torch tip and the base metal. This angle may be varied up or down to heat or cool the weld pool if it is too narrow or too wide

4 0
1 year ago
Write a C program that will update a bank balance. A user cannot withdraw an amount ofmoney that is more than the current balanc
GarryVolchara [31]

Answer:

Explanation:

Sample output:

BANK ACCOUT PROGRAM!

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

Enter the old balance: 1234.50

Enter the transactions now.

Enter an F for the transaction type when you are finished.

Transaction Type (D=deposit, W=withdrawal, F=finished): D

Amount: 568.34

Transaction Type (D=deposit, W=withdrawal, F=finished): W

Amount: 25.68

Transaction Type (D=deposit, W=withdrawal, F=finished): W

Amount: 167.40

Transaction Type (D=deposit, W=withdrawal, F=finished): F

Your ending balance is $1609.76

Program is ending

Code to copy:

// include the necessary header files.

#include<stdio.h>

// Definition of the function

float withdraw(float account_balance, float withdraw_amount)

{

// Calculate the balace amount.

float balance_amount = account_balance - withdraw_amount;

// Check whether the withdraw amount

// is greater than 0 or not.

if (withdraw_amount > 0 && balance_amount >= 0)

{

// Assign value.

account_balance = balance_amount;

}

// return account_balance

return account_balance;

}

// Definition of the function deposit.

float deposit(float account_balance, float deposit_amount)

{

// Check whether the deposit amount is greater than zero

if (deposit_amount > 0)

{

// Update account balance.

account_balance = account_balance + deposit_amount;

}

// return account balance.

return account_balance;

}

int main()

{

// Declare the variables.

float account_balance;

float deposit_amount;

float withdrawl_amount;

char input;

// display the statement on console.

printf("BANK ACCOUT PROGRAM!\n");

printf("----------------------------------\n");

// prompt the user to enter the old balance.

printf("Enter the old balance: ");

// Input balance

scanf("%f", &account_balance);

// Display the statement on console.

printf("Enter the transactions now.\n");

printf("Enter an F for the transaction type when you are finished.\n");

// Start the do while loop

do

{

// prompt the user to enter transaction type.

printf("Transaction Type (D=deposit, W=withdrawal, F=finished): ");

// Input type.

scanf(" %c", &input);

// Check if the input is D

if (input == 'D')

{

// Prompt the user to input amount.

printf("Amount: ");

// input amount.

scanf("%f", &deposit_amount);

// Call to the function.

account_balance=deposit(account_balance,deposit_amount);

}

// Check if the input is W

if (input == 'W')

{

printf("Amount: ");

scanf("%f", &withdrawl_amount);

// Call to the function.

account_balance = withdraw(account_balance,withdrawl_amount);

}

// Check if the input is F

if (input == 'F')

{

// Dispplay the amount.

printf("Your ending balance is $%.2f\n", account_balance);

printf("Program is ending\n");

}

// End the while loop

} while(input != 'F');

return 0;

}

the picture uploaded below shows the program screenshot.

cheers, i hope this helps.

5 0
3 years ago
Two rods, with masses MA and MB having a coefficient of restitution, e, move along a common line on a surface, figure 2. a) Find
ahrayia [7]

Answer:

A.) Find the answer in the explanation

B.) Ua = 7.33 m/s , Vb = 7.73 m/s

C.) Impulse = 17.6 Ns

D.) 49%

Explanation:

Let Ua = initial velocity of the rod A

Ub = initial velocity of the rod B

Va = final velocity of the rod A

Vb = final velocity of the rod B

Ma = mass of rod A

Mb = mass of rod B

Given that

Ma = 2kg

Mb = 1kg

Ub = 3 m/s

Va = 0

e = restitution coefficient = 0.65

The general expression for the velocities of the two rods after impact will be achieved by considering the conservation of linear momentum.

Please find the attached files for the solution

6 0
3 years ago
The given family of functions is the general solution of the differential equation on the indicated interval.Find a member of th
Alja [10]

Answer:

Explanation:

y'''+y=0---(i)

General solution

y=c_1e^o^x+c_2\cos x +c_3 \sin x\\\\\Rightarrow y=c_1+c_2 \cos x+c_3 \sin x---(ii)\\\\y(\pi)=0\\\\\Rightarrow 0=c_1+c_2\cos (\pi)+c_3\sin (\pi)\\\\\Rightarrow c_1-c_2=0\\\\c_1=c_2---(iii)

y'=-c_2\cos x+c_3\cosx\\\\y'(\pi)=2\\\\\Rightarrow2=-c_2\sin(\pi)+c_3\cos(\pi)\\\\\Rightarrow-c_2(0)+c_3(-1)=2\\\\\Rightarrow c_3=-2\\\\y''-c_2\cos x -c_3\sin x\\\\y''(\pi)=-1\\\\\Rightarrow-1=-c_2 \cos (\pi)=c_3\sin(\pi)\\\\\Rightarrow-1=c_2-0\\\\\Rightarrow c_2=-1

in equation (iii)

c_1=c_2=-1

Therefore,

\large\boxed{y=-1-\cos x-2\sin x}

5 0
3 years ago
Other questions:
  • Water vapor at 6 MPa, 500°C enters a turbine operating at steady state and expands to 20 kPa. The mass flow rate is 3 kg/s, and
    8·1 answer
  • If there are 16 signal combinations (states) and a baud rate (number of signals/second) of 8000/second, how many bps could I sen
    7·1 answer
  • g (d) Usually, in the case of two finite-duration signals like in parts (a) and (b), the convolution integralmust be evaluated i
    7·1 answer
  • In Florida a curb indicates and area where parking is prohibited
    15·2 answers
  • 37. In ______ combination of drugs, the effects of one drug cancel or diminish
    12·1 answer
  • 4. Which of the following is the first thing you should do when attempting
    13·2 answers
  • A designer needs to select the material for a plate under tensile stress. Assuming that the applied tensile force is 13,000 lb a
    5·1 answer
  • A person is interested in becoming an electrician. What are some appropriate types of preparation that this individual can consi
    7·2 answers
  • Suppose you have two arrays: Arr1 and Arr2. Arr1 will be sorted values. For each element v in Arr2, you need to write a pseudo c
    11·1 answer
  • How many millimeters are there in a centimeter?
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!