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
qwelly [4]
3 years ago
9

To find the reactance XLXLX_L of an inductor, imagine that a current I(t)=I0sin(ωt)I(t)=I0sin⁡(ωt) , is flowing through the indu

ctor. What is the voltage V(t)V(t)V(t) across this inductor?
Engineering
1 answer:
Sophie [7]3 years ago
3 0

Answer:

V(t) = XLI₀sin(π/2 - ωt)

Explanation:

According to Maxwell's equation which is expressed as;

V(t) = dФ/dt ........(1)

Magnetic flux Ф can also be expressed as;

Ф = LI(t)

Where

L = inductance of the inductor

I = current in Ampere

We can therefore Express Maxwell equation as:

V(t) = dLI(t)/dt ....... (2)

Since the inductance is constant then voltage remains

V(t) = LdI(t)/dt

In an AC circuit, the current is time varying and it is given in the form of

I(t) = I₀sin(ωt)

Substitutes the current I(t) into equation (2)

Then the voltage across inductor will be expressed as

V(t) = Ld(I₀sin(ωt))/dt

V(t) = LI₀ωcos(ωt)

Where cos(ωt) = sin(π/2 - ωt)

Then

V(t) = ωLI₀sin(π/2 - ωt) .....(3)

Because the voltage and current are out of phase with the phase difference of π/2 or 90°

The inductive reactance XL = ωL

Substitute ωL for XL in equation (3)

Therefore, the voltage across inductor is can be expressed as;

V(t) = XLI₀sin(π/2 - ωt)

You might be interested in
A medium-sized jet has a 3.8-mm-diameter fuselage and a loaded mass of 85,000 kg. The drag on an airplane is primarily due to th
SCORPION-xisa [38]

Answer:

F_{thrust} ≅ 111 KN

Explanation:

Given that;

A medium-sized jet has a 3.8-mm-diameter i.e diameter (d) = 3.8

mass = 85,000 kg

drag co-efficient (C) = 0.37

(velocity (v)= 230 m/s

density (ρ) = 1.0 kg/m³

To calculate the thrust; we need to determine the relation of the drag force; which is given as:

F_{drag} = \frac{1}{2} × CρAv²

where;

ρ = density of air wind.

C = drag co-efficient

A = Area of the jet

v = velocity of the jet

From the question, we can deduce that the jet is in motion with a constant speed; as such: the net force acting on the jet in the air = 0

SO, F_{drag}-F_{thrust} = 0

We can as well say:

F_{drag}= F_{thrust}

We can now replace F_{thrust} with F_{drag} in the above equation.

Therefore, F_{thrust} = \frac{1}{2} × CρAv²

The A which stands as the area of the jet is given by the formula:

A=\frac{\pi d^2}{4}

We can now have a new equation after substituting our A into the previous equation as:

F_{thrust} = \frac{1}{2} × Cρ (\frac{\pi d^2}{4})v^2

Substituting our data from above; we have:

F_{thrust} = \frac{1}{2} × (0.37)(1.0kg/m^3)(\frac{\pi(3.8m)^2 }{4})(230m/s)^2

F_{thrust} = \frac{1}{8}   (0.37)(1.0kg/m^3)({\pi(3.8m)^2 })(230m/s)^2

F_{thrust} = 110,990N

F_{thrust}  in N (newton) to KN (kilo-newton) will be:

F_{thrust} = (110,990N)*\frac{1KN}{1,000N}

F_{thrust} = 110.990 KN

F_{thrust} ≅ 111 KN

In conclusion, the jet engine needed to provide 111 KN thrust in order to cruise at 230 m/s at an altitude where the air density is 1.0 kg/m³.

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
I need a thesis statement about Engineers as Leaders.
algol [13]

Answer:

Engineers are a very beneficial contribution in which offers great solutions to national problems.

5 0
3 years ago
Calculate the areas under the stress-strain curve (toughness) for the materials shown in Fig. below, (a) plot them as a
defon

Answer:

Explanation:

Wow

5 0
3 years ago
What’s cat plus cat <br><br><br><br><br><br><br><br> ?
iris [78.8K]
Uhmmmmm, a kitten...? Lol
5 0
3 years ago
Read 2 more answers
Other questions:
  • The natural variation of a process relative to the variation allowed by the design specifications is known as
    15·1 answer
  • The title block generally contains ________.
    12·1 answer
  • What is the temperature dependency of the electrical conductivity for metals and semiconductors??
    6·1 answer
  • List the three main methods employed in dimensional analysis
    6·1 answer
  • If the Zener diode is connected<br>wrong polarity the voltage<br>across the load is?​
    11·1 answer
  • Implement a quick sort algorithm that will accept an integer array of size n and in random order. Develop or research three diff
    13·1 answer
  • When you do a vehicle check, what do you NOT need to keep an eye on?
    9·1 answer
  • The solid rod BC has a diameter of 30 mm and is made of an aluminum for which the allowable shearing stress is 25 MPa. Rod AB is
    15·1 answer
  • What Is Photosynthesis ?​
    7·2 answers
  • An open tank contain oil of specific gravity 0.75 on top of
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!