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
ehidna [41]
3 years ago
13

2.11 Consider a 400 mm × 400 mm window in an aircraft. For a temperature difference of 90°C from the inner to the outer surface

of the window, calculate the heat loss rate through L = 12-mm-thick polycarbonate, soda lime glass, and aerogel windows, respectively. The thermal conductivities of the aerogel and polycarbonate are kag = 0.014 W/m-K and kpc = 0.21 W/m-K, respectively. Evaluate the thermal conductivity of the soda lime glass at 300 K. If the aircraft has 130 windows and the cost to heat the cabin air is $1/kWh, compare the costs associated with the heat loss through the windows for an 8-hour intercontinental flight\

Engineering
1 answer:
alexandr402 [8]3 years ago
6 0

Answer:

The heat loss rate through one of the windows made of polycarbonate is 252W. If the window is made of aerogel, the heat loss rate is 16.8W. If the window is made of soda-lime glass, the heat loss rate is 1190.4W.

The cost associated with the heat loss through the windows for an 8-hour flight is:

For aerogel windows: $17.472 (most efficient)

For polycarbonate windows: $262.08

For soda-lime glass windows: $1,238.016 (least efficient)

Explanation:

To calculate the heat loss rate through the window, we can use a model of heat transmission by conduction throw flat wall. Using unidimensional Fourier law:

\frac{dQ}{dt}=\dot Q =-kS\nabla \vec{T}

In this case:

\dot Q =k\frac{S}{L} \Delta T

If we replace the data provided by the problem we get the heat loss rate through one of the windows of each material (we only have to change the thermal conductivities).

To obtain the thermal conductivity of the soda-lime glass we use the graphic attached to this answer (In this case for soda-lime glass k₃₀₀=0.992w/m·K).

To calculate the cost associated with the heat loss through the windows for an 8-hour flight we use this formula (using the heat loss rate calculated in each case):

Cost=C_{hc}\cdot \dot Q \cdot t \cdot n=1\frac{\$}{Kwh} \cdot \dot Q \cdot 8h \cdot 130

You might be interested in
Which Two moon phases are directly opposite each other?
Masja [62]

Answer:New moon and full moon

Explanation:

3 0
3 years ago
Read 2 more answers
What is pneumatic troubleshooting
jekas [21]

Answer:

Compressed Air.

Explanation:This stuffs at plantengineering.com my fellow student. Good luck on the test!

5 0
3 years ago
Technician A says reducing spark advance can cause spark knock. Technician B says excessive carbon deposits can cause spark knoc
olchik [2.2K]

Answer:

A

Explanation:

Technician A is correct due to its factual statement. ALso I did this...

3 0
2 years ago
D
nadya68 [22]

Any collection of data or information that has been properly structured for quick search and retrieval by a computer is referred to as a database, often known as an electronic database.

<h3>What is electronic database?</h3>
  • Databases are designed to make it easy to save, retrieve, edit, and delete data while carrying out various data-processing tasks. In response to queries, a database management system (DBMS) retrieves data from the database.
  • Databases are briefly discussed after that. See computer science: Information systems and databases; information processing for a comprehensive explanation.
  • A file or collection of files used to store a database.
  • These files' contents can be divided up into records, each of which has one or more fields.
  • The fundamental units of data storage are fields, and each field typically contains data related to one feature or attribute of the thing that the database is describing.
  • Additionally, records are arranged into tables that contain details on the connections between their various fields.
  • A database in the strict sense offers cross-referencing capabilities, despite the fact that the term "database" is used broadly to refer to any collection of information in computer files.
  • Users can quickly search, rearrange, organize, and choose the fields in numerous records to access or produce reports on certain data aggregates using keywords and a variety of sorting instructions.

To Learn more About database Refer To :

brainly.com/question/518894

#SPJ1

5 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
Other questions:
  • What is an ip<br> Number
    12·1 answer
  • what should be used to feed material into a machine? A.joy stick B.push stick C. your feet D. your hands​
    14·1 answer
  • A piston having a diameter of 5.48 inches and a length of 9.50 in slides downward with a
    13·1 answer
  • Consider a section of muscle tissue of a cylindrical shape with a radius of 1.5 cm. During highly rigorous exercise, metabolic p
    8·1 answer
  • List three reasons for surfacing metals.
    8·2 answers
  • A bar of steel has the minimum properties Se = 40 kpsi, S = 60 kpsi, and S-80 kpsi. The bar is subjected to a steady torsional s
    6·1 answer
  • What are the benefits of using a multi view sketch to communicate a design
    14·1 answer
  • Please what is dif<br>ference between building technology and building engineering.​
    14·2 answers
  • Which fields of engineering use fluid power? Explain how these fields make use of fluid power systems: water supply, agricultura
    10·1 answer
  • Which type of engineer is needed in the following scenario?
    8·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!