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
elena-14-01-66 [18.8K]
3 years ago
11

A ramjet operates by taking in air at the inlet, providing fuel for combustion, and exhausting the hot air through the exit. Th

e mass fl ow at the inlet and outlet of the ramjet is 60 kg/s (the mass fl ow rate of fuel is negligible). Th e inlet velocity is 225 m/s. Th e density of the gases at the exit is 0.25 kg/m3 , and the exit area is 0.5 m2 . Calculate the thr
Engineering
1 answer:
UNO [17]3 years ago
8 0

Answer:

15300 N

Explanation:

\rho_i = Density of air at inlet

\dfrac{m}{t} = Mass flow rate = 60 kg/s

v_i = Inlet velocity = 225 m/s

\rho_o = Density of gas at outlet = 0.25\ \text{kg/m}^3

A_i = Inlet area

A_o = Outlet area = 0.5\ \text{m}^2

Since mass flow rate is the same in the inlet and outlet we have

\rho_iv_iA_i=\rho_ov_oA_o\\\Rightarrow v_o=\dfrac{\dfrac{m}{t}}{\rho_oA_o}\\\Rightarrow v_o=\dfrac{60}{0.25\times 0.5}\\\Rightarrow v_o=480\ \text{m/s}

Thrust is given by

F=\dfrac{m}{t}(v_o-v_i)\\\Rightarrow F=60\times (480-225)\\\Rightarrow F=15300\ \text{N}

The thrust generated is 15300 N.

You might be interested in
Which bulb has the lowest total cost of operation? (a) Incandescent (b) Fluorescent (c) LED
Finger [1]

Answer: LED have the lowest cost of operation.

Explanation:

If we ignore the initial procurement cost of the items the operational cost of any device consuming electricity is given by

Cost=Energy\times cost/unit

Among the three item's LED consumes the lowest power to give the same level of brightness as compared to the other 2 item's thus LED's shall have the lowest operational cost.

6 0
3 years ago
Paint can shaker mechanisms are common in paint and hardware stores. While they do a good job of mixing the paint, they are also
Ymorist [56]

Answer:

A good design for a portable device to mix paint minimizing the shaking forces and vibrations while still effectively mixing the paint. Is:

The best design is one with centripetal movement. Instead of vertical or horizontal movement. With a container and system of holding structures made of materials that could absorb the vibration effectively.

Explanation:

First of all centripetal movement would be friendlier to our objective as it would not shake the can or the machine itself with disruptive vibrations. Also, we would have to use materials with a good grade of force absorption to eradicate the transmission of the movement to the rest of the structure. Allowing the reduction of the shaking forces while maintaining it effective in the process of mixing.

6 0
3 years ago
Visual perception is a mental process that is non selective<br> True<br> False
NARA [144]

The statement "Visual perception is a mental process that is non selective" is false, it is a psychic function that allows the organism to capture, elaborate and interpret selective information that comes from the environment.

<h2>What is visual perception?</h2>

Visual perception is that inner sensation of apparent knowledge, resulting from a specific stimulus or light impression recorded by the eyes.

<h3>Characteristics of visual perception</h3>

  • It incorporates the sensory stimuli received from objects, situations or events and converts them into a meaningful interpretation experience.

  • It is an active process of the brain through which an external reality is created by transforming the light information captured by the eye.

Therefore, we can conclude that visual perception is the interpretation made by the brain of the different organisms of the stimuli received through the senses.

Learn more about visual perception here: brainly.com/question/10259599

3 0
2 years ago
For a project in C++ we are supposed toDesign a class named Month. The class should have the following private members:-name: a
mart [117]

Answer:

include <iostream>

using namespace std;

 

class Month

{

public:

 Month (char firstLetter, char secondLetter, char thirdLetter);

 

 Month (int monthNum);

.

 

 Month();

 void outputMonth_num();

 

 

 void outputMonthLetters();

private:

 int month;

};

 

 

int main ()

{

 //

 // Variable declarations

 //

 int monthNum;

 char firstLetter, secondLetter, thirdLetter;    

 char testAgain;              

 

 do {

 

   cout << endl;

   cout << "Testing the default constructor ..." << endl;

   Month defaultMonth;

   defaultMonth.outputMonth_num();

   defaultMonth.outputMonthLetters();

 

   //

   // Construct a month using the constructor with one integer argument

   //

   cout << endl;

   cout << "Testing the constructor with one integer argument..." << endl;

   cout << "Enter a month number: ";

   cin >> monthNum;

 

   Month testMonth1(monthNum);

   testMonth1.outputMonth_num();

   testMonth1.outputMonthLetters();

 

   //

   // Construct a month using the constructor with three letters as arguments

   //

   cout << endl;

   cout << "Testing the constructor with 3 letters as arguments ..." << endl;

   cout << "Enter the first three letters of a month (lowercase): ";

   cin >> firstLetter >> secondLetter >> thirdLetter;

   cout << endl;

 

   Month testMonth2(firstLetter, secondLetter, thirdLetter);

   testMonth2.outputMonth_num();

   testMonth2.outputMonthLetters();

 

   //

   // See if user wants to try another month

   //

   cout << endl;

   cout << "Do you want to test again? (y or n) ";

   cin >> testAgain;

 }

 while (testAgain == 'y' || testAgain == 'Y');

 

 return 0;

}

 

 

Month::Month(char firstLetter, char secondLetter, char thirdLetter)

{

if ((firstLetter == 'j')&&(secondLetter == 'a')&&(thirdLetter == 'n'))

  outputMonth_num = 1;

if ((firstLetter == 'f')&&(secondLetter == 'e')&&(thirdLetter == 'b'))

  outputMonth_num = 2;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'r'))

  outputMonth_num = 3;

if ((firstLetter = 'a')&&(secondLetter == 'p')&&(thirdLetter == 'r'))

  outputMonth_num = 4;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'y'))

  outputMonth_num = 5;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(thirdLetter == 'n'))

  outputMonth_num = 6;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(.thirdLetter == 'l'))

  outputMonth_num = 7;

if ((firstLetter == 'a')&&(secondLetter == 'u')&&(thirdLetter == 'g'))

  outputMonth_num = 8;

if ((firstLetter == 's')&&(secondLetter == 'e')&&(thirdLetter == 'p'))

  outputMonth_num = 9;

if ((firstLetter == 'o')&&(secondLetter == 'c')&&(thirdLetter == 't'))

  outputMonth_num = 10;

if ((firstLetter == 'n')&&(secondLetter == 'o')&&(thirdLetter == 'v'))

 outputMonth_num = 11;

if ((firstLetter == 'd')&&(secondLetter == 'e')&&(thirdLetter == 'c'))

 outputMonth_num = 12;

}

 

Month::inputMonthByNumber

{

if (Month_num > 12 && Month_num < 1)

cout << "Invalid number for Month, please choose 1-12)\n";

}

 

void Month::outputMonth_num()

{

 if (month >= 1 && month <= 12)

   cout ><< "Month: " << month << endl;

 else

   cout << "Error - The month is not a valid!" << endl;

}

 

void Month::outputMonthLetters()

{

 switch (month)

   {

   case 1:

     cout << "Jan" << endl;

     break;

   case 2:

     cout << "Feb" << endl;

     break;

   case 3:

     cout << "Mar" << endl;

     break;

   case 4:

     cout << "Apr" << endl;

     break;

   case 5:

     cout << "May" << endl;

     break;

   case 6:

     cout << "Jun" << endl;

     break;

   case 7:

     cout << "Jul" << endl;

     break;

   case 8:

     cout << "Aug" << endl;

     break;

   case 9:  

     cout << "Sep" << endl;

     break;

   case 10:

     cout << "Oct" << endl;

     break;

   case 11:

     cout << "Nov" << endl;

     break;

   case 12:

     cout << "Dec" << endl;

     break;

   default:

     cout << "Error - the month is not a valid!" << endl;

   }

}

7 0
3 years ago
Look at the home page of the Internet Society (www.internetsociety.org) and read about one of the designers of the original ARPA
krek1111 [17]

Answer:

<u>ARPANET is the direct precedent for the Internet, a network that became operational in October 1969 after several years of planning. </u>

Its promoter was DARPA (Defense Advanced Research Projects Agency), a US government agency, dependent on the Department of Defense of that country, which still exists.

Originally, it connected research centers and academic centers to facilitate the exchange of information between them in order to promote research. Yes, being an undertaking of the Department of Defense, it is understood that weapons research also entered into this exchange of information.

It is also explained, without being without foundation, that the design of ARPANET was carried out thinking that it could withstand a nuclear attack by the USSR and, hence, probably the great resistance that the network of networks has shown in the face of major disasters and attacks.

It was the first network in which a packet communication protocol was put into use that did not require central computers, but rather was - as the current Internet is - totally decentralized.

Explanation:

<em><u> Below I present as a summary some of the most relevant aspects exposed on the requested website about the origin and authors of ARPANET:</u></em>

<em><u></u></em>

1. Licklider from MIT in August 1962 thinking about the concept of a "Galactic Network". He envisioned a set of globally interconnected computers through which everyone could quickly access data and programs from anywhere. In spirit, the concept was very much like today's Internet. He became the first head of the computer research program at DARPA, and from October 1962. While at DARPA he convinced his successors at DARPA, Ivan Sutherland, Bob Taylor and MIT researcher Lawrence G. Roberts, of the importance of this network concept.

2.Leonard Kleinrock of MIT published the first article on packet-switching theory in July 1961 and the first book on the subject in 1964. Kleinrock convinced Roberts of the theoretical feasibility of communications using packets rather than circuits, That was an important step on the road to computer networking. The other key step was to get the computers to talk together. To explore this, in 1965, working with Thomas Merrill, Roberts connected the TX-2 computer in Mass. To the Q-32 in California with a low-speed phone line creating the first wide-area (albeit small) computer network built . The result of this experiment was the understanding that timeshare computers could work well together, running programs and retrieving data as needed on the remote machine, but that the circuitry switching system of the phone was totally unsuitable for the job. Kleinrock's conviction of the need to change packages was confirmed.

3.In late 1966 Roberts went to DARPA to develop the concept of a computer network and quickly developed his plan for "ARPANET", and published it in 1967. At the conference where he presented the document, there was also a document on a concept of UK packet network by Donald Davies and Roger Scantlebury of NPL. Scantlebury told Roberts about NPL's work, as well as that of Paul Baran and others at RAND. The RAND group had written a document on packet switched networks for secure voice in the military in 1964. It happened that work at MIT (1961-1967), in RAND (1962-1965) and in NPL (1964-1967) all they proceeded in parallel without any of the investigators knowing about the other work. The word "packet" was adopted from the work in NPL and the proposed line speed to be used in the ARPANET design was updated from 2.4 kbps to 50 kbps.

6 0
3 years ago
Other questions:
  • The development team recently moved a new application into production for the accounting department. After this occurred, the Ch
    6·1 answer
  • Air as an ideal gas in a closed system undergoes a reversible process between temperatures of 1000 K and 400 K. The beginning pr
    9·1 answer
  • A direct contact heat exchanger (where the fluid mixes completely) has three inlets and one outlet. The mass flow rates of the i
    7·1 answer
  • The driver _______
    9·2 answers
  • Advantages of using metal
    7·1 answer
  • Select the correct answer.
    6·1 answer
  • Bob would like to run his house off the grid, therefore he needs to find out how many solar panels and batteries he needs to buy
    12·1 answer
  • Please help ill mark as brainlest
    13·1 answer
  • 8. What are two ways SpaceX plans to change personal travel?
    7·1 answer
  • Technician a says that personal protective equipment (ppe) does not include clothing. technician b says that the ppe used should
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!