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
Margarita [4]
3 years ago
15

The steady-state data listed below are claimed for a power cycle operating between hot and cold reservoirs at 1200K and 400K, re

spectively. For each case, evalutate the net power developed by the cycle, in kW, and the thermal efficiency. Also in each case apply below equation on a time-rate basis to determine whether the cycle operates reversibly, operates irreversibly, or is impossible.
Equation: ∫ (SQ / T)b = -σ cycle
(a) QH = 600 kW, QC = 400 kW
(b) QH = 600 kW, QC = 0 kW
(c) QH = 600 kW, QC = 200kW
Engineering
1 answer:
Anni [7]3 years ago
7 0

Answer:

a) W_cycle = 200 KW , n_th = 33.33 %  , Irreversible

b) W_cycle = 600 KW , n_th = 100 %     , Impossible

c) W_cycle = 400 KW , n_th = 66.67 %  , Reversible

Explanation:

Given:

- The temperatures for hot and cold reservoirs are as follows:

  TL = 400 K

  TH = 1200 K

Find:

For each case W_cycle , n_th ( Thermal Efficiency ) :

(a) QH = 600 kW, QC = 400 kW

(b) QH = 600 kW, QC = 0 kW

(c) QH = 600 kW, QC = 200kW

- Determine whether the cycle operates reversibly, operates irreversibly, or is impossible.

Solution:

- The work done by the cycle is given by first law of thermodynamics:

                                 W_cycle = QH - QC

- For categorization of cycle is given by second law of thermodynamics which states that:

                                 n_th < n_max     ...... irreversible

                                 n_th = n_max     ...... reversible

                                 n_th > n_max     ...... impossible

- Where n_max is the maximum efficiency that could be achieved by a cycle with Hot and cold reservoirs as follows:

                                n_max = 1 - TL / TH = 1 - 400/1200 = 66.67 %

And,                         n_th = W_cycle / QH

a) QH = 600 kW, QC = 400 kW

   - The work done by cycle according to First Law is:

                                W_cycle = 600 - 400 = 200 KW

   - The thermal efficiency of the cycle is given by n_th:

                                n_th = W_cycle / QH

                                n_th = 200 / 600 = 33.33 %

   - The type of process according to second Law of thermodynamics:

               n_th = 33.333 %                n_max = 66.67 %

                                       n_th < n_max  

      Hence,                Irreversible Process  

b) QH = 600 kW, QC = 0 kW

   - The work done by cycle according to First Law is:

                                W_cycle = 600 - 0 = 600 KW

   - The thermal efficiency of the cycle is given by n_th:

                                n_th = W_cycle / QH

                                n_th = 600 / 600 = 100 %

   - The type of process according to second Law of thermodynamics:

                 n_th = 100 %                 n_max = 66.67 %

                                     n_th > n_max  

      Hence,               Impossible Process              

c) QH = 600 kW, QC = 200 kW

   - The work done by cycle according to First Law is:

                                W_cycle = 600 - 200 = 400 KW

   - The thermal efficiency of the cycle is given by n_th:

                                n_th = W_cycle / QH

                                n_th = 400 / 600 = 66.67 %

   - The type of process according to second Law of thermodynamics:

               n_th = 66.67 %                 n_max = 66.67 %

                                     n_th = n_max  

      Hence,                Reversible Process

You might be interested in
computer language C++ (Connect 4 game)( this is all the info that was givin no input or solution) I used the most recent version
Mariana [72]

Answer:

C++ code explained below

Explanation:

#include "hw6.h"

//---------------------------------------------------

// Constructor function

//---------------------------------------------------

Connect4::Connect4()

{

ClearBoard();

}

//---------------------------------------------------

// Destructor function

//---------------------------------------------------

Connect4::~Connect4()

{

// Intentionally empty

}

//---------------------------------------------------

// Clear the Connect4 board

//---------------------------------------------------

void Connect4::ClearBoard()

{

// Initialize Connect4 board

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

board[r][c] = ' ';

// Initialize column counters

for (int c = 0; c < COLS; c++)

count[c] = 0;

}

//---------------------------------------------------

// Add player's piece to specified column in board

//---------------------------------------------------

bool Connect4::MakeMove(int col, char player)

{

// Error checking

if ((col < 0) || (col >= COLS) || (count[col] >= ROWS))

return false;

// Make move

int row = count[col];

board[row][col] = player;

count[col]++;

return true;

}

//---------------------------------------------------

// Check to see if player has won the game

//---------------------------------------------------

bool Connect4::CheckWin(char player)

{

// Loop over all starting positions

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

if (board[r][c] == player)

{

// Check row

int count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) &&

(board[r+d][c] == player)) count++;

if (count == WIN) return true;

 

// Check column

count = 0;

for (int d = 0; d < WIN; d++)

if ((c+d < COLS) &&

(board[r][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check first diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) && (c+d < COLS) &&

(board[r+d][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check second diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r-d >= 0) && (c+d < COLS) &&

(board[r-d][c+d] == player)) count++;

if (count == WIN) return true;

}

return false;

}

//---------------------------------------------------

// Print the Connect4 board

//---------------------------------------------------

void Connect4::PrintBoard()

{

// Print the Connect4 board

for (int r = ROWS-1; r >= 0; r--)

{

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw board contents

cout << "| ";

for (int c = 0; c < COLS; c++)

cout << board[r][c] << " | ";

cout << "\n";

}

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw column numbers

cout << " ";

for (int c = 0; c < COLS; c++)

cout << c << " ";

cout << "\n\n";

}

//---------------------------------------------------

// Main program to play Connect4 game

//---------------------------------------------------

int main()

{

  int choice;

  int counter = 0;

  srand (time(NULL));

  Connect4 board;

  cout << "Welcome to Connect 4!" << endl << "Your Pieces will be labeled 'H' for human. While the computer's will be labeled 'C'" << endl;

  board.PrintBoard();

  cout << "Where would you like to make your first move? (0-6)";

  cin >> choice;

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  while (board.CheckWin('C') == false && board.CheckWin('H') == false && counter != 21){

  while (board.MakeMove(rand() % 7, 'C') == false){}

  board.PrintBoard();

  cout << "Where would you like to make your next move?" << endl;

  cin >> choice;

  board.MakeMove(choice,'H');

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  }

 

  if (board.CheckWin('C')){

  cout << "Computer Wins!" << endl;}

  else if (counter == 21){cout << "Tie Game!" << endl;}

  else {cout << "Human Wins!" << endl;}

  board.PrintBoard();

}

4 0
3 years ago
Question 4 (1 point) Sophia is working in her garden. She made two trips with her wagon along the same path to haul supplies. Th
yaroslaw [1]

Answer:

Option A

Explanation:

Please find the attachment

4 0
3 years ago
A 10.2 mm diameter steel circular rod is subjected to a tensile load that reduces its cross- sectional area to 52.7 mm^2. Determ
VMariaS [17]

Answer:

The percentage ductility is 35.5%.

Explanation:

Ductility is the ability of being deform under applied load. Ductility can measure by percentage elongation and percentage reduction in area. Here, percentage reduction in area method is taken to measure the ductility.

Step1

Given:

Diameter of shaft is 10.2 mm.

Final area of the shaft is 52.7 mm².

Calculation:

Step2

Initial area is calculated as follows:

A=\frac{\pi d^{2}}{4}

A=\frac{\pi\times(10.2)^{2}}{4}

A = 81.713 mm².

Step3

Percentage ductility is calculated as follows:

D=\frac{A_{i}-A_{f}}{A_{i}}\times100

D=\frac{81.713-52.7}{81.713}\times100

D = 35.5%.

Thus, the percentage ductility is 35.5%.

5 0
3 years ago
What is the waste water from kitchen sinks called​
daser333 [38]

Answer:

grey water??? I think

Explanation:

7 0
3 years ago
Read 2 more answers
Advantage and disadvantages of Bessemer process of steel making
Snowcat [4.5K]

Advantages:

- allowed steel to be produced without fuel

- using the impurities of the iron to create the necessary heat

- reduced the costs of steel production

Disadvantages:

- could convert only a pig iron low in phosphorus and sulfur

- these elements could have been removed by adding a basic flux such as lime, but the basic sl*g produced would have degraded the acidic refractory lining of Bessemer's converter.

au revoir mon amour <3

7 0
2 years ago
Other questions:
  • An inflatable structure has the shape of a half-circular cylinder with hemispherical ends. The structure has a radius of 40 ft w
    6·1 answer
  • Oil with a density of 850 kg/m3 and kinematic viscosity of 0.00062 m2/s is being discharged by an 8-mm-diameter, 42-m-long horiz
    9·1 answer
  • 5b. The object George is examining has a mass of 15 grams. What is<br> the density of the object?
    5·1 answer
  • If 100 J of heat is added to a system so that the final temperature of the system is 400 K, what is the change in entropy of the
    5·1 answer
  • What is name for grandmother in German?
    14·1 answer
  • Sarah needs to create an architectural drawing for a museum building with an inclined surface. Which presentation view will be t
    15·1 answer
  • Test if a number grade is an A (greater than or equal to 90). If so, print "Great!". Hint: Grades may be decimals. Sample Run En
    15·1 answer
  • Recommend the types of engineers needed to collaborate on a city project to build a skateboard park near protected wetlands.
    6·1 answer
  • An individual is planning to take an 800-mile trip between two large cities. Three pos-sibilities exist: air, rail, or auto. The
    8·1 answer
  • 15- Vipsana's Gyros House sells gyros. The cost of ingredients (pita, meat, spices, etc.) to make a gyro is $2.00. Vipsana pays
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!