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
Tatiana [17]
2 years ago
9

(SI units) Molten metal is poured into the pouring cup of a sand mold at a steady rate of 400 cm3/s. The molten metal overflows

the pouring cup and flows into the downsprue. The cross section of the sprue is round, with a diameter at the top = 3.4 cm. If the sprue is 20 cm long, determine the proper diameter at its base so as to main- tain the same volume flow rate.
Engineering
1 answer:
maxonik [38]2 years ago
6 0

Answer:

diameter of the sprue at the bottom is 1.603 cm

Explanation:

Given data;

Flow rate, Q = 400 cm³/s

cross section of sprue: Round

Diameter of sprue at the top d_{top} = 3.4 cm

Height of sprue, h = 20 cm = 0.2 m

acceleration due to gravity g = 9.81 m/s²

Calculate the velocity at the sprue base

V_{base} = √2gh

we substitute

V_{base} = √(2 × 9.81 m/s² × 0.2 m )

V_{base} = 1.98091 m/s

V_{base} = 198.091 cm/s

diameter of the sprue at the bottom will be;

Q = AV = (πd_{bottom}^2/4) × V_{base}

d_{bottom} = √(4Q/πV_{base})

we substitute our values into the equation;

d_{bottom} = √(4(400 cm³/s) / (π×198.091 cm/s))

d_{bottom}  = 1.603 cm

Therefore, diameter of the sprue at the bottom is 1.603 cm

You might be interested in
A closed system consisting of 4 lb of a gas undergoes a process during which the relation between pressure and volume is pVn 5 c
gayaneshka [121]

Answer:

V1=5<u>ft3</u>

<u>V2=2ft3</u>

n=1.377

Explanation:

PART A:

the volume of each state is obtained by multiplying the mass by the specific volume in each state

V=volume

v=especific volume

m=mass

V=mv

state 1

V1=m.v1

V1=4lb*1.25ft3/lb=5<u>ft3</u>

state 2

V2=m.v2

V2=4lb*0.5ft3/lb=  <u> 2ft3</u>

PART B:

since the PV ^ n is constant we can equal the equations of state 1 and state 2

P1V1^n=P2V2^n

P1/P2=(V2/V1)^n

ln(P1/P2)=n . ln (V2/V1)

n=ln(P1/P2)/ ln (V2/V1)

n=ln(15/53)/ ln (2/5)

n=1.377

3 0
3 years ago
(TCO 4) A system samples a sinusoid of frequency 190 Hz at a rate of 120 Hz and writes the sampled signal to its output without
steposvetlana [31]

Answer:

The frequency that the sampling system will generate in its output is 70 Hz

Explanation:

Given;

F = 190 Hz

Fs = 120 Hz

Output Frequency = F - nFs

When n = 1

Output Frequency = 190 - 120 = 70 Hz

Therefore, if a system samples a sinusoid of frequency 190 Hz at a rate of 120 Hz and writes the sampled signal to its output without further modification, the frequency that the sampling system will generate in its output is 70 Hz

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
A square-thread power screw is used to raise or lower the basketball board in a gym, the weight of which is W = 100kg. See the f
KIM [24]

Answer:

power = 49.95 W

and it is self locking screw

Explanation:

given data

weight W = 100 kg = 1000 N

diameter d = 20mm

pitch p = 2mm

friction coefficient of steel f = 0.1

Gravity constant is g = 10 N/kg

solution

we know T is

T = w tan(α + φ ) \frac{dm}{2}     ...................1

here dm is = do - 0.5 P

dm = 20 - 1

dm = 19 mm

and

tan(α) = \frac{L}{\pi dm}      ...............2

here lead L = n × p

so tan(α) = \frac{2\times 2}{\pi 19}

α = 3.83°  

and

f = 0.1

so tanφ = 0.1

so that φ = 5.71°

and  now we will put all value in equation 1 we get

T = 1000 × tan(3.83 + 5.71 ) \frac{19\times 10^{-3}}{2}  

T = 1.59 Nm

so

power = \frac{2\pi N \ T }{60}     .................3

put here value

power = \frac{2\pi \times 300\times 1.59}{60}

power = 49.95 W

and

as φ > α

so it is self locking screw

 

8 0
3 years ago
What is the best engineering job to do? Why?
allochka39001 [22]

Answer:

Any engineering job would be good YOU should be the one choosing which job.

Explanation:

Engineering is a great outlet for the imagination, and the perfect field for independent thinkers.

7 0
2 years ago
Read 2 more answers
Other questions:
  • Suppose that a wireless link layer using a CSMA-like protocol backs off 1ms on average. A packet’s link and physical layer heade
    5·1 answer
  • Question 5 (20 pts) The rated current of a three-phase transmission line is 300 A. The currents flowing by the line are measured
    6·1 answer
  • What is 1000 kJ/sec in watts?
    10·1 answer
  • Determine the average and rms values for the function, y(t)=25+10sino it over the time periods (a) 0 to 0.1 sec and (b) 0 to 1/3
    9·1 answer
  • The forming section of a plastics plant puts out a continuous sheet of plastic that is 1.2 m wide and 2 mm thick at a rate of 15
    5·1 answer
  • A water skier leaves the end of an 8 foot tall ski ramp with a speed of 20 mi/hr and at an angle of 250. He lets go of the tow r
    5·1 answer
  • Implement a program that manages shapes. Implement a class named Shape with a method area() which returns the double value 0.0.
    8·1 answer
  • Discuss importance of good communication system​
    8·1 answer
  • What is the objective of phasing out an INDUCTION MOTOR before putting the machine into commission?
    11·1 answer
  • 11. What are restrictions when building or completing a challenge?
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!