Skip to content

Commit cedcd2f

Browse files
Fixed bug coming from moving renderers (#956)
1 parent 6a681e6 commit cedcd2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qiskit_metal/renderers/renderer_ansys_pyaedt/hfss_renderer_eigenmode_aedt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,8 @@ def setup_jjs_for_epr(self):
361361
### Parsing Data ###
362362
component = str(row['component'])
363363
name = str(row['name'])
364-
inductance = row['aedt_hfss_eigenmode_inductance'] # Lj in Henries
365-
capacitance = row['aedt_hfss_eigenmode_capacitance'] # Cj in Farads
364+
inductance = row['aedt_hfss_inductance'] # Lj in Henries
365+
capacitance = row['aedt_hfss_capacitance'] # Cj in Farads
366366

367367
# Get ANSYS > Model > Sheet corresponding to JJs
368368
rect_name = 'JJ_rect_Lj_' + component + '_' + name

0 commit comments

Comments
 (0)