We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I get the name of the network_2R? Please add a name attribute for the method create_network_blocks.
from ansys.aedt.core import Icepak ipk = Icepak() box1 = ipk.modeler.create_box([0, 0, 0], [15, 15, 1], 'box1') box2 = ipk.modeler.create_box([6, 6, 1], [3, 3, 1], 'box2') flag = 2 if flag == 1: network_2R = ipk.create_two_resistor_network_block( object_name=box1.name, pcb=box2.name, power='0.1W', rjb=1, rjc=2 ) print(network_2R.name) elif flag == 2: network_2R = ipk.create_network_blocks(input_list=[[box1.name, 1, 2, 0.1]], gravity_dir=2, top=0 ) print(network_2R)
No response
The text was updated successfully, but these errors were encountered:
If you have questions, please open a discussion and not a bug. Thank you.
Sorry, something went wrong.
No branches or pull requests
Description of the feature
How can I get the name of the network_2R? Please add a name attribute for the method create_network_blocks.
Steps for implementing the feature
No response
Useful links and references
No response
The text was updated successfully, but these errors were encountered: