Open AlesyaSokol opened 2 years ago
Hi @AlesyaSokol thanks for reporting your issue.
In SQcircuit, the edges that you put in the elements
should form a connected graph (the node 3 is not connected to anywhere in your code) . In your circuit, two fluxoniums share a common ground which is 0 node. You should change the elements
dictionary as follow (I changed the (2, 3) edge to (0, 2) edge):
elements = {
(0, 1): [JJ1, L1, C1],
(1, 2): [Cg],
(0, 2): [JJ2, L2, C2]
}
Let me know if you have any further questions.
Hello,
I try to simulate 2 capacitively coupled fluxoniums. I do it using the following code:
However, it gives an error:
I use SQcircuit version 0.0.10 and python 3.9.12