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
Triss [41]
3 years ago
12

An inductor is connected to a voltage source and it is found that it has a time constant, t. When a 10-ohm resistor is placed in

series with the inductor, the time constant becomes t/2. A pure inductance of 30 mH is placed in series with the original inductor and the 10-ohm resistor, the time constant is t. What are the values of the original inductors (a) inductance, (b) internal resistance
Engineering
1 answer:
prisoha [69]3 years ago
6 0

Answer:

A) 30 mH

B ) 10-ohm

Explanation:

resistor = 10-ohm

Inductor = 30mH ( l )

L = inductance

R = resistance

r = internal resistance

values of the original Inductors

Note : inductor = constant time (t)  case 1

inductor + 10-ohm resistor connected in series = constant time ( t/2) case2

inductor + 10-ohm resistor + 30 mH inductance in series = constant time (t) case3

<em>From the above cases</em>

case 1 = time constant ( t ) = L / R

case 2 = Req = R + r hence time constant  t / 2  = L / R + r  therefore

t = \frac{2L}{R+r}

case 3 = Leq = L + l , Req = R + r .  constant time ( t )

hence Z = \frac{L + l}{R + r} = t

A) Inductance

To calculate inductance equate case 1 to case 3

\frac{L}{R} = \frac{L + l}{R + r} =   L / 10 = (L + 30) / ( 10 + 10 )

= 20 L = 10 L + 300 mH

   10L = 300 m H

therefore L = 30 mH

B ) The internal resistance

equate case 1 to case 2

\frac{L}{R} = \frac{2L}{R + r}

R + r = 2 R  therefore  ( r = R )   therefore internal resistance = 10-ohm

You might be interested in
The complex power of a load is 10-10j VA. What component should be added in parallel with the load so that the new load has a un
Korolek [52]
Need points bdjdjdhdhd
7 0
3 years ago
For a project in C++ we are supposed toDesign a class named Month. The class should have the following private members:-name: a
mart [117]

Answer:

include <iostream>

using namespace std;

 

class Month

{

public:

 Month (char firstLetter, char secondLetter, char thirdLetter);

 

 Month (int monthNum);

.

 

 Month();

 void outputMonth_num();

 

 

 void outputMonthLetters();

private:

 int month;

};

 

 

int main ()

{

 //

 // Variable declarations

 //

 int monthNum;

 char firstLetter, secondLetter, thirdLetter;    

 char testAgain;              

 

 do {

 

   cout << endl;

   cout << "Testing the default constructor ..." << endl;

   Month defaultMonth;

   defaultMonth.outputMonth_num();

   defaultMonth.outputMonthLetters();

 

   //

   // Construct a month using the constructor with one integer argument

   //

   cout << endl;

   cout << "Testing the constructor with one integer argument..." << endl;

   cout << "Enter a month number: ";

   cin >> monthNum;

 

   Month testMonth1(monthNum);

   testMonth1.outputMonth_num();

   testMonth1.outputMonthLetters();

 

   //

   // Construct a month using the constructor with three letters as arguments

   //

   cout << endl;

   cout << "Testing the constructor with 3 letters as arguments ..." << endl;

   cout << "Enter the first three letters of a month (lowercase): ";

   cin >> firstLetter >> secondLetter >> thirdLetter;

   cout << endl;

 

   Month testMonth2(firstLetter, secondLetter, thirdLetter);

   testMonth2.outputMonth_num();

   testMonth2.outputMonthLetters();

 

   //

   // See if user wants to try another month

   //

   cout << endl;

   cout << "Do you want to test again? (y or n) ";

   cin >> testAgain;

 }

 while (testAgain == 'y' || testAgain == 'Y');

 

 return 0;

}

 

 

Month::Month(char firstLetter, char secondLetter, char thirdLetter)

{

if ((firstLetter == 'j')&&(secondLetter == 'a')&&(thirdLetter == 'n'))

  outputMonth_num = 1;

if ((firstLetter == 'f')&&(secondLetter == 'e')&&(thirdLetter == 'b'))

  outputMonth_num = 2;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'r'))

  outputMonth_num = 3;

if ((firstLetter = 'a')&&(secondLetter == 'p')&&(thirdLetter == 'r'))

  outputMonth_num = 4;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'y'))

  outputMonth_num = 5;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(thirdLetter == 'n'))

  outputMonth_num = 6;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(.thirdLetter == 'l'))

  outputMonth_num = 7;

if ((firstLetter == 'a')&&(secondLetter == 'u')&&(thirdLetter == 'g'))

  outputMonth_num = 8;

if ((firstLetter == 's')&&(secondLetter == 'e')&&(thirdLetter == 'p'))

  outputMonth_num = 9;

if ((firstLetter == 'o')&&(secondLetter == 'c')&&(thirdLetter == 't'))

  outputMonth_num = 10;

if ((firstLetter == 'n')&&(secondLetter == 'o')&&(thirdLetter == 'v'))

 outputMonth_num = 11;

if ((firstLetter == 'd')&&(secondLetter == 'e')&&(thirdLetter == 'c'))

 outputMonth_num = 12;

}

 

Month::inputMonthByNumber

{

if (Month_num > 12 && Month_num < 1)

cout << "Invalid number for Month, please choose 1-12)\n";

}

 

void Month::outputMonth_num()

{

 if (month >= 1 && month <= 12)

   cout ><< "Month: " << month << endl;

 else

   cout << "Error - The month is not a valid!" << endl;

}

 

void Month::outputMonthLetters()

{

 switch (month)

   {

   case 1:

     cout << "Jan" << endl;

     break;

   case 2:

     cout << "Feb" << endl;

     break;

   case 3:

     cout << "Mar" << endl;

     break;

   case 4:

     cout << "Apr" << endl;

     break;

   case 5:

     cout << "May" << endl;

     break;

   case 6:

     cout << "Jun" << endl;

     break;

   case 7:

     cout << "Jul" << endl;

     break;

   case 8:

     cout << "Aug" << endl;

     break;

   case 9:  

     cout << "Sep" << endl;

     break;

   case 10:

     cout << "Oct" << endl;

     break;

   case 11:

     cout << "Nov" << endl;

     break;

   case 12:

     cout << "Dec" << endl;

     break;

   default:

     cout << "Error - the month is not a valid!" << endl;

   }

}

7 0
3 years ago
Which of the following bonding is the strongest? (a) lonic bonding (b) Metallic bonding (c) Covalent bonding with some van der W
OLEGan [10]

Answer:

(a) lonic bonding

Explanation:

The Strongest chemical bond is the ionic bond ,

Because ionic bond is bound by strong electrostatic interactions ,

The ionic bond forms crystal lattice structure which are bounded by  electrostatic interactions but the covalent bond is formed by the van der waal forces .

Hence , ionic bond is stronger than covalent bond .

7 0
3 years ago
Consider a 6-bit cyclic redundancy check (CRC) generator, G = 100101, and suppose that D = 1000100100. 1. What is the value of R
dmitriy555 [2]

Answer:

The value of R is 10101

Explanation:

As per the given data

D = 1000100100

G = 100101

Redundant bit = 6-bits - 1-bit = 5-bits

No add fice zero to D

D = 100010010000000

Now calculate R as follow

R = D / G

R = 100010010000000 / 100101

R = 10101

Workings are attached with this question

3 0
3 years ago
A keyboard, monitor and mouse are all considered as computer hardware and a program is known as a software.
Iteru [2.4K]

Answer:

This should be true because program is a software and mouse and keyboard are specific computer hardware to make your exsperience with a computer more efficent and faster.

5 0
3 years ago
Other questions:
  • The sum ofall microscopic forms of energy of a system is quantified as flow energy. a)True b) False
    5·1 answer
  • Consider a cubical furnace with a side length of 3 m. The top surface is maintained at 700 K. The base surface has emissivity of
    13·1 answer
  • A 6-pole, 50 Hz squirrel cage induction motor has rotor resistance and standstill reactance referred to stator of 0.2 ohm and 1
    7·1 answer
  • When -iron is subjected to an atmosphere of hydrogen gas, the concentration of hydrogen in the iron, CH (in weight percent), is
    5·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
  • HELP PLEASE!!!!!!!!!!!
    5·2 answers
  • Question 5(Multiple Choice Worth 2 points)
    10·1 answer
  • Consider a building whose annual air-conditioning load is estimated to be 40,000 kWh in an area where the unit cost of electrici
    8·1 answer
  • Describe two characteristics that bridges and skyscrapers have in common.
    10·1 answer
  • How does the Ivanpah Solar Plant make electricity?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!