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
Margaret [11]
3 years ago
5

Air enters the 1 m² inlet of an aircraft engine at 100 kPa and 20° C with a velocity of 180 m/s. Determine: a) The volumetric fl

ow rate in m^3/s b) The mass flow rate kg/s Assume air to be an ideal gas
Engineering
1 answer:
Shkiper50 [21]3 years ago
3 0

Answer:

a) 180 m³/s

b) 213.4 kg/s

Explanation:

A_1 = 1 m²

P_1 = 100 kPa

V_1 = 180 m/s

Flow rate

Q=A_1V_1\\\Rightarrow Q=1\times 180\\\Rightarrow Q=180\ m^3/s

Volumetric flow rate = 180 m³/s

Mass flow rate

\dot{m}=\rho Q\\\Rightarrow \dot m=\frac{P_1}{RT} Q\\\Rightarrow \dot m=\frac{100000}{287\times 293.15}\times 180\\\Rightarrow \dotm=213.94\ kg/s

Mass flow rate = 213.4 kg/s

You might be interested in
8. What are used by the project architect to depict different building systems and to show how they correlate to one anothe
grigory [225]

Explanation:

????????????????????????????

6 0
2 years ago
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
A series AC circuit contains a resistor, an inductor of 250 mH, a capacitor of 4.40 µF, and a source with ΔVmax = 240 V operatin
slega [8]

Answer:

Explanation:

Inductance = 250 mH = 250 / 1000 = 0.25 H

capacitance = 4.40 µF = 4.4 × 10⁻⁶ F ( µ = 10⁻⁶)

ΔVmax = 240, f frequency = 50Hz and I max = 110 mA = 110 /1000 = 0.11A

a) inductive reactance = 2πfl =  2 × 3.142 × 50 × 0.25 H =78.55 ohms

b) capacitive reactance = \frac{1}{2\pi fC} = 1 / ( 2 × 3.142× 50 × 4.4 × 10⁻⁶ ) = 723.34 ohms

c) impedance = \frac{Vmax}{Imax} = 240 / 0.11 = 2181.82 ohms

7 0
3 years ago
Read 2 more answers
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
Compare electromagnets and solenoids
natta225 [31]

An electromagnet is a made coil associated with a ferromagnetic core. This way, the strength of the magnet is controlled by the input current. A solenoid is a simple shape used in magnetostatics or magnetics. ... A solenoid is a cylindrical coil of wire whose diameter is small compared to its length.

8 0
3 years ago
Other questions:
  • A rubber wheel on a steel rim spins freely on a horizontal axle that is suspended by a fixed pivot at point P. When the wheel sp
    11·1 answer
  • Automotive service P2 Wastewater Management and Handling Spins
    9·1 answer
  • Consider a voltage v = Vdc + vac where Vdc = a constant and the average value of vac = 0. Apply the integral definition of RMS t
    7·1 answer
  • Find the volume of the rectangular prism<br> 9 cm<br> 10 cm
    8·1 answer
  • What competitive strategy was used by Regal Marine?
    5·1 answer
  • Think about the KIA factory shown in the video, what are two things that managers could do to reduce waste or increase efficienc
    6·1 answer
  • The reversible and adiabatic process of a substance in a compressor begins with enthalpy equal to 1,350 kJ/kg, and ends with ent
    15·1 answer
  • When economist determine that a nations GDP has declined, they can point to this as a sign of what?
    8·1 answer
  • Could you please answer this question clearly?
    11·1 answer
  • Describe two other safe driver skills a driver should use when driving in this road condition
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!