Skip to content

Commit 6c1ae94

Browse files
maxcapodi78maxcapodi78
maxcapodi78
authored and
maxcapodi78
committed
Merge branch 'main' into improve_remote_file_access
2 parents 9d1d04c + cdf0a38 commit 6c1ae94

37 files changed

+271
-147
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ repos:
4848

4949
# validate GitHub workflow files
5050
- repo: https://github.com/python-jsonschema/check-jsonschema
51-
rev: 0.28.0
51+
rev: 0.28.1
5252
hooks:
5353
- id: check-github-workflows
5454

_unittest/test_02_3D_modeler.py

-2
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,6 @@ def test_30_create_waveguide(self):
326326
position, self.aedtapp.AXIS.Z, wgmodel="MYMODEL", wg_length=2000, parametrize_h=True
327327
)
328328
assert not wgfail
329-
pass
330329

331330
def test_31_set_objects_unmodel(self):
332331
assert self.aedtapp.modeler.set_object_model_state("Second_airbox", False)
@@ -663,7 +662,6 @@ def test_45_sweep_along_path(self):
663662
def test_46_section_object(self):
664663
box1 = self.aedtapp.modeler.create_box([-10, -10, -10], [20, 20, 20], "box_to_split")
665664
assert self.aedtapp.modeler.section(box1, 0, create_new=True, section_cross_object=False)
666-
pass
667665

668666
def test_47_sweep_along_vector(self):
669667
sweep_vector = [5, 0, 0]

_unittest/test_04_SBR.py

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ def init(self, aedtapp, local_scratch):
5858
def test_01_open_source(self, source):
5959
assert self.aedtapp.create_sbr_linked_antenna(source, target_cs="feederPosition", fieldtype="farfield")
6060
assert len(self.aedtapp.native_components) == 1
61+
assert self.aedtapp.create_sbr_linked_antenna(
62+
source, target_cs="feederPosition", fieldtype="farfield", source_name="LinkedAntenna"
63+
)
64+
assert len(self.aedtapp.native_components) == 2
6165

6266
def test_02_add_antennas(self):
6367
self.aedtapp.insert_design("add_antennas")

_unittest/test_07_Object3D.py

+2
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,8 @@ def test_07_object_clone_and_get_properties(self):
226226
assert len(new_object.faces) == 6
227227
assert len(new_object.edges) == 12
228228
assert new_object.display_wireframe == initial_object.display_wireframe
229+
new_object.name = "Properties_Box"
230+
assert not new_object.name == "Properties_Box"
229231

230232
def test_08_set_model(self):
231233
o = self.create_copper_box()

_unittest/test_08_Primitives3D.py

-10
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ def create_copper_box(self, name=None):
9898
name = "MyBox"
9999
if self.aedtapp.modeler[name]:
100100
self.aedtapp.modeler.delete(name)
101-
else:
102-
pass
103101
new_object = self.aedtapp.modeler.create_box([0, 0, 0], [10, 10, 5], name, "Copper")
104102
return new_object
105103

@@ -241,8 +239,6 @@ def test_03_create_polyhedron(self):
241239
matname="Aluminum",
242240
)
243241

244-
pass
245-
246242
def test_05_center_and_centroid(self):
247243
o = self.create_copper_box()
248244
tol = 1e-9
@@ -334,7 +330,6 @@ def test_15_create_cylinder(self):
334330
assert o.is3d is True
335331
assert not self.aedtapp.modeler.create_cylinder(axis, [2, 2], radius, height, 8, "MyCyl", "Copper")
336332
assert not self.aedtapp.modeler.create_cylinder(axis, udp, -0.1, height, 8, "MyCyl", "Copper")
337-
pass
338333

339334
def test_16_create_ellipse(self):
340335
udp = self.aedtapp.modeler.Position(5, 3, 8)
@@ -378,7 +373,6 @@ def test_17_create_object_from_edge(self):
378373
of = self.aedtapp.modeler.create_object_from_edge([o4.edges[0], o3.edges[1], o4.edges[1]])
379374
assert of
380375
assert len(of) == 3
381-
pass
382376

383377
def test_18_create_object_from_face(self):
384378
o = self.create_copper_cylinder()
@@ -400,7 +394,6 @@ def test_18_create_object_from_face(self):
400394
of = self.aedtapp.modeler.create_object_from_face([o3.faces[0], o4.faces[1], o4.faces[1], o3.faces[2]])
401395
assert of
402396
assert len(of) == 4
403-
pass
404397

405398
def test_19_create_polyline(self):
406399
udp1 = [0, 0, 0]
@@ -868,8 +861,6 @@ def test_48_insert_polylines_segments_test2(self):
868861

869862
P.insert_segment(position_list=[start_point, insert_point1, insert_point2], segment="Arc")
870863

871-
pass
872-
873864
def test_49_modify_crossection(self):
874865
P = self.aedtapp.modeler.create_polyline(
875866
position_list=[[34.1004, 14.1248, 0], [27.646, 16.7984, 0], [24.9725, 10.3439, 0]],
@@ -1157,7 +1148,6 @@ def test_60_get_edges_on_bounding_box(self):
11571148
def test_61_get_closest_edge_to_position(self):
11581149
my_box = self.create_copper_box("test_closest_edge")
11591150
assert isinstance(self.aedtapp.modeler.get_closest_edgeid_to_position([0.2, 0, 0]), int)
1160-
pass
11611151

11621152
@pytest.mark.skipif(config["NonGraphical"], reason="Not running in non-graphical mode")
11631153
def test_62_import_space_claim(self):

_unittest/test_09_VariableManager.py

-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ def test_02_test_formula(self):
119119
v = self.aedtapp.variable_manager
120120
for var_name in v.variable_names:
121121
print("{} = {}".format(var_name, self.aedtapp[var_name]))
122-
pass
123122
tol = 1e-9
124123
c2pi = math.pi * 2.0
125124
assert abs(v["$PrjVar1"].numeric_value - c2pi) < tol

_unittest/test_12_1_PostProcessing.py

-2
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,6 @@ def test_09n_add_line_from_point(self): # pragma: no cover
459459
assert new_report.limit_lines[0].set_line_properties(
460460
style=style.Dot, width=4, hatch_above=False, violation_emphasis=True, hatch_pixels=1, color=(255, 255, 0)
461461
)
462-
pass
463462

464463
@pytest.mark.skipif(
465464
config["desktopVersion"] < "2022.2", reason="Not working in non-graphical mode in version earlier than 2022.2."
@@ -479,7 +478,6 @@ def test_09o_add_note(self): # pragma: no cover
479478
font_size=10,
480479
color=(255, 0, 0),
481480
)
482-
pass
483481

484482
def test_10_delete_report(self):
485483
plots_number = len(self.aedtapp.post.plots)

_unittest/test_20_HFSS.py

+23-7
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,9 @@ def test_12_create_perfects_on_objects(self):
667667
def test_13_create_impedance_on_objects(self):
668668
box1 = self.aedtapp.modeler.create_box([0, 0, 0], [10, 10, 5], "imp1", "Copper")
669669
box2 = self.aedtapp.modeler.create_box([0, 0, 10], [10, 10, 5], "imp2", "copper")
670-
imp = self.aedtapp.create_impedance_between_objects("imp1", "imp2", self.aedtapp.AxisDir.XPos, "TL2", 50, 25)
670+
imp = self.aedtapp.create_impedance_between_objects(
671+
box1.name, box2.name, self.aedtapp.AxisDir.XPos, "TL1", 50, 25
672+
)
671673
assert imp.name in self.aedtapp.modeler.get_boundaries_name()
672674
assert imp.update()
673675

@@ -677,14 +679,14 @@ def test_14_create_lumpedrlc_on_objects(self):
677679
box1 = self.aedtapp.modeler.create_box([0, 0, 0], [10, 10, 5], "rlc1", "Copper")
678680
box2 = self.aedtapp.modeler.create_box([0, 0, 10], [10, 10, 5], "rlc2", "copper")
679681
imp = self.aedtapp.create_lumped_rlc_between_objects(
680-
"rlc1", "rlc2", self.aedtapp.AxisDir.XPos, Rvalue=50, Lvalue=1e-9
682+
box1.name, box2.name, self.aedtapp.AxisDir.XPos, Rvalue=50, Lvalue=1e-9
681683
)
682684
assert imp.name in self.aedtapp.modeler.get_boundaries_name()
683685
assert imp.update()
684686

685687
box3 = self.aedtapp.modeler.create_box([0, 0, 20], [10, 10, 5], "rlc3", "copper")
686688
lumped_rlc2 = self.aedtapp.create_lumped_rlc_between_objects(
687-
"rlc2", "rlc3", self.aedtapp.AxisDir.XPos, Rvalue=50, Lvalue=1e-9, Cvalue=1e-9
689+
box2.name, box3.name, self.aedtapp.AxisDir.XPos, Rvalue=50, Lvalue=1e-9, Cvalue=1e-9
688690
)
689691
assert lumped_rlc2.name in self.aedtapp.modeler.get_boundaries_name()
690692
assert lumped_rlc2.update()
@@ -710,9 +712,24 @@ def test_16_create_impedance_on_sheets(self):
710712
rect = self.aedtapp.modeler.create_rectangle(
711713
self.aedtapp.PLANE.XY, [0, 0, 0], [10, 2], name="ImpBound", matname="Copper"
712714
)
713-
imp = self.aedtapp.assign_impedance_to_sheet("imp1", "TL2", 50, 25)
714-
assert imp.name in self.aedtapp.modeler.get_boundaries_name()
715-
assert imp.update()
715+
imp1 = self.aedtapp.assign_impedance_to_sheet(rect.name, "TL2", 50, 25)
716+
assert imp1.name in self.aedtapp.modeler.get_boundaries_name()
717+
assert imp1.update()
718+
719+
impedance_box = self.aedtapp.modeler.create_box([0, -100, 0], [200, 200, 200], "ImpedanceBox")
720+
ids = self.aedtapp.modeler.get_object_faces(impedance_box.name)[:3]
721+
722+
imp2 = self.aedtapp.assign_impedance_to_sheet(ids, sourcename="ImpedanceToFaces", resistance=60, reactance=-20)
723+
assert imp2.name in self.aedtapp.modeler.get_boundaries_name()
724+
725+
rect2 = self.aedtapp.modeler.create_rectangle(
726+
self.aedtapp.PLANE.XY, [0, 0, 0], [10, 2], name="AniImpBound", matname="Copper"
727+
)
728+
assert not self.aedtapp.assign_impedance_to_sheet(rect2.name, "TL3", [50, 20, 0, 0], [25, 0, 5])
729+
imp2 = self.aedtapp.assign_impedance_to_sheet(rect2.name, "TL3", [50, 20, 0, 0], [25, 0, 5, 0])
730+
assert imp2.name in self.aedtapp.modeler.get_boundaries_name()
731+
imp3 = self.aedtapp.assign_impedance_to_sheet(impedance_box.top_face_z.id, "TL4", [50, 20, 0, 0], [25, 0, 5, 0])
732+
assert imp3.name in self.aedtapp.modeler.get_boundaries_name()
716733

717734
def test_17_create_lumpedrlc_on_sheets(self):
718735
rect = self.aedtapp.modeler.create_rectangle(
@@ -844,7 +861,6 @@ def test_24_create_curvilinear(self):
844861
).GetPropValue("Apply Curvilinear Elements")
845862
mesh.delete()
846863
assert len(self.aedtapp.mesh.meshoperations) == 2
847-
pass
848864

849865
def test_30_assign_initial_mesh(self):
850866
assert self.aedtapp.mesh.assign_initial_mesh_from_slider(6)

_unittest/test_21_Circuit.py

-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ def test_06a_create_setup(self):
118118
def test_08_import_mentor_netlist(self):
119119
self.aedtapp.insert_design("MentorSchematicImport")
120120
assert self.aedtapp.create_schematic_from_mentor_netlist(self.netlist_file2)
121-
pass
122121

123122
def test_09_import_netlist(self):
124123
self.aedtapp.insert_design("SchematicImport")

_unittest/test_28_Maxwell3D.py

+1
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,7 @@ def test_32_matrix(self, add_app):
469469
rectangle4 = m3d.modeler.create_rectangle(0, [32.5, 1.5, 0], [2.5, 5], name="Sheet4")
470470

471471
m3d.assign_voltage(rectangle1.faces[0], amplitude=1, name="Voltage1")
472+
m3d.assign_voltage("Sheet1", amplitude=1, name="Voltage5")
472473
m3d.assign_voltage(rectangle2.faces[0], amplitude=1, name="Voltage2")
473474
m3d.assign_voltage(rectangle3.faces[0], amplitude=1, name="Voltage3")
474475
m3d.assign_voltage(rectangle4.faces[0], amplitude=1, name="Voltage4")

_unittest/test_41_3dlayout_modeler.py

-2
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,6 @@ def test_33_set_temperature_dependence(self):
580580
ambient_temp=27,
581581
create_project_var=True,
582582
)
583-
pass
584583

585584
def test_34_create_additional_setup(self):
586585
setup_name = "SiwaveDC"
@@ -651,7 +650,6 @@ def test_39_import_ipc(self):
651650
def test_40_test_flex(self, add_app):
652651
flex = add_app(project_name=test_rigid_flex, application=Hfss3dLayout, subfolder=test_subfolder)
653652
assert flex.enable_rigid_flex()
654-
pass
655653

656654
def test_41_test_create_polygon(self):
657655
points = [[100, 100], [100, 200], [200, 200]]

_unittest/test_98_Icepak.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,11 @@ def test_03_AssignPCBRegion(self):
131131
pcb_mesh_region.assignment.padding_types = "Absolute Offset"
132132
assert pcb_mesh_region.assignment.padding_values == ["2mm"] * 6
133133
assert pcb_mesh_region.assignment.padding_types == ["Absolute Offset"] * 6
134-
subregion = self.aedtapp.modeler.create_subregion([50, 50, 50, 50, 100, 100], "Percentage Offset", "PCB")
134+
assert self.aedtapp.modeler.create_subregion([50, 50, 50, 50, 100, 100], "Percentage Offset", "PCB")
135+
box = self.aedtapp.modeler.create_box([0, 0, 0], [1, 2, 3])
136+
assert self.aedtapp.modeler.create_subregion(
137+
[50, 50, 50, 50, 100, 100], "Percentage Offset", ["PCB", box.name]
138+
)
135139
else:
136140
box = self.aedtapp.modeler.create_box([0, 0, 0], [1, 2, 3])
137141
pcb_mesh_region.Objects = box.name
@@ -226,7 +230,6 @@ def test_10_DesignSettings(self):
226230

227231
def test_11_mesh_level(self):
228232
assert self.aedtapp.mesh.assign_mesh_level({"USB_Shiels": 2})
229-
pass
230233

231234
def test_12a_AssignMeshOperation(self):
232235
self.aedtapp.oproject = test_project_name

_unittest_solvers/test_31_Q3D.py

-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ def test_08_create_faceted_bondwire(self):
191191
"bondwire_example", self.aedtapp.AXIS.Z, min_size=0.2, numberofsegments=8
192192
)
193193
assert test
194-
pass
195194

196195
def test_11_assign_net(self):
197196
box = self.aedtapp.modeler.create_box([30, 30, 30], [10, 10, 10], name="mybox")

examples/02-HFSS/Probe_Fed_Patch.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# You can set ``non_graphical`` to ``True`` to view
3535
# HFSS while the notebook cells are executed.
3636

37-
non_graphical = True
37+
non_graphical = False
3838
length_units = "mm"
3939
freq_units = "GHz"
4040

@@ -84,7 +84,7 @@
8484
stackup.resize_around_element(patch)
8585
pad_length = [3, 3, 3, 3, 3, 3] # Air bounding box buffer in mm.
8686
region = hfss.modeler.create_region(pad_length, is_percentage=False)
87-
hfss.assign_radiation_boundary_to_objects(region)
87+
hfss.assign_radiation_boundary_to_objects(region.name)
8888

8989
patch.create_probe_port(ground, rel_x_offset=0.485)
9090
setup = hfss.create_setup(setupname="Setup1",
@@ -115,4 +115,4 @@
115115
# Release AEDT and clean up temporary folders and files.
116116

117117
hfss.release_desktop()
118-
tmpdir.cleanup()
118+
tmpdir.cleanup()

examples/03-Maxwell/Maxwell2D_Transient.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
# ~~~~~~~~~~~~~~~~~
7272
# Create an air region.
7373

74-
region = maxwell_2d.modeler.create_region([100, 100, 100, 100, 100, 100])
74+
region = maxwell_2d.modeler.create_region([100, 100, 100, 100])
7575

7676
###############################################################################
7777
# Assign windings and balloon

examples/03-Maxwell/Maxwell_Control_Program.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
# ~~~~~~~~~~~~
8484
# Plot Solved Results.
8585

86-
sols = m2d.post.get_solution_data("FluxLinkage(Winding1)",variations={"Time":["All"]}, primary_sweep_variable="Time")
86+
sols = m2d.post.get_solution_data("FluxLinkage(Winding1)", variations={"Time":["All"]}, primary_sweep_variable="Time")
8787
sols.plot()
8888

8989
###################################################################################

examples/05-Q3D/Q2D_Armoured_Cable.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
# Create region
200200
# ~~~~~~~~~~~~~
201201

202-
region = q2d.modeler.create_region([500, 500, 500, 500, 0, 0])
202+
region = q2d.modeler.create_region([500, 500, 500, 500])
203203
region.material_name = "vacuum"
204204

205205
##########################################################
@@ -228,12 +228,6 @@
228228

229229
q2d_setup = q2d.create_setup(setupname=setup_name)
230230
q2d_sweep = q2d_setup.add_sweep(sweepname=sweep_name)
231-
q2d_sweep.props["RangeType"] = "LogScale"
232-
q2d_sweep.props["RangeStart"] = "0Hz"
233-
q2d_sweep.props["RangeEnd"] = "3MHz"
234-
q2d_sweep.props["RangeCount"] = 10
235-
q2d_sweep.props["RangeSamples"] = 1
236-
q2d_sweep.update()
237231

238232
##########################################################
239233
# Analyze setup

examples/07-Circuit/Circuit_Transient.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
bn = np.array(b)
173173
cellst = np.append(cellst, an)
174174
cellsv = np.append(cellsv, bn)
175-
plt.plot(cellst.T, cellsv.T, zorder=0)
175+
plt.plot(cellst.T, cellsv.T, zorder=0)
176176
plt.show()
177177

178178
###############################################################################

examples/07-EMIT/interference_gui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ def closeEvent(self, event):
612612
# Launch the GUI. If you want to run the GUI, uncomment the ``window.show()`` and
613613
# ``app.exec_()`` method calls.
614614

615-
if __name__ == '__main__' and os.getenv("PYAEDT_DOC_GENERATION", "False") != "1":
615+
if __name__ == '__main__' and os.getenv("PYAEDT_DOC_GENERATION", "False") != "1":
616616
app = QtWidgets.QApplication([])
617617
window = MainWindow()
618618
window.show()

pyaedt/application/Analysis3DLayout.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -329,15 +329,15 @@ def get_next_xtalk_list(self, trlist=[], tx_prefix=""):
329329
330330
>>> oModule.GetAllPorts
331331
"""
332-
next = []
332+
next_xtalks = []
333333
if not trlist:
334334
trlist = [i for i in self.excitations if tx_prefix in i]
335335
for i in trlist:
336336
k = trlist.index(i) + 1
337337
while k < len(trlist):
338-
next.append("S({},{})".format(i, trlist[k]))
338+
next_xtalks.append("S({},{})".format(i, trlist[k]))
339339
k += 1
340-
return next
340+
return next_xtalks
341341

342342
@pyaedt_function_handler()
343343
def get_fext_xtalk_list(self, trlist=None, reclist=None, tx_prefix="", rx_prefix="", skip_same_index_couples=True):

pyaedt/application/AnalysisNexxim.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -483,15 +483,15 @@ def get_next_xtalk_list(self, trlist=[], tx_prefix=""):
483483
484484
>>> oEditor.GetAllPorts
485485
"""
486-
next = []
486+
next_xtalks = []
487487
if not trlist:
488488
trlist = [i for i in list(self.excitations.keys()) if tx_prefix in i]
489489
for i in trlist:
490490
k = trlist.index(i) + 1
491491
while k < len(trlist):
492-
next.append("S({},{})".format(i, trlist[k]))
492+
next_xtalks.append("S({},{})".format(i, trlist[k]))
493493
k += 1
494-
return next
494+
return next_xtalks
495495

496496
@pyaedt_function_handler()
497497
def get_fext_xtalk_list(self, trlist=None, reclist=None, tx_prefix="", rx_prefix="", skip_same_index_couples=True):

0 commit comments

Comments
 (0)