Calculate simple circuit?

Topper

Addon Developer
Addon Developer
Donator
Joined
Mar 28, 2008
Messages
666
Reaction score
20
Points
33
Hello,


is it possible to calculate I1, I2, I3 and I4 assumed that the resistance of the wires is negligible small (let's say they are superconductors :lol:)?
Let's say voltage is 12V if required.


Sorry but I don't get it at the moment...


circuit2.png
 
Last edited:

GLS

Well-known member
Orbiter Contributor
Addon Developer
Joined
Mar 22, 2008
Messages
5,915
Reaction score
2,919
Points
188
Website
github.com
(I'm half asleep, so this might not be correct)
Try solving this system:
Code:
i4 + i3 = 4
i1 - i2 = 8
i2 - i3 = 1
i4 + i1 = 15


---------- Post added at 11:41 AM ---------- Previous post was at 01:57 AM ----------

(I'm half asleep, so this might not be correct)
Try solving this system:
Code:
i4 + i3 = 6
i1 - i2 = 8
i2 - i3 = 1
i4 + i1 = 15

*now awake*
I corrected the system.
 

Topper

Addon Developer
Addon Developer
Donator
Joined
Mar 28, 2008
Messages
666
Reaction score
20
Points
33
by solving this system I get:


I1= -I4 + 15
I2= -I4 + 7
I3= -I4 + 6
I4= I4


but the question is waht's the value of I4?
And can we assume that I1 = -I3 and I4 = I2 if all conductors have no resistance ?
 
Last edited:

GLS

Well-known member
Orbiter Contributor
Addon Developer
Joined
Mar 22, 2008
Messages
5,915
Reaction score
2,919
Points
188
Website
github.com
but the question is waht's the value of I4?
I'd guess so, as those 4 nodes, assuming no wire resistance, behave like just one. :shrug:
 

Topper

Addon Developer
Addon Developer
Donator
Joined
Mar 28, 2008
Messages
666
Reaction score
20
Points
33
I'd guess so, as those 4 nodes, assuming no wire resistance, behave like just one. :shrug:



That were also my thoughts.
So if R=0, then U=R*I=0,
but I=U/R, so it's a division by zero, thats not allowed, even 0/0 is not allowed!


This is why I got confused assuming that these are superconductors.
And this brought me to this Topic: https://en.wikipedia.org/wiki/London_equations, I don't want to say I can understand that ;-)

While it is important to note that the above equations cannot be formally derived,[10] the Londons did follow a certain intuitive logic in the formulation of their theory. Substances across a stunningly wide range of composition behave roughly according to Ohm's law, which states that current is proportional to electric field. However, such a linear relationship is impossible in a superconductor for, almost by definition, the electrons in a superconductor flow with no resistance whatsoever.
 
Last edited:

Miner1

New member
Joined
Jun 9, 2008
Messages
25
Reaction score
0
Points
0
I think the problem here is that Kirchhoff's current law produces a set on linearly dependent equations for the loop. You need another independent condition. Kirchhoff's voltage law would, assuming no voltage drop between the nodes, cause the loop to collapse into just a single node.

Another possible path is to assume that the red triangles are diodes that only allow current in the direction indicated. With this assumption, I've found two possible solutions.

i4 = 0 => i1 = 15, i2 = 7, and i3 = 6

and

i3 = 0 => i1 = 9, i2 = 1, and i4 = 6
 
Top