PyAEDT/Icepak: HighSide PCB radiation settings not applied #6658
-
Hi, I’m running into an issue in PyAEDT / Icepak when setting radiation parameters on a PCB imported with
Printed properties (after setting):
So both dictionaries look correct, but only LowSide updates all settings in Icepak. On the HighSide, only How can I also apply Thanks for any pointers or fixes! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @emeusel5 , I also noticed this at my end. I noticed that there is another way to update the components. Instead of loading the pcb as user defined component. Load PCB as Native component. pcb_nat = ipk.native_components["PCB1"] Please try this at your end and let me know if it works Regards, |
Beta Was this translation helpful? Give feedback.
Hi @emeusel5 , I also noticed this at my end. I noticed that there is another way to update the components. Instead of loading the pcb as user defined component. Load PCB as Native component.
pcb_nat = ipk.native_components["PCB1"]
pcb_nat.set_low_side_radiation(enabled = True, surface_material="Plastics-infrared Opaque", radiate_to_ref_temperature=True)
pcb_nat.update()
Please try this at your end and let me know if it works
Regards,
Siva