Physics for computer science completed assignments, IE University, bachelor of computer science and AI. The four assignments include completed exercises with calculations, formulas and visuals.
Assignment 1: Static fields, Magnetic fields, Electrical fields
Assignment 2: Current, EMF, Magnetic ...
Assignment 3
Beatrice Mossberg
Problem 1
Given the circuit represented in the figure below, calculate:
a) The current going through and . (10 points)
R1 R2
System of equations:
file:///Users/bestricemossberg/Downloads/module_3 (2).html 1/6
, 2022-03-20 19:16 module_3
I1 (45) + I2 (−10) + I3 (20) = 0
I2 = 0.1
I 1(20) + I2 (5) + I3 (25) = 15
In [13]:
import numpy as np
from numpy.linalg import solve
#Solve the system of equations
A=np.matrix('45,-10,20;0,1,0;20,5,25')
b=np.matrix('0;0.1;15')
x=solve(A,b)
print(x)
[[-0.36551724]
[ 0.1 ]
[ 0.87241379]]
In [14]:
I1=-0.36551724
I2=0.1
I3=0.87241379
IR1=I1-I2
IR2=I2+I3
print(round(IR1, 4), "A")
print(round(IR2, 4), "A")
-0.4655 A
0.9724 A
The current through R1 is approximately -0.47 A in a counter clockwise direction toward
node c and 0.47 A in a clockwise direction away from node c.
The current through R2 is approximately 0.97 A in a counter clockwise direction toward node
A.
b) The electric potential measured at node C. (5 points)
Voordelen van het kopen van samenvattingen bij Stuvia op een rij:
Verzekerd van kwaliteit door reviews
Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!
Snel en makkelijk kopen
Je betaalt supersnel en eenmalig met iDeal, creditcard of Stuvia-tegoed voor de samenvatting. Zonder lidmaatschap.
Focus op de essentie
Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!
Veelgestelde vragen
Wat krijg ik als ik dit document koop?
Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.
Tevredenheidsgarantie: hoe werkt dat?
Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.
Van wie koop ik deze samenvatting?
Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper beatricemossberg. Stuvia faciliteert de betaling aan de verkoper.
Zit ik meteen vast aan een abonnement?
Nee, je koopt alleen deze samenvatting voor €6,99. Je zit daarna nergens aan vast.