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
Gennadij [26K]
3 years ago
15

The current through a 10-mH inductor is 10e−t∕2 A. Find the voltage and the power at t = 8 s.

Engineering
2 answers:
NNADVOKAT [17]3 years ago
7 0

Answer:

voltage = -0.01116V

power = -0.0249W

Explanation:

The voltage v(t) across an inductor is given by;

v(t) = L\frac{di(t)}{dt}             -----------(i)

Where;

L = inductance of the inductor

i(t) = current through the inductor at a given time

t = time for the flow of current

From the question:

i(t) = 10e^{-t/2}A

L = 10mH = 10 x 10⁻³H

Substitute these values into equation (i) as follows;

v(t) = (10*10^{-3})\frac{d(10e^{-t/2})}{dt}

Solve the differential

v(t) = (10*10^{-3})\frac{-1*10}{2} (e^{-t/2})

v(t) = -0.05 e^{-t/2}

At t = 8s

v(t) = v(8) = -0.05 e^{-8/2}

v(t) = v(8) = -0.05 e^{-4}

v(t) = -0.05 x 0.223

v(t) = -0.01116V

(b) To get the power, we use the following relation:

p(t) = i(t) x v(t)

Power at t = 8

p(8) = i(8) x v(8)

i(8) = i(t = 8) = 10e^{-8/2}

i(8) = 10e^{-4}

i(8) = 10 x 0.223

i(8) = 2.23

Therefore,

p(8) = 2.23 x -0.01116

p(8) = -0.0249W

Artyom0805 [142]3 years ago
4 0

Answer:

The voltage is - 0.9158 mV

The power is - 0.1677 mW

Explanation:

Given;

current through the inductor, i(t)  = 10e^{-t/2} -----equation (1)

inductance, L = 10 mH

given time, t  = 8 s

The voltage across the inductor is given by;

V_L = L\frac{di}{dt} \\\\V_L = (10 *10^{-3})\frac{d}{dt} (10e^{-t/2})\\\\V_L = (10 *10^{-3})\frac{10}{-2}(e^{-t/2})\\\\ V_L = -0.05e^{-t/2} \ ----equation (2)

when t = 8 s, the voltage will be ;

V_L = -0.05 e^{-t/2}\\\\V_L = -0.05 e^{-8/2}\\\\V_L = -0.05 e^{-4}\\\\V_L = -9.158 *10^{-4} \ V\\\\V_L = -0.9158 \ mV

Power is given by;

P = I V

When t = 8, the current "I" is given by;

i(t) = 10e^{-t/2}\\\\i(8) = 10e^{-8/2}\\\\I = 10e^{-4}\\\\I = 0.1832 \ A

P = 0.1832 x (-9.158 x 10⁻⁴)

P = -1.677 x 10⁻⁴ W

P = -0.1677 mW

You might be interested in
An engineer is working with archeologists to create a realistic Roman village in a museum. The plan for a balance in a marketpla
NeTakaya

Answer:

The minimum volume requirement for the granite stones is 1543.64 cm³

Explanation:

1 granite stone weighs 10 denarium

100 granted stones will weigh 1000 denarium

1 denarium = 3.396g

1000 denarium = 3396g.

But we're told that 20% of material is lost during the making of these stones.

This means the mass calculated represents 80% of the original mass requirement, m.

80% of m = 3396

m = 3396/0.8 = 4425 g

This mass represents the minimum mass requirement for making the stones.

To now obtain the corresponding minimum volume requirement

Density = mass/volume

Volume = mass/density = 4425/2.75 = 1543.64 cm³

Hope this helps!!!

3 0
3 years ago
In this assignment, you will write a user interface for your calculator using JavaFX. Your graphical user interface (GUI) should
Zolol [24]

Answer:

Kindly note that, you're to replace "at" with shift 2 as the brainly text editor can't take the symbol

Explanation:

import javafx.application.Application;

import javafx.stage.Stage;

import javafx.scene.Group;

import javafx.scene.Scene;

import javafx.scene.layout.VBox;

import javafx.scene.layout.HBox;

import javafx.scene.control.TextField;

import javafx.scene.control.Button;

public class Calculator extends Application {

public static void main(String[] args) {

// TODO Auto-generated method stub

launch(args);

}

"at"Override

public void start(Stage primaryStage) throws Exception {

// TODO Auto-generated method stub

Group root = new Group();

VBox mainBox = new VBox();

HBox inpBox = new HBox();

TextField txtInput = new TextField ();

txtInput.setEditable(false);

txtInput.setStyle("-fx-font: 20 mono-spaced;");

txtInput.setText("0.0");

txtInput.setMinHeight(20);

txtInput.setMinWidth(200);

inpBox.getChildren().add(txtInput);

Scene scene = new Scene(root, 200, 294);

mainBox.getChildren().add(inpBox);

HBox rowOne = new HBox();

Button btn7 = new Button("7");

btn7.setMinWidth(50);

btn7.setMinHeight(50);

Button btn8 = new Button("8");

btn8.setMinWidth(50);

btn8.setMinHeight(50);

Button btn9 = new Button("9");

btn9.setMinWidth(50);

btn9.setMinHeight(50);

Button btnDiv = new Button("/");

btnDiv.setMinWidth(50);

btnDiv.setMinHeight(50);

rowOne.getChildren().addAll(btn7,btn8,btn9,btnDiv);

mainBox.getChildren().add(rowOne);

HBox rowTwo = new HBox();

Button btn4 = new Button("4");

btn4.setMinWidth(50);

btn4.setMinHeight(50);

Button btn5 = new Button("5");

btn5.setMinWidth(50);

btn5.setMinHeight(50);

Button btn6 = new Button("6");

btn6.setMinWidth(50);

btn6.setMinHeight(50);

Button btnMul = new Button("*");

btnMul.setMinWidth(50);

btnMul.setMinHeight(50);

rowTwo.getChildren().addAll(btn4,btn5,btn6,btnMul);

mainBox.getChildren().add(rowTwo);

HBox rowThree = new HBox();

Button btn1 = new Button("1");

btn1.setMinWidth(50);

btn1.setMinHeight(50);

Button btn2 = new Button("2");

btn2.setMinWidth(50);

btn2.setMinHeight(50);

Button btn3 = new Button("3");

btn3.setMinWidth(50);

btn3.setMinHeight(50);

Button btnSub = new Button("-");

btnSub.setMinWidth(50);

btnSub.setMinHeight(50);

rowThree.getChildren().addAll(btn1,btn2,btn3,btnSub);

mainBox.getChildren().add(rowThree);

HBox rowFour = new HBox();

Button btnC = new Button("C");

btnC.setMinWidth(50);

btnC.setMinHeight(50);

Button btn0 = new Button("0");

btn0.setMinWidth(50);

btn0.setMinHeight(50);

Button btnDot = new Button(".");

btnDot.setMinWidth(50);

btnDot.setMinHeight(50);

Button btnAdd = new Button("+");

btnAdd.setMinWidth(50);

btnAdd.setMinHeight(50);

rowFour.getChildren().addAll(btnC,btn0,btnDot,btnAdd);

mainBox.getChildren().add(rowFour);

HBox rowFive = new HBox();

Button btnEq = new Button("=");

btnEq.setMinWidth(200);

btnEq.setMinHeight(50);

rowFive.getChildren().add(btnEq);

mainBox.getChildren().add(rowFive);

root.getChildren().add(mainBox);

primaryStage.setScene(scene);

primaryStage.setTitle("GUI Calculator");

primaryStage.show();

}

}

4 0
3 years ago
7.35 and 7.36 For the beam and loading shown, (a) draw the shear and bending-moment diagrams, (b) determine the maximum absolute
Crank

Maximum absolute values of the shear = 28 KN

Maximum absolute values of bending moment = 5.7 KN.m

<h3>How to draw Shear Force and Bending Moment Diagram?</h3>

A) We can see the beam loaded in the first image attached.

For the shear diagram, let us calculate the shear from point load to point load.

From A to C, summing vertical to zero gives; ∑fy = 0: -20 - V = 0

V = -20 KN

From C to D, summing vertical to zero gives; ∑fy = 0: -20 + 48 - V = 0

V = 28 KN

From D to E, summing vertical to zero gives; ∑fy = 0: -20 + 48 - 20 - V = 0

V = 8 KN

From E to B, summing vertical to zero gives; ∑fy = 0: -20 + 48 - 20 - 20 - V = 0

V = -12 KN

For the bending moment diagram, let us calculate the bending moment from point load to point load.

At point A, the bending moment would be zero. Thus, M_A = 0 KN.m

At point C, taking moment about point C and equating to zero gives;

M_C = 0. Thus; 20(0.225) + M = 0

M = -4.5 KN.m

At point D, taking moment about point D and equating to zero gives;

M_D = 0. Thus; 20(0.525) - 48(0.3) + M = 0

M = 3.9 KN.m

At point E, taking moment about point E and equating to zero gives;

M_D = 0. Thus; 20(0.75) - 48(0.525) + 20(0.225) + M = 0

M = 5.7 KN.m

At point B, taking moment about point E and equating to zero gives;

M_E = 0. Thus; 20(1.05) - 48(0.825) + 20(0.525) + (20 * 0.3) + M = 0

M = 2.1 KN.m

2) From the attached diagrams, we can deduce that;

Maximum absolute values of the shear = 28 KN

Maximum absolute values of bending moment = 5.7 KN.m

Read more about shear force & bending moment diagram at; brainly.com/question/14834487

#SPJ1

4 0
1 year ago
A machine raises 20kg of water through a height of 50m in 10secs. What is the power of the machine.​
Tomtit [17]

Answer:

hhahhhwghwhwhwhwjwnwjnnnnwnwwnw

Explanation:

jwkwkkwoiwiwiwiwiwowwiwowowiiiiwuuwuwgeevehehsvhsvwhbhhehehwgjjwhwhjwjqwjjuuuwi####!\\\\e

5 0
3 years ago
Miller Indices:
svetlana [45]

Answer:

A) The sketches for the required planes were drawn in the first attachment [1 2 1] and the second attachment [1 2 -4].

B) The closest distance between planes are d₁₂₁=a/√6 and d₁₂₋₄=a/√21 with  lattice constant a.

C) Five posible directions that electrons can move on the surface of a [1 0 0] silicon crystal are: |0 0 1|, |0 1 3|, |0 1 1|, |0 3 1| and |0 0 1|.

Compleated question:

1. Miller Indices:

a. Sketch (on separate plots) the (121) and (12-4) planes for a face centered cubic crystal structure.

b. What are the closest distances between planes (called d₁₂₁ and d₁₂₋₄)?

c. List five possible directions (using the Miller Indices) the electron can move on the surface of a (100) silicon crystal.

Explanation:

A)To draw a plane in a face centered cubic lattice, you have to follow these instructions:

1- the cube has 3 main directions called "a", "b" and "c" (as shown in the first attachment) and the planes has 3 main coeficients shown as [l m n]

2- The coordinates of that plane are written as: π:[1/a₀ 1/b₀ 1/c₀] (if one of the coordinates is 0, for example [1 1 0], c₀ is ∞, therefore that plane never cross the direction c).

3- Identify the points a₀, b₀, and c₀ at the plane that crosses this main directions and point them in the cubic cell.

4- Join the points.

<u>In this case, for [1 2 1]:</u>

l=1=1/a_0 \rightarrow a_0=1

m=2=2/b_0 \rightarrow b_0=0.5

n=1=1/c_0 \rightarrow c_0=1

<u>for </u>[1 2 \overline{4}]<u>:</u>

l=1=1/a_0 \rightarrow a_0=1

m=2=2/b_0 \rightarrow b_0=0.5

n=\overline{4}=-4/c_0 \rightarrow c_0=-0.25

B) The closest distance between planes with the same Miller indices can be calculated as:

With \pi:[l m n] ,the distance is d_{lmn}= \displaystyle \frac{a}{\sqrt{l^2+m^2+n^2}} with lattice constant a.

<u>In this case, for [1 2 1]:</u>

<u />d_{121}= \displaystyle \frac{a}{\sqrt{1^2+2^2+1^2}}=\frac{a}{\sqrt{6}}=0.41a<u />

<u>for </u>[1 2 \overline{4}]<u>:</u>

d_{12\overline{4}}= \displaystyle \frac{a}{\sqrt{1^2+2^2+(-4)^2}}=\frac{a}{\sqrt{21}}=0.22a

C) The possible directions that electrons can move on a surface of a crystallographic plane are the directions contain in that plane that point in the direction between nuclei. In a silicon crystal, an fcc structure, in the plane [1 0 0], we can point in the directions between the nuclei in the vertex (0 0 0) and e nuclei in each other vertex. Also, we can point in the direction between the nuclei in the vertex (0 0 0) and e nuclei in the center of the face of the adjacent crystals above and sideways. Therefore:

dir₁=|0 0 1|

dir₂=|0 0.5 1.5|≡|0 1 3|

dir₃=|0 1 1|

dir₄=|0 1.5 0.5|≡|0 3 1|

dir₅=|0 0 1|

5 0
3 years ago
Other questions:
  • I need solution for this question please<br>Select the right answer ​
    8·2 answers
  • Vapor lock occurs when the gasoline is cooled and forms a gel, preventing fuel flow and
    7·2 answers
  • Due at 11:59pm please help
    14·1 answer
  • A driver on a leveltwo-lane highway observes a
    6·1 answer
  • The component of a fluid system where a fluid is stored, but not under pressure, is called a container.
    5·1 answer
  • Compute the volume percent of graphite, VGr, in a 3.2 wt% C cast iron, assuming that all the carbon exists as the graphite phase
    8·1 answer
  • 4 Error-Correcting Polynomials (a) Alice has a length 8 message to Bob. There are 2 communication channels available. When n pac
    6·1 answer
  • Do you think the industrial revolution helped or hurt workers? Why?
    8·1 answer
  • A step-up transformer has 20 primary turns and 400 secondary turns. If the primary current is 30 A, what is the secondary curren
    15·1 answer
  • A company intends to market a new product and it estimates that there is a 20% chance that it will be first in the market
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!