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
pashok25 [27]
3 years ago
15

Air at 400kPa, 970 K enters a turbine operating at steady state and exits at 100 kPa, 670 K. Heat transfer from the turbine occu

rs at an average outer surface temperature of 315 K at the rate of 30 kJ per kg of air flowing. Kinetic and potential energy effects are negligible. For air as an ideal gas with Cp = 1.1 Kj/kg * K, determine
(a) the rate power is developed, in kJ per kg of air flowing, and
(b) the rate of entropy production within the turbine, in kJ/kg per kg of air flowing.
Engineering
1 answer:
Sonja [21]3 years ago
5 0

Answer:

a

The rate of work developed is \frac{\r W}{\r m}= 300kJ/kg

b

The rate of entropy produced within the turbine is   \frac{\sigma}{\r m}=  0.0861kJ/kg \cdot K

Explanation:

     From  the question we are told

          The rate at which heat is transferred is \frac{\r Q}{\r m } = -  30KJ/kg

the negative sign because the heat is transferred from the turbine

          The specific heat capacity of air is c_p = 1.1KJ/kg \cdot K

          The inlet temperature is  T_1 = 970K

          The outlet temperature is T_2 = 670K

           The pressure at the inlet of the turbine is p_1 = 400 kPa

          The pressure at the exist of the turbine is p_2 = 100kPa

           The temperature at outer surface is T_s = 315K

         The individual gas constant of air  R with a constant value R = 0.287kJ/kg \cdot K

The general equation for the turbine operating at steady state is \

               \r Q - \r W + \r m (h_1 - h_2) = 0

h is the enthalpy of the turbine and it is mathematically represented as          

        h = c_p T

The above equation becomes

             \r Q - \r W + \r m c_p(T_1 - T_2) = 0

              \frac{\r W}{\r m}  = \frac{\r Q}{\r m} + c_p (T_1 -T_2)

Where \r Q is the heat transfer from the turbine

           \r W is the work output from the turbine

            \r m is the mass flow rate of air

             \frac{\r W}{\r m} is the rate of work developed

Substituting values

              \frac{\r W}{\r m} =  (-30)+1.1(970-670)

                   \frac{\r W}{\r m}= 300kJ/kg

The general balance  equation for an entropy rate is represented mathematically as

                       \frac{\r Q}{T_s} + \r m (s_1 -s_2) + \sigma  = 0

          =>          \frac{\sigma}{\r m} = - \frac{\r Q}{\r m T_s} + (s_1 -s_2)

    generally (s_1 -s_2) = \Delta s = c_p\ ln[\frac{T_2}{T_1} ] + R \ ln[\frac{v_2}{v_1} ]

substituting for (s_1 -s_2)

                      \frac{\sigma}{\r m} = \frac{-\r Q}{\r m} * \frac{1}{T_s} +  c_p\ ln[\frac{T_2}{T_1} ] - R \ ln[\frac{p_2}{p_1} ]

                      Where \frac{\sigma}{\r m} is the rate of entropy produced within the turbine

 substituting values

                \frac{\sigma}{\r m} = - (-30) * \frac{1}{315} + 1.1 * ln\frac{670}{970} - 0.287 * ln [\frac{100kPa}{400kPa} ]

                    \frac{\sigma}{\r m}=  0.0861kJ/kg \cdot K

           

 

                   

   

You might be interested in
You are a planning aide on a team and are given the assignment of researching the historical significance and original blueprint
LenKa [72]
I’m guessing it will be the second one!
8 0
2 years ago
An air conditioner removes heat steadily from a house at a rate of 750 kJ/min while drawing electric power at a rate of 6 kW. De
Paraphin [41]

Answer:

a. 2.08, b. 1110 kJ/min

Explanation:

The power consumption and the cooling rate of an air conditioner are given. The COP or Coefficient of Performance and the rate of heat rejection are to be determined. <u>Assume that the air conditioner operates steadily.</u>

a. The coefficient of performance of the air conditioner (refrigerator) is determined from its definition, which is

COP(r) = Q(L)/W(net in), where Q(L) is the rate of heat removed and W(net in) is the work done to remove said heat

COP(r) = (750 kJ/min/6 kW) x (1 kW/60kJ/min) = 2.08

The COP of this air conditioner is 2.08.

b. The rate of heat discharged to the outside air is determined from the energy balance.

Q(H) = Q(L) + W(net in)

Q(H) = 750 kJ/min + 6 x 60 kJ/min = 1110 kJ/min

The rate of heat transfer to the outside air is 1110 kJ for every minute.

5 0
3 years 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
Route Choice The cost of roadway improvements to the developer is a function of the amount of traffic being generated by the the
aksik [14]
Row choice the cost of roadway improvements to the developer and functional the amount of trafficBeing generated by the theater as well as the Ralph’s ladies
7 0
3 years ago
If you get a flat in the front of your car, your car will:
juin [17]

Answer:

stop and might even crash

Explanation:

6 0
2 years ago
Other questions:
  • Explain the differences between 1- Energy 2- Power 3- Work 4- Heat Your answer should explain the mathematica and physical meani
    5·1 answer
  • Assuming the torsional yield strength of a compression spring is 0.43Sut and the maximum shear stress is equal to 434MPa. What i
    9·1 answer
  • How many D-cell batteries would it take to power a human for 1 day?
    11·1 answer
  • Question 5
    7·2 answers
  • Consider the experiment of Problem 1.27, in which a frictionless puck is sliding straight across a rotating turntable through th
    10·1 answer
  • The conditions at the beginning of compression in an Otto engine operating on hot-air standard with k=1.35 and 101.325 kPa, 0.05
    10·1 answer
  • Which of these are factors of 121?
    13·2 answers
  • The MOST common injury causing absence from work is
    7·2 answers
  • 1. Which of these materials is the strongest?
    12·1 answer
  • Example 12: Write an algorithm and draw a flowchart to calculate
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!