pyedb 0.18.0__py3-none-any.whl → 0.19.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.

Files changed (29) hide show
  1. pyedb/__init__.py +1 -1
  2. pyedb/configuration/cfg_data.py +8 -11
  3. pyedb/configuration/cfg_nets.py +14 -0
  4. pyedb/configuration/cfg_pin_groups.py +57 -20
  5. pyedb/configuration/cfg_ports_sources.py +248 -60
  6. pyedb/configuration/configuration.py +51 -17
  7. pyedb/dotnet/edb.py +2 -1
  8. pyedb/dotnet/edb_core/cell/layout.py +48 -1
  9. pyedb/dotnet/edb_core/cell/terminal/padstack_instance_terminal.py +10 -0
  10. pyedb/dotnet/edb_core/cell/terminal/pingroup_terminal.py +5 -0
  11. pyedb/dotnet/edb_core/cell/terminal/point_terminal.py +0 -11
  12. pyedb/dotnet/edb_core/cell/terminal/terminal.py +35 -1
  13. pyedb/dotnet/edb_core/components.py +74 -18
  14. pyedb/dotnet/edb_core/dotnet/primitive.py +9 -6
  15. pyedb/dotnet/edb_core/edb_data/padstacks_data.py +8 -4
  16. pyedb/dotnet/edb_core/edb_data/ports.py +0 -18
  17. pyedb/dotnet/edb_core/edb_data/primitives_data.py +1 -1
  18. pyedb/dotnet/edb_core/padstack.py +10 -1
  19. pyedb/dotnet/edb_core/sim_setup_data/data/sim_setup_info.py +42 -3
  20. pyedb/dotnet/edb_core/sim_setup_data/data/simulation_settings.py +92 -158
  21. pyedb/dotnet/edb_core/sim_setup_data/data/siw_dc_ir_settings.py +22 -22
  22. pyedb/dotnet/edb_core/sim_setup_data/io/siwave.py +76 -76
  23. pyedb/dotnet/edb_core/utilities/hfss_simulation_setup.py +23 -94
  24. pyedb/dotnet/edb_core/utilities/simulation_setup.py +40 -38
  25. pyedb/dotnet/edb_core/utilities/siwave_simulation_setup.py +26 -17
  26. {pyedb-0.18.0.dist-info → pyedb-0.19.0.dist-info}/METADATA +8 -8
  27. {pyedb-0.18.0.dist-info → pyedb-0.19.0.dist-info}/RECORD +29 -29
  28. {pyedb-0.18.0.dist-info → pyedb-0.19.0.dist-info}/LICENSE +0 -0
  29. {pyedb-0.18.0.dist-info → pyedb-0.19.0.dist-info}/WHEEL +0 -0
@@ -20,7 +20,6 @@
20
20
  # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  # SOFTWARE.
22
22
 
23
- import warnings
24
23
 
25
24
  from pyedb.dotnet.edb_core.sim_setup_data.data.mesh_operation import (
26
25
  LengthMeshOperation,
@@ -37,10 +36,6 @@ from pyedb.dotnet.edb_core.sim_setup_data.data.settings import (
37
36
  ViaSettings,
38
37
  )
39
38
  from pyedb.dotnet.edb_core.sim_setup_data.data.sim_setup_info import SimSetupInfo
40
- from pyedb.dotnet.edb_core.sim_setup_data.data.simulation_settings import (
41
- HFSSPISimulationSettings,
42
- )
43
- from pyedb.dotnet.edb_core.sim_setup_data.data.sweep_data import SweepData
44
39
  from pyedb.dotnet.edb_core.utilities.simulation_setup import SimulationSetup
45
40
  from pyedb.generic.general_methods import generate_unique_name
46
41
 
@@ -58,37 +53,36 @@ class HfssSimulationSetup(SimulationSetup):
58
53
  self._edb_object = self._simulation_setup_builder(sim_setup_info._edb_object)
59
54
  self._update_setup()
60
55
 
61
- @property
62
- def get_sim_setup_info(self):
63
- """Get simulation setup information."""
64
- warnings.warn("Use new property :func:`sim_setup_info` instead.", DeprecationWarning)
65
- return self.sim_setup_info._edb_object
66
-
67
56
  @property
68
57
  def solver_slider_type(self):
69
58
  """Solver slider type.
70
59
  Options are:
71
- 1 - ``kFast``.
72
- 2 - ``kMedium``.
73
- 3 - ``kAccurate``.
74
- 4 - ``kNumSliderTypes``.
60
+ 1 - ``Fast``.
61
+ 2 - ``Medium``.
62
+ 3 - ``Accurate``.
75
63
 
76
64
  Returns
77
65
  -------
78
- str
66
+ int
79
67
  """
80
- return self.get_sim_setup_info.SimulationSettings.TSolveSliderType.ToString()
68
+ solver_types = {
69
+ "kFast": 0,
70
+ "kMedium": 1,
71
+ "kAccurate": 2,
72
+ "kNumSliderTypes": 3,
73
+ }
74
+ return solver_types[self.sim_setup_info.simulation_settings.SolveSliderType.ToString()]
81
75
 
82
76
  @solver_slider_type.setter
83
77
  def solver_slider_type(self, value):
84
78
  """Set solver slider type."""
85
79
  solver_types = {
86
- "kFast": self.get_sim_setup_info.SimulationSettings.TSolveSliderType.k25DViaWirebond,
87
- "kMedium": self.get_sim_setup_info.SimulationSettings.TSolveSliderType.k25DViaRibbon,
88
- "kAccurate": self.get_sim_setup_info.SimulationSettings.TSolveSliderType.k25DViaMesh,
89
- "kNumSliderTypes": self.get_sim_setup_info.SimulationSettings.TSolveSliderType.k25DViaField,
80
+ 0: self.sim_setup_info.simulation_settings.TSolveSliderType.kFast,
81
+ 1: self.sim_setup_info.simulation_settings.TSolveSliderType.kMedium,
82
+ 2: self.sim_setup_info.simulation_settings.TSolveSliderType.kAccurate,
83
+ 3: self.sim_setup_info.simulation_settings.TSolveSliderType.kNumSliderTypes,
90
84
  }
91
- self.get_sim_setup_info.SimulationSettings.TSolveSliderType = solver_types[value]
85
+ self.sim_setup_info.simulation_settings.SolveSliderType = solver_types[value]
92
86
  self._update_setup()
93
87
 
94
88
  @property
@@ -393,77 +387,12 @@ class HfssSimulationSetup(SimulationSetup):
393
387
  class HFSSPISimulationSetup(SimulationSetup):
394
388
  """Manages EDB methods for HFSSPI simulation setup."""
395
389
 
396
- def __init__(self, pedb, edb_object=None):
390
+ def __init__(self, pedb, edb_object=None, name: str = None):
397
391
  super().__init__(pedb, edb_object)
398
- self._edb_object = edb_object
399
- self._pedb = pedb
400
- self._setup_type = "kHFSSPI"
401
- self._edb_setup_info = None
402
- self.logger = self._pedb.logger
403
-
404
- def create(self, name=None):
405
- """Create an HFSS setup."""
406
- self._name = name
407
- self._create(name=name, simulation_setup_type=self._setup_type)
408
- return self
409
-
410
- @property
411
- def setup_type(self):
412
- return self._setup_type
413
-
414
- @property
415
- def settings(self):
416
- return HFSSPISimulationSettings(self._edb_setup_info, self._pedb, self._edb_object)
417
-
418
- @property
419
- def enabled(self):
420
- return self.settings.enabled
421
-
422
- @enabled.setter
423
- def enabled(self, value):
424
- if isinstance(value, bool):
425
- self.settings.enabled = value
426
- else:
427
- self.logger.error(f"Property enabled expects a boolean value while the provided value is {value}.")
428
-
429
- @property
430
- def position(self):
431
- return self._edb_setup_info.Position
432
392
 
433
- @position.setter
434
- def position(self, value):
435
- if isinstance(value, int):
436
- self._edb_setup_info.Position = value
437
- else:
438
- self.logger.error(f"Property position expects an integer value while the provided value is {value}.")
439
-
440
- def add_frequency_sweep(self, name=None, frequency_sweep=None):
441
- """Add frequency sweep.
442
-
443
- Parameters
444
- ----------
445
- name : str, optional
446
- Name of the frequency sweep.
447
- frequency_sweep : list, optional
448
- List of frequency points.
449
-
450
- Returns
451
- -------
452
- :class:`pyedb.dotnet.edb_core.edb_data.hfss_simulation_setup_data.EdbFrequencySweep`wheen succeeded, ``False``
453
- when failed.
454
-
455
- Examples
456
- --------
457
- >>> setup1 = edbapp.create_hfss_setup("setup1")
458
- >>> setup1.add_frequency_sweep(frequency_sweep=[
459
- ... ["linear count", "0", "1kHz", 1],
460
- ... ["log scale", "1kHz", "0.1GHz", 10],
461
- ... ["linear scale", "0.1GHz", "10GHz", "0.1GHz"],
462
- ... ])
463
- """
464
- if name in self.frequency_sweeps:
465
- self.logger.error("Frequency sweep with same name already defined.")
466
- return False
467
- if not name:
468
- name = generate_unique_name("sweep")
469
- return SweepData(self, frequency_sweep, name)
393
+ self._simulation_setup_builder = self._pedb._edb.Utility.HFSSPISimulationSetup
394
+ if edb_object is None:
395
+ self._name = name
396
+ sim_setup_info = SimSetupInfo(self._pedb, sim_setup=self, setup_type="kHFSSPI", name=name)
397
+ self._edb_object = self._simulation_setup_builder(sim_setup_info._edb_object)
398
+ self._update_setup()
@@ -100,16 +100,33 @@ class SimulationSetup(object):
100
100
 
101
101
  @property
102
102
  def sim_setup_info(self):
103
- if self._edb_object:
104
- if self._edb_object.GetType().ToString() not in ["kHFSSPI", "kRaptorX"]:
105
- return SimSetupInfo(self._pedb, sim_setup=self, edb_object=self._edb_object.GetSimSetupInfo())
106
- elif self._edb_setup_info:
107
- return SimSetupInfo(self._pedb, sim_setup=self, edb_object=self._edb_setup_info)
103
+ return SimSetupInfo(self._pedb, sim_setup=self, edb_object=self._edb_object.GetSimSetupInfo())
108
104
 
109
- @sim_setup_info.setter
110
- def sim_setup_info(self, sim_setup_info):
105
+ def set_sim_setup_info(self, sim_setup_info):
111
106
  self._edb_object = self._simulation_setup_builder(sim_setup_info._edb_object)
112
107
 
108
+ @property
109
+ def get_sim_setup_info(self):
110
+ """Get simulation setup information."""
111
+ warnings.warn("Use new property :func:`sim_setup_info` instead.", DeprecationWarning)
112
+ return self.sim_setup_info._edb_object
113
+
114
+ def get_simulation_settings(self):
115
+ sim_settings = self.sim_setup_info.simulation_settings
116
+ properties = {}
117
+ for k in dir(sim_settings):
118
+ if not k.startswith("_"):
119
+ properties[k] = getattr(sim_settings, k)
120
+ return properties
121
+
122
+ def set_simulation_settings(self, sim_settings: dict):
123
+ for k, v in sim_settings.items():
124
+ if k == "enabled":
125
+ continue
126
+ if k in self.get_simulation_settings():
127
+ setattr(self.sim_setup_info.simulation_settings, k, v)
128
+ self._update_setup()
129
+
113
130
  @property
114
131
  def setup_type(self):
115
132
  return self.sim_setup_info.sim_setup_type
@@ -126,11 +143,6 @@ class SimulationSetup(object):
126
143
 
127
144
  edb_setup_info = self._pedb.simsetupdata.SimSetupInfo[self._simulation_setup_type[simulation_setup_type]]()
128
145
  edb_setup_info.Name = name
129
- if (
130
- edb_setup_info.get_SimSetupType().ToString() == "kRaptorX"
131
- or edb_setup_info.get_SimSetupType().ToString() == "kHFSSPI"
132
- ):
133
- self._edb_setup_info = edb_setup_info
134
146
  self._edb_object = self._set_edb_setup_info(edb_setup_info)
135
147
  self._update_setup()
136
148
 
@@ -156,11 +168,10 @@ class SimulationSetup(object):
156
168
 
157
169
  if float(self._pedb.edbversion) >= 2024.2:
158
170
  setup_type_mapping["kRaptorX"] = utility.RaptorXSimulationSetup
159
- if float(self._pedb.edbversion) >= 2025.1:
160
171
  setup_type_mapping["kHFSSPI"] = utility.HFSSPISimulationSetup
161
172
  sim_setup_type = self.sim_setup_info.sim_setup_type
162
- setup_utility = setup_type_mapping[sim_setup_type.ToString()]
163
- return setup_utility(edb_setup_info)
173
+ setup_utility = setup_type_mapping[sim_setup_type]
174
+ return setup_utility(edb_setup_info._edb_object)
164
175
 
165
176
  @property
166
177
  def mesh_operations(self):
@@ -181,13 +192,11 @@ class SimulationSetup(object):
181
192
  @property
182
193
  def enabled(self):
183
194
  """Flag indicating if the setup is enabled."""
184
- return self.get_sim_setup_info.SimulationSettings.Enabled
195
+ return self.get_simulation_settings()["enabled"]
185
196
 
186
197
  @enabled.setter
187
- def enabled(self, value):
188
- self.get_sim_setup_info.SimulationSettings.Enabled = value
189
- self._edb_object = self._set_edb_setup_info(self.get_sim_setup_info)
190
- self._update_setup()
198
+ def enabled(self, value: bool):
199
+ self.set_simulation_settings({"enabled": value})
191
200
 
192
201
  @property
193
202
  def name(self):
@@ -197,8 +206,8 @@ class SimulationSetup(object):
197
206
  @name.setter
198
207
  def name(self, value):
199
208
  self._pedb.layout.cell.DeleteSimulationSetup(self.name)
200
- edb_setup_info = self.get_sim_setup_info
201
- edb_setup_info.Name = value
209
+ edb_setup_info = self.sim_setup_info
210
+ edb_setup_info.name = value
202
211
  self._name = value
203
212
  self._edb_object = self._set_edb_setup_info(edb_setup_info)
204
213
  self._update_setup()
@@ -206,19 +215,19 @@ class SimulationSetup(object):
206
215
  @property
207
216
  def position(self):
208
217
  """Position in the setup list."""
209
- return self.get_sim_setup_info.Position
218
+ return self.sim_setup_info.position
210
219
 
211
220
  @position.setter
212
221
  def position(self, value):
213
- edb_setup_info = self.get_sim_setup_info.SimulationSettings
214
- edb_setup_info.Position = value
222
+ edb_setup_info = self.sim_setup_info.simulation_settings
223
+ edb_setup_info.position = value
215
224
  self._set_edb_setup_info(edb_setup_info)
216
225
  self._update_setup()
217
226
 
218
227
  @property
219
228
  def setup_type(self):
220
229
  """Type of the setup."""
221
- return self.get_sim_setup_info.SimSetupType.ToString()
230
+ return self.sim_setup_info.sim_setup_type
222
231
 
223
232
  @property
224
233
  def frequency_sweeps(self):
@@ -228,14 +237,7 @@ class SimulationSetup(object):
228
237
  @property
229
238
  def sweeps(self):
230
239
  """List of frequency sweeps."""
231
- temp = {}
232
- if self.setup_type in ("kRaptorX", "kHFSSPI"):
233
- sweep_data_list = self._edb_setup_info.SweepDataList
234
- for i in list(sweep_data_list):
235
- temp[i.Name] = SweepData(self, None, i.Name, i)
236
- return temp
237
- else:
238
- return {i.name: i for i in self.sim_setup_info.sweep_data_list}
240
+ return {i.name: i for i in self.sim_setup_info.sweep_data_list}
239
241
 
240
242
  def add_sweep(self, name, frequency_set: list = None, **kwargs):
241
243
  """Add frequency sweep.
@@ -278,7 +280,7 @@ class SimulationSetup(object):
278
280
 
279
281
  ss_info = self.sim_setup_info
280
282
  ss_info.add_sweep_data(sweep_data)
281
- self.sim_setup_info = ss_info
283
+ self.set_sim_setup_info(ss_info)
282
284
  self._update_setup()
283
285
  return sweep_data
284
286
 
@@ -294,7 +296,7 @@ class SimulationSetup(object):
294
296
  if self.setup_type in ["kRaptorX", "kHFSSPI"]:
295
297
  edb_setup_info = self._edb_setup_info
296
298
  else:
297
- edb_setup_info = self.get_sim_setup_info
299
+ edb_setup_info = self.sim_setup_info
298
300
 
299
301
  if self._setup_type in ["kSIwave", "kHFSS", "kRaptorX", "kHFSSPI"]:
300
302
  for _, v in self._sweep_list.items():
@@ -317,9 +319,9 @@ class SimulationSetup(object):
317
319
  fsweep = []
318
320
  if self.frequency_sweeps:
319
321
  fsweep = [val for key, val in self.frequency_sweeps.items() if not key == name]
320
- self.get_sim_setup_info.SweepDataList.Clear()
322
+ self.sim_setup_info._edb_object.SweepDataList.Clear()
321
323
  for i in fsweep:
322
- self.get_sim_setup_info.SweepDataList.Add(i._edb_object)
324
+ self.sim_setup_info._edb_object.SweepDataList.Add(i._edb_object)
323
325
  self._update_setup()
324
326
  return True if name in self.frequency_sweeps else False
325
327
 
@@ -132,19 +132,19 @@ class SiwaveSimulationSetup(SimulationSetup):
132
132
  @property
133
133
  def sim_setup_info(self):
134
134
  """Overrides the default sim_setup_info object."""
135
- return SimSetupInfo(self._pedb, sim_setup=self, edb_object=self.get_sim_setup_info)
135
+ return self.get_sim_setup_info
136
136
 
137
137
  @sim_setup_info.setter
138
138
  def sim_setup_info(self, sim_setup_info):
139
139
  self._edb_object = self._simulation_setup_builder(sim_setup_info._edb_object)
140
140
 
141
141
  @property
142
- def get_sim_setup_info(self):
142
+ def get_sim_setup_info(self): # todo remove after refactoring
143
143
  """Get simulation information from the setup."""
144
144
 
145
145
  sim_setup_info = SimSetupInfo(self._pedb, sim_setup=self, setup_type="kSIwave", name=self._edb_object.GetName())
146
146
  clone_edb_sim_setup_info(source=self._edb_object, target=sim_setup_info._edb_object)
147
- return sim_setup_info._edb_object
147
+ return sim_setup_info
148
148
 
149
149
  def set_pi_slider(self, value):
150
150
  """Set SIwave PI simulation accuracy level.
@@ -173,15 +173,24 @@ class SiwaveSimulationSetup(SimulationSetup):
173
173
  self.si_slider_position = value
174
174
  self.advanced_settings.set_si_slider(value)
175
175
 
176
+ @property
177
+ def enabled(self):
178
+ """Flag indicating if the setup is enabled."""
179
+ return self.sim_setup_info.simulation_settings.Enabled
180
+
181
+ @enabled.setter
182
+ def enabled(self, value: bool):
183
+ self.sim_setup_info.simulation_settings.Enabled = value
184
+
176
185
  @property
177
186
  def pi_slider_position(self):
178
187
  """PI solider position. Values are from ``1`` to ``3``."""
179
- return self.get_sim_setup_info.SimulationSettings.PISliderPos
188
+ return self.get_sim_setup_info.simulation_settings.PISliderPos
180
189
 
181
190
  @pi_slider_position.setter
182
191
  def pi_slider_position(self, value):
183
192
  edb_setup_info = self.get_sim_setup_info
184
- edb_setup_info.SimulationSettings.PISliderPos = value
193
+ edb_setup_info.simulation_settings.PISliderPos = value
185
194
  self._edb_object = self._set_edb_setup_info(edb_setup_info)
186
195
  self._update_setup()
187
196
 
@@ -192,12 +201,12 @@ class SiwaveSimulationSetup(SimulationSetup):
192
201
  @property
193
202
  def si_slider_position(self):
194
203
  """SI slider position. Values are from ``1`` to ``3``."""
195
- return self.get_sim_setup_info.SimulationSettings.SISliderPos
204
+ return self.get_sim_setup_info.simulation_settings.SISliderPos
196
205
 
197
206
  @si_slider_position.setter
198
207
  def si_slider_position(self, value):
199
208
  edb_setup_info = self.get_sim_setup_info
200
- edb_setup_info.SimulationSettings.SISliderPos = value
209
+ edb_setup_info.simulation_settings.SISliderPos = value
201
210
  self._edb_object = self._set_edb_setup_info(edb_setup_info)
202
211
  self._update_setup()
203
212
 
@@ -213,12 +222,12 @@ class SiwaveSimulationSetup(SimulationSetup):
213
222
  -------
214
223
  bool
215
224
  """
216
- return self.get_sim_setup_info.SimulationSettings.UseCustomSettings
225
+ return self.get_sim_setup_info.simulation_settings.UseCustomSettings
217
226
 
218
227
  @use_custom_settings.setter
219
228
  def use_custom_settings(self, value):
220
229
  edb_setup_info = self.get_sim_setup_info
221
- edb_setup_info.SimulationSettings.UseCustomSettings = value
230
+ edb_setup_info.simulation_settings.UseCustomSettings = value
222
231
  self._edb_object = self._set_edb_setup_info(edb_setup_info)
223
232
  self._update_setup()
224
233
 
@@ -230,12 +239,12 @@ class SiwaveSimulationSetup(SimulationSetup):
230
239
  -------
231
240
  bool
232
241
  """
233
- return self.get_sim_setup_info.SimulationSettings.UseSISettings
242
+ return self.get_sim_setup_info.simulation_settings.UseSISettings
234
243
 
235
244
  @use_si_settings.setter
236
245
  def use_si_settings(self, value):
237
246
  edb_setup_info = self.get_sim_setup_info
238
- edb_setup_info.SimulationSettings.UseSISettings = value
247
+ edb_setup_info.simulation_settings.UseSISettings = value
239
248
  self._edb_object = self._set_edb_setup_info(edb_setup_info)
240
249
  self._update_setup()
241
250
 
@@ -268,21 +277,21 @@ class SiwaveDCSimulationSetup(SimulationSetup):
268
277
  @property
269
278
  def sim_setup_info(self):
270
279
  """Overrides the default sim_setup_info object."""
271
- return SimSetupInfo(self._pedb, sim_setup=self, edb_object=self.get_sim_setup_info)
280
+ return SimSetupInfo(self._pedb, sim_setup=self, edb_object=self.get_sim_setup_info._edb_object)
272
281
 
273
282
  @sim_setup_info.setter
274
283
  def sim_setup_info(self, sim_setup_info):
275
284
  self._edb_object = self._simulation_setup_builder(sim_setup_info._edb_object)
276
285
 
277
286
  @property
278
- def get_sim_setup_info(self):
287
+ def get_sim_setup_info(self): # todo remove after refactoring
279
288
  """Get simulation information from the setup."""
280
-
289
+ warnings.warn("Use new property :func:`sim_setup_info` instead.", DeprecationWarning)
281
290
  sim_setup_info = SimSetupInfo(
282
291
  self._pedb, sim_setup=self, setup_type="kSIwaveDCIR", name=self._edb_object.GetName()
283
292
  )
284
293
  clone_edb_sim_setup_info(source=self._edb_object, target=sim_setup_info._edb_object)
285
- return sim_setup_info._edb_object
294
+ return sim_setup_info
286
295
 
287
296
  @property
288
297
  def dc_ir_settings(self):
@@ -340,7 +349,7 @@ class SiwaveDCSimulationSetup(SimulationSetup):
340
349
  {str, int}, keys is source name, value int 0 unspecified, 1 negative node, 2 positive one.
341
350
 
342
351
  """
343
- return convert_netdict_to_pydict(self.get_sim_setup_info.SimulationSettings.DCIRSettings.SourceTermsToGround)
352
+ return convert_netdict_to_pydict(self.get_sim_setup_info.simulation_settings.DCIRSettings.SourceTermsToGround)
344
353
 
345
354
  def add_source_terminal_to_ground(self, source_name, terminal=0):
346
355
  """Add a source terminal to ground.
@@ -363,7 +372,7 @@ class SiwaveDCSimulationSetup(SimulationSetup):
363
372
  """
364
373
  terminals = self.source_terms_to_ground
365
374
  terminals[source_name] = terminal
366
- self.get_sim_setup_info.SimulationSettings.DCIRSettings.SourceTermsToGround = convert_pydict_to_netdict(
375
+ self.get_sim_setup_info.simulation_settings.DCIRSettings.SourceTermsToGround = convert_pydict_to_netdict(
367
376
  terminals
368
377
  )
369
378
  return self._update_setup()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyedb
3
- Version: 0.18.0
3
+ Version: 0.19.0
4
4
  Summary: Higher-Level Pythonic Ansys Electronics Data Base
5
5
  Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
6
6
  Maintainer-email: PyEDB developers <simon.vandenbrouck@ansys.com>
@@ -19,16 +19,19 @@ Requires-Dist: cffi>=1.16.0,<1.17; platform_system=='Linux'
19
19
  Requires-Dist: pywin32 >= 303;platform_system=='Windows'
20
20
  Requires-Dist: ansys-pythonnet >= 3.1.0rc3
21
21
  Requires-Dist: dotnetcore2 ==3.1.23;platform_system=='Linux'
22
- Requires-Dist: pydantic>=2.6.4,<2.8
23
- Requires-Dist: toml == 0.10.2
24
- Requires-Dist: Rtree >= 1.2.0
25
22
  Requires-Dist: numpy>=1.20.0,<2
23
+ Requires-Dist: pandas>=1.1.0,<2.3
24
+ Requires-Dist: pydantic>=2.6.4,<2.9
25
+ Requires-Dist: Rtree >= 1.2.0
26
+ Requires-Dist: toml == 0.10.2
26
27
  Requires-Dist: ansys-sphinx-theme>=0.10.0,<0.17 ; extra == "doc"
27
28
  Requires-Dist: imageio>=2.30.0,<2.35 ; extra == "doc"
28
- Requires-Dist: ipython>=8.13.0,<8.26 ; extra == "doc"
29
+ Requires-Dist: ipython>=8.13.0,<8.27 ; extra == "doc"
29
30
  Requires-Dist: jupyterlab>=4.0.0,<4.3 ; extra == "doc"
31
+ Requires-Dist: jupytext>=1.16.0,<1.17 ; extra == "doc"
30
32
  Requires-Dist: matplotlib>=3.5.0,<3.10 ; extra == "doc"
31
33
  Requires-Dist: nbsphinx>=0.9.0,<0.10 ; extra == "doc"
34
+ Requires-Dist: nbconvert < 7.14 ; extra == "doc"
32
35
  Requires-Dist: numpydoc>=1.5.0,<1.8 ; extra == "doc"
33
36
  Requires-Dist: pypandoc>=1.10.0,<1.14 ; extra == "doc"
34
37
  Requires-Dist: recommonmark ; extra == "doc"
@@ -39,11 +42,8 @@ Requires-Dist: sphinx-copybutton>=0.5.0,<0.6 ; extra == "doc"
39
42
  Requires-Dist: sphinx-gallery>=0.14.0,<0.17 ; extra == "doc"
40
43
  Requires-Dist: sphinx_design>=0.4.0,<0.7 ; extra == "doc"
41
44
  Requires-Dist: matplotlib>=3.5.0,<3.10 ; extra == "full"
42
- Requires-Dist: pandas>=1.1.0,<2.3 ; extra == "full"
43
45
  Requires-Dist: matplotlib>=3.5.0,<3.10 ; extra == "tests"
44
- Requires-Dist: numpy>=1.20.0,<2 ; extra == "tests"
45
46
  Requires-Dist: mock>=5.1.0,<5.2 ; extra == "tests"
46
- Requires-Dist: pandas>=1.1.0,<2.3 ; extra == "tests"
47
47
  Requires-Dist: pytest>=7.4.0,<8.3 ; extra == "tests"
48
48
  Requires-Dist: pytest-cov>=4.0.0,<5.1 ; extra == "tests"
49
49
  Requires-Dist: pytest-xdist>=3.5.0,<3.7 ; extra == "tests"
@@ -1,4 +1,4 @@
1
- pyedb/__init__.py,sha256=BSUJbVwFX_rOFP9jdHFQgIGVs2HQjbF06YjEnDyk_48,1521
1
+ pyedb/__init__.py,sha256=0nhcaqt5oskcLcgT9HT6TQDnY2DqX8SQd5foPLkgj50,1521
2
2
  pyedb/edb_logger.py,sha256=yNkXnoL2me7ubLT6O6r6ElVnkZ1g8fmfFYC_2XJZ1Sw,14950
3
3
  pyedb/exceptions.py,sha256=n94xluzUks6BA24vd_L6HkrvoP_H_l6__hQmqzdCyPo,111
4
4
  pyedb/siwave.py,sha256=p-j2AmJ3RPG9IKieDxiVPRhzRlXbjpxENP9GHAgT6l8,13086
@@ -7,26 +7,26 @@ pyedb/configuration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
7
7
  pyedb/configuration/cfg_boundaries.py,sha256=ckb-OfaObItwy-xc0LqkHJyeCfKC5vg668olPjZbaKo,6647
8
8
  pyedb/configuration/cfg_common.py,sha256=5ne78TTA0wHpbi804nsUd9SPxNKZvut_X_Miu-xDRgk,1982
9
9
  pyedb/configuration/cfg_components.py,sha256=YPmaoVG0PO92yNKTbpi3LZNt01aNO75VHFJuY7DM94k,7684
10
- pyedb/configuration/cfg_data.py,sha256=ENvPsPWYD-crwyHWkB0LBAfz9mHjxoVrszwVS_EL0i8,3772
10
+ pyedb/configuration/cfg_data.py,sha256=eSwdJ7ECP85oNGmmn3_1dK3lRQp4fS_uSYXD5TlNees,3631
11
11
  pyedb/configuration/cfg_general.py,sha256=0dtd-rkQt2aYR3EOL0c3sNuDuJs7htRos1OWck3rxaI,1626
12
- pyedb/configuration/cfg_nets.py,sha256=SCiBTUVHX3Ub91MEU88m0xcHIot_axT9QTFJ8LawppI,1880
12
+ pyedb/configuration/cfg_nets.py,sha256=18NezeNh0ZOwk2ehz3zWJF_xYR7IYCqGlpDfDt7Ilho,2349
13
13
  pyedb/configuration/cfg_operations.py,sha256=OzktdjLgHUm6_kCbMeuZ2mhUXfOIP6gXslmbkB7nZOM,3130
14
14
  pyedb/configuration/cfg_package_definition.py,sha256=f_RRT9R-3H5kHBlc4QSpjq9uQgYbaKQ78XXXrc_r3kg,5296
15
15
  pyedb/configuration/cfg_padstacks.py,sha256=5t799x_mfwLjCAic-B13v3I6FgDswysXdcKmeOxz4Uo,5571
16
- pyedb/configuration/cfg_pin_groups.py,sha256=aidsOXTHhEyE8UGRiT1nvyn-3sD0CU_n8RR19AmhQrk,2877
17
- pyedb/configuration/cfg_ports_sources.py,sha256=Wzs9hmEnOIPtiVXIfZgPM7TGsqV_t6ELbB71wSWG5_g,8166
16
+ pyedb/configuration/cfg_pin_groups.py,sha256=Aq5rlUU2z9iNMv5cBBwHHTlSglw5Upm8EA4g7CQwD5o,3823
17
+ pyedb/configuration/cfg_ports_sources.py,sha256=bhpQB-WXxH0nAksYCxIn8q08U8KswWKv4Ui9p5jwskA,15741
18
18
  pyedb/configuration/cfg_s_parameter_models.py,sha256=NzS3eBjBSnd7ZDk_TsX04dqRcRXompjx1DxCe1UzWMw,2855
19
19
  pyedb/configuration/cfg_setup.py,sha256=SPpNRLJusB-Cz2fDQkc6gkdilUqIlbNngoxF3zySt6g,10115
20
20
  pyedb/configuration/cfg_spice_models.py,sha256=tBY3okFiEffMGvBkpmZQrCrovpt-d62k51_WkkV4jqo,2435
21
21
  pyedb/configuration/cfg_stackup.py,sha256=CX7uNN5QRoYW_MOObknP8003YchTS7PH9Oee7FG0VKU,6589
22
- pyedb/configuration/configuration.py,sha256=YIhmW9rDVvWUH9-gyjhKoohjia2dL-jptUviS0MT83s,11565
22
+ pyedb/configuration/configuration.py,sha256=coJU6y-y7VOGmH_NPXdEdoBdD_aZzYFx7sgvLKNm02E,12629
23
23
  pyedb/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
24
  pyedb/dotnet/clr_module.py,sha256=Mo13Of3DVSA5HR-5xZEXOiHApIKy52CUxtJ2gPkEu1A,3406
25
- pyedb/dotnet/edb.py,sha256=fRS00MYlaMPRJi7YnhNB72odsne-GiOpZ1AnysqKQoc,182382
25
+ pyedb/dotnet/edb.py,sha256=tH8Xpvy1WU71NKeFgk1uLTDRh_LbdfqyFhCQwHt45Kc,182455
26
26
  pyedb/dotnet/application/Variables.py,sha256=v_fxFJ6xjyyhk4uaMzWAbP-1FhXGuKsVNuyV1huaPME,77867
27
27
  pyedb/dotnet/application/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
28
  pyedb/dotnet/edb_core/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
29
- pyedb/dotnet/edb_core/components.py,sha256=9p7Aiq3mv5yDDpZGq0ym1aagJzAFfFTtOkXi0uC2j4Y,103687
29
+ pyedb/dotnet/edb_core/components.py,sha256=cj-G8fvI6YnrSMWjZKKveYwo2Dz49_AJuShlkfTFK-0,106479
30
30
  pyedb/dotnet/edb_core/general.py,sha256=f-WuyJY1nkfMEXm_fvU7poLfIi4axV1ha5Am1_m2eQ0,4572
31
31
  pyedb/dotnet/edb_core/hfss.py,sha256=paHUyp1QtnBHYtswiWEgeaYRvqDT-HdtFG6rmmkD2_w,68815
32
32
  pyedb/dotnet/edb_core/layout.py,sha256=OqhkmrKTLlIRVd74SBAjW3Wnb4uNhp6kwWtJI86j-98,50852
@@ -34,11 +34,11 @@ pyedb/dotnet/edb_core/layout_validation.py,sha256=aOYgttlJ007uGG94NnhZR_iNHTuCI5
34
34
  pyedb/dotnet/edb_core/materials.py,sha256=9HTDzxraPjAl3Jc7beHQfxe6axQY-tw6hDW1A05O2GM,43426
35
35
  pyedb/dotnet/edb_core/net_class.py,sha256=fAQoXsjn-Ae3gVYnUJO7yGZ6zEDEf_Zx5Mzq_h0UH7k,11582
36
36
  pyedb/dotnet/edb_core/nets.py,sha256=U1GhGJE1Ybd3IWJ7tn5chKW1E23EEZYiSiCK6ds76nk,43373
37
- pyedb/dotnet/edb_core/padstack.py,sha256=-17eWSsUnh5Af_nZes505_on8Hy4GkWsP7vFBssqZ5Q,62760
37
+ pyedb/dotnet/edb_core/padstack.py,sha256=LNlbiBK5j9lYCS_0xsOHEPTTXRqx0cr4z_A6Ml1Me5g,62993
38
38
  pyedb/dotnet/edb_core/siwave.py,sha256=FxhvigCavS-9ldSrcu2KEuYrNF30Ra4RT7NZPUlDMY4,64328
39
39
  pyedb/dotnet/edb_core/stackup.py,sha256=BbfamGczV7j0B2knGPT4SJPZPGz7Rb1jgXTgMr-Yd1o,120808
40
40
  pyedb/dotnet/edb_core/cell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- pyedb/dotnet/edb_core/cell/layout.py,sha256=xzlcR8kgU3v-8VOuQkagqg71DbKrVD7qgfYMzSZ7IiQ,4343
41
+ pyedb/dotnet/edb_core/cell/layout.py,sha256=FhijLPgv5QBY62BwOF2JWr6SbyF1w5GZsTQVtRnrcUI,6165
42
42
  pyedb/dotnet/edb_core/cell/layout_obj.py,sha256=xFqY4FAHdiNZWexQRRGHYqWcQ5SvFR9kDxMBGXBqbW8,4180
43
43
  pyedb/dotnet/edb_core/cell/primitive.py,sha256=b_Uyu1cwO9Bf_vSazYLeBWSNaz-67pS-n7TCxKoFUyU,11379
44
44
  pyedb/dotnet/edb_core/cell/voltage_regulator.py,sha256=NQsM-0VnswjMokxsF2-cikobQ8MRoK_cWHYmEg9zi38,5714
@@ -53,10 +53,10 @@ pyedb/dotnet/edb_core/cell/hierarchy/spice_model.py,sha256=SGiUcan2l0n8DGk3GtwCs
53
53
  pyedb/dotnet/edb_core/cell/terminal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
54
  pyedb/dotnet/edb_core/cell/terminal/bundle_terminal.py,sha256=TRPlsLH3_QOlDa5s8-tx399fkpJ3eJ8ictuCvlgkai0,2050
55
55
  pyedb/dotnet/edb_core/cell/terminal/edge_terminal.py,sha256=MvmKA0JGVeqGx7smuMOVPaQ_PESJmi34oUL9OH5oKiY,2137
56
- pyedb/dotnet/edb_core/cell/terminal/padstack_instance_terminal.py,sha256=uvs12S5jFxBnosc3F3n1CMEoEh81nnNApXJGff5T330,3433
57
- pyedb/dotnet/edb_core/cell/terminal/pingroup_terminal.py,sha256=hId1p-s5Vf7pwY3uKyjv9jWWc5BLHM485ecMaaz44Qo,2397
58
- pyedb/dotnet/edb_core/cell/terminal/point_terminal.py,sha256=gOElCZnP2kZEVngA0t5TNwXnSStkXzI8gVdBrLZlSTI,2728
59
- pyedb/dotnet/edb_core/cell/terminal/terminal.py,sha256=yB3NhyHNzvf3esNAS_UVad2Idyt7SxfguwZ3jOhj-ZM,18677
56
+ pyedb/dotnet/edb_core/cell/terminal/padstack_instance_terminal.py,sha256=t1qKIQhkTrEVF_wyafAJU0FkaT3BRKzbOWhNK6vD2Y4,3804
57
+ pyedb/dotnet/edb_core/cell/terminal/pingroup_terminal.py,sha256=M5qZNH-MLDkgSJABNVKmnBLyLgezm2fqJGl70EyPVUo,2586
58
+ pyedb/dotnet/edb_core/cell/terminal/point_terminal.py,sha256=H0us5EbpIZ9SZUrh6z50qW6qo3jE_mwsQRBz_R65BP8,2380
59
+ pyedb/dotnet/edb_core/cell/terminal/terminal.py,sha256=hFYmko638aQ71_rCfsrWNFGQlR08CUnNHAgRcvuMVxA,19742
60
60
  pyedb/dotnet/edb_core/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
61
  pyedb/dotnet/edb_core/definition/component_def.py,sha256=tYZ4L6DigwSjdQJ5AlqEbordPVZyJ6hYFNc6b3QnJ18,6514
62
62
  pyedb/dotnet/edb_core/definition/component_model.py,sha256=PhT5voy3qk8fsp94dK6TN_Zxz5aXwO_mmeIwWm7C_Hs,1944
@@ -66,7 +66,7 @@ pyedb/dotnet/edb_core/definition/package_def.py,sha256=UoYNdfrB5j0rG4OK94yE25dCT
66
66
  pyedb/dotnet/edb_core/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
67
  pyedb/dotnet/edb_core/dotnet/database.py,sha256=m8QgX1E5elOoBTHt5zCsUKUFRuwru5r-31PmUE6rQr0,37653
68
68
  pyedb/dotnet/edb_core/dotnet/layout.py,sha256=_3lKFvEqA5S66yF_FSX5HbLsFNFpsigRsaN3Rj02pFk,8904
69
- pyedb/dotnet/edb_core/dotnet/primitive.py,sha256=grhQ1YO0PaoCGTPqeydP703tfca2_gvi_m4a8CSqpPo,53424
69
+ pyedb/dotnet/edb_core/dotnet/primitive.py,sha256=8UYyQ9pXINHvy0ORizxjiAA-iAoLxIt5-ekN4Cr3PgU,53730
70
70
  pyedb/dotnet/edb_core/edb_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
71
  pyedb/dotnet/edb_core/edb_data/control_file.py,sha256=Z837yN4ZDWbtCW3eTWewVq_d_iY2jBSYx2QlL70-qog,48341
72
72
  pyedb/dotnet/edb_core/edb_data/design_options.py,sha256=RO9ip-T5Bfxpsl97_QEk0qDZsza3tLzIX2t25XLutys,2057
@@ -75,9 +75,9 @@ pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py,sha256=hKFHWUl0_OCMEZJbQn5c8Y
75
75
  pyedb/dotnet/edb_core/edb_data/hfss_pi_simulation_setup_data.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
76
  pyedb/dotnet/edb_core/edb_data/layer_data.py,sha256=SBx2IKtbSn4AvySw4b6IGu3rbb6F-nEoaiqhUwarpLY,25706
77
77
  pyedb/dotnet/edb_core/edb_data/nets_data.py,sha256=ICF61kgST9Rm4hUqU3KUh8FMNlrZEVQO1LqZR1VADkA,9979
78
- pyedb/dotnet/edb_core/edb_data/padstacks_data.py,sha256=eQCuZdYd5Q2_7jPoCQ5jsOE12kteKRB4rDyiUnUvMnU,79240
79
- pyedb/dotnet/edb_core/edb_data/ports.py,sha256=rKRlF0ugl34vi7oQbZuF1o8KLqddfbyk-NSt4EYdh8Q,9413
80
- pyedb/dotnet/edb_core/edb_data/primitives_data.py,sha256=k2H0uZO4g02g81_7cwbOVdIUQ0nIv6sIAn6xIgf2j5E,43427
78
+ pyedb/dotnet/edb_core/edb_data/padstacks_data.py,sha256=F_ig5kZJ_kYRajOcavVfAol-ArgTRTfrw8W16iMEhYM,79289
79
+ pyedb/dotnet/edb_core/edb_data/ports.py,sha256=wr2RQi8VExuNIVmnp7c4VpTIhODgthmJmHr01zO4ueo,8873
80
+ pyedb/dotnet/edb_core/edb_data/primitives_data.py,sha256=i6mC-y19iiO9Tr4w3A4Usrd_flyeUSPnxLCz980qFyA,43442
81
81
  pyedb/dotnet/edb_core/edb_data/raptor_x_simulation_setup_data.py,sha256=P37-OIsc8TuTC_s3CXRmvZcJqxAftHA7SATfEyoAnMM,20953
82
82
  pyedb/dotnet/edb_core/edb_data/simulation_configuration.py,sha256=w-fxyuj5LX5JwraM-3ONkXcqmsTBDzYto-0PUwF1974,101021
83
83
  pyedb/dotnet/edb_core/edb_data/sources.py,sha256=jzC6p-fiuPEvZn3b9z1-X5UexW5jd48jZRamXillnXI,15700
@@ -91,18 +91,18 @@ pyedb/dotnet/edb_core/sim_setup_data/data/__init__.py,sha256=8jByHkoaowAYQTCww-z
91
91
  pyedb/dotnet/edb_core/sim_setup_data/data/adaptive_frequency_data.py,sha256=tlHI7PUUoseNnJAtihpjb1PwXYNr-4ztAAnunlLLWVQ,2463
92
92
  pyedb/dotnet/edb_core/sim_setup_data/data/mesh_operation.py,sha256=bWKZTMqROiXvG6T3i7EcapcQBcL0gOChDu4tksdk1xo,8073
93
93
  pyedb/dotnet/edb_core/sim_setup_data/data/settings.py,sha256=u2EhL_netNF4FTQicWysPeXzkFBqBZhFjdwpu4LuBlk,27624
94
- pyedb/dotnet/edb_core/sim_setup_data/data/sim_setup_info.py,sha256=GcFfwifjAUQ-Ck4mz2vAFqkt_ubkpoH_V42Vb7K5q4U,2996
95
- pyedb/dotnet/edb_core/sim_setup_data/data/simulation_settings.py,sha256=xEVQ_vj1La3zr3B0PjaenllkynsxLrHrNeL-ROUkacc,14242
96
- pyedb/dotnet/edb_core/sim_setup_data/data/siw_dc_ir_settings.py,sha256=b7Zpg6nNQArYxvdxlVhXDzvvCSC5sKFvdt10b0MHkvc,8605
94
+ pyedb/dotnet/edb_core/sim_setup_data/data/sim_setup_info.py,sha256=yfSIsI7G5qgTqkc7UzWvw2-phZG2kawtQAxsXMiEvOE,4479
95
+ pyedb/dotnet/edb_core/sim_setup_data/data/simulation_settings.py,sha256=9ji4UQzgTTOExgGMpCB8zgvovBjhedwqLoN1MzUHOks,10727
96
+ pyedb/dotnet/edb_core/sim_setup_data/data/siw_dc_ir_settings.py,sha256=caRhPnon_jN5xXznLy57JPD5lGC7DS8KqYtXSC19nJ4,8627
97
97
  pyedb/dotnet/edb_core/sim_setup_data/data/sweep_data.py,sha256=YeFy9YoYVaieaBTnoXwzo66LyAOrEb5LnNDKv-FAlh8,17970
98
98
  pyedb/dotnet/edb_core/sim_setup_data/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
- pyedb/dotnet/edb_core/sim_setup_data/io/siwave.py,sha256=XOGBUtFuBJ61lsyylmW0mR_FDbnmwJ7s58r36peREhE,31311
99
+ pyedb/dotnet/edb_core/sim_setup_data/io/siwave.py,sha256=92iEZrhA2CUTZ7wynL5nxVVwi2XKKqppx7AcvvoqK6E,31387
100
100
  pyedb/dotnet/edb_core/utilities/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
101
101
  pyedb/dotnet/edb_core/utilities/heatsink.py,sha256=7G7Yx9TxbL5EAiR51MnhdRiAQBVf-d0hKsXDw5OYX2Q,2220
102
- pyedb/dotnet/edb_core/utilities/hfss_simulation_setup.py,sha256=uyS9wstK0nuLnjETuweuedS4j7bXurfDvz_YMI0ONqo,16484
102
+ pyedb/dotnet/edb_core/utilities/hfss_simulation_setup.py,sha256=_0H_7ypwrR5kj4LFhJLRvG9PV1lemvRnxRBJuOcGeXM,14074
103
103
  pyedb/dotnet/edb_core/utilities/obj_base.py,sha256=lufR0sZj0QfZ2wlNvLL6aM1KVqCNY2A7taPPdWcK20w,3312
104
- pyedb/dotnet/edb_core/utilities/simulation_setup.py,sha256=7iavXVKeEqR2HwJdr17lO3WUqZQ75UZIpkDaO-n5mR0,12484
105
- pyedb/dotnet/edb_core/utilities/siwave_simulation_setup.py,sha256=s24jfphD88c1Ru_bN2R-Hl70VdPzusBz7d75oYujtl4,12383
104
+ pyedb/dotnet/edb_core/utilities/simulation_setup.py,sha256=PWI5cvQcNrELp2fj3SifZFqUD_6mhBjPhK7jDBo4HGE,12359
105
+ pyedb/dotnet/edb_core/utilities/siwave_simulation_setup.py,sha256=BXuYJ7KQMgKiQnw6_Dft2aT11PYz6M7C-NJrMS8ZFX0,12764
106
106
  pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
107
  pyedb/generic/constants.py,sha256=prWLZH0-SeBIVK6LHZ4SGZFQCofuym2TuQYfdqwhuSQ,28956
108
108
  pyedb/generic/data_handlers.py,sha256=rfqNe2tPCJRqhXZBCyWxRFu5SjQ92Cdzq4l0TDC4Pvw,6905
@@ -181,7 +181,7 @@ pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py,sha256=YmYI6WTQulL5Uf8Wx
181
181
  pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py,sha256=KHa-UqcXuabiVfT2CV-UvWl5Q2qGYHF2Ye9azcAlnXc,3966
182
182
  pyedb/modeler/geometry_operators.py,sha256=iXNGfp3oMAxc6Ij_jatawR9NAKksMfnmWTaoHQVGX80,72699
183
183
  pyedb/siwave_core/icepak.py,sha256=WnZ-t8mik7LDY06V8hZFV-TxRZJQWK7bu_8Ichx-oBs,5206
184
- pyedb-0.18.0.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
185
- pyedb-0.18.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
186
- pyedb-0.18.0.dist-info/METADATA,sha256=k3nrmKYmQSCRdkJUsyLfawvYXzqg8aaPfrFYoGtPjOw,8336
187
- pyedb-0.18.0.dist-info/RECORD,,
184
+ pyedb-0.19.0.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
185
+ pyedb-0.19.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
186
+ pyedb-0.19.0.dist-info/METADATA,sha256=FPFEu4Oj7OzgJ-V0aH-11qrw0rbs7OKHhfme5ZpD7tY,8318
187
+ pyedb-0.19.0.dist-info/RECORD,,
File without changes