HFSS lumped RLC boundary issue #6019
-
Hi everyone, here's what I've tried:
When I run the analysis I see that the HFSS variable is updated correctly but the problem is that in the RLC boundary the value is constant (the default 1pF defined at the beginning). I've also tried defining the rlc_params this way:
but it causes an error. Manually changing the value inside HFSS to the variable name (and removing the units) works but that kind of ruins the automation. Is there a way to link the HFSS variable into the capacitance value of the RLC boundary? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Transferring discussion to PyAEDT repository |
Beta Was this translation helpful? Give feedback.
-
Hi @idoy26 , I would use the object oriented programming capabilities of PyAEDT: bound = self.aedtapp.assign_lumped_rlc_to_sheet(rect.name, start_direction=self.aedtapp.AxisDir.XNeg, name="rlc", **rlc_params) bound.properties["Capacitance"] = "capacitance" Then the boundary will be updated with the parameter :) |
Beta Was this translation helpful? Give feedback.
Hi @idoy26 ,
I would use the object oriented programming capabilities of PyAEDT:
bound = self.aedtapp.assign_lumped_rlc_to_sheet(rect.name, start_direction=self.aedtapp.AxisDir.XNeg, name="rlc", **rlc_params)
bound.properties["Capacitance"] = "capacitance"
Then the boundary will be updated with the parameter :)