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
choli [55]
3 years ago
9

Pressurized steam at 400 K flows through a long, thin- walled pipe of 0.6-m diameter. The pipe is enclosed in a concrete casing

that is of square cross section and 1.75 m on a side. The axis of the pipe is centered in the casing, and the outer surfaces of the casing are maintained at 300 K. What is the rate of heat loss per unit length of pipe
Engineering
2 answers:
ELEN [110]3 years ago
7 0

Explanation:

assume steady state conditions, negligible steam side convention resistance, pipe wall resistance and contact resistance i.e T_{1} =400k

and constant properties of concrete (300 k); k=1.4Wm/k

the heat rate can be expressed as

q=Sk(T_{1} -T_{2} )=Ak(T_{1} -T_{2} )

the shape factor is

S=(2\pi L/ln(1.08w/D))

hence \\q'=q/L\\=2\pi k(T_{1}- T_{2}) /ln(1.08w/D)

insert values

=(2\pi *1.4W/m.k*(400-300)k)/(ln(1.08*1.75/0.6)

q'=766W/m   ( rate of heat loss per unit length)

Stels [109]3 years ago
6 0

Answer:

Q= 930.92W/m

Explanation:

Note that thermal conductivity of some common materials is from engineering tool box.

And the proper shape factor needed for the solution is found from the List of shape factor

Pressure of steam(T1)=400k

Diameter of the pipe(D)=0.6m

Square cross section of the concrete casing (W) =1.75m

Outer surface of casting maintained at a pressure (T2)=300k

Thermal conductivity (K) =1.7W/mK

The proper shape factor needed for the solution is found from the List of shape factor

Rate of heat loss (Q) =?

The heat rate (q) :

q=SKΔT1-T2=SK(T1-T2)

S=2πL/In(1.08W/D)

Heat loss per unit length is in terms of W/M

Note that, Q=q/L

By substitution, the full equation will be

Q=2πK(T1-T2)/In(1.08W/D)

Substituting values :

Q=2π(1.7W/mK)*(400K - 300k) / In[ (1.08(1.75m)/ 0.6m ]

Q= 930.92W/m

You might be interested in
Which of the following is MOST likely to be true about a service manager?
forsale [732]

Answer:

a.they are responsible for the function of the service department

7 0
2 years ago
What is the measurment unit of permeability?​
nikitadnepr [17]

Answer:

Henries :)

Explanation:

I looked it up

7 0
3 years ago
Read 2 more answers
Prove the following languages are nonregular, once using the pumping lemma and once using the Myhill-Nerode theorem. When using
VashaNatasha [74]

Answer:

For any string, we use s = xyz

Explanation:

The pumping lemma says that for any string s in the language, with length greater than the pumping length p, we can write s = xyz with |xy| ≤ p, such that xyi z is also in the language for every i ≥ 0. For the given language, we can take p = 2.

Here are the cases:

  • Consider any string a i b j c k in the language. If i = 1 or i > 2, we take x = \epsilon   and y = a. If i = 1, we must have j = k and adding any number of a’s still preserves the membership in the language. For i > 2, all strings obtained by pumping y as defined above, have two or more a’s and hence are always in the language.
  • For i = 2, we can take    and y = aa. Since the strings obtained by pumping in this case always have an even number of a’s, they are all in the language.
  • Finally, for the case i = 0, we take x = \epsilon  , and y = b if j > 0 and y = c otherwise. Since strings of the form b j c k are always in the language, we satisfy the conditions of the pumping lemma in this case as well.
8 0
3 years ago
9. Calculate the total resistance and current in a parallel cir-
Taya2010 [7]

Answer:

  d. 2.3 ohms (5.3 amperes)

Explanation:

The calculator's 1/x key makes it convenient to calculate parallel resistance.

  Req = 1/(1/4 +1/8 +1/16) = 1/(7/16) = 16/7 ≈ 2.3 ohms

This corresponds to answer choice D.

__

<em>Additional comment</em>

This problem statement does not tell the applied voltage. The answer choices suggest that it is 12 V. If so, the current is 12/(16/7) = 21/4 = 5.25 amperes.

5 0
3 years ago
CS3733: Homework/Practice 05 Suppose we would like to write a program called monitor which allows two other programs to communic
valina [46]

Answer:

#include<stdio.h>

#include<stdlib.h>

#include<unistd.h>

#include<sys/types.h>

#include<string.h>

#include<pthread.h>

//#include<sys/wait.h>

int main(int argc, char** argv)

{

int fd1[2];

int fd2[2];

int fd3[2];

int fd4[2];

char message[] = "abcd";

char input_str[100];

pid_t p,q;

if (pipe(fd1)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

if (pipe(fd2)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

if (pipe(fd3)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

if (pipe(fd4)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

p = fork();

if (p < 0)

{

 fprintf(stderr, "fork Failed" );

return 1;

}

// child process-1

else if (p == 0)

{

 close(fd1[0]);// Close reading end of first pipe

 char concat_str[100];

 printf("\n\tEnter meaaage:"):

 scanf("%s",concat_str);

 write(fd1[1], concat_str, strlen(concat_str)+1);

 // Concatenate a fixed string with it

 int k = strlen(concat_str);

 int i;

 for (i=0; i<strlen(fixed_str); i++)

 {

  concat_str[k++] = fixed_str[i];

 }

 concat_str[k] = '\0';//string ends with '\0'

 // Close both writting ends

 close(fd1[1]);

 wait(NULL);

//.......................................................................

 close(fd2[1]);

 read(fd2[0], concat_str, 100);

 if(strcmp(concat_str,"invalid")==0)

 {

 printf("\n\tmessage not send");

 }

 else

 {

  printf("\n\tmessage send to prog_2(child_2).");

 }

 close(fd2[0]);//close reading end of pipe 2

 exit(0);

}

else

{

 close(fd1[1]);//Close writting end of first pipe

 char concat_str[100];

 read(fd1[0], concal_str, strlen(concat_str)+1);

 close(fd1[0]);

 close(fd2[0]);//Close writing end of second pipe

 if(/*check if msg is valid or not*/)

 {

  //if not then

  write(fd2[1], "invalid",sizeof(concat_str));

  return 0;

 }

 else

 {

  //if yes then

  write(fd2[1], "valid",sizeof(concat_str));

  close(fd2[1]);

  q=fork();//create chile process 2

  if(q>0)

  {

   close(fd3[0]);/*close read head offd3[] */

   write(fd3[1],concat_str,sizeof(concat_str);//write message by monitor(main process) using fd3[1]

   close(fd3[1]);

   wait(NULL);//wait till child_process_2 send ACK

   //...........................................................

   close(fd4[1]);

   read(fd4[0],concat_str,100);

   close(fd4[0]);

   if(sctcmp(concat_str,"ack")==0)

   {

    printf("Messageof child process_1 is received by child process_2");

   }

   else

   {

    printf("Messageof child process_1 is not received by child process_2");

   }

  }

  else

  {

   if(p<0)

   {

    printf("Chiile_Procrss_2 not cheated");

   }

   else

   {

     

    close(fd3[1]);//Close writing end of first pipe

    char concat_str[100];

    read(fd3[0], concal_str, strlen(concat_str)+1);

    close(fd3[0]);

    close(fd4[0]);//Close writing end of second pipe

    write(fd4[1], "ack",sizeof(concat_str));

     

   }

  }

 }

 close(fd2[1]);

}

}

8 0
3 years ago
Other questions:
  • A evolução da malha rodoviária do Brasil é um marco notável
    9·1 answer
  • A transmitter has an output power of 0.1mW while the fiber has coupling loss of 12dB, attenuation of
    11·1 answer
  • WHAT IS THE MOST POWERFUL PART IN A CAR
    13·2 answers
  • How does refrigeration preserve food and dead bodies​
    12·2 answers
  • What quantity measures the effect of change?
    12·2 answers
  • Materials to be used to build a watch tower​
    9·1 answer
  • in the multiple pipe system shown below, which of the following is true concerning the linear system?.
    14·1 answer
  • In python, how would I randomize numbers and insert them into a file?
    7·1 answer
  • Type the correct answer in the box. Spell all words correctly.
    7·1 answer
  • What is the law of physics<br><br><br> 10 points if you tell me the answer and your name
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!