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
Umnica [9.8K]
3 years ago
7

A helical compression spring is made with oil-tempered wire with wire diameter of 0.2 in, mean coil diameter of 2 in, a total of

12 coils, a free length of 5 in, with squared ends.(a) Find the solid length.(b) Find the force necessary to deflect the spring to its solid length.(c) Find the factor of safety guarding against yielding when the spring is compressed to its solid length.
Engineering
1 answer:
Naya [18.7K]3 years ago
7 0

Answer:

a. Solid length Ls = 2.6 in

b. Force necessary for deflection Fs = 67.2Ibf

Factor of safety FOS = 2.04

Explanation:

Given details

Oil-tempered wire,

d = 0.2 in,

D = 2 in,

n = 12 coils,

Lo = 5 in

(a) Find the solid length

Ls = d (n + 1)

= 0.2(12 + 1) = 2.6 in Ans

(b) Find the force necessary to deflect the spring to its solid length.

N = n - 2 = 12 - 2 = 10 coils

Take G = 11.2 Mpsi

K = (d^4*G)/(8D^3N)

K = (0.2^4*11.2)/(8*2^3*10) = 28Ibf/in

Fs = k*Ys = k (Lo - Ls )

= 28(5 - 2.6) = 67.2 lbf Ans.

c) Find the factor of safety guarding against yielding when the spring is compressed to its solid length.

For C = D/d = 2/0.2 = 10

Kb = (4C + 2)/(4C - 3)

= (4*10 + 2)/(4*10 - 3) = 1.135

Tau ts = Kb {(8FD)/(Πd^3)}

= 1.135 {(8*67.2*2)/(Π*2^3)}

= 48.56 * 10^6 psi

Let m = 0.187,

A = 147 kpsi.inm^3

Sut = A/d^3 = 147/0.2^3 = 198.6 kpsi

Ssy = 0.50 Sut

= 0.50(198.6) = 99.3 kpsi

FOS = Ssy/ts

= 99.3/48.56 = 2.04 Ans.

You might be interested in
Direction: List down or enumerate the type of outlets you want to install on your dream house. Also indicate the quantity (in pi
Lorico [155]

Answer:

Apartment outlet 4pcs

Explanation:

6 0
3 years ago
A body weighs 50 N and hangs from a spring with spring constant of 50 N/m. A dashpot is attached to the body. If the body is rai
lbvjy [14]

Answer:

a) 3.607 m

b) 1.5963 m

Explanation:

See that attached pictures for explanation.

3 0
3 years ago
What is the gear ratio of the given train
Olin [163]

Answer:

1/4

Explanation:

.......................

7 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
4 years ago
Refrigerant-134a enters a 28-cm-diameter pipe steadily at 200 kPa and 20°C with a velocity of 5 m/s. The refrigerant gains heat
Alexandra [31]

Answer:

V = 0.30787 m³/s

m = 2.6963 kg/s

v2 =  0.3705 m³/s

v2 = 6.017 m/s

Explanation:

given data

diameter = 28 cm

steadily =200 kPa

temperature = 20°C

velocity = 5 m/s

solution

we know mass flow rate is

m = ρ A v

floe rate V = Av

m = ρ V

flow rate = V = \frac{m}{\rho}

V = Av = \frac{\pi}{4} * d^2 * v1

V = \frac{\pi}{4} * 0.28^2 * 5

V = 0.30787 m³/s

and

mass flow rate of the refrigerant is

m = ρ A v

m = ρ V

m = \frac{V}{v} = \frac{0.30787}{0.11418}

m = 2.6963 kg/s

and

velocity and volume flow rate at exit

velocity = mass × v

v2 = 2.6963 × 0.13741 = 0.3705 m³/s

and

v2 = A2×v2

v2 = \frac{v2}{A2}

v2 = \frac{0.3705}{\frac{\pi}{4} * 0.28^2}

v2 = 6.017 m/s

7 0
3 years ago
Other questions:
  • Define various optical properties of engineering materials
    11·1 answer
  • Following lockout/tagout (LOTO) procedures is important but not required when working with dangerous
    10·1 answer
  • A belt drive was designed to transmit the power of P=7.5 kW with the velocity v=10m/s. The tensile load of the tight side is twi
    14·1 answer
  • Describe the algorithm you use for looking up a person’s telephone number in the phone book. The input is person’s name; the out
    9·2 answers
  • Which of the following are made up of electrical probes and connectors?
    8·1 answer
  • URGENT PLEASE HELP!!!
    11·1 answer
  • Technician a says that diesel engines can produce more power because air in fuel or not mix during the intake stroke. Technician
    9·1 answer
  • 1. In order for a team to accomplish its goal(s), it is NOT important for the team members to
    14·2 answers
  • While reflecting on the solutions and the process of concept generation, the development team takes a look at some critical ques
    10·1 answer
  • Two technicians are discussing relays. Technician A says that relays can fail because the relay winding is open. Technician B sa
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!