@@ -159,8 +159,6 @@ class SweepData:
159
159
Auto/Manual SMatrix only solve.
160
160
min_freq_s_mat_only_solve : str
161
161
Minimum frequency SMatrix only solve.
162
- frequencies : list[str]
163
- Frequency points in the frequency sweep.
164
162
steady_state_start : float
165
163
Frequency of Steady State Start.
166
164
mesh_freq_choice : int
@@ -225,7 +223,6 @@ def __init__(self, name, distribution, start_f, end_f, step):
225
223
self .parallel_hfss_regions_sim_cfg = []
226
224
self .auto_s_mat_only_solve = True
227
225
self .min_freq_s_mat_only_solve = "1MHz"
228
- self .frequencies = []
229
226
self .steady_state_start = - 1.0
230
227
self .mesh_freq_choice = - 1
231
228
self .mesh_freq_points = []
@@ -290,7 +287,6 @@ def _sweep_data_msg(sweep_data):
290
287
),
291
288
auto_s_mat_only_solve = sweep_data .auto_s_mat_only_solve ,
292
289
min_freq_s_mat_only_solve = sweep_data .min_freq_s_mat_only_solve ,
293
- frequencies = sweep_data .frequencies ,
294
290
steady_state_start = sweep_data .steady_state_start ,
295
291
mesh_freq_choice = sweep_data .mesh_freq_choice ,
296
292
mesh_freq_points = sweep_data .mesh_freq_points ,
@@ -355,7 +351,6 @@ def _msg_to_sweep_data(msg):
355
351
)
356
352
sweep_data .auto_s_mat_only_solve = msg .auto_s_mat_only_solve
357
353
sweep_data .min_freq_s_mat_only_solve = msg .min_freq_s_mat_only_solve
358
- sweep_data .frequencies = msg .frequencies
359
354
sweep_data .steady_state_start = msg .steady_state_start
360
355
sweep_data .mesh_freq_choice = msg .mesh_freq_choice
361
356
sweep_data .mesh_freq_points = msg .mesh_freq_points
0 commit comments