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
Alekssandra [29.7K]
4 years ago
5

A heated long cylindrical rod is placed in a cross flow of air at 20°C (1 atm) with velocity of 10 m/s. The rod has a diameter o

f 5 mm and its surface has an emissivity of 0.95. If the surrounding temperature is 20°C and the heat flux dissipated from the rod is 17000 W/m2, determine the surface temperature of the rod. Evaluate the air properties at 70°C. The properties of air (1 atm) at 70°C are k
Engineering
1 answer:
postnew [5]4 years ago
5 0

Answer:

Ts = 413.66 K

Explanation:

given data

temperature = 20°C

velocity = 10 m/s

diameter = 5 mm

surface emissivity = 0.95

surrounding temperature = 20°C

heat flux dissipated = 17000 W/m²

to find out

surface temperature

solution

we know that here properties of air at 70°C

k = 0.02881 W/m.K

v = 1.995 ×10^{-5} m²/s

Pr = 0.7177

we find here reynolds no for air flow that is

Re = \frac{\rho V D }{\mu } = \frac{VD}{v}    

Re = \frac{10*0.005}{1.99*10^{-5}}

Re = 2506

now we use churchill and bernstein relation for nusselt no

Nu = \frac{hD}{k} = 0.3 + \frac{0.62 Re6{0.5}Pr^{0.33}}{[1+(0.4/Pr)^{2/3}]^{1/4}} [1+ (\frac{2506}{282000})^{5/8}]^{4/5}

h = \frac{0.02881}{0.005}0.3 + \frac{0.62*2506{0.5}0.7177^{0.33}}{[1+(0.4/0.7177)^{2/3}]^{1/4}} [1+ (\frac{2506}{282000})^{5/8}]^{4/5}

h = 148.3 W/m².K

so

q conv = h∈(Ts- T∞ )

17000 = 148.3 ( 0.95) ( Ts - (20 + 273 ))

Ts = 413.66 K

You might be interested in
I study to get good grades because my parents want to send me to the college of my choice.” This is an a. Intrinsic motivational
sashaice [31]

c. Both of These

hope it helps

lub.....

5 0
3 years ago
Read 2 more answers
g For this project you are required to perform Matrix operations (Addition, Subtraction and Multiplication). For each of the ope
Kruka [31]

Answer:

C++ code is explained below

Explanation:

#include<iostream>

using namespace std;

//Function Declarations

void add();

void sub();

void mul();

//Main Code Displays Menu And Take User Input

int main()

{

  int choice;

  cout << "\nMenu";

  cout << "\nChoice 1:addition";

  cout << "\nChoice 2:subtraction";

  cout << "\nChoice 3:multiplication";

  cout << "\nChoice 0:exit";

 

  cout << "\n\nEnter your choice: ";

 

  cin >> choice;

 

  cout << "\n";

 

  switch(choice)

  {

      case 1: add();

              break;

             

      case 2: sub();

              break;

             

      case 3: mul();

              break;

     

      case 0: cout << "Exited";

              exit(1);

     

      default: cout << "Invalid";      

  }

  main();  

}

//Addition Of Matrix

void add()

{

  int rows1,cols1,i,j,rows2,cols2;

 

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  //Taking First Matrix

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  //Printing 1st Matrix

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

  //Taking Second Matrix

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  //Displaying second Matrix

  cout << "\n";

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

  //Displaying Sum of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      cout << "\n";

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]+m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void sub()

{

  int rows1,cols1,i,j,k,rows2,cols2;

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

  cout << "\n";

  //Displaying Subtraction of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]-m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void mul()

{

  int rows1,cols1,i,j,k,rows2,cols2,mul[10][10];

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  cout << "\n";

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  cout << "\n";

  //Displaying Matrix 2

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

     

  if(cols1!=rows2)

      cout << "operation is not supported";

  else

  {

      //Initializing results as 0

      for(i = 0; i < rows1; ++i)

  for(j = 0; j < cols2; ++j)

  mul[i][j]=0;

// Multiplying matrix m1 and m2 and storing in array mul.

  for(i = 0; i < rows1; i++)

  for(j = 0; j < cols2; j++)

  for(k = 0; k < cols1; k++)

  mul[i][j] += m1[i][k] * m2[k][j];

// Displaying the result.

  cout << "\n";

  for(i = 0; i < rows1; ++i)

      for(j = 0; j < cols2; ++j)

      {

      cout << " " << mul[i][j];

      if(j == cols2-1)

      cout << endl;

      }

      }  

  main();

 }

5 0
3 years ago
We know that passengers can be either helpful or harmful to a driver. Describe a pro and a con of having passengers in your car.
anygoal [31]

Answer:

sub to pewdipie

6 0
3 years ago
Read 2 more answers
True or False? In the electron flow theory, electrons flow from the positively charged body to the negatively charged body.
kobusy [5.1K]

I think it's false because the theory states that electrons flow from negative to positive. Since electrons are negatively charged, it follows that they are attracted by positively charged bodies and repelled by negatively charged bodies.

3 0
3 years ago
Read 2 more answers
Pls help me answer my module
Otrada [13]

Answer:

Hand tools based on job requirement and its importance and the classification of hand tools according to its function and its importance are discussed below in details.

Explanation:

Hand tools based on work requirement is essential because Every tool is specifically invented for a particular purpose, so picking the accurate tool will also reduce the amount of energy needed to get work done right without causing injury or harm to either the tools or the exterior being worked on.

classifying of hand tools: wrenches, screwdrivers, cutters, striking tools, hammer tool or struck, pliers, vise, clamps, snips, saws, drills, and knives.

4 0
4 years ago
Other questions:
  • A cylindrical rod of 1040 Steel originally 10.5 mm in diameter is to be cold worked by drawing to a final diameter of 8.5 mm. Th
    10·1 answer
  • Write a python program to apply this:
    15·1 answer
  • The snowmobile has a weight of 250 lb, centered at G1, while the rider has a weight of 150 lb, centered at G2. Ifh=3ft, determin
    11·1 answer
  • The electricity generated by wind turbines annually in kilowatt-hours per year is given in a file. The amount of electricity is
    5·2 answers
  • Problem a) – c): Use the method of joints, the method of sections, or both to solve the following trusses. Draw F.B.Ds for all y
    7·1 answer
  • What makes building an airplane while flying so difficult?
    5·1 answer
  • In contouring, it is necessary to measure position and not velocity for feedback.
    9·1 answer
  • Name the ferrous metal that most workshop tools are made from??
    12·2 answers
  • Pls answer and I will give a like!
    8·1 answer
  • According to Gary Sirota, the proposed Bajagua wastewater treatment plant is a beneficial solution because __________.
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!