aesim.simba 2024.5.17a1__py3-none-win_amd64.whl → 2024.5.28a1__py3-none-win_amd64.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.
Files changed (27) hide show
  1. aesim/simba/Resources/Resources/DesignExamples.jsimba +460 -465
  2. aesim/simba/Resources/Resources/Examples/acdc_3ph_diodebridge.jsimba +548 -37
  3. aesim/simba/Resources/Resources/Examples/acdc_3ph_thyristor_rectifier.jsimba +1627 -216
  4. aesim/simba/Resources/Resources/Examples/acdc_pfc_totem_pole.jsimba +1343 -108
  5. aesim/simba/Resources/Resources/Examples/bldc_drive_example.jsimba +1941 -146
  6. aesim/simba/Resources/Resources/Examples/dcac_3_phase_inverter_spwm.jsimba +977 -58
  7. aesim/simba/Resources/Resources/Examples/dcdc_boost_converter.jsimba +271 -50
  8. aesim/simba/Resources/Resources/Examples/dcdc_buck_c_code.jsimba +618 -50
  9. aesim/simba/Resources/Resources/Examples/dcdc_buck_chopper_thermal.jsimba +399 -29
  10. aesim/simba/Resources/Resources/Examples/dcdc_buck_converter_ac_sweep.jsimba +420 -28
  11. aesim/simba/Resources/Resources/Examples/dcdc_buckboost.jsimba +595 -54
  12. aesim/simba/Resources/Resources/Examples/dcdc_dual_active_bridge_converter.jsimba +1672 -122
  13. aesim/simba/Resources/Resources/Examples/dcdc_flyback.jsimba +342 -28
  14. aesim/simba/Resources/Resources/Examples/dcdc_interleaved_buck_chopper.jsimba +723 -66
  15. aesim/simba/Resources/Resources/Examples/dcdc_llc_resonant_converter.jsimba +1859 -124
  16. aesim/simba/Resources/Resources/Examples/dcdc_phase_shift_full_bridge_converter.jsimba +1598 -160
  17. aesim/simba/Resources/Resources/Simba.Solvers.win-x64.dll +0 -0
  18. aesim/simba/Resources/Simba.Data.deps.json +8 -8
  19. aesim/simba/Resources/Simba.Data.dll +0 -0
  20. aesim/simba/Resources/Simba.Drawing.dll +0 -0
  21. aesim/simba/Resources/Simba.Helper.dll +0 -0
  22. aesim/simba/__init__.py +1 -1
  23. aesim/simba/__init__.pyi +98 -0
  24. {aesim.simba-2024.5.17a1.dist-info → aesim.simba-2024.5.28a1.dist-info}/METADATA +1 -1
  25. {aesim.simba-2024.5.17a1.dist-info → aesim.simba-2024.5.28a1.dist-info}/RECORD +27 -27
  26. {aesim.simba-2024.5.17a1.dist-info → aesim.simba-2024.5.28a1.dist-info}/WHEEL +0 -0
  27. {aesim.simba-2024.5.17a1.dist-info → aesim.simba-2024.5.28a1.dist-info}/top_level.txt +0 -0
@@ -17,11 +17,32 @@
17
17
  "Name": "DC1",
18
18
  "ID": "c5040b6b-1968-4657-916c-9951276a638d",
19
19
  "Parameters": {
20
- "Voltage": "48"
20
+ "Voltage": "48",
21
+ "Name": "DC1"
21
22
  },
22
23
  "EnabledScopes": [
23
24
  "Voltage"
24
- ]
25
+ ],
26
+ "ParametersDisplayAttributes": {
27
+ "Voltage": {
28
+ "IsVisible": false,
29
+ "Suffix": "",
30
+ "RelativeLocation": "2 2",
31
+ "UnrotatedWidth": 2,
32
+ "UnrotatedHeight": 1,
33
+ "FontSize": 12,
34
+ "Color": "#0081BC"
35
+ },
36
+ "Name": {
37
+ "IsVisible": true,
38
+ "Suffix": "",
39
+ "RelativeLocation": "4 3",
40
+ "UnrotatedWidth": 2,
41
+ "UnrotatedHeight": 2,
42
+ "FontSize": 12,
43
+ "Color": "#0081BC"
44
+ }
45
+ }
25
46
  },
26
47
  {
27
48
  "LibraryName": "Ground",
@@ -33,8 +54,21 @@
33
54
  "Disabled": false,
34
55
  "Name": "Ground1",
35
56
  "ID": "49f67ef4-1555-4ce7-84ff-d855846b579c",
36
- "Parameters": {},
37
- "EnabledScopes": []
57
+ "Parameters": {
58
+ "Name": "Ground1"
59
+ },
60
+ "EnabledScopes": [],
61
+ "ParametersDisplayAttributes": {
62
+ "Name": {
63
+ "IsVisible": false,
64
+ "Suffix": "",
65
+ "RelativeLocation": "4 3",
66
+ "UnrotatedWidth": 2,
67
+ "UnrotatedHeight": 2,
68
+ "FontSize": 12,
69
+ "Color": "#0081BC"
70
+ }
71
+ }
38
72
  },
39
73
  {
40
74
  "LibraryName": "Square Wave",
@@ -52,9 +86,75 @@
52
86
  "DutyCycle": "0.455",
53
87
  "Offset": "0",
54
88
  "PhaseShift": "0",
55
- "SamplingTime": "none"
89
+ "SamplingTime": "none",
90
+ "Name": "C1"
56
91
  },
57
- "EnabledScopes": []
92
+ "EnabledScopes": [],
93
+ "ParametersDisplayAttributes": {
94
+ "Amplitude": {
95
+ "IsVisible": false,
96
+ "Suffix": "",
97
+ "RelativeLocation": "1 4",
98
+ "UnrotatedWidth": 2,
99
+ "UnrotatedHeight": 1,
100
+ "FontSize": 12,
101
+ "Color": "#04B404"
102
+ },
103
+ "Frequency": {
104
+ "IsVisible": false,
105
+ "Suffix": "Hz",
106
+ "RelativeLocation": "1 5",
107
+ "UnrotatedWidth": 2,
108
+ "UnrotatedHeight": 1,
109
+ "FontSize": 12,
110
+ "Color": "#04B404"
111
+ },
112
+ "DutyCycle": {
113
+ "IsVisible": false,
114
+ "Suffix": "",
115
+ "RelativeLocation": "1 6",
116
+ "UnrotatedWidth": 2,
117
+ "UnrotatedHeight": 1,
118
+ "FontSize": 12,
119
+ "Color": "#04B404"
120
+ },
121
+ "Offset": {
122
+ "IsVisible": false,
123
+ "Suffix": "",
124
+ "RelativeLocation": "1 7",
125
+ "UnrotatedWidth": 2,
126
+ "UnrotatedHeight": 1,
127
+ "FontSize": 12,
128
+ "Color": "#04B404"
129
+ },
130
+ "PhaseShift": {
131
+ "IsVisible": false,
132
+ "Suffix": "\u00B0",
133
+ "RelativeLocation": "1 8",
134
+ "UnrotatedWidth": 2,
135
+ "UnrotatedHeight": 1,
136
+ "FontSize": 12,
137
+ "Color": "#04B404"
138
+ },
139
+ "SamplingTime": {
140
+ "IsVisible": false,
141
+ "Suffix": "",
142
+ "RelativeLocation": "1 9",
143
+ "UnrotatedWidth": 2,
144
+ "UnrotatedHeight": 1,
145
+ "FontSize": 12,
146
+ "Color": "#04B404"
147
+ },
148
+ "Name": {
149
+ "IsVisible": true,
150
+ "Suffix": "",
151
+ "RelativeLocation": "1 -1",
152
+ "UnrotatedWidth": 2,
153
+ "UnrotatedHeight": 1,
154
+ "FontSize": 12,
155
+ "Color": "#04B404"
156
+ }
157
+ }
58
158
  },
59
159
  {
60
160
  "LibraryName": "Ideal MOSFET",
@@ -67,9 +167,30 @@
67
167
  "Name": "T1",
68
168
  "ID": "91cc8b56-5802-4a84-ac34-fa428f468087",
69
169
  "Parameters": {
70
- "Ron": "0"
170
+ "Ron": "0",
171
+ "Name": "T1"
71
172
  },
72
- "EnabledScopes": []
173
+ "EnabledScopes": [],
174
+ "ParametersDisplayAttributes": {
175
+ "Ron": {
176
+ "IsVisible": false,
177
+ "Suffix": "",
178
+ "RelativeLocation": "1 0",
179
+ "UnrotatedWidth": 2,
180
+ "UnrotatedHeight": 1,
181
+ "FontSize": 12,
182
+ "Color": "#0081BC"
183
+ },
184
+ "Name": {
185
+ "IsVisible": true,
186
+ "Suffix": "",
187
+ "RelativeLocation": "2 2",
188
+ "UnrotatedWidth": 2,
189
+ "UnrotatedHeight": 2,
190
+ "FontSize": 12,
191
+ "Color": "#0081BC"
192
+ }
193
+ }
73
194
  },
74
195
  {
75
196
  "LibraryName": "Inductor",
@@ -83,9 +204,39 @@
83
204
  "ID": "db389d54-d814-4e99-b4c6-7dca6c588616",
84
205
  "Parameters": {
85
206
  "Value": "220u",
86
- "Iinit": "0"
207
+ "Iinit": "0",
208
+ "Name": "L1"
87
209
  },
88
- "EnabledScopes": []
210
+ "EnabledScopes": [],
211
+ "ParametersDisplayAttributes": {
212
+ "Value": {
213
+ "IsVisible": true,
214
+ "Suffix": "H",
215
+ "RelativeLocation": "2 2",
216
+ "UnrotatedWidth": 2,
217
+ "UnrotatedHeight": 1,
218
+ "FontSize": 12,
219
+ "Color": "#0081BC"
220
+ },
221
+ "Iinit": {
222
+ "IsVisible": false,
223
+ "Suffix": "",
224
+ "RelativeLocation": "2 4",
225
+ "UnrotatedWidth": 2,
226
+ "UnrotatedHeight": 1,
227
+ "FontSize": 12,
228
+ "Color": "#0081BC"
229
+ },
230
+ "Name": {
231
+ "IsVisible": true,
232
+ "Suffix": "",
233
+ "RelativeLocation": "2 -1",
234
+ "UnrotatedWidth": 2,
235
+ "UnrotatedHeight": 1,
236
+ "FontSize": 12,
237
+ "Color": "#0081BC"
238
+ }
239
+ }
89
240
  },
90
241
  {
91
242
  "LibraryName": "Ground",
@@ -97,8 +248,21 @@
97
248
  "Disabled": false,
98
249
  "Name": "Ground2",
99
250
  "ID": "9280363b-b53d-4a97-98f6-9c2429f8a879",
100
- "Parameters": {},
101
- "EnabledScopes": []
251
+ "Parameters": {
252
+ "Name": "Ground2"
253
+ },
254
+ "EnabledScopes": [],
255
+ "ParametersDisplayAttributes": {
256
+ "Name": {
257
+ "IsVisible": false,
258
+ "Suffix": "",
259
+ "RelativeLocation": "4 3",
260
+ "UnrotatedWidth": 2,
261
+ "UnrotatedHeight": 2,
262
+ "FontSize": 12,
263
+ "Color": "#0081BC"
264
+ }
265
+ }
102
266
  },
103
267
  {
104
268
  "LibraryName": "Ideal Transformer, 2 Winding",
@@ -111,9 +275,30 @@
111
275
  "Name": "TX1",
112
276
  "ID": "c4680131-189c-4449-8371-0e6885a22878",
113
277
  "Parameters": {
114
- "Ratio": "0.3"
278
+ "Ratio": "0.3",
279
+ "Name": "TX1"
115
280
  },
116
- "EnabledScopes": []
281
+ "EnabledScopes": [],
282
+ "ParametersDisplayAttributes": {
283
+ "Ratio": {
284
+ "IsVisible": false,
285
+ "Suffix": "",
286
+ "RelativeLocation": "2 0",
287
+ "UnrotatedWidth": 2,
288
+ "UnrotatedHeight": 1,
289
+ "FontSize": 12,
290
+ "Color": "#0081BC"
291
+ },
292
+ "Name": {
293
+ "IsVisible": true,
294
+ "Suffix": "",
295
+ "RelativeLocation": "2 -1",
296
+ "UnrotatedWidth": 2,
297
+ "UnrotatedHeight": 1,
298
+ "FontSize": 12,
299
+ "Color": "#0081BC"
300
+ }
301
+ }
117
302
  },
118
303
  {
119
304
  "LibraryName": "Ground",
@@ -125,8 +310,21 @@
125
310
  "Disabled": false,
126
311
  "Name": "Ground3",
127
312
  "ID": "7e4e9ec2-b220-4650-a29f-5d5a7f5f7394",
128
- "Parameters": {},
129
- "EnabledScopes": []
313
+ "Parameters": {
314
+ "Name": "Ground3"
315
+ },
316
+ "EnabledScopes": [],
317
+ "ParametersDisplayAttributes": {
318
+ "Name": {
319
+ "IsVisible": false,
320
+ "Suffix": "",
321
+ "RelativeLocation": "4 3",
322
+ "UnrotatedWidth": 2,
323
+ "UnrotatedHeight": 2,
324
+ "FontSize": 12,
325
+ "Color": "#0081BC"
326
+ }
327
+ }
130
328
  },
131
329
  {
132
330
  "LibraryName": "Ideal Diode",
@@ -140,9 +338,39 @@
140
338
  "ID": "5c4bf531-6373-4c73-ae97-3e08eb7a33d2",
141
339
  "Parameters": {
142
340
  "Rd": "0",
143
- "Vf": "0"
341
+ "Vf": "0",
342
+ "Name": "D1"
144
343
  },
145
- "EnabledScopes": []
344
+ "EnabledScopes": [],
345
+ "ParametersDisplayAttributes": {
346
+ "Rd": {
347
+ "IsVisible": false,
348
+ "Suffix": "",
349
+ "RelativeLocation": "2 0",
350
+ "UnrotatedWidth": 2,
351
+ "UnrotatedHeight": 1,
352
+ "FontSize": 12,
353
+ "Color": "#0081BC"
354
+ },
355
+ "Vf": {
356
+ "IsVisible": false,
357
+ "Suffix": "",
358
+ "RelativeLocation": "2 1",
359
+ "UnrotatedWidth": 2,
360
+ "UnrotatedHeight": 1,
361
+ "FontSize": 12,
362
+ "Color": "#0081BC"
363
+ },
364
+ "Name": {
365
+ "IsVisible": true,
366
+ "Suffix": "",
367
+ "RelativeLocation": "2 2",
368
+ "UnrotatedWidth": 2,
369
+ "UnrotatedHeight": 1,
370
+ "FontSize": 12,
371
+ "Color": "#0081BC"
372
+ }
373
+ }
146
374
  },
147
375
  {
148
376
  "LibraryName": "Resistor",
@@ -155,9 +383,30 @@
155
383
  "Name": "R1",
156
384
  "ID": "eeeb00ff-2873-491b-9aba-c539ea74b1e3",
157
385
  "Parameters": {
158
- "Value": "1m"
386
+ "Value": "1m",
387
+ "Name": "R1"
159
388
  },
160
- "EnabledScopes": []
389
+ "EnabledScopes": [],
390
+ "ParametersDisplayAttributes": {
391
+ "Value": {
392
+ "IsVisible": true,
393
+ "Suffix": "\u03A9",
394
+ "RelativeLocation": "2 2",
395
+ "UnrotatedWidth": 2,
396
+ "UnrotatedHeight": 2,
397
+ "FontSize": 12,
398
+ "Color": "#0081BC"
399
+ },
400
+ "Name": {
401
+ "IsVisible": true,
402
+ "Suffix": "",
403
+ "RelativeLocation": "2 -1",
404
+ "UnrotatedWidth": 2,
405
+ "UnrotatedHeight": 1,
406
+ "FontSize": 12,
407
+ "Color": "#0081BC"
408
+ }
409
+ }
161
410
  },
162
411
  {
163
412
  "LibraryName": "Capacitor",
@@ -171,9 +420,39 @@
171
420
  "ID": "159ef724-b95d-49ca-882a-de538b41863f",
172
421
  "Parameters": {
173
422
  "Value": "100u",
174
- "Vinit": "3"
423
+ "Vinit": "3",
424
+ "Name": "C2"
175
425
  },
176
- "EnabledScopes": []
426
+ "EnabledScopes": [],
427
+ "ParametersDisplayAttributes": {
428
+ "Value": {
429
+ "IsVisible": true,
430
+ "Suffix": "F",
431
+ "RelativeLocation": "2 2",
432
+ "UnrotatedWidth": 2,
433
+ "UnrotatedHeight": 2,
434
+ "FontSize": 12,
435
+ "Color": "#0081BC"
436
+ },
437
+ "Vinit": {
438
+ "IsVisible": false,
439
+ "Suffix": "V",
440
+ "RelativeLocation": "2 3",
441
+ "UnrotatedWidth": 2,
442
+ "UnrotatedHeight": 1,
443
+ "FontSize": 12,
444
+ "Color": "#0081BC"
445
+ },
446
+ "Name": {
447
+ "IsVisible": true,
448
+ "Suffix": "",
449
+ "RelativeLocation": "2 -1",
450
+ "UnrotatedWidth": 2,
451
+ "UnrotatedHeight": 1,
452
+ "FontSize": 12,
453
+ "Color": "#0081BC"
454
+ }
455
+ }
177
456
  },
178
457
  {
179
458
  "LibraryName": "Resistor",
@@ -186,12 +465,33 @@
186
465
  "Name": "R2",
187
466
  "ID": "94d2c435-9afa-457e-adfd-4914550f7437",
188
467
  "Parameters": {
189
- "Value": "6"
468
+ "Value": "6",
469
+ "Name": "R2"
190
470
  },
191
471
  "EnabledScopes": [
192
- "Current",
193
- "Voltage"
194
- ]
472
+ "Voltage",
473
+ "Current"
474
+ ],
475
+ "ParametersDisplayAttributes": {
476
+ "Value": {
477
+ "IsVisible": true,
478
+ "Suffix": "\u03A9",
479
+ "RelativeLocation": "2 2",
480
+ "UnrotatedWidth": 2,
481
+ "UnrotatedHeight": 1,
482
+ "FontSize": 12,
483
+ "Color": "#0081BC"
484
+ },
485
+ "Name": {
486
+ "IsVisible": true,
487
+ "Suffix": "",
488
+ "RelativeLocation": "2 -1",
489
+ "UnrotatedWidth": 2,
490
+ "UnrotatedHeight": 1,
491
+ "FontSize": 12,
492
+ "Color": "#0081BC"
493
+ }
494
+ }
195
495
  },
196
496
  {
197
497
  "LibraryName": "Ground",
@@ -203,8 +503,21 @@
203
503
  "Disabled": false,
204
504
  "Name": "Ground4",
205
505
  "ID": "a875279a-b7da-4c56-b3f6-5aadf71ba1fd",
206
- "Parameters": {},
207
- "EnabledScopes": []
506
+ "Parameters": {
507
+ "Name": "Ground4"
508
+ },
509
+ "EnabledScopes": [],
510
+ "ParametersDisplayAttributes": {
511
+ "Name": {
512
+ "IsVisible": false,
513
+ "Suffix": "",
514
+ "RelativeLocation": "4 3",
515
+ "UnrotatedWidth": 2,
516
+ "UnrotatedHeight": 2,
517
+ "FontSize": 12,
518
+ "Color": "#0081BC"
519
+ }
520
+ }
208
521
  }
209
522
  ],
210
523
  "Connectors": [
@@ -346,6 +659,7 @@
346
659
  "EndTime": "50m",
347
660
  "FixedTimeStep": false,
348
661
  "SaveInitialPoint": true,
662
+ "CompressScopes": false,
349
663
  "StopAtSteadyState": true,
350
664
  "TimeStep": "1e-08",
351
665
  "BaseFrequencyParameterEnabled": false,