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
d1i1m1o1n [39]
2 years ago
6

Assume the impedance of a circuit element is Z = (3 + j4) Ω. Determine the circuit element’s conductance and susceptance.

Engineering
1 answer:
djyliett [7]2 years ago
8 0

Answer:

B. G = 333 mS, B = j250 mS

Explanation:

impedance of a circuit element is Z = (3 + j4) Ω

The general equation for impedance

Z = (R + jX) Ω

where

R = resistance in ohm

X = reactance

R = 3Ω  X = 4Ω

Conductance = 1/R while Susceptance = 1/X

Conductance = 1/3 = 0.333S

= 333 mS

Susceptance = 1/4 = 0.25S

= 250mS

The right option is B. G = 333 mS, B = j250 mS

You might be interested in
A mixing basin in a sewage filtration plant is stirred by a mechanical agitator with a power input/WF L T=. Other parameters de
MakcuM [25]

Answer: π= G[√(u.V/W)]

STEP 1

Given parameters:

Power Input W= FL/T,

Absolute Viscosity u= FT/L²

Basin volume V= V/L³

Velocity gradient G= V/L³

STEP 2

We start by expressing the velocity gradient G as a function of W, u, V

G= G(W,u,V)

To get the pii terms, we use the dimension number formula n=k - r

where n and k are natural numbers representing number of fundamental dimensions and variable present respectively.

n= 4-3=1

STEP 3:

We expressed the pii terms as

π= G.W^a.u^b.V^c

The three fundamental F L T

We can write as

Fⁿ.Lⁿ.Tⁿ= 1/T. (FL/T)^a.(FT/L²)^b.(L³)

Using the exponential rule and by comparing coefficient on both sides;

Fⁿ.Lⁿ.Tⁿ= F^a+b. L^a-2b+3c. T^-a+b-1

Fⁿ= F^a+b = a+b= 0..............I

Lⁿ= L^a-2b+3c=0 = a-2b+3c=0...........ii

Tⁿ=L^-a+b-1=0. -a+b-1=0............iii

From the above equations we have,

a+b =0: b=-a...........iv

putting eq. iv into iii , we have

-a-a-1=0: -2a-1=0: a= -1/2

substituting the above value of a into eq iv, we have

b= 1/2

substituting the value of b above into eq 2, we have,

-1/2-2(1/2)+3c=0

c=1/2.

Lastly, from the pii terms given above we can obtain dimensionless relationship,

π=G(W^-1/2.u^1/2.V^1/2)

We can write this as

π= G[ √1/W.√u. √1/2] = G[(√u.V/√W)] or G[√(u.V/W)].... final answer.

5 0
3 years ago
Why is it important to cut all the way through an electrical wire on the first try?
lbvjy [14]

Answer:

I always thought it was so that the older wire could not have a problem and have another electrician must come back and fix it.

Explanation:

6 0
3 years ago
When designing a car that runs on wind or Air car . can you tell me the details for the following points Compressed Air Engine:
BabaBlast [244]

Answer:

a)

The crack and connecting rod is used in the design of car.This mechanism is known as slider -crank mechanism.

Components:

1.Inlet tube

2. Wheel

3. Exhaust

4. Engine

5.Air tank

6.Pressure gauge

7.Stand

8. Gate valve

b)

The efficiency of air engine is less as compare to efficiency of electric engine and this is not ecofriendly because it produce green house gases.These gases affect the environment.

c)

it can run around 722 km when it is full charge.

                                                                                                                                                     

5 0
3 years ago
A horizontal curve of a two-lane undivided highway (12-foot lanes) has a radius of 678 feet to the center line of the roadway. A
OLEGan [10]

Answer:

maximum speed for safe vehicle operation = 55mph

Explanation:

Given data :

radius ( R ) = 678 ft

old building located ( m )= 30 ft

super elevation = 0.06

<u>Determine the maximum speed for safe vehicle operation </u>

firstly calculate the stopping sight distance

m = R ( 1 - cos \frac{28.655*S}{R} )  ----  ( 1 )

R = 678  

m ( horizontal sightline ) = 30 ft

back to equation 1

30 = 678 ( 1 - cos (28.655 *s / 678 ) )

( 1 - cos (28.655 *s / 678 ) )  = 30 / 678 = 0.044

cos \frac{28.65 *s }{678}  = 1.044

hence ; 28.65 * s = 678 * 0.2956

s = 6.99 ≈ 7 ft

next we will calculate the design speed ( u ) using the formula below

S = 1.47 ut  + \frac{u^2}{30(\frac{a}{3.2} )-G1}  ----  ( 2 )

t = reaction time,  a = vehicle acceleration, G1 = grade percentage

assuming ; t = 2.5 sec , a = 11.2 ft/sec^2, G1 = 0

back to equation 2

6.99 = 1.47 * u * 2.5 + \frac{u^2}{30[(11.2/32.2)-0 ]}

3.675 u  + 0.0958 u^2 - 6.99 = 0

u ( 3.675 + 0.0958 u ) = 6.99

5 0
2 years ago
Complete function PrintPopcornTime(), with int parameter bagOunces, and void return type. If bagOunces is less than 3, print "To
weqwewe [10]

Answer:

#include <iostream>

using namespace std;

void PrintPopcornTime(int bagOunces) {

if(bagOunces < 3){

 cout << "Too small";

 cout << endl;

}

else if(bagOunces > 10){

 cout << "Too large";

 cout << endl;

}

else{

 cout << (6 * bagOunces) << " seconds" << endl;

}

}

int main() {

  PrintPopcornTime(7);

  return 0;

}

Explanation:

Using C++ to write the program. In line 1 we define the header "#include <iostream>"  that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.

8 0
3 years ago
Other questions:
  • The specific volume of mercury is .00007 m^3/Kg. What is its density in lbm/ft^3?
    10·1 answer
  • A closed system undergoes an adiabatic process during which the work transfer into the system is 12 kJ. The system then returns
    14·1 answer
  • The solid cylinders AB and BC are bonded together at B and are attached to fixed supports at A and C. The modulus of rigidity is
    6·1 answer
  • Given a series of numbers as input, add them up until the input is 10 and print the total. Do not add the final 10. For example,
    7·1 answer
  • An analog baseband audio signal with a bandwidth of 4kHz is transmitted through a transmission channel with additive white noise
    14·1 answer
  • During a long run a very well-trained dog can use up to 1000 ‘cal’/hour (Note: Food calories differ by a factor of one thousand
    14·1 answer
  • A minor road intersects a major 4-lane divided road with a design speed of 50 mph and a median width of 12 ft. The intersection
    13·1 answer
  • Manufacturing employees who perform assembly line work are referred to as
    7·2 answers
  • what do you expect the future trends of an operating system in terms of (a) cost (b) size (c) multitasking (d) portability (e) s
    12·1 answer
  • A countinous shot that sense, flows well, and is understanable and pleasant to look at
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!