pyedb 0.42.0__py3-none-any.whl → 0.44.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyedb might be problematic. Click here for more details.
- pyedb/__init__.py +1 -1
- pyedb/configuration/cfg_boundaries.py +155 -72
- pyedb/configuration/cfg_components.py +1 -1
- pyedb/configuration/cfg_general.py +34 -16
- pyedb/configuration/cfg_modeler.py +162 -67
- pyedb/configuration/cfg_nets.py +33 -17
- pyedb/configuration/cfg_operations.py +63 -31
- pyedb/configuration/cfg_package_definition.py +113 -52
- pyedb/configuration/cfg_padstacks.py +611 -256
- pyedb/configuration/cfg_pin_groups.py +75 -33
- pyedb/configuration/cfg_ports_sources.py +75 -15
- pyedb/configuration/cfg_s_parameter_models.py +125 -70
- pyedb/configuration/cfg_setup.py +301 -257
- pyedb/configuration/cfg_stackup.py +166 -90
- pyedb/configuration/configuration.py +342 -209
- pyedb/dotnet/database/edb_data/design_options.py +19 -1
- pyedb/dotnet/database/edb_data/padstacks_data.py +16 -6
- pyedb/dotnet/database/geometry/polygon_data.py +4 -2
- pyedb/dotnet/database/padstack.py +6 -2
- pyedb/dotnet/database/sim_setup_data/data/sweep_data.py +63 -10
- pyedb/dotnet/database/utilities/simulation_setup.py +14 -30
- pyedb/dotnet/database/utilities/siwave_simulation_setup.py +30 -0
- pyedb/dotnet/edb.py +75 -105
- pyedb/grpc/database/components.py +1 -1
- pyedb/grpc/database/definition/component_def.py +15 -0
- pyedb/grpc/database/definition/component_pin.py +1 -1
- pyedb/grpc/database/definition/materials.py +27 -0
- pyedb/grpc/database/definition/package_def.py +20 -2
- pyedb/grpc/database/definition/padstack_def.py +5 -2
- pyedb/grpc/database/hierarchy/component.py +4 -2
- pyedb/grpc/database/hierarchy/pingroup.py +12 -8
- pyedb/grpc/database/layers/layer.py +28 -0
- pyedb/grpc/database/layers/stackup_layer.py +281 -40
- pyedb/grpc/database/layout/layout.py +12 -6
- pyedb/grpc/database/modeler.py +8 -8
- pyedb/grpc/database/primitive/bondwire.py +3 -3
- pyedb/grpc/database/primitive/circle.py +1 -1
- pyedb/grpc/database/primitive/padstack_instance.py +13 -3
- pyedb/grpc/database/primitive/path.py +2 -2
- pyedb/grpc/database/primitive/polygon.py +3 -3
- pyedb/grpc/database/primitive/primitive.py +1 -1
- pyedb/grpc/database/primitive/rectangle.py +2 -2
- pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py +73 -30
- pyedb/grpc/database/source_excitations.py +7 -7
- pyedb/grpc/database/stackup.py +14 -6
- pyedb/grpc/database/terminal/bundle_terminal.py +3 -3
- pyedb/grpc/database/terminal/edge_terminal.py +2 -2
- pyedb/grpc/database/terminal/padstack_instance_terminal.py +42 -2
- pyedb/grpc/database/terminal/pingroup_terminal.py +35 -2
- pyedb/grpc/database/terminal/point_terminal.py +10 -1
- pyedb/grpc/database/terminal/terminal.py +4 -4
- pyedb/grpc/database/utility/hfss_extent_info.py +14 -10
- pyedb/grpc/edb.py +8 -8
- pyedb/misc/misc.py +13 -0
- {pyedb-0.42.0.dist-info → pyedb-0.44.0.dist-info}/METADATA +1 -1
- {pyedb-0.42.0.dist-info → pyedb-0.44.0.dist-info}/RECORD +58 -58
- {pyedb-0.42.0.dist-info → pyedb-0.44.0.dist-info}/LICENSE +0 -0
- {pyedb-0.42.0.dist-info → pyedb-0.44.0.dist-info}/WHEEL +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pyedb/__init__.py,sha256=
|
|
1
|
+
pyedb/__init__.py,sha256=OfcwgYCq0Ye_OZg00Kv35J_bGdEQNVagDIyZ6s1dSkI,1525
|
|
2
2
|
pyedb/edb_logger.py,sha256=7KXPvAMCKzlzJ5zioiNO5A3zkqbpCHhWHB4aXKfgu5Y,14959
|
|
3
3
|
pyedb/exceptions.py,sha256=n94xluzUks6BA24vd_L6HkrvoP_H_l6__hQmqzdCyPo,111
|
|
4
4
|
pyedb/siwave.py,sha256=Mgg5ZGzOUOtNdlePHcnrgN3rletQ7jrqRi3WfxF58uU,17727
|
|
@@ -7,26 +7,26 @@ pyedb/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
7
7
|
pyedb/common/nets.py,sha256=a6w_U-dCrWA4l0GUC9mf1nio91BGGOKh3K6cqd4I5vM,17877
|
|
8
8
|
pyedb/component_libraries/ansys_components.py,sha256=O3ypt832IHY9zG2AD_yrRrbH2KH9P1yFaoi1EO6Zllw,4830
|
|
9
9
|
pyedb/configuration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
pyedb/configuration/cfg_boundaries.py,sha256=
|
|
10
|
+
pyedb/configuration/cfg_boundaries.py,sha256=2LjCVWMxNvzvkz3Nh87mZOgMn7lv_lbYR2tUohGDi1o,11222
|
|
11
11
|
pyedb/configuration/cfg_common.py,sha256=U45p2qksEwMY_woVFaSwn5qjib9QQJDShajZZ-IZV0Y,2575
|
|
12
|
-
pyedb/configuration/cfg_components.py,sha256=
|
|
12
|
+
pyedb/configuration/cfg_components.py,sha256=l8on20YN1M6koc4GPfGH34xxGhsYd6H504UcMuJZwFE,26064
|
|
13
13
|
pyedb/configuration/cfg_data.py,sha256=sy1xUrfhRA3jorbR60qGExaMxQ1nQGGAbZYJ0xXYktE,3860
|
|
14
|
-
pyedb/configuration/cfg_general.py,sha256=
|
|
15
|
-
pyedb/configuration/cfg_modeler.py,sha256=
|
|
16
|
-
pyedb/configuration/cfg_nets.py,sha256=
|
|
17
|
-
pyedb/configuration/cfg_operations.py,sha256=
|
|
18
|
-
pyedb/configuration/cfg_package_definition.py,sha256=
|
|
19
|
-
pyedb/configuration/cfg_padstacks.py,sha256=
|
|
20
|
-
pyedb/configuration/cfg_pin_groups.py,sha256=
|
|
21
|
-
pyedb/configuration/cfg_ports_sources.py,sha256=
|
|
22
|
-
pyedb/configuration/cfg_s_parameter_models.py,sha256=
|
|
23
|
-
pyedb/configuration/cfg_setup.py,sha256=
|
|
14
|
+
pyedb/configuration/cfg_general.py,sha256=7bfpntHOeU21urpNYPeP-73HmYJedUIUdmNqsqntBaM,2896
|
|
15
|
+
pyedb/configuration/cfg_modeler.py,sha256=RlK7doPgp0dlTE0n9wgs1rGPV5Y6OqRfL445yb-f3KM,10221
|
|
16
|
+
pyedb/configuration/cfg_nets.py,sha256=vAtp3tTTuTDSDZw6uay4qXjbThqcCoyEXf7fNKW64DY,2900
|
|
17
|
+
pyedb/configuration/cfg_operations.py,sha256=jaujF-M7EiGPf_DoePoIwqk_qtGzcbC9qIF1-3sgsak,5802
|
|
18
|
+
pyedb/configuration/cfg_package_definition.py,sha256=aNA3ympBjvxtw9hVehF9PQWaEvNLVB8cwb-r7MtZtzY,7844
|
|
19
|
+
pyedb/configuration/cfg_padstacks.py,sha256=RxCmRe4qbIefuKYaPCPhZ6fJ3-Tz9sektvXnswljQwU,39801
|
|
20
|
+
pyedb/configuration/cfg_pin_groups.py,sha256=FS0Mc5mi56s3XNyjWcdV7rNJVZTPm8hXsQK2NS-rWUg,5580
|
|
21
|
+
pyedb/configuration/cfg_ports_sources.py,sha256=TNoNbP5QM_u5dr2MR3ZUu79WYS0ZLT8lRu7H5Z82a2o,35397
|
|
22
|
+
pyedb/configuration/cfg_s_parameter_models.py,sha256=DasTft7KFfyAty24rBip0H4nCrM4B6vSHzS32ZPO9nI,7794
|
|
23
|
+
pyedb/configuration/cfg_setup.py,sha256=idpJ5s3WwnEiOu1EJSikz2A11Cxjw-qU8Yqx5YJ2Prk,14814
|
|
24
24
|
pyedb/configuration/cfg_spice_models.py,sha256=Q_5j2-V6cepSFcnijot8iypTqzanLp7HOz-agmnwKns,2570
|
|
25
|
-
pyedb/configuration/cfg_stackup.py,sha256=
|
|
26
|
-
pyedb/configuration/configuration.py,sha256=
|
|
25
|
+
pyedb/configuration/cfg_stackup.py,sha256=1tRO2xCKm6J0wBQOokrUcrt4WJ3XoKT_pL_RV1Oy1KU,10643
|
|
26
|
+
pyedb/configuration/configuration.py,sha256=0_KHtgZHC8yAHLtKVb22FRlpNRQvQGC3YFdcmbrM-8c,22535
|
|
27
27
|
pyedb/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
pyedb/dotnet/clr_module.py,sha256=EabqZgZgBZOhJD9_V8Ll8sEKgBFj9xe9zARNYIvYM_s,5304
|
|
29
|
-
pyedb/dotnet/edb.py,sha256=
|
|
29
|
+
pyedb/dotnet/edb.py,sha256=TiM3VWBZx5iCG2cBKcWLN-YMqGFXR1drIsZKz2BDBAc,186032
|
|
30
30
|
pyedb/dotnet/database/Variables.py,sha256=CX12X6u-2tbcgjYJU643TVjIJEGB58a2nM4f4wMVTR8,77687
|
|
31
31
|
pyedb/dotnet/database/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
32
32
|
pyedb/dotnet/database/components.py,sha256=9HldXwn2xV7RPD-C9u_zpHTd6b5SKZkDled-NKrbweo,109471
|
|
@@ -38,7 +38,7 @@ pyedb/dotnet/database/materials.py,sha256=lR3LwHpK9UUBuL542M7jw5mLlmgwn5n4d4kHcm
|
|
|
38
38
|
pyedb/dotnet/database/modeler.py,sha256=ygY-9E3sIfFhHpk19-_J7xlLbQXB1Iw5xhXnW1Eoalw,55675
|
|
39
39
|
pyedb/dotnet/database/net_class.py,sha256=NxRX8feIaJyf3NmRfSzZ08ItDbZOucOyAnTHZh-LkUI,11354
|
|
40
40
|
pyedb/dotnet/database/nets.py,sha256=R--2ETa3-nc1RU5AqW4UjKXvA8oYKYLt06mQEsyi2j4,25213
|
|
41
|
-
pyedb/dotnet/database/padstack.py,sha256=
|
|
41
|
+
pyedb/dotnet/database/padstack.py,sha256=maddMpEB07E408TNkoiBP4xWvmbpfHWDpv0zOM09Coo,73340
|
|
42
42
|
pyedb/dotnet/database/siwave.py,sha256=yq6sRdJofKgXGMd2gvq7SpS-hXRqL_OPQCmOgwgkBfY,64366
|
|
43
43
|
pyedb/dotnet/database/stackup.py,sha256=y-lrZWwK3BVLuV1WR3pP3o6IppioaQkzeO5QPiN_KKY,120035
|
|
44
44
|
pyedb/dotnet/database/cell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -76,12 +76,12 @@ pyedb/dotnet/database/dotnet/database.py,sha256=7x1kQuLwL5QQ2S--ZrEVuFdHexXGAjOe
|
|
|
76
76
|
pyedb/dotnet/database/dotnet/primitive.py,sha256=Ma-hwk62_6Xhi4SKViYyYVGxTqdZw5v3VcjZ55ek68c,49944
|
|
77
77
|
pyedb/dotnet/database/edb_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
78
|
pyedb/dotnet/database/edb_data/control_file.py,sha256=4vtrXuHDgaX9wcyIGnIRMyCGUtvNqbx457HK0rtb-dE,52550
|
|
79
|
-
pyedb/dotnet/database/edb_data/design_options.py,sha256=
|
|
79
|
+
pyedb/dotnet/database/edb_data/design_options.py,sha256=qzVrSpXUsa-IhjEjaPBZNyhbR56X0nNEOgezCgmY5vo,2550
|
|
80
80
|
pyedb/dotnet/database/edb_data/edbvalue.py,sha256=Vj_11HXsQUNavizKp5FicORm6cjhXRh9uvxhv_D_RJc,1977
|
|
81
81
|
pyedb/dotnet/database/edb_data/hfss_extent_info.py,sha256=Ydzle6moatP89kQdjnzyNabsCW0KXE4WYqDv7sFyLb8,13040
|
|
82
82
|
pyedb/dotnet/database/edb_data/layer_data.py,sha256=4Z_eaHSfGfwQBKETEmGSwMvwGzvirtwYw4G4TwonNiA,34314
|
|
83
83
|
pyedb/dotnet/database/edb_data/nets_data.py,sha256=siq2w5CT5D5PeK9tC_vaGM54UOyqnYkcP4kUts459es,10009
|
|
84
|
-
pyedb/dotnet/database/edb_data/padstacks_data.py,sha256
|
|
84
|
+
pyedb/dotnet/database/edb_data/padstacks_data.py,sha256=-YmvhsGuyO-gXX4WWOyQw2n8l-Wg1IBw4PfJCfbEeWo,82079
|
|
85
85
|
pyedb/dotnet/database/edb_data/ports.py,sha256=ycOETLruRl4wwL372Jftm_rFg2vfluyb_Rv39C5OSKA,7061
|
|
86
86
|
pyedb/dotnet/database/edb_data/primitives_data.py,sha256=gBW7GiaPxDWBUj1wgOIiNHJ3QKM2ZDU0SJh0JWUlFHc,16826
|
|
87
87
|
pyedb/dotnet/database/edb_data/raptor_x_simulation_setup_data.py,sha256=f_09VvuDHeaIuTivSi2OiAEv8aJ52vBasuBoSS9sCQE,20953
|
|
@@ -91,7 +91,7 @@ pyedb/dotnet/database/edb_data/utilities.py,sha256=3wZqOJ35eisOwOPKOs-bvJ8kmd62e
|
|
|
91
91
|
pyedb/dotnet/database/edb_data/variables.py,sha256=mJvOXT9A5rlxZamizCsC77QPWyt0zO_tUpPPl61xqcE,3501
|
|
92
92
|
pyedb/dotnet/database/geometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
93
|
pyedb/dotnet/database/geometry/point_data.py,sha256=hC9cRuSnX4cwg09Jr0ZK7ZTjFf_4NwXJMGbZ3s-ULpQ,1590
|
|
94
|
-
pyedb/dotnet/database/geometry/polygon_data.py,sha256=
|
|
94
|
+
pyedb/dotnet/database/geometry/polygon_data.py,sha256=pvfGSVsQWiQp_GzdgidNaqFLwQen21tq7Ox7wHqfITA,5335
|
|
95
95
|
pyedb/dotnet/database/sim_setup_data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
96
96
|
pyedb/dotnet/database/sim_setup_data/data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
97
97
|
pyedb/dotnet/database/sim_setup_data/data/adaptive_frequency_data.py,sha256=tlHI7PUUoseNnJAtihpjb1PwXYNr-4ztAAnunlLLWVQ,2463
|
|
@@ -100,15 +100,15 @@ pyedb/dotnet/database/sim_setup_data/data/settings.py,sha256=VuJaksqhiM--ROQY67d
|
|
|
100
100
|
pyedb/dotnet/database/sim_setup_data/data/sim_setup_info.py,sha256=hN2TeXa8dbtOmEtwobhKuwomJXYs8cSJum3HQofuW3Y,4479
|
|
101
101
|
pyedb/dotnet/database/sim_setup_data/data/simulation_settings.py,sha256=ag-nl1gwKlNJOb3y7fBMSoSEwbUG_rwLzM25jLp8ado,10727
|
|
102
102
|
pyedb/dotnet/database/sim_setup_data/data/siw_dc_ir_settings.py,sha256=FnvDY1oxpnPo0EYMVXT7yfW-e-W3_NOGnvUvQYta4Ls,8627
|
|
103
|
-
pyedb/dotnet/database/sim_setup_data/data/sweep_data.py,sha256=
|
|
103
|
+
pyedb/dotnet/database/sim_setup_data/data/sweep_data.py,sha256=9JdKRP6DrXeuMhd7XKLIzDSGZDUoBnevbfi88oiX2F8,20129
|
|
104
104
|
pyedb/dotnet/database/sim_setup_data/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
105
|
pyedb/dotnet/database/sim_setup_data/io/siwave.py,sha256=92iEZrhA2CUTZ7wynL5nxVVwi2XKKqppx7AcvvoqK6E,31387
|
|
106
106
|
pyedb/dotnet/database/utilities/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
107
107
|
pyedb/dotnet/database/utilities/heatsink.py,sha256=7G7Yx9TxbL5EAiR51MnhdRiAQBVf-d0hKsXDw5OYX2Q,2220
|
|
108
108
|
pyedb/dotnet/database/utilities/hfss_simulation_setup.py,sha256=1tlZ64rUNEtvRLLbVhN-gfuVduVCo8fT6IPKfQCEaDs,14074
|
|
109
109
|
pyedb/dotnet/database/utilities/obj_base.py,sha256=xSGTbfh4pbNIw3EjqtjFMiN8rWM2JhYZ2eU73qHAGlI,2883
|
|
110
|
-
pyedb/dotnet/database/utilities/simulation_setup.py,sha256=
|
|
111
|
-
pyedb/dotnet/database/utilities/siwave_simulation_setup.py,sha256=
|
|
110
|
+
pyedb/dotnet/database/utilities/simulation_setup.py,sha256=BydnogZUf2txPi0ViUSmrusownk-weccc5v-iWI59wQ,12050
|
|
111
|
+
pyedb/dotnet/database/utilities/siwave_simulation_setup.py,sha256=j7bIniRXBJVw51MHv7FeNKQ_Fz3hOHxG8crzfJmNgm4,13872
|
|
112
112
|
pyedb/extensions/pre_layout_design_toolkit/via_design.py,sha256=b9pTM5Gi3S3O2epaSBp4cD5DEul-MP5gCvRw3E5GmpE,46734
|
|
113
113
|
pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
114
|
pyedb/generic/constants.py,sha256=prWLZH0-SeBIVK6LHZ4SGZFQCofuym2TuQYfdqwhuSQ,28956
|
|
@@ -119,49 +119,49 @@ pyedb/generic/general_methods.py,sha256=Lg4k53Ny9LraiU6AQX5WwBiPFqtvGaZ3Ik7LcWil
|
|
|
119
119
|
pyedb/generic/plot.py,sha256=4zCA5lpk-FhPmWR7xi6yecc5lZtRpxJdd3B8FLGXmxE,4705
|
|
120
120
|
pyedb/generic/process.py,sha256=i0poMbEnFFAsnNOPWN-myMnUaG7hMClKi9kGPMFyvCM,11148
|
|
121
121
|
pyedb/generic/settings.py,sha256=QTX5OVZ8sVPIy_QaSxRODUWvoXkYkVpzh3l6pQPseKQ,9220
|
|
122
|
-
pyedb/grpc/edb.py,sha256=
|
|
122
|
+
pyedb/grpc/edb.py,sha256=rg9FXWVuTawzEYATrvmA1BU9fjGOdNzoTo6fDFiPWcg,160258
|
|
123
123
|
pyedb/grpc/edb_init.py,sha256=7uhG2VjHvS9N8CU-zDyW8jh_dWe8MWkfyU2k4-B8sX8,14513
|
|
124
124
|
pyedb/grpc/rpc_session.py,sha256=UvxDSXuJFvemFJbQQtbI6nhYI9KBN366fw-jjoWysmE,6979
|
|
125
125
|
pyedb/grpc/database/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
126
|
-
pyedb/grpc/database/components.py,sha256
|
|
126
|
+
pyedb/grpc/database/components.py,sha256=-7v6AewVnBt9s7VuJHXsnADLx0SUNAvwt1I1pNjTqQ8,83920
|
|
127
127
|
pyedb/grpc/database/control_file.py,sha256=rEsdYykh5-GcYTrZW32nk3IPpdNjlhlQ2PYgbkBgQ_8,48217
|
|
128
128
|
pyedb/grpc/database/definitions.py,sha256=jtfg2crkmwqn9rEe8pSn1F-TtyBDLl8U6hs7ZmNbXA8,2922
|
|
129
129
|
pyedb/grpc/database/general.py,sha256=QBZlMO4Tzec00HcaLVQ8fDTLox-pHjOcH2wpWge2sZw,1633
|
|
130
130
|
pyedb/grpc/database/hfss.py,sha256=pHOkPHHviRVf93pv3vNqEb88wO95BB6_CcURoaXQ0f4,45670
|
|
131
131
|
pyedb/grpc/database/layout_validation.py,sha256=GuDjxDQnIdUglk-yq7HCMP74V_1L5upPbVsE_g8dHHg,13494
|
|
132
|
-
pyedb/grpc/database/modeler.py,sha256=
|
|
132
|
+
pyedb/grpc/database/modeler.py,sha256=PT06tPaHh0ILY36HbGKfTwr45AHsxZRUfZFlizzaBnM,55065
|
|
133
133
|
pyedb/grpc/database/nets.py,sha256=aBGhSzudYcq_heAyOX9ucAmLXY4nwOPrnRegRJ3lcHc,21234
|
|
134
134
|
pyedb/grpc/database/padstacks.py,sha256=NedumZMv4BNoYYmNnhdGZCQEbGf9kFMwRzjcBzo9wHw,64881
|
|
135
135
|
pyedb/grpc/database/siwave.py,sha256=XOc_nvsIKKSAbYj27GLBE0NhwpAJfzecJ_TQIKJGy6k,35157
|
|
136
|
-
pyedb/grpc/database/source_excitations.py,sha256=
|
|
137
|
-
pyedb/grpc/database/stackup.py,sha256=
|
|
136
|
+
pyedb/grpc/database/source_excitations.py,sha256=HqpaBoclMvRQ6ZE2_J2CC1fSbBXu2k2wNBJAcLlNRsA,107187
|
|
137
|
+
pyedb/grpc/database/stackup.py,sha256=TDtyFRPef_s8hOTf-eg5O65KPNGJ0uPqS5B_WVMUbXU,109235
|
|
138
138
|
pyedb/grpc/database/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
-
pyedb/grpc/database/definition/component_def.py,sha256=
|
|
139
|
+
pyedb/grpc/database/definition/component_def.py,sha256=xbB7SY3c1BYfyC2wFRqGI1fTzxzn3KjSGjqRq2e_2Xs,7386
|
|
140
140
|
pyedb/grpc/database/definition/component_model.py,sha256=9TRfILC3FfmgSrnYRwEdF2kbY4jFcC5rSeR9xeeb3wg,1689
|
|
141
|
-
pyedb/grpc/database/definition/component_pin.py,sha256=
|
|
142
|
-
pyedb/grpc/database/definition/materials.py,sha256=
|
|
141
|
+
pyedb/grpc/database/definition/component_pin.py,sha256=PfwTv6ILn6irJ4P5nB0PNtz2U5dR4NPevsw6P33pAfQ,1493
|
|
142
|
+
pyedb/grpc/database/definition/materials.py,sha256=sN8jkqImW8us6UKI1eSYqwPbb0E1AEGimaH7xj7hfDw,45253
|
|
143
143
|
pyedb/grpc/database/definition/n_port_component_model.py,sha256=8dC636At0iyfAWShugHGDOerytpoV6cvShPEGkXH89I,1543
|
|
144
|
-
pyedb/grpc/database/definition/package_def.py,sha256=
|
|
145
|
-
pyedb/grpc/database/definition/padstack_def.py,sha256=
|
|
144
|
+
pyedb/grpc/database/definition/package_def.py,sha256=u5K8mmpe49pEFyeJOlVg3WxwjQOJ8rGufsATQVYxkkE,8046
|
|
145
|
+
pyedb/grpc/database/definition/padstack_def.py,sha256=oPTkrakPwZkmbeIszobDl9kaDjjb5kmsKdLLswtCrJI,29726
|
|
146
146
|
pyedb/grpc/database/geometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
147
|
pyedb/grpc/database/geometry/arc_data.py,sha256=e86QQ7QFmovUB82DT4Z3CYjMJe1co5lfYr43--4nWpM,2638
|
|
148
148
|
pyedb/grpc/database/geometry/point_3d_data.py,sha256=9pABIDtp4T06ZF0OSvlhPK21wMot8zv-zjLAq8yPhfU,2163
|
|
149
149
|
pyedb/grpc/database/geometry/point_data.py,sha256=q8a6-MRUunTl6-kBbYuraiVbYF_EOY1eSMmwo5_ouuk,1433
|
|
150
150
|
pyedb/grpc/database/geometry/polygon_data.py,sha256=DotkM7fZnBQIln5kEJTCIbRNx8IfwXX4xs9hXjiUumA,4776
|
|
151
151
|
pyedb/grpc/database/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
-
pyedb/grpc/database/hierarchy/component.py,sha256=
|
|
152
|
+
pyedb/grpc/database/hierarchy/component.py,sha256=2Cp1upryPz_suSZCipFkZJ2U1vFH2RxCcjL6UfaLcGo,41314
|
|
153
153
|
pyedb/grpc/database/hierarchy/model.py,sha256=H3I2S6BxWorFBaRlvIPBTQUqpXXAdch4KZqpRXjNtI4,1413
|
|
154
154
|
pyedb/grpc/database/hierarchy/netlist_model.py,sha256=VtXxTTTArojCOOLShHVlGOS1OTx30YZ8_UdSZWaKaEA,1432
|
|
155
155
|
pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=FUaJms_pTiZ9W49B5HGCjdJj4OAR5IJSZxk0rr3sOKg,3500
|
|
156
|
-
pyedb/grpc/database/hierarchy/pingroup.py,sha256=
|
|
156
|
+
pyedb/grpc/database/hierarchy/pingroup.py,sha256=uQ94CcTBoYn1ewLuHiPkRBCFRASEsZNFy9JRPdQFZbc,7811
|
|
157
157
|
pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=eNw9T_Gyzbwzg496O7ucCVAvcunYjrPxGhPoTwX-mPA,1529
|
|
158
158
|
pyedb/grpc/database/hierarchy/spice_model.py,sha256=JfdRRlJRreSF7LDP7_EjrLQKTlTwWdlnpErvxoALDNQ,2018
|
|
159
159
|
pyedb/grpc/database/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
|
-
pyedb/grpc/database/layers/layer.py,sha256=
|
|
161
|
-
pyedb/grpc/database/layers/stackup_layer.py,sha256=
|
|
160
|
+
pyedb/grpc/database/layers/layer.py,sha256=JjK9KcZpU14iDvwZtDrqTvhxoFJ6YmSKZb9mpQG5ZFE,3407
|
|
161
|
+
pyedb/grpc/database/layers/stackup_layer.py,sha256=a_yK6R6ta5o5YvU-YFkcekqKoFV_c3sxHw4ABx4f880,22515
|
|
162
162
|
pyedb/grpc/database/layout/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
163
|
pyedb/grpc/database/layout/cell.py,sha256=5qMqEBvIruIE3Ru1JBYMkGlS31uOJShWm3J3OMd8HiQ,1379
|
|
164
|
-
pyedb/grpc/database/layout/layout.py,sha256=
|
|
164
|
+
pyedb/grpc/database/layout/layout.py,sha256=IqjE9h_6rbTlu5RpHjC34NA08HFvZABotetwPOD2HMA,9051
|
|
165
165
|
pyedb/grpc/database/layout/voltage_regulator.py,sha256=ObKjdQeLDxNHfW7V1i-yPCdabTzmBgKj0dIHr3TLWNk,5140
|
|
166
166
|
pyedb/grpc/database/net/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
167
|
pyedb/grpc/database/net/differential_pair.py,sha256=DbYbyO0e6bHpqY4lZWU2quHlGBvA5n0ekVvD4MntG5I,4670
|
|
@@ -171,13 +171,13 @@ pyedb/grpc/database/net/net_class.py,sha256=ojoEZ_7YJW0cEhRWIc9hLBHILBhrVPuRpRjr
|
|
|
171
171
|
pyedb/grpc/database/ports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
172
|
pyedb/grpc/database/ports/ports.py,sha256=boa3pfu-qLHsBi3-JqO5YxfWws21gWZHjLSPm63xocM,10199
|
|
173
173
|
pyedb/grpc/database/primitive/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
174
|
-
pyedb/grpc/database/primitive/bondwire.py,sha256=
|
|
175
|
-
pyedb/grpc/database/primitive/circle.py,sha256=
|
|
176
|
-
pyedb/grpc/database/primitive/padstack_instance.py,sha256=
|
|
177
|
-
pyedb/grpc/database/primitive/path.py,sha256=
|
|
178
|
-
pyedb/grpc/database/primitive/polygon.py,sha256=
|
|
179
|
-
pyedb/grpc/database/primitive/primitive.py,sha256=
|
|
180
|
-
pyedb/grpc/database/primitive/rectangle.py,sha256=
|
|
174
|
+
pyedb/grpc/database/primitive/bondwire.py,sha256=IpDhf1z7GtaXZ12wbK172YNGCKkDB6sQ-7wH8HAXMnA,6238
|
|
175
|
+
pyedb/grpc/database/primitive/circle.py,sha256=clKkYUTuQ-Cwbdmk7Uc6x4zi-QN53lVN2C2jKcGTF-8,2514
|
|
176
|
+
pyedb/grpc/database/primitive/padstack_instance.py,sha256=0JouHwaRacogCjEjPIg8YC89pwzT2vqszdUu1Gj_IYE,37449
|
|
177
|
+
pyedb/grpc/database/primitive/path.py,sha256=3Z3ZSrCHaA2ftldRe_lBLIjXjsqAwWxF9E5FCATxvek,12046
|
|
178
|
+
pyedb/grpc/database/primitive/polygon.py,sha256=noqgYSZAH5aa3leiZjCIN6BhDJ_EomgEiNPmS9H2Dqs,9482
|
|
179
|
+
pyedb/grpc/database/primitive/primitive.py,sha256=8zJHRCCpaVm0-4z2Q_jhdItAot2ZdGHfKiujP0HdZ1Q,24781
|
|
180
|
+
pyedb/grpc/database/primitive/rectangle.py,sha256=UOFEPaO4B-2Wmr9QbvEsOwUVwwGzJ4o6D-eOiB0aoks,5359
|
|
181
181
|
pyedb/grpc/database/simulation_setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
182
|
pyedb/grpc/database/simulation_setup/adaptive_frequency.py,sha256=uEuYtf0RcRH5XlcBiTEN8sgdZZBrob9k7h5KW-I4QYs,1455
|
|
183
183
|
pyedb/grpc/database/simulation_setup/hfss_advanced_meshing_settings.py,sha256=ujG1mD8h0SXLOVXbYBrvKVrCRFHRQGKuPebzekcaE0M,1531
|
|
@@ -186,7 +186,7 @@ pyedb/grpc/database/simulation_setup/hfss_dcr_settings.py,sha256=H_aqDcxATHK8yeJ
|
|
|
186
186
|
pyedb/grpc/database/simulation_setup/hfss_general_settings.py,sha256=gL39zOgV0ZKDWDlclXwGHiyqKlq35b3TgGpQ5dGi85o,2433
|
|
187
187
|
pyedb/grpc/database/simulation_setup/hfss_settings_options.py,sha256=QqSYROingDWwxdUX1QTMdxrUjqg4-fofxWyR_49mC48,2929
|
|
188
188
|
pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py,sha256=GbToEtsZ5tiYZodcAsUuLzzRd7GrSuVjmRQnT9dWT4s,3946
|
|
189
|
-
pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py,sha256=
|
|
189
|
+
pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py,sha256=oDyzGGzi5h-Zqz2VQWSgPN7Z8UbLJyxndOKW_Qx1w2k,14882
|
|
190
190
|
pyedb/grpc/database/simulation_setup/hfss_solver_settings.py,sha256=Xi4N-cCO_8-JxMkI_tGyJ3SGcJrP5_rLvdbXx7P-uJI,1474
|
|
191
191
|
pyedb/grpc/database/simulation_setup/mesh_operation.py,sha256=Ejf9v9njc-Ll3jw_DdA26CAT1WreludC6CwBrpoS16A,1439
|
|
192
192
|
pyedb/grpc/database/simulation_setup/raptor_x_advanced_settings.py,sha256=mo2zHBsdxHG9N81FNefulKjUv-Oi_VkV49kvKKXrhrs,1505
|
|
@@ -197,16 +197,16 @@ pyedb/grpc/database/simulation_setup/siwave_dcir_simulation_setup.py,sha256=--Lr
|
|
|
197
197
|
pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py,sha256=zNAI4JxgyNfjbHOaUDGRk1-bIfySzBUWGJN1SpiLkNg,4615
|
|
198
198
|
pyedb/grpc/database/simulation_setup/sweep_data.py,sha256=iEl_Uy9DwI7wfoufFEECvsWXVEp0FOL5KaAgkVl9TtY,1572
|
|
199
199
|
pyedb/grpc/database/terminal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
|
-
pyedb/grpc/database/terminal/bundle_terminal.py,sha256=
|
|
201
|
-
pyedb/grpc/database/terminal/edge_terminal.py,sha256=
|
|
202
|
-
pyedb/grpc/database/terminal/padstack_instance_terminal.py,sha256=
|
|
203
|
-
pyedb/grpc/database/terminal/pingroup_terminal.py,sha256=
|
|
204
|
-
pyedb/grpc/database/terminal/point_terminal.py,sha256=
|
|
205
|
-
pyedb/grpc/database/terminal/terminal.py,sha256=
|
|
200
|
+
pyedb/grpc/database/terminal/bundle_terminal.py,sha256=hr5FpAuH1gMsDO6CnJBgFU07m5t0XrUOcjhuQ_9tib8,6505
|
|
201
|
+
pyedb/grpc/database/terminal/edge_terminal.py,sha256=LO5W6jrdnL_KmYlt0sMSmPMyDqzilzVsn1D7qYo-t5Y,2189
|
|
202
|
+
pyedb/grpc/database/terminal/padstack_instance_terminal.py,sha256=p5EKecNtzN8Zo4exsYA_IGDYRaGyM_3VrmcEnZ5VP2A,6067
|
|
203
|
+
pyedb/grpc/database/terminal/pingroup_terminal.py,sha256=PBVa0oq37oAT05uHtTgdwsSwbjxPfKRrctSWRygcshY,5324
|
|
204
|
+
pyedb/grpc/database/terminal/point_terminal.py,sha256=gwYJ1UP3Ny1BjcKEBOSPvLf4N3r2ZSIjRsUNkoRShPY,3469
|
|
205
|
+
pyedb/grpc/database/terminal/terminal.py,sha256=n5W7fdcvbWcLH5CeItrZl8DJkGDUtZF080XqBIwkUKA,17008
|
|
206
206
|
pyedb/grpc/database/utility/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
207
207
|
pyedb/grpc/database/utility/constants.py,sha256=XF66Hj7aQWJfqn8rDhyovyIbYBt4h_ab7lgpUqzgcPc,1288
|
|
208
208
|
pyedb/grpc/database/utility/heat_sink.py,sha256=LJCj7ULdyq7oKc0VtHmwzO5GHht-pqhe3_Gy01uMwWc,3538
|
|
209
|
-
pyedb/grpc/database/utility/hfss_extent_info.py,sha256=
|
|
209
|
+
pyedb/grpc/database/utility/hfss_extent_info.py,sha256=UYY7N6JEe-Kwy1HyBek1qVf_19IK8UvzEf1P9ud2N48,14175
|
|
210
210
|
pyedb/grpc/database/utility/layout_statistics.py,sha256=uLh6tZ8vRvDpRYmgJO3J6nUThUYhleku2y9lwm02Ccg,6705
|
|
211
211
|
pyedb/grpc/database/utility/rlc.py,sha256=GOvwhZlJ_wWqrN9zdiQM4tvhgvEPjYwA3PawpkqJwos,2158
|
|
212
212
|
pyedb/grpc/database/utility/simulation_configuration.py,sha256=RPgRP3SJGPUm9Q41Qwv6TZXWN3Wda3nehR9rR3TPPMk,117014
|
|
@@ -264,7 +264,7 @@ pyedb/ipc2581/ecad/cad_data/step.py,sha256=si4CGprfnUySEwbQ-ldNi29-vIUi-cC500YHH
|
|
|
264
264
|
pyedb/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
265
265
|
pyedb/misc/aedtlib_personalib_install.py,sha256=eCVAdEoriMU92bZwPzY9Aig85cBbUO0J8J4RMtMkY_o,1759
|
|
266
266
|
pyedb/misc/downloads.py,sha256=j9jJhwGTTJwm4WWaCSEhGZzOGyOyHhBAFexx0NtD4Uw,10824
|
|
267
|
-
pyedb/misc/misc.py,sha256=
|
|
267
|
+
pyedb/misc/misc.py,sha256=q1zcjcCtEkGVob5N0RbJ8Z7cTaOpHzYv9U8IcBlkIvo,3681
|
|
268
268
|
pyedb/misc/pyedb.runtimeconfig.json,sha256=2xof-Vl0hY2VOs1KkMSReTMZACsZhcmPmyHXukfb-oY,301
|
|
269
269
|
pyedb/misc/utilities.py,sha256=tW5O8R-qo0yhAufKZWxZPzbVy8qcz6UJCIqrKNhlghk,2742
|
|
270
270
|
pyedb/misc/siw_feature_config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -282,7 +282,7 @@ pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py,sha256=YmYI6WTQulL5Uf8Wx
|
|
|
282
282
|
pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py,sha256=KHa-UqcXuabiVfT2CV-UvWl5Q2qGYHF2Ye9azcAlnXc,3966
|
|
283
283
|
pyedb/modeler/geometry_operators.py,sha256=YhR-QE0dvIkbp4SsjWp309KDE1OZa6wUzr8a634MuJ4,74195
|
|
284
284
|
pyedb/siwave_core/icepak.py,sha256=WnZ-t8mik7LDY06V8hZFV-TxRZJQWK7bu_8Ichx-oBs,5206
|
|
285
|
-
pyedb-0.
|
|
286
|
-
pyedb-0.
|
|
287
|
-
pyedb-0.
|
|
288
|
-
pyedb-0.
|
|
285
|
+
pyedb-0.44.0.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
286
|
+
pyedb-0.44.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
287
|
+
pyedb-0.44.0.dist-info/METADATA,sha256=64TbEAtKk83e7uwYTFLg8JwGUps7-pXu7j-OUcItyOQ,8617
|
|
288
|
+
pyedb-0.44.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|