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
Arte-miy333 [17]
3 years ago
9

(a) In a 3-phase, 4-wire system, the currents are in the A, B, and C lines under abnormal conditions of loading were as follows:

IA = 100/30° A, 1b = 50/300° A, and Ic = 30/180° A
(i) Calculate the positive, negative, and zero-phase sequence currents in the A-line.

(ii) Calculate the return current in the neutral conductor.


(b) Check by sketching IA, IB, and Ic as the sum of the appropriate symmetrical components.

Engineering
1 answer:
Verizon [17]3 years ago
5 0

Answer:

Check the attached image below

Explanation:

Kindly check the attached image below to get the step by step explanation to the question above.

You might be interested in
A plate clutch is used to connect a motor shaft running at 1500rpm to shaft 1. The motor is rated at 4 hp. Using a service facto
vazorg [7]

Answer:

(M_t)_{rated}=61.11lb-in

Explanation:

speed of motor (N)=1500 rpm

power=4 hp = 4 \times 0.7457 =2.9828 KW

service factor(k)= 2.75

now,

KW=\frac{2\pi n M_t}{60 \times 10^6} \\2.9828=\frac{2\pi \times 1500 M_t}{60 \times 10^6}\\M_t=\frac{2.9828\times 60 \times 10^6}{2\pi \times 1500 }

M_t= 18,989.09 \ N-mm= 168.06 lb-in

torque rating

(M_t)_{design}=k_s\times (M_t)_{rated}\\168.06= 2.75\times (M_t)_{rated}\\(M_t)_{rated}=\frac{168.06}{2.75} \\(M_t)_{rated}=61.11lb-in

4 0
4 years ago
Air flows at 45m/s through a right angle pipe bend with a constant diameter of 2cm. What is the overall force required to keep t
HACTEHA [7]

Answer:

b)1.08 N

Explanation:

Given that

velocity of air V= 45 m/s

Diameter of pipe = 2 cm

Force exerted by fluid  F

F=\rho AV^2

So force exerted in x-direction

F_x=\rho AV^2

F_x=1.2\times \dfrac{\pi}{4}\times 0.02^2\times 45^2

F=0.763 N

So force exerted in y-direction

F_y=\rho AV^2

F_y=1.2\times \dfrac{\pi}{4}\times 0.02^2\times 45^2

F=0.763 N

So the resultant force R

R=\sqrt{F_x^2+F_y^2}

R=\sqrt{0.763^2+0.763^2}

R=1.079

So the force required to hold the pipe is 1.08 N.

3 0
3 years ago
What would happen to a plane if the weight force becomes greater than the lift force?
mrs_skeptik [129]

Answer:

When the lift is greater than the weight, the aircraft gains altitude. ... Drag must be overcome for the aircraft to move, and movement is essential to obtain lift. To overcome drag and move the aircraft forward, another force is essential. This force is thrust.

Explanation:

Hope this helps!

8 0
3 years ago
Read 2 more answers
A horizontal curve on a two-lane road is designed with a 2,300-ft radius, 12-ft lanes, and a 65-mph design speed. Determine the
Ierofanga [76]

Answer:

distance = 22.57 ft

superelevation rate = 2%

Explanation:

given data

radius = 2,300-ft

lanes width = 12-ft

no of lane = 2

design speed = 65-mph

solution

we get here sufficient sight distance SSD that is express as

SSD = 1.47 ut + \frac{u^2}{30(\frac{a}{g}\pm G)}     ..............1

here u is speed and t is reaction time i.e 2.5 second and a is here deceleration rate i.e 11.2 ft/s² and g is gravitational force i.e 32.2 ft/s² and G is gradient i.e 0 here

so put here value and we get

SSD = 1.47 × 65 ×2.5  + \frac{65^2}{30(\frac{11.2}{32.2}\pm 0)}

solve it we get

SSD = 644 ft  

so here minimum distance clear from the inside edge of the inside lane is

Ms = Rv ( 1  - cos (\frac{28.65 SSD}{Rv}) )        .....................2

here Rv is = R - one lane width

Rv = 2300 - 6 = 2294 ft

put value in equation 2 we get

Ms = 2294 ( 1  - cos (\frac{28.65 \times 664}{2294})  )  

solve it we get

Ms = 22.57 ft

and

superelevation rate for the curve will be here as

R  = \frac{u^2}{15(e+f)}  ..................3

here f is coefficient of friction that is 0.10

put here value and we get e

2300 = \frac{65^2}{15(e+0.10)}

solve it we get

e = 2%

3 0
3 years ago
2.4: Add a method called setValue(), and the description of setValue is: public int setValue(long searchKey) In this method, the
Yanka [14]

Answer:

Below is java code that must be used for the given question:

// highArray.java

// demonstrates array class with high-level interface

// to run this program: C>java HighArrayApp

////////////////////////////////////////////////////////////////

class HighArray

  {

  private long[] a;                 // ref to array a

  private int nElems;               // number of data items

  //-----------------------------------------------------------

  public HighArray(int max)         // constructor

     {

     a = new long[max];                 // create the array

     nElems = 0;                        // no items yet

     }

  //-----------------------------------------------------------

  public setValue find(long searchKey)

     {                              // find specified value

     int j;

     for(j=0; j<nElems; j++)            // for each element,

        if(a[j] == searchKey)           // found item?

           break;                       // exit loop before end

     if(j == nElems)                    // gone to end?

        return false;                   // yes, can't find it

     else

        return true;                    // no, found it

     }  // end find()

  //-----------------------------------------------------------

  public void insert(long value)    // put element into array

     {

     a[nElems] = value;             // insert it

     nElems++;                      // increment size

     }

  //-----------------------------------------------------------

  public void display()             // displays array contents

     {

     for(int j=0; j<nElems; j++)       // for each element,

        System.out.print(a[j] + " ");  // display it

     System.out.println("");

     }

  //-----------------------------------------------------------

  }  // end class HighArray

////////////////////////////////////////////////////////////////

class HighArrayApp

  {

  public static void main(String[] args)

     {

     int maxSize = 100;            // array size

     HighArray arr;                // reference to array

     arr = new HighArray(maxSize); // create the array

     arr.insert(77);               // insert 10 items

     arr.insert(99);

     arr.insert(44);

     arr.insert(55);

     arr.insert(22);

     arr.insert(88);

     arr.insert(11);

     arr.insert(00);

     arr.insert(66);

     arr.insert(33);

     arr.display();                // display items

     int searchKey = 35;           // search for item

     if( arr.find(searchKey) )

        System.out.println("Found " + searchKey);

     else

        System.out.println("Can't find " + searchKey);

     }  // end main()

  }  // end class HighArrayApp

Explanation:

6 0
3 years ago
Other questions:
  • A tank contains liquid nitrogen at -190℃ is suspended in a vacuum shell by three stainless steel rods 0.80 cm in diameter and 3
    8·1 answer
  • A jetliner flying at an altitude of 10,000 m has a Mach number of 0.5. If the jetliner has to drop down to 1000 m but still main
    11·1 answer
  • 5. What are the 3 basic types of electrical circuits?
    12·1 answer
  • Give a reason why fighter aircraft use mid-wing design.
    11·1 answer
  • Explain why change is inevitable in complex systems and give examples (apart from prototyping and incremental delivery) of softw
    6·1 answer
  • One who is trained in math, science and physics in order to work in a branch of engineering
    7·2 answers
  • Design complementary static CMOS circuits with minimized number of transistors to realize the following Boolean functions (hint:
    13·1 answer
  • Please I need help!<br><br> I need 1,2,&amp;3 drawn with front top and side view. Please help asap
    6·1 answer
  • in the multiple pipe system shown below, which of the following is true concerning the linear system?.
    14·1 answer
  • A wheel spins at a constant angular speed of 24rad/s.How many revolutions will the dosk go through in 5minutes?​
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!