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
Dmitrij [34]
3 years ago
13

Use phasor techniques to determine the impedance seen by the source given that R = 4 Ω, C = 12 μF, L = 6 mH and ω = 2000 rad/sec

. Then determine the current supplied by the source given that V = 12 <0o v. The equivalent impedance seen by the source is Z = ∠ o Ω. (Round the magnitude to three decimal places and the angle to two decimal places.) The current supplied by the source is I = ∠ o A. (Round the magnitude to three decimal places and the angle to two decimal places.)
Engineering
1 answer:
Zielflug [23.3K]3 years ago
7 0

Answer:

Z = 29.938Ω ∠22.04°

I = 2.494A

Explanation:

Impedance Z is defined as the total opposition to the flow of current in an AC circuit. In an R-L-C AC circuit, Impedance is expressed as shown:

Z² = R²+(Xl-Xc)²

Z = √R²+(Xl-Xc)²

R is the resistance = 4Ω

Xl is the inductive reactance = ωL

Xc is the capacitive reactance =

1/ωc

Given C = 12 μF, L = 6 mH and ω = 2000 rad/sec

Xl = 2000×6×10^-3

Xl = 12Ω

Xc = 1/2000×12×10^-6

Xc = 1/24000×10^-6

Xc = 1/0.024

Xc = 41.67Ω

Z = √4²+(12-41.67)²

Z = √16+880.31

Z = √896.31

Z = 29.938Ω (to 3dp)

θ = tan^-1(Xl-Xc)/R

θ = tan^-1(12-41.67)/12

θ = tan^-1(-29.67)/12

θ = tan^-1 -2.47

θ = -67.96°

θ = 90-67.96

θ = 22.04° (to 2dp)

To determine the current, we will use the relationship

V = IZ

I =V/Z

Given V = 12V

I = 29.93/12

I = 2.494A (3dp)

You might be interested in
These are the most widely used tools and most often abuse tool​
Mars2501 [29]
Where is the picture in this problem? How am I supposed to answer if I can’t see any footage taken from this problem.
4 0
2 years ago
Read 2 more answers
(a) A non-cold-worked 1040 steel cylindrical rod has an initial length of 100 mm and initial diameter of 7.50 mm. is to be defor
serg [7]

Answer:

A) 1040 steel is not a possible candidate for this application

B) 35.94%

Explanation:

Initial length = 100 mm =  0.1 m

Initial diameter ( d ) = 7.5 mm = 0.0075 m

Tensile load ( p ) = 18,000 N

Condition : The 1040 steel must not experience plastic deformation or a diameter reduction of more than 1.5 * 10^-5 m

<u>A) would the 1040 steel be a possible candidate for this application</u>

<em>Yield strength of 1040 steel < stress  ( in order to be a possible candidate )</em>

stress = p / A0 = ( 18000 ) / ( \frac{\pi }{4} ) * 0.0075^2

                      = 18,000 / (4.418 * 10^-5 )   =  407.424 MPa

Yield strength of 1040 steel = 450 MPa

stress = 407.424 MPa

∴ Yield strength ( 450 MPa ) > stress ( 407.424 MPa )  

Therefore 1040 steel is not a possible candidate for this application

<u>B) Determine How much cold work would be required to reduce the diameter of the steel to 6.0 mm</u>

Area1 = ( \frac{\pi }{4} ) ( 0.006 )^2 = 2.83 * 10^-5 m^2

therefore % of cold work done = ( A0 - A1 ) / A0  * 100 = 35.94%

6 0
2 years ago
Write a C program that will update a bank balance. A user cannot withdraw an amount ofmoney that is more than the current balanc
GarryVolchara [31]

Answer:

Explanation:

Sample output:

BANK ACCOUT PROGRAM!

----------------------------------

Enter the old balance: 1234.50

Enter the transactions now.

Enter an F for the transaction type when you are finished.

Transaction Type (D=deposit, W=withdrawal, F=finished): D

Amount: 568.34

Transaction Type (D=deposit, W=withdrawal, F=finished): W

Amount: 25.68

Transaction Type (D=deposit, W=withdrawal, F=finished): W

Amount: 167.40

Transaction Type (D=deposit, W=withdrawal, F=finished): F

Your ending balance is $1609.76

Program is ending

Code to copy:

// include the necessary header files.

#include<stdio.h>

// Definition of the function

float withdraw(float account_balance, float withdraw_amount)

{

// Calculate the balace amount.

float balance_amount = account_balance - withdraw_amount;

// Check whether the withdraw amount

// is greater than 0 or not.

if (withdraw_amount > 0 && balance_amount >= 0)

{

// Assign value.

account_balance = balance_amount;

}

// return account_balance

return account_balance;

}

// Definition of the function deposit.

float deposit(float account_balance, float deposit_amount)

{

// Check whether the deposit amount is greater than zero

if (deposit_amount > 0)

{

// Update account balance.

account_balance = account_balance + deposit_amount;

}

// return account balance.

return account_balance;

}

int main()

{

// Declare the variables.

float account_balance;

float deposit_amount;

float withdrawl_amount;

char input;

// display the statement on console.

printf("BANK ACCOUT PROGRAM!\n");

printf("----------------------------------\n");

// prompt the user to enter the old balance.

printf("Enter the old balance: ");

// Input balance

scanf("%f", &account_balance);

// Display the statement on console.

printf("Enter the transactions now.\n");

printf("Enter an F for the transaction type when you are finished.\n");

// Start the do while loop

do

{

// prompt the user to enter transaction type.

printf("Transaction Type (D=deposit, W=withdrawal, F=finished): ");

// Input type.

scanf(" %c", &input);

// Check if the input is D

if (input == 'D')

{

// Prompt the user to input amount.

printf("Amount: ");

// input amount.

scanf("%f", &deposit_amount);

// Call to the function.

account_balance=deposit(account_balance,deposit_amount);

}

// Check if the input is W

if (input == 'W')

{

printf("Amount: ");

scanf("%f", &withdrawl_amount);

// Call to the function.

account_balance = withdraw(account_balance,withdrawl_amount);

}

// Check if the input is F

if (input == 'F')

{

// Dispplay the amount.

printf("Your ending balance is $%.2f\n", account_balance);

printf("Program is ending\n");

}

// End the while loop

} while(input != 'F');

return 0;

}

the picture uploaded below shows the program screenshot.

cheers, i hope this helps.

5 0
3 years ago
Can a 1½ " conduit, with a total area of 2.04 square inches, be filled with wires that total 0.93 square inches if the maximum f
Papessa [141]

Answer:

it is not possible to place the wires in the condui

Explanation:

given data

total area = 2.04 square inches

wires total area = 0.93 square inches

maximum fill conduit =  40%

to find out

Can it is possible place wire in conduit conduit

solution

we know maximum fill is 40%

so here first we get total area of conduit that will be

total area of conduit = 40% × 2.04

total area of conduit = 0.816 square inches

but this area is less than required area of wire that is 0.93 square inches

so we can say it is not possible to place the wires in the conduit

4 0
3 years ago
Describe the cycle that purifies drinking water. 40 points
Sunny_sXe [5.5K]
Umm the Water cycle sorry I’m trying
5 0
3 years ago
Read 2 more answers
Other questions:
  • a 120 volt,13 watts fluorescent light bulb is operated from 6pm until 10pm every day the cost per kilo watt hour is $0.07. what
    11·1 answer
  • Stainless steel ball bearings (rho = 8085 kg/m3 and cp = 0.480 kJ/kg·°C) having a diameter of 1.2 cm are to be quenched in water
    10·2 answers
  • Question 5
    7·2 answers
  • The shear force diagram is always the slope of the bending moment diagram. a)True b)- False
    14·1 answer
  • W<br>n só<br>i<br>Eo<br>E<br>find the transfer function​
    9·1 answer
  • 5 kg of a wet steam has a volume of 2 m3
    8·1 answer
  • Random question, does anyone here use Lego, do not answer unless that is a yes
    15·2 answers
  • Which state did NOT have people that got sick from the
    10·1 answer
  • Can you help me with this task/homework.
    11·1 answer
  • The ratio between the modulating signal voltage and the carrier voltage is called?.
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!