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
Jet001 [13]
3 years ago
14

A ship tows a submerged cylinder, 1.5 m in diameter and 22 m long, at U = 5 m/s in fresh water at 20°C. Estimate the towing powe

r in kW if the cylinder is (a) parallel, and (b) normal to the tow direction.
Engineering
1 answer:
shusha [124]3 years ago
7 0

Answer:

(a) 120 kW

(b) 800 kW

Explanation:

Given:

diameter: 1.5 m

length = 22 m

U = 5 m/s

temperature = 20°C

For water at 20°C, take ρ = 998 kg/m³  and µ = 0.001 kg/m⋅s

To find:

power in kW

(a) if the cylinder is parallel

Length / Diameter = L / D = 22 / 1.5 = 14.6 = 15

Re(L) = ρ*U*L / µ = 998 * 5 * 22 / 0.001 = 109780000 = 1.1E8

C(D.Frontal) ≈ 1.1

  Force = F = 1.1 * ρ/2 * U² * π / 4 * D

            =  1.1 (998 / 2) (5)²(π / 4)(1.5)²  

            = 1.1 * 499 * 25 * 0.785 * 2.25

            = 24000 N

Power = Force * Displacement / time

           = F * U

           = 24000 * 5

           = 120000

Power = 120 kW

b) if the cylinder is normal to the tow direction.

Re(L) = ρ*U*D / µ = 998 * 5 * 1.5 / 0.001 = 7485000 = 7.5E6

C(D.Frontal) ≈ 0.4

Force = F = 0.4 * ρ/2 * U² * D * L

            =  0.4 (998 / 2) (5)²(1.5)(22)  

            = 164670 ≈ 165000

Power = Force * Displacement / time

           = F * U

           = 165000 * 5 = 825000

           ≈ 800 kW

Power = 800 kW

You might be interested in
Amplifiers are extensively used in the baseband portion of a radio receiver system to condition the baseband signal to produce a
N76 [4]

Answer:

Please see the attached file for the complete answer.

Explanation:

Download pdf
5 0
3 years ago
The properties of the air in the inlet section with A1 = 0.25ab m2 in a converging-diverging channel are given as U1 = 25a,b m/s
NeX [460]

Answer:

nice cake

Explanation:

3 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
The fracture toughness of a stainless steel is 137 MPa*m12. What is the tensile impact load sustainable before fracture that a r
Charra [1.4K]

Answer:

7.7 kN

Explanation:

The capacity of a material having a crack to withstand fracture is referred to as fracture toughness.

It can be expressed by using the formula:

K = \sigma Y \sqrt{\pi a}

where;

fracture toughness K = 137 MPam^{1/2}

geometry factor Y = 1

applied stress \sigma = ???

crack length a = 2mm = 0.002

∴

137 =\sigma \times 1  \sqrt{ \pi \times 0.002 }

137 =\sigma \times 0.07926

\dfrac{137}{0.07926} =\sigma

\sigma = 1728.489 MPa

Now, the tensile impact obtained is:

\sigma = \dfrac{P}{A}

P = A × σ

P = 1728.289 × 4.5

P = 7777.30 N

P = 7.7 kN

7 0
3 years ago
A 2-m3insulated rigid tank contains 3.2 kg of carbon dioxide at 120 kPa.Paddle-wheel work is done on the system until the pressu
AleksandrR [38]

Answer:

The change in entropy is found to be 0.85244 KJ/k

Explanation:

In order to solve this question, we first need to find the ration of temperature for both state 1 and state 2. For that, we can use Charles' law. Because the volume of the tank is constant.

P1/T1 = P2/T2

T2/T1 = P2/P1

T2/T1 = 180 KPa/120KPa

T2/T1 = 1.5

Now, the change in entropy is given as:

ΔS = m(s2 - s1)

where,

s2 = Cv ln(T2/T1)

s1 = R ln(V2/V1)

ΔS = change in entropy

m = mass of CO2 = 3.2 kg

Therefore,

ΔS = m[Cv ln(T2/T1) - R ln(V2/V1)]

Since, V1 = V2, therefore,

ΔS = mCv ln(T2/T1)

Cv at 300 k for carbondioxide is 0.657 KJ/Kg.K

Therefore,

ΔS = (3.2 kg)(0.657 KJ/kg.k) ln(1.5)

<u>ΔS = 0.85244 KJ/k</u>

3 0
2 years ago
Other questions:
  • What parts does the block contain?
    5·2 answers
  • The slope of a moment diagram is the load. a)-True b)-False
    8·1 answer
  • What are the two safety precautions taken before driving a car​
    12·1 answer
  • Given the circuit at the right in which the following values are used: R1 = 20 kΩ, R2 = 12 kΩ, C = 10 µ F, and ε = 25 V. You clo
    11·1 answer
  • Ventajas motor avion
    5·1 answer
  • Why does an aeroplane smoke in the air​
    14·1 answer
  • Describe what viscoelastic behavior means
    7·1 answer
  • For a very rough pipe wall the friction factor is constant at high Reynolds numbers. For a length L1 the pressure drop over the
    9·1 answer
  • Why won't Brainly let me make a account or log in? It's always telling me that it can't take my registration at this time or it
    9·1 answer
  • *100 POINTS
    6·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!