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)
Los beneficios de comprar resúmenes en Stuvia estan en línea:
Garantiza la calidad de los comentarios
Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!
Compra fácil y rápido
Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.
Enfócate en lo más importante
Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable.
Así llegas a la conclusión rapidamente!
Preguntas frecuentes
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
100% de satisfacción garantizada: ¿Cómo funciona?
Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.
Who am I buying this summary from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller beatricemossberg. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy this summary for 6,99 €. You're not tied to anything after your purchase.