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
Yuki888 [10]
2 years ago
10

When they say in the United States that a car’s tire is filled “to 32 lb,”​ they mean that its internal pressure is 32 lbf/i

n² above the ambient atmosphere. If the tire is at sea level,
has a volume of 3.0 ft³, and is at 75°F. Estimate the total weight of air, in lbf, inside the tire
Engineering
1 answer:
arsen [322]2 years ago
3 0

Answer:

0.71 lbf

Explanation:

Use ideal gas law:

PV = nRT

where P is absolute pressure,

V is volume,

n is number of moles,

R is universal gas constant,

and T is absolute temperature.

The absolute pressure is the sum of the atmospheric pressure and the gauge pressure.

P = 32 lbf/in² + 14.7 lbf/in²

P = 46.7 lbf/in²

Absolute temperature is in Kelvin or Rankine:

T = 75 + 459.67 R

T = 534.67 R

Given V = 3.0 ft³, and R = 10.731 ft³ psi / R / lb-mol:

PV = nRT

(46.7 lbf/in²) (3.0 ft³) = n (10.731 ft³ psi / R / lb-mol) (534.67 R)

n = 0.02442 lb-mol

The molar mass of air is 29 lbm/lb-mol, so the mass is:

m = (0.02442 lb-mol) (29 lbm/lb-mol)

m = 0.708 lbm

The weight of 1 lbm is lbf.

W = 0.708 lbf

Rounded to two significant figures, the weight of the air is 0.71 lbf.

You might be interested in
What is the magnetic force on a moving electric charge called
crimeas [40]
The magnetic force on a free moving charge is perpendicular to both the velocity of the charge and the magnetic field with direction given by the right hand rule. The force is given by the charge times the vector product of velocity and magnetic field.
4 0
3 years ago
Read 2 more answers
Una empresa realizó en el ejercicio de compras al contado por valor
Tanzania [10]

Answer:

englishhhh pleasee

Explanation:

we dont understand sorry....

8 0
3 years ago
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
The question belongs to Electrical Engineering (Linear System).
-Dominant- [34]
I’m crying looking at that.
5 0
3 years ago
Question 74
torisob [31]

Answer:

C). rearview mirror (at least of four inches by four inches).

Explanation:

<u>A 'rearview mirror' would be needed in case one is required to pull an individual on water skis after a PWC(personal watercraft) that is rated for carrying two persons only</u>. This wide-angle mirror for rearview would allow the operator to monitor the person who is being towed constantly along with riding the ski at the same time. It is considered illegal to tow a person on a vessel without having a rearview mirror and at the same time, the limited capacity must also be followed strictly. Hence, <u>option C</u> is the correct answer.

7 0
3 years ago
Other questions:
  • HELP<br><br><br>the overall width of a part is dimensioned as 3.00 ± 0.02. what is the tolerance
    14·2 answers
  • Shear strain can be expressed in units of either degrees or radians. a)True b)- False
    10·1 answer
  • One kg of an idea gas is contained in one side of a well-insulated vessel at 800 kPa. The other side of the vessel is under vacu
    11·1 answer
  • A natural-draft cooling tower receives 250,000 ft3/min of air at standard atmospheric pressure, 70oF, and 45 percent relative hu
    8·1 answer
  • You are preparing to work with Chemical A. You open the appropriate storage cabinet, and notice Chemical B, as well as Chemical
    9·1 answer
  • Explain why change is inevitable in complex systems and give examples (apart from prototyping and incremental delivery) of softw
    6·1 answer
  • Cast iron has about how much carbon content?
    12·1 answer
  • A) Consider an air standard otto cycle that has a heat addition of 2800 kJ/kg of air, a compression ratio of 8 and a pressure an
    7·1 answer
  • Hey any one ride dirtbikes here
    5·2 answers
  • (CO 3) A nonrecursive filter may best be described as _____. Group of answer choices a filter whose current output depends on pa
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!