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
mestny [16]
3 years ago
13

From the information generated in Prob. 6.4 (from your previous Aero HW#1), calculate the maximum rate of climb for the single-e

ngine light plane at sea level and at 12,000-ft altitude.
Engineering
1 answer:
soldi70 [24.7K]3 years ago
5 0

Answer:

R/C @ sea Level = 42.5 ft/s

R/C @ 12,000 ft = 24.6 ft/s

Explanation:

Given:

- From problem in 6.4:

         excess power @ sea Level = 232 hp

         excess power @ 12,000 ft = 134 hp

- Thrust delivered by the engine P = 3000 lb

Find:

Maximum rate of climb R/C @ sea Level and @12,000 ft altitude.

Solution:

- Maximum rate of climb (i.e no drag + maximum lift) @ sea level:

                  R/C = excess [email protected] level / Thrust delivered by engine P

                  R/C = 232 hp*(550) / 3000 = 42.5 ft / s

- Maximum rate of climb (i.e no drag + maximum lift) @ 12,000 ft:

                  R/C = excess [email protected] level / Thrust delivered by engine P

                  R/C = 134 hp*(550) / 3000 = 24.6 ft / s              

You might be interested in
When do you know if you start volly ball
igomit [66]
Answer You ask your coach
7 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
Statement true about fats in food
Elodia [21]

Answer:

What that means please explain

7 0
3 years ago
Read 2 more answers
What is the definition of comma
masya89 [10]
Com·ma
/ˈkämə/
NOUN
1. a punctuation mark (,) indicating a pause between parts of a sentence. It is also used to separate items in a list and to mark the place of thousands in a large numeral.

2. a minute interval or difference of pitch.
5 0
3 years ago
The given family of functions is the general solution of the differential equation on the indicated interval.Find a member of th
Alja [10]

Answer:

Explanation:

y'''+y=0---(i)

General solution

y=c_1e^o^x+c_2\cos x +c_3 \sin x\\\\\Rightarrow y=c_1+c_2 \cos x+c_3 \sin x---(ii)\\\\y(\pi)=0\\\\\Rightarrow 0=c_1+c_2\cos (\pi)+c_3\sin (\pi)\\\\\Rightarrow c_1-c_2=0\\\\c_1=c_2---(iii)

y'=-c_2\cos x+c_3\cosx\\\\y'(\pi)=2\\\\\Rightarrow2=-c_2\sin(\pi)+c_3\cos(\pi)\\\\\Rightarrow-c_2(0)+c_3(-1)=2\\\\\Rightarrow c_3=-2\\\\y''-c_2\cos x -c_3\sin x\\\\y''(\pi)=-1\\\\\Rightarrow-1=-c_2 \cos (\pi)=c_3\sin(\pi)\\\\\Rightarrow-1=c_2-0\\\\\Rightarrow c_2=-1

in equation (iii)

c_1=c_2=-1

Therefore,

\large\boxed{y=-1-\cos x-2\sin x}

5 0
3 years ago
Other questions:
  • In C++ the declaration of floating point variables starts with the type name float or double, followed by the name of the variab
    14·1 answer
  • The statement that is NOT true about the concept of a boundary layer on an object is: a. the Reynolds number is greater than uni
    6·1 answer
  • Consider a fully developed laminar flow in a circular pipe. The velocity at R/2 (midway between the wall surface and the centerl
    6·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
  • A very large plate is placed equidistant between two vertical walls. The 10-mm spacing between the plate and each wall is filled
    11·1 answer
  • Demonstreaza in 20 de propoziti ca snoava pacala si zarzarele boerului e o snoava
    12·1 answer
  • The removed soil at an excavation site is also called spoil?​
    14·1 answer
  • Which of the following is an example of a pulley?
    10·2 answers
  • Careful planning will save time, __________, and energy while ensuring the production of a high quality product.
    15·1 answer
  • How to clean a snowblower carburetor without removing it.
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!