-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyBirdcagebuilder.py
672 lines (538 loc) · 27.8 KB
/
pyBirdcagebuilder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
#!/usr/bin/env python3
"""
Description: pyBirdcagebuilder is a program that calculates ideal capacitor values for birdcage coil designs.
This program is based on the original Birdcage Builder program provided by PennState Health.
(https://research.med.psu.edu/departments/center-for-nmr-research/software/birdcage-builder-web-app/)
Author: Dimitri Welting
Website: http://github.com/dwelting/pyBirdcagebuilder
License: Copyright (c) 2020 Dimitri Welting. All rights reserved.
Distributed under the MIT license. The full text of the license can be found in the LICENSE file or on the above-mentioned website.
This code is free to download and use. Any paid service providing this code is not endorsed by the author.
"""
import tkinter as tk
from tkinter import ttk, font
from tkinter import messagebox as mb
import math
import os
import lib.my_tk as my_tk
from lib.logging import logger
from lib.birdcage_math import CalculateBirdcage
from lib.config import MyConfig
PROGRAM_NAME = "pyBirdcagebuilder"
VERSION = "v0.1"
WEBSITE = "github.com/dwelting/pyBirdcagebuilder"
ICON_FOLDER = os.path.join(os.getcwd(), "icon", "")
MAX_PRECISION = 2
class MainApplication:
WINDOWSIZEx = 500
WINDOWSIZEy = 550
HIGHPASS = 1
LOWPASS = 2
BANDPASS = 3
RECT = 1
TUBE = 2
LEG = 1
ER = 2
ELLIPSE = 0
CIRCLE = 1
SHORT = 1
LONG = 0
def __init__(self, window):
self._setWindow(window)
self.window = window
self.Config = MyConfig(self)
# menubar
self.menuBar = MyMenuBar(self)
window.config(menu=self.menuBar.menu)
self.tab_control = ttk.Notebook(window) # tabs
self.calcCapacitance = CalculateBirdcage(self)
self.guiTabSettings = MySettingsTab(self)
self.guiTabResults = MyResultsTab(self)
self.guiTabMoreInfo = MyMoreInfoTab(self)
self.tab_control.add(self.guiTabSettings.tab, text=' Settings ')
self.tab_control.add(self.guiTabResults.tab, text=' Results ')
self.tab_control.add(self.guiTabMoreInfo.tab, text=' More Information ')
self.tab_control.pack(expand=1, fill='both', padx=(5, 5), pady=(5, 5))
if os.name == 'posix':
bg = ttk.Style().lookup('TFrame', 'background')
self.guiTabSettings.tab.tk_setPalette(background=bg) # only useful in linux. Hides color inconsistencies between widget bg and frame bg
def _setWindow(self, window):
window.title(f"{PROGRAM_NAME}") # {VERSION}")
my_tk.centerWindow(window, self.WINDOWSIZEx, self.WINDOWSIZEy)
window.maxsize(self.WINDOWSIZEx, self.WINDOWSIZEy)
window.minsize(self.WINDOWSIZEx, self.WINDOWSIZEy)
window.resizable(0, 0)
try:
if os.name == 'posix': # windows doesn't like 32px icons
icon = "icon32.png"
else:
icon = "icon16.png"
window.iconphoto(True, tk.PhotoImage(file=ICON_FOLDER + icon))
except tk.TclError:
logger.warn("Icon error: no application icon found?")
def startCalculation(self):
inputs_ = self.guiTabSettings.validateInputs()
if not inputs_:
return
logger.info("Calculation started with values:\n\t\t\t" + "\n\t\t\t".join("{}: {}".format(k, v) for k, v in inputs_.items()))
self.calcCapacitance.calculate()
self.guiTabResults.drawCapacitors()
self.guiTabResults.drawGraph()
self.tab_control.select(1) # At end switch tab to results
class MyMenuBar:
def __init__(self, parent):
self.parent = parent
self.coil_shape = tk.BooleanVar() # selects which coil type
self.coil_shape.set(True)
self.menu = tk.Menu(parent.window)
self._fileMenu()
# self._optionMenu() #todo add when elliptical is fixed
self._helpMenu()
def _optionMenu(self):
optionmenu = tk.Menu(self.menu, tearoff=0)
self.menu.add_cascade(label="Options", menu=optionmenu)
optionmenu.add_checkbutton(label="Circular", onvalue=self.parent.CIRCLE, offvalue=self.parent.ELLIPSE, command=lambda e: print("Not yet implemented"), variable=self.coil_shape)
optionmenu.add_checkbutton(label="Eliptical", onvalue=self.parent.ELLIPSE, offvalue=self.parent.CIRCLE, command=lambda e: print("Not yet implemented"), variable=self.coil_shape)
def _helpMenu(self):
helpmenu = tk.Menu(self.menu, tearoff=0)
self.menu.add_cascade(label="Help", menu=helpmenu)
helpmenu.add_command(label=f"About {PROGRAM_NAME}", command=MyAboutWindow)
def _fileMenu(self):
filemenu = tk.Menu(self.menu, tearoff=0)
self.menu.add_cascade(label="File", menu=filemenu)
# filemenu.add_command(label="Save config", command=self.parent.Config.save)
# filemenu.add_command(label="Save config as...", command=self.parent.Config.saveAs)
# filemenu.add_command(label="Load config", command=self.parent.Config.load)
# filemenu.add_separator()
filemenu.add_command(label="Exit", command=self.parent.window.quit)
class MyMoreInfoTab:
def __init__(self, parent):
self.parent = parent
self.tab = ttk.Frame(parent.tab_control)
self.v_ind_self_legs = tk.DoubleVar() # calculated self inductance of legs
self.v_ind_self_er = tk.DoubleVar() # calculated self inductance of end ring
self.v_ind_eff_legs = tk.DoubleVar() # calculated effective inductance of legs
self.v_ind_eff_er = tk.DoubleVar() # calculated effective inductance of end ring
lf_ind_calc = tk.LabelFrame(self.tab, text="Inductance Calculations", font=myfont_bold)
lbl_self = tk.Label(lf_ind_calc, text="Self (nH)", font=myfont_bold, foreground="blue")
lbl_eff = tk.Label(lf_ind_calc, text="Effective (nH)", font=myfont_bold, foreground="blue")
lb_legs = tk.Label(lf_ind_calc, text="Legs", font=myfont_bold)
lb_er = tk.Label(lf_ind_calc, text="ER Seg.", font=myfont_bold)
txt_self_legs = my_tk.MyEntry(lf_ind_calc, text=self.v_ind_self_legs, read_only=True, decimals=MAX_PRECISION)
txt_self_er = my_tk.MyEntry(lf_ind_calc, text=self.v_ind_self_er, read_only=True, decimals=MAX_PRECISION)
txt_eff_legs = my_tk.MyEntry(lf_ind_calc, text=self.v_ind_eff_legs, read_only=True, decimals=MAX_PRECISION)
txt_eff_er = my_tk.MyEntry(lf_ind_calc, text=self.v_ind_eff_er, read_only=True, decimals=MAX_PRECISION)
lbl_self.grid(column=1, row=0, sticky=tk.NSEW, padx=(0, 20), pady=(0, 5))
lbl_eff.grid(column=2, row=0, sticky=tk.NSEW, padx=(0, 5), pady=(0, 5))
lb_legs.grid(column=0, row=1, sticky=tk.NSEW, pady=(0, 10))
lb_er.grid(column=0, row=2, sticky=tk.NSEW, pady=(0, 10))
txt_self_legs.grid(column=1, row=1, sticky=tk.NW)
txt_self_er.grid(column=1, row=2, sticky=tk.NW)
txt_eff_legs.grid(column=2, row=1, sticky=tk.NW)
txt_eff_er.grid(column=2, row=2, sticky=tk.NW)
tk.Grid.columnconfigure(self.tab, 0, weight=0)
tk.Grid.columnconfigure(self.tab, 3, weight=1)
lf_ind_calc.grid(column=0, row=0, sticky=tk.NSEW, pady=(5, 5), padx=(5, 0))
class MyResultsTab:
def __init__(self, parent):
self.parent = parent
self.tab = ttk.Frame(parent.tab_control)
self.v_cap_res = tk.DoubleVar() # calculated cap value
lbl_cap = tk.Label(self.tab, text="Calculated Capacitance (pF)", font=myfont_bold, foreground="blue")
txt_cap_res = my_tk.MyEntry(self.tab, text=self.v_cap_res, read_only=True, decimals=MAX_PRECISION)
tk.Grid.columnconfigure(self.tab, 1, weight=0)
tk.Grid.columnconfigure(self.tab, 0, weight=1)
tk.Grid.columnconfigure(self.tab, 3, weight=1)
lbl_cap.grid(column=1, row=0, columnspan=2, sticky=tk.NW, pady=(5, 5), padx=(5, 0))
txt_cap_res.grid(column=1, row=1, sticky=tk.NW, pady=(0, 50), padx=(5, 0))
self._initializeGraphs()
def _initializeGraphs(self):
# current graph
self.canvas_size = 200
frm_curr_plot = tk.LabelFrame(self.tab)
lbl_curr_plot = tk.Label(frm_curr_plot, text="Current distribution in the legs", font=myfont_small_bold, foreground="blue")
lbl_curr_plot.pack(anchor='nw')
lbl_curr_plot2 = tk.Label(frm_curr_plot, text="Normalized current intensity", font=myfont_small, foreground="black")
lbl_curr_plot2.pack(anchor='nw')
self.canvas_curr = tk.Canvas(frm_curr_plot, width=self.canvas_size, height=self.canvas_size, borderwidth=0, highlightbackground="grey")
self._drawGraphAxis()
self.canvas_curr.pack(pady=(10, 10))
lbl_curr_plot2 = tk.Label(frm_curr_plot, text="Angular position of leg (degree)\nZero beginning at +X direction", font=myfont_small, foreground="black")
lbl_curr_plot2.pack(anchor='nw')
# capacitor graph
frm_cap_pos = tk.LabelFrame(self.tab)
lbl_cap_pos = tk.Label(frm_cap_pos, text="Position of legs and capacitors", font=myfont_small_bold, foreground="blue")
lbl_cap_pos.pack(anchor='nw')
lbl_curr_plot2 = tk.Label(frm_cap_pos, text="C: Capacitor", font=myfont_small, foreground="black")
lbl_curr_plot2.pack(anchor='nw')
self.canvas_cap = tk.Canvas(frm_cap_pos, width=self.canvas_size, height=self.canvas_size, borderwidth=1, highlightbackground="grey")
self._drawCapacitorAxis()
self.canvas_cap.pack(pady=(10, 10))
frm_curr_plot.grid(column=1, row=2, sticky=tk.NW, padx=(5, 10))
frm_cap_pos.grid(column=2, row=2, sticky=tk.NW)
def _drawCapacitorAxis(self):
if self.parent.menuBar.coil_shape.get() == self.parent.CIRCLE:
self.canvas_cap.create_oval(20, 20, self.canvas_size-20, self.canvas_size-20, outline="green", width=1)
else:
ratio = self.parent.guiTabSettings.v_coil_short_diameter.get() / self.parent.guiTabSettings.v_coil_long_diameter.get()
x_min = 20
x_max = self.canvas_size - 20
y_min = self.canvas_size/2 - ((self.canvas_size/2 - 20) * ratio)
y_max = self.canvas_size/2 + ((self.canvas_size/2 - 20) * ratio)
self.canvas_cap.create_oval(x_min, y_min, x_max, y_max, outline="green", width=1)
self.canvas_cap.create_line(self.canvas_size/2, 0, self.canvas_size/2, self.canvas_size, fill="blue", width=1)
self.canvas_cap.create_line(0, self.canvas_size/2, self.canvas_size, self.canvas_size/2, fill="blue", width=1)
self.canvas_cap.create_text(self.canvas_size/2+((self.canvas_size-40)/2)-20, self.canvas_size/2+10, text="+X", font='freemono 9', fill='black')
def drawCapacitors(self):
self.canvas_cap.delete("all")
self._drawCapacitorAxis()
thetas = self.parent.calcCapacitance.thetas
bc_mode = self.parent.guiTabSettings.v_rb_config_selected.get()
# if self.parent.menuBar.coil_shape.get() == ELLIPSE:
# ratio = self.parent.guiTabSettings.v_coil_short_diameter.get() / self.parent.guiTabSettings.v_coil_long_diameter.get()
# else:
# ratio = 1
r = ((self.canvas_size-40)/2)
for theta in thetas:
x = r * math.sin(theta) + self.canvas_size/2
y = r * math.cos(theta) + self.canvas_size/2
self.canvas_cap.create_oval(x - 4, y - 4, x + 4, y + 4, fill='red')
r_hp = ((self.canvas_size-40)/2) + 6 # radius
r_lp = r_hp + 4 # radius
offset = thetas[0] # rotate the c's to be in between the dots
for theta in thetas: # angle and radius to x/y coords
if bc_mode != self.parent.LOWPASS: # if highpass or bandpass
x = r_hp * math.sin(theta - offset) + (self.canvas_size/2) + 1
y = r_hp * math.cos(theta - offset) + (self.canvas_size/2) - 1
self.canvas_cap.create_text(x, y, text="c", fill='blue')
if bc_mode != self.parent.HIGHPASS: # if lowpass or bandpass
x = r_lp * math.sin(theta) + (self.canvas_size/2) + 1
y = r_lp * math.cos(theta) + (self.canvas_size/2) - 1
self.canvas_cap.create_text(x, y, text="c", fill='blue')
def _drawGraphAxis(self):
from_edge_l = 10
from_edge_r = self.canvas_size-10
self.canvas_curr.create_line(from_edge_l, self.canvas_size/2, from_edge_r, self.canvas_size/2, fill="blue", width=2) # middle line
self.canvas_curr.create_line(from_edge_l, self.canvas_size/2-5, from_edge_l, self.canvas_size/2+5, fill="blue", width=2) # left
self.canvas_curr.create_line((from_edge_r-from_edge_l)/4+from_edge_l, self.canvas_size/2-5, (from_edge_r-from_edge_l)/4+from_edge_l, self.canvas_size/2+5, fill="blue", width=2) # leftmiddle
self.canvas_curr.create_line((from_edge_r-from_edge_l)/2+from_edge_l, self.canvas_size/2-5, (from_edge_r-from_edge_l)/2+from_edge_l, self.canvas_size/2+5, fill="blue", width=2) # middle
self.canvas_curr.create_line(from_edge_r-(from_edge_r-from_edge_l)/4, self.canvas_size/2-5, from_edge_r-(from_edge_r-from_edge_l)/4, self.canvas_size/2+5, fill="blue", width=2) # rightmiddle
self.canvas_curr.create_line(from_edge_r, self.canvas_size/2-5, from_edge_r, self.canvas_size/2+5, fill="blue", width=2) # right
self.canvas_curr.create_text(from_edge_l+2, self.canvas_size/2+15, text="0", font='freemono 8')
self.canvas_curr.create_text((from_edge_r-from_edge_l)/2+from_edge_l, self.canvas_size/2+15, text="180", font='freemono 9')
self.canvas_curr.create_text(self.canvas_size-10, self.canvas_size/2+15, text="360", font='freemono 9')
def drawGraph(self):
self.canvas_curr.delete("all")
self._drawGraphAxis()
legcurrs = self.parent.calcCapacitance.legcurrs
nr_of_legs = self.parent.calcCapacitance.nr_of_legs
offset = 10
highest_curr = 0
for curr in legcurrs:
if abs(curr) > highest_curr:
highest_curr = abs(curr)
scale = self.canvas_size/2 / highest_curr / 1.3
old_x = 0
old_y = 0
for i, curr in enumerate(legcurrs): # create the lines
x = ((self.canvas_size-20) / (nr_of_legs-1)) * i + offset
y = -curr * scale + self.canvas_size/2
if i > 0:
self.canvas_curr.create_line(x, y, old_x, old_y, width=1, fill='green')
old_x = x
old_y = y
for i, curr in enumerate(legcurrs): # create the dots
x = ((self.canvas_size-20) / (nr_of_legs-1)) * i + offset
y = -curr * scale + self.canvas_size/2
self.canvas_curr.create_oval(x - 4, y - 4, x + 4, y + 4, fill='red')
class MySettingsTab:
def __init__(self, parent):
self.parent = parent
self.tab = ttk.Frame(parent.tab_control)
self.v_res_freq = tk.DoubleVar() # variable for Resonance frequency
self.v_rb_legs_selected = tk.IntVar() # variable for state of radiobuttons
self.v_rb_er_selected = tk.IntVar() # variable for state of radiobuttons
self.v_rb_config_selected = tk.IntVar() # variable for state of radiobuttons
self.v_nr_of_legs = tk.IntVar()
self.v_coil_diameter = tk.DoubleVar()
self.v_shield_diameter = tk.DoubleVar()
self.v_bp_cap = tk.DoubleVar()
self.v_rb_bp = tk.IntVar()
self.v_leg_length = tk.DoubleVar()
self.v_er_width = tk.DoubleVar()
self.v_leg_width = tk.DoubleVar()
self.v_er_od = tk.DoubleVar()
self.v_er_id = tk.DoubleVar()
self.v_leg_od = tk.DoubleVar()
self.v_leg_id = tk.DoubleVar()
self.v_coil_shortaxis = tk.IntVar()
self.v_coil_long_diameter = tk.DoubleVar()
self.v_coil_short_diameter = tk.DoubleVar()
self.v_rb_legs_selected.set(self.parent.RECT)
self.v_rb_er_selected.set(self.parent.RECT)
self.v_rb_config_selected.set(self.parent.HIGHPASS)
self.v_rb_bp.set(self.parent.LEG)
self.v_er_seg_length = tk.DoubleVar() # Calculated segment length
self._setGui()
self.v_rb_config_selected.trace("w", lambda *args: self._guiSettingsAdjust())
self.v_rb_legs_selected.trace("w", lambda *args: self._guiSettingsAdjust())
self.v_rb_er_selected.trace("w", lambda *args: self._guiSettingsAdjust())
self._guiSettingsAdjust()
self.setDefaults()
def _setGui(self):
#todo make sub functions for each gui part
lbl_title = tk.Label(self.tab, text="Circular Birdcage Coil ", font=myfont_bold, foreground="blue")
lf_type_of_legs = tk.LabelFrame(self.tab, text="Type of Leg", font=myfont_bold)
rb_leg_r = tk.Radiobutton(lf_type_of_legs, text='Rectangular', value=self.parent.RECT, variable=self.v_rb_legs_selected)
rb_leg_t = tk.Radiobutton(lf_type_of_legs, text='Tubular', value=self.parent.TUBE, variable=self.v_rb_legs_selected)
rb_leg_r.pack(anchor="w")
rb_leg_t.pack(anchor="w")
lf_type_of_er = tk.LabelFrame(self.tab, text="Type of ER", font=myfont_bold)
rb_er_r = tk.Radiobutton(lf_type_of_er, text='Rectangular', value=self.parent.RECT, variable=self.v_rb_er_selected)
rb_er_t = tk.Radiobutton(lf_type_of_er, text='Tubular', value=self.parent.TUBE, variable=self.v_rb_er_selected)
rb_er_r.pack(anchor="w")
rb_er_t.pack(anchor="w")
lf_config = tk.LabelFrame(self.tab, text="Configuration", font=myfont_bold)
rb_config_hp = tk.Radiobutton(lf_config, text='High-Pass', value=self.parent.HIGHPASS, variable=self.v_rb_config_selected)
rb_config_lp = tk.Radiobutton(lf_config, text='Low-Pass', value=self.parent.LOWPASS, variable=self.v_rb_config_selected)
rb_config_bp = tk.Radiobutton(lf_config, text='Band-Pass', value=self.parent.BANDPASS, variable=self.v_rb_config_selected)
rb_config_hp.pack(anchor="w")
rb_config_lp.pack(anchor="w")
rb_config_bp.pack(anchor="w")
self.frm_bp = tk.LabelFrame(lf_config)
lb_bp_cap = tk.Label(self.frm_bp, text="Predetermined\ncapacitor (pF)", justify='left', fg='blue')
txt_bp_cap = my_tk.NumInput(self.frm_bp, text=self.v_bp_cap, width=5, bg="white", min_value=0.001)
rb_bp_leg = tk.Radiobutton(self.frm_bp, text='On Leg', font=myfont_bold, value=self.parent.LEG, variable=self.v_rb_bp)
rb_bp_er = tk.Radiobutton(self.frm_bp, text='On ER', font=myfont_bold, value=self.parent.ER, variable=self.v_rb_bp)
lb_bp_cap.grid(row=0, sticky=tk.W, columnspan=2)
txt_bp_cap.grid(row=1, column=1, rowspan=2, sticky=tk.W)
rb_bp_leg.grid(row=1, sticky=tk.NW, padx=(0, 5))
rb_bp_er.grid(row=2, sticky=tk.NW)
self.frm_bp.pack(anchor="w")
lf_nr_of_legs = tk.LabelFrame(self.tab, text="Number of Legs", font=myfont_bold)
scale_nr_of_legs = my_tk.MyScale(lf_nr_of_legs, from_=8, to=32, resolution=4, tickinterval=4, orient=tk.HORIZONTAL, length=250,
variable=self.v_nr_of_legs, command=lambda e: self.v_nr_of_legs.set(scale_nr_of_legs.get()))
scale_nr_of_legs.pack()
lf_dimensions = tk.LabelFrame(self.tab, text="Dimensions (cm)", font=myfont_bold)
lb_leg_length = tk.Label(lf_dimensions, text="Leg Length")
lb_coil_radius = tk.Label(lf_dimensions, text="Coil Diameter ")
lb_shield_radius = tk.Label(lf_dimensions, text="RF shield Diameter ")
txt_leg_length = my_tk.NumInput(lf_dimensions, text=self.v_leg_length, width=7, bg="white", min_value=0)
txt_coil_radius = my_tk.NumInput(lf_dimensions, text=self.v_coil_diameter, width=7, bg="white", min_value=0)
txt_shield_radius = my_tk.NumInput(lf_dimensions, text=self.v_shield_diameter, width=7, bg="white", min_value=0)
self.lb_leg_width = tk.Label(lf_dimensions, text="Leg Width")
self.lb_er_width = tk.Label(lf_dimensions, text="ER Seg. Width")
self.txt_leg_width = my_tk.NumInput(lf_dimensions, text=self.v_leg_width, width=7, bg="white", min_value=0)
self.txt_er_width = my_tk.NumInput(lf_dimensions, text=self.v_er_width, width=7, bg="white", min_value=0)
self.lb_leg_od = tk.Label(lf_dimensions, text="Leg O.D.")
self.lb_leg_id = tk.Label(lf_dimensions, text="Leg I.D.")
self.lb_er_od = tk.Label(lf_dimensions, text="ER O.D.")
self.lb_er_id = tk.Label(lf_dimensions, text="ER I.D.")
self.txt_leg_od = my_tk.NumInput(lf_dimensions, text=self.v_leg_od, width=7, bg="white", min_value=0)
self.txt_leg_id = my_tk.NumInput(lf_dimensions, text=self.v_leg_id, width=7, bg="white", min_value=0)
self.txt_er_od = my_tk.NumInput(lf_dimensions, text=self.v_er_od, width=7, bg="white", min_value=0)
self.txt_er_id = my_tk.NumInput(lf_dimensions, text=self.v_er_id, width=7, bg="white", min_value=0)
# automatic segment length calculation textbox, label
self.lb_seg_length = tk.Label(lf_dimensions, text="ER Seg. length", foreground='blue')
self.txt_seg_length = my_tk.MyEntry(lf_dimensions, text=self.v_er_seg_length, fg='grey', read_only=True, decimals=MAX_PRECISION)
self.txt_seg_length.setValue("-")
lb_leg_length.grid(column=0, row=1, sticky=tk.W, pady=(0, 10))
txt_leg_length.grid(column=1, row=1, sticky=tk.W, pady=(0, 10), padx=(0, 10))
lb_coil_radius.grid(column=0, row=0, sticky=tk.W, pady=(0, 10))
txt_coil_radius.grid(column=1, row=0, sticky=tk.W, pady=(0, 10))
lb_shield_radius.grid(column=2, row=0, sticky=tk.W, pady=(0, 10))
txt_shield_radius.grid(column=3, row=0, sticky=tk.W, pady=(0, 10), padx=(0, 10))
self.lb_seg_length.grid(column=2, row=3, sticky=tk.W, pady=(0, 10))
self.txt_seg_length.grid(column=3, row=3, sticky=tk.W, pady=(0, 10), padx=(0, 10))
self.lb_leg_width.grid(column=0, row=2, sticky=tk.W, pady=(0, 10))
self.txt_leg_width.grid(column=1, row=2, sticky=tk.W, pady=(0, 10), padx=(0, 10))
self.lb_er_width.grid(column=2, row=1, sticky=tk.W, pady=(0, 10))
self.txt_er_width.grid(column=3, row=1, sticky=tk.W, pady=(0, 10), padx=(0, 10))
self.lb_leg_od.grid(column=0, row=2, sticky=tk.W, pady=(0, 10))
self.txt_leg_od.grid(column=1, row=2, sticky=tk.W, pady=(0, 10), padx=(0, 10))
self.lb_leg_id.grid(column=0, row=3, sticky=tk.W, pady=(0, 10))
self.txt_leg_id.grid(column=1, row=3, sticky=tk.W, pady=(0, 10), padx=(0, 10))
self.lb_er_od.grid(column=2, row=1, sticky=tk.W, pady=(0, 10))
self.txt_er_od.grid(column=3, row=1, sticky=tk.W, pady=(0, 10), padx=(0, 10))
self.lb_er_id.grid(column=2, row=2, sticky=tk.W, pady=(0, 10))
self.txt_er_id.grid(column=3, row=2, sticky=tk.W, pady=(0, 10), padx=(0, 10))
frm_f0 = tk.Frame(self.tab)
lb_res_freq = tk.Label(frm_f0, font=myfont_bold, text="Resonant\nFreq. (MHz)", justify='left')
txt_res_freq = my_tk.NumInput(frm_f0, text=self.v_res_freq, width=7, bg="white", min_value=0)
lb_res_freq.grid(row=0, sticky=tk.W)
txt_res_freq.grid(row=2, sticky=tk.W)
btn = ttk.Button(self.tab, text="Calculate", command=self.parent.startCalculation)
tk.Grid.columnconfigure(self.tab, 1, weight=0)
tk.Grid.columnconfigure(self.tab, 0, weight=100)
tk.Grid.columnconfigure(self.tab, 3, weight=1)
tk.Grid.columnconfigure(self.tab, 4, weight=100)
tk.Grid.rowconfigure(self.tab, 1, weight=1)
tk.Grid.rowconfigure(self.tab, 10, weight=100)
lbl_title.grid(column=1, row=0, sticky=tk.N+tk.EW, pady=(5, 10))
lf_type_of_legs.grid(column=1, row=1, sticky=tk.NSEW, pady=(0, 10), padx=(5, 10))
lf_type_of_er.grid(column=1, row=2, sticky=tk.NSEW, pady=(0, 10), padx=(5, 10))
lf_config.grid(column=2, row=0, rowspan=2, sticky=tk.NSEW, pady=(0, 10), padx=(0, 10))
lf_nr_of_legs.grid(column=2, row=2, columnspan=2, sticky=tk.NSEW, pady=(0, 10))
lf_dimensions.grid(column=1, row=3, columnspan=3, sticky=tk.NSEW, pady=(0, 10), padx=(5, 0))
frm_f0.grid(column=3, row=0, rowspan=2, sticky=tk.NSEW)
btn.grid(column=1, row=4, columnspan=3)
def validateInputs(self):
inputs_ = {"Resonance Frequency": self.v_res_freq.get(),
"Coil Diameter": self.v_coil_diameter.get(),
"Shield Diameter": self.v_shield_diameter.get(),
"Nr Of Legs": self.v_nr_of_legs.get(),
"Leg Length": self.v_leg_length.get(),
"Leg Width": self.v_leg_width.get(),
"Leg OD": self.v_leg_od.get(),
"Leg ID": self.v_leg_id.get(),
"ER Width": self.v_er_width.get(),
"ER OD": self.v_er_od.get(),
"ER ID": self.v_er_id.get(),
"Bandpass Capacitor": self.v_bp_cap.get(),
"Long Diameter": self.v_coil_long_diameter.get(),
"Short Diameter": self.v_coil_short_diameter.get()}
for key, value in inputs_.items():
if key == "Shield Diameter":
continue
if value == 0:
mb.showwarning("Input zero", "One or more inputs are zero.\nPlease input valid values.")
return False
if inputs_["Shield Diameter"] == inputs_["Coil Diameter"]:
mb.showwarning("Zero shield distance", "Shield distance is equal to coil diameter.\nPlease input valid values.")
return False
return inputs_
def setDefaults(self):
self.v_res_freq.set(298)
self.v_nr_of_legs.set(12)
self.v_coil_diameter.set(30)
self.v_shield_diameter.set(34)
self.v_leg_length.set(20)
self.v_leg_width.set(0.5)
self.v_leg_od.set(1)
self.v_leg_id.set(0.6)
self.v_er_width.set(0.5)
self.v_er_od.set(1)
self.v_er_id.set(0.6)
self.v_bp_cap.set(56)
self.v_coil_shortaxis.set(self.parent.SHORT)
self.v_coil_long_diameter.set(40)
self.v_coil_short_diameter.set(30)
def _guiSettingsAdjust(self):
# adjusts the settings tab when clicking radiobuttons
if self.v_rb_legs_selected.get() == self.parent.RECT:
self.lb_leg_width.grid()
self.txt_leg_width.grid()
self.lb_leg_od.grid_remove()
self.txt_leg_od.grid_remove()
self.lb_leg_id.grid_remove()
self.txt_leg_id.grid_remove()
else:
self.lb_leg_width.grid_remove()
self.txt_leg_width.grid_remove()
self.lb_leg_od.grid()
self.txt_leg_od.grid()
self.lb_leg_id.grid()
self.txt_leg_id.grid()
if self.v_rb_er_selected.get() == self.parent.RECT:
self.lb_er_width.grid()
self.txt_er_width.grid()
self.lb_er_od.grid_remove()
self.txt_er_od.grid_remove()
self.lb_er_id.grid_remove()
self.txt_er_id.grid_remove()
self.lb_seg_length.grid(row=2)
self.txt_seg_length.grid(row=2)
else:
self.lb_er_width.grid_remove()
self.txt_er_width.grid_remove()
self.lb_er_od.grid()
self.txt_er_od.grid()
self.lb_er_id.grid()
self.txt_er_id.grid()
self.lb_seg_length.grid(row=3)
self.txt_seg_length.grid(row=3)
if self.v_rb_config_selected.get() == self.parent.BANDPASS:
self.frm_bp.pack()
else:
self.frm_bp.pack_forget()
class MyAboutWindow:
def __init__(self):
self.top = tk.Toplevel()
self.top.transient(root)
self.top.update_idletasks()
self.top.withdraw()
self.top.title(f"About {PROGRAM_NAME}") # {VERSION}")
self.top.maxsize(400, 450)
self.top.resizable(0, 0)
self._setGui()
self._centerWindow(self.top)
self.top.deiconify()
def _setGui(self):
# logo
self.top.img = img = tk.PhotoImage(file=ICON_FOLDER + "icon32.png")
self.top.img = img = img.zoom(2) # needs top.img = to not get garbage collected
image = tk.Label(self.top, image=img)
lb_prog = tk.Label(self.top, text=f"{PROGRAM_NAME} {VERSION}", anchor='w')
import webbrowser
myfont_underlined = default_font.copy()
myfont_underlined.configure(underline=True)
lb_site = tk.Label(self.top, text=f"{WEBSITE}", fg="blue", cursor="hand2", anchor='w', font=myfont_underlined)
lb_site.bind("<Button-1>", lambda e: webbrowser.open("http://"+WEBSITE, new=0, autoraise=True))
txt = f"{PROGRAM_NAME} is a program to easily determine the ideal capacitor to be used in a birdcage coil design.\n\n" \
"An acknowledgement goes to PennState Health for the original version and the math used in this program."
msg = tk.Message(self.top, text=txt, justify='left', anchor='nw')
msg.bind("<Configure>", lambda e: msg.configure(width=e.width-10))
# Buttons
frm_button = tk.Frame(self.top)
btn_license = ttk.Button(frm_button, text="License", command=self._showLicense, width=10)
btn_ok = ttk.Button(frm_button, text="Ok", command=self.top.destroy, width=10)
btn_license.pack(side="left", padx=(0, 10))
btn_ok.pack(side="right")
tk.Grid.columnconfigure(self.top, 1, weight=1)
tk.Grid.rowconfigure(self.top, 3, weight=1)
image.grid(column=0, row=0, rowspan=1, sticky=tk.NSEW, padx=(10, 10), pady=(10, 10))
lb_prog.grid(column=1, row=0, sticky=tk.NSEW)
lb_site.grid(column=0, row=1, columnspan=2, sticky=tk.NSEW, pady=(0, 10), padx=(10, 10))
msg.grid(column=0, row=2, columnspan=2, sticky=tk.NSEW, pady=(0, 10), padx=(5, 5))
frm_button.grid(column=0, row=4, columnspan=2, sticky=tk.N, pady=(10, 10))
@staticmethod
def _centerWindow(win):
win.update_idletasks()
width = win.winfo_width()
height = win.winfo_height()
my_tk.centerWindow(win, width, height)
def _showLicense(self):
with open(os.path.join(os.getcwd(), "LICENSE.md"), 'r') as license_file:
license_ = license_file.read()
top = tk.Toplevel()
top.transient(root)
top.update_idletasks()
top.withdraw()
top.title(f"License") # {VERSION}")
top.resizable(0, 0)
# scrollable textbox
text = tk.Text(top, wrap=tk.WORD)
text.insert(tk.INSERT, license_)
text.pack(side="left", expand=True)
scroll_y = tk.Scrollbar(top, orient="vertical", command=text.yview)
scroll_y.pack(side="left", expand=True, fill="y")
text.configure(yscrollcommand=scroll_y.set, width=80, height=21)
text.configure(state='disabled') # make readonly
text.pack()
self._centerWindow(top)
top.deiconify()
if __name__ == "__main__":
root = tk.Tk()
root.withdraw()
default_font = font.nametofont("TkDefaultFont") # set default font
default_font.configure(family='freemono', size=11)
myfont_bold = default_font.copy() # bold font
myfont_bold.configure(weight="bold")
myfont_small_bold = default_font.copy() # small font
myfont_small_bold.configure(weight="bold", size=9)
myfont_small = default_font.copy() # small font
myfont_small.configure(size=8)
mygui = MainApplication(root)
root.deiconify()
logger.info("Program start successfully")
root.mainloop()