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
lbvjy [14]
3 years ago
14

As shown in the figure below, a monometer is attached to a tank of gas in which the pressure is 104.0 kPa. The manometer liquid

is mercury, with a density of 13.59 g/cm 3 . If g = 9.81 m/s 2 and the atmospheric pressure is 101.33 kPa, calculate (a) the difference in mercury levels in the manometer, in cm, and (b) the gage pressure of the gas, in kPa.

Engineering
1 answer:
tankabanditka [31]3 years ago
3 0

Answer:

a) The difference in mercury levels in the manometer is 2 centimeters.

b) The gage of the gas is 2.670 kilopascals.  

Explanation:

a) Pressure in gases is absolute. A manometer helps to determine the hydrostatic difference between pressure of the gas (P_{g}) and atmospheric pressure (P_{atm}), both measured in pascals. A kilopascal equals 1000 pascals and 1 meter equals 100 centimeters. That is:

P_{g}-P_{atm} = \rho \cdot g \cdot L (1)

Where:

\rho - Density of mercury, measured in kilograms per cubic meter.

g - Gravitational acceleration, measured in meters per square second.

L - Difference in mercury levels, measured in meters.

If we know that P_{g} = 104000\,Pa, P_{atm} = 101330\,Pa, \rho = 13590\,\frac{kg}{m^{3}} and g = 9.807\,\frac{m}{s^{2}}, the difference in mercury levels in the manometer is:

L = \frac{P_{g}-P_{atm}}{\rho\cdot g}

L = \frac{104000\,Pa-101330\,Pa}{\left(13590\,\frac{kg}{m^{3}} \right)\cdot \left(9.807\,\frac{m}{s^{2}} \right)}

L = 0.020\,m

L = 2\,cm

The difference in mercury levels in the manometer is 2 centimeters.

b) The gage pressure is the difference between gas pressure and atmospheric pressure: (P_{g} = 104000\,Pa, P_{atm} = 101330\,Pa)

P_{gage} = P_{g}-P_{atm} (2)

P_{gage} = 104000\,Pa-101330\,Pa

P_{gage} = 2670\,Pa

P_{gage} = 2.670\,kPa

The gage of the gas is 2.670 kilopascals.

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
A cylindrical specimen of steel has an original diameter of 12.8 mm. It is tested in tension its engineering fracture strength i
Mama L [17]

Answer:

a) The ductility = -30.12%

the negative sign means reduction

Therefore, there is 30.12% reduction

b) the true stress at fracture is 658.26 Mpa

Explanation:

Given that;

Original diameter d_{o} = 12.8 mm

Final diameter d_{f} = 10.7

Engineering stress  \alpha _{E} = 460 Mpa

a) determine The ductility in terms of percent reduction in area;

Ai = π/4(d_{o} )²  ; Ag = π/4(d_{f} )²

% = π/4 [ ( (d_{f} )² - (d_{o} )²) / ( π/4  (d_{o} )²) ]

= ( (d_{f} )² - (d_{o} )²) / (d_{o} )² × 100

we substitute

= [( (10.7)² - (12.8)²) / (12.8)² ] × 100

= [(114.49 - 163.84) / 163.84 ] × 100

= - 0.3012 × 100

= -30.12%

the negative sign means reduction

Therefore, there is 30.12% reduction

b) The true stress at fracture;

True stress  \alpha _{T} = \alpha _{E} ( 1 +  E_{E} )

E_{E}  is engineering strain

E_{E}  = dL / Lo

= (do² - df²) / df² = (12.8² - 10.7²) / 10.7² = (163.84 - 114.49) / 114.49

= 49.35 / 114.49  

E_{E} = 0.431

so we substitute the value of E_{E}  into our initial equation;

True stress  \alpha _{T} = 460 ( 1 +  0.431)

True stress  \alpha _{T} = 460 (1.431)

True stress  \alpha _{T} = 658.26 Mpa

Therefore, the true stress at fracture is 658.26 Mpa

6 0
3 years ago
What is the instantaneous center of zero velocity? List two approaches for determining the is the instantaneous center of zero v
Lera25 [3.4K]

Explanation:

Instantaneous center:

   It is the center about a body moves in planer motion.The velocity of Instantaneous center is zero and Instantaneous center can be lie out side or inside the body.About this center every particle of a body rotates.

From the diagram

Where these two lines will cut then it will the I-Center.Point A and B is moving perpendicular to the point I.

If we take three link link1,link2 and link3 then I center of these three link will be in one straight line It means that they will be co-linear.

I_{12},I_{23},I_{31} all\ are\ co-linear.

5 0
3 years ago
The following program includes fictional sets of the top 10 male and female baby names for the current year. Write a program tha
otez555 [7]

Answer:

Define Variables and Use List methods to do the following

Explanation:

#<em>Conjoins two lists together</em>

all_names = male_names.union(female_names)

#<em>Finds the names that appear in both lists, just returns those</em>

neutral_names = male_names.intersection(female_names)

#<em>Returns names that are NOT in both lists</em>

specific_names = male_names.symmetric_difference(female_names)

3 0
3 years ago
Read 2 more answers
Who was part of dempwolf his firm when he first started
Zinaida [17]

Explanation:

Dempwolf created by John Augustus, Among the most prominent innovative solutions in Southern California Pennsylvania was established by Dempwolf with  brother Reinhardt or uncle's son Frederick entered the company of J.A. Dozens of structures in 10 states were engineered by Dempwolf.

5 0
3 years ago
Other questions:
  • A pipe of 10 cm inner diameter is used to send crude oil over distance of 400 meters. The entire pipe was laid horizontal. The v
    5·1 answer
  • What is 100 kPa in psia?
    11·1 answer
  • Why or why not the following materials will make good candidates for the construction of
    15·1 answer
  • What are the four basic parts of process plan
    11·1 answer
  • During a long run a very well-trained dog can use up to 1000 ‘cal’/hour (Note: Food calories differ by a factor of one thousand
    14·1 answer
  • A refrigerator operates on average for 10.0 hours an day. If the power rating is the refrigerator is 709 w how much electrical e
    13·1 answer
  • Can you solve this question​
    11·2 answers
  • Which 1 of the following did women NOT do during WWII?
    6·2 answers
  • Technician A says that the carpet padding is designed to help reduce noise and vibrations.
    5·1 answer
  • a metal rod 24mm diameter and 2m long is subjected to an axial pull of 40 kN. If the rod is 0.5mm, then find the stress-induced
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!