Skip to content

Commit

Permalink
Fixed bug coming from moving renderers (#956)
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkmiyamoto authored Jun 20, 2023
1 parent 6a681e6 commit cedcd2f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ def setup_jjs_for_epr(self):
### Parsing Data ###
component = str(row['component'])
name = str(row['name'])
inductance = row['aedt_hfss_eigenmode_inductance'] # Lj in Henries
capacitance = row['aedt_hfss_eigenmode_capacitance'] # Cj in Farads
inductance = row['aedt_hfss_inductance'] # Lj in Henries
capacitance = row['aedt_hfss_capacitance'] # Cj in Farads

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

0 comments on commit cedcd2f

Please sign in to comment.