-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminiWhip.net
988 lines (988 loc) · 38.1 KB
/
miniWhip.net
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
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
(export (version D)
(design
(source /media/truecrypt1/Documents/eagle/miniWhip-Gamma/miniWhip-Gamma.sch)
(date "Di 06 Apr 2021 11:05:59")
(tool "Eeschema 5.1.7-a382d34a8~88~ubuntu20.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source miniWhip-Gamma.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Gamma_detektor/) (tstamps /607F8EA6/)
(title_block
(title)
(company)
(rev)
(date)
(source Gamma_detektor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref D5)
(value DIODE)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part DIODE) (description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints"))
(sheetpath (names /) (tstamps /))
(tstamp 606C17E5))
(comp (ref R11)
(value 3M3)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606C2476))
(comp (ref C11)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 606C2B9E))
(comp (ref D11)
(value "D_Zener 18V")
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 606C39B0))
(comp (ref J4)
(value Conn_Coaxial)
(footprint Connector_Coaxial:SMA_Amphenol_132289_EdgeMount)
(datasheet " ~")
(libsource (lib Connector) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /) (tstamps /))
(tstamp 606C4CF5))
(comp (ref TP1)
(value Patch)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 606C604B))
(comp (ref D6)
(value DIODE)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part DIODE) (description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints"))
(sheetpath (names /) (tstamps /))
(tstamp 606C78EF))
(comp (ref D7)
(value DIODE)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part DIODE) (description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints"))
(sheetpath (names /) (tstamps /))
(tstamp 606C8242))
(comp (ref D8)
(value DIODE)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part DIODE) (description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints"))
(sheetpath (names /) (tstamps /))
(tstamp 606C854A))
(comp (ref D10)
(value DIODE)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part DIODE) (description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints"))
(sheetpath (names /) (tstamps /))
(tstamp 606C87E9))
(comp (ref D9)
(value DIODE)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part DIODE) (description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints"))
(sheetpath (names /) (tstamps /))
(tstamp 606C9D5D))
(comp (ref R10)
(value 39k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606CB911))
(comp (ref R12)
(value 100k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606CBE82))
(comp (ref C12)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 606D051A))
(comp (ref R19)
(value "5.6E 3W")
(footprint Resistor_THT:R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606D0DA3))
(comp (ref R14)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606D1465))
(comp (ref R13)
(value 4k7)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606D1FAB))
(comp (ref R15)
(value 4k7)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606D2368))
(comp (ref R16)
(value 3k3)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606D2BCC))
(comp (ref R18)
(value 68E)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606D2EA9))
(comp (ref R17)
(value 390E)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 606D366A))
(comp (ref Q1)
(value BF245B)
(footprint Package_TO_SOT_THT:TO-92)
(datasheet ~)
(libsource (lib Device) (part Q_PJFET_DSG) (description "P-JFET transistor, drain/source/gate"))
(sheetpath (names /) (tstamps /))
(tstamp 606EAB8C))
(comp (ref Q2)
(value BC558)
(footprint Package_TO_SOT_THT:TO-92)
(datasheet ~)
(libsource (lib Device) (part Q_PNP_CBE) (description "PNP transistor, collector/base/emitter"))
(sheetpath (names /) (tstamps /))
(tstamp 606EFDF3))
(comp (ref Q3)
(value 2N3866)
(footprint Package_TO_SOT_THT:TO-39-3)
(datasheet ~)
(libsource (lib Device) (part Q_NPN_EBC) (description "NPN transistor, emitter/base/collector"))
(sheetpath (names /) (tstamps /))
(tstamp 606F05AE))
(comp (ref C13)
(value 220n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 607025EA))
(comp (ref C14)
(value 62p)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6073B34E))
(comp (ref C8)
(value 47u)
(footprint Capacitor_SMD:CP_Elec_10x7.7)
(fields
(field (name Description) "47uF 63V THT")
(field (name FARNELL) 9693033)
(field (name MFG) Panasonic)
(field (name MFG_PN) ECA-1JHG470))
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA698C7))
(comp (ref C7)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(fields
(field (name Description) "100nF THT")
(field (name FARNELL) 2112751)
(field (name MFG) Multicomp)
(field (name MFG_PN) MC0805Y104M500A2.54MM))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA697AC))
(comp (ref R7)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name Description) "10k 1% THT")
(field (name FARNELL) 2401780)
(field (name MFG) Multicomp)
(field (name MFG_PN) MCMF006FF1002A50))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA697A6))
(comp (ref R6)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name Description) "10k 1% THT")
(field (name FARNELL) 2401780)
(field (name MFG) Multicomp)
(field (name MFG_PN) MCMF006FF1002A50))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA69792))
(comp (ref C4)
(value 470n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl)
(field (name Description) "470nf THT")
(field (name FARNELL) 1457660)
(field (name MFG) Kemet)
(field (name MFG_PN) C320C474M5U5TA)
(field (name VALUE_B) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA69707))
(comp (ref R5)
(value 1M)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_100K_P7.62mm.wrl)
(field (name Description) "1Mega 1% THT")
(field (name FARNELL) 2401807)
(field (name MFG) Multicomp)
(field (name MFG_PN) MCMF006FF1004A50)
(field (name VALUE_B) 100k))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA696FC))
(comp (ref R4)
(value 4k7)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_1K_P7.62mm.wrl)
(field (name Description) "4.7k 1% THT")
(field (name FARNELL) 2401772)
(field (name MFG) Multicomp)
(field (name MFG_PN) MCMF006FF4701A50)
(field (name VALUE_B) 1k))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA696EE))
(comp (ref C3)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(fields
(field (name Description) "100nF THT")
(field (name FARNELL) 2112751)
(field (name MFG) Multicomp)
(field (name MFG_PN) MC0805Y104M500A2.54MM))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA6962C))
(comp (ref C5)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(fields
(field (name Description) "100nF THT")
(field (name FARNELL) 2112751)
(field (name MFG) Multicomp)
(field (name MFG_PN) MC0805Y104M500A2.54MM))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA695AB))
(comp (ref C2)
(value 10p)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(fields
(field (name Description) "10pF THT")
(field (name FARNELL) 1694175)
(field (name MFG) Multicomp)
(field (name MFG_PN) MC0805N100J101A2.54MM))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA6951A))
(comp (ref R2)
(value 15k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name Description) "15k 1% THT")
(field (name FARNELL) 2401785)
(field (name MFG) Multicomp)
(field (name MFG_PN) MCMF006FF1502A50))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA694DC))
(comp (ref R1)
(value 4k7)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name Description) "4.7k 1% THT")
(field (name FARNELL) 2401772)
(field (name MFG) Multicomp)
(field (name MFG_PN) MCMF006FF4701A50))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA694D1))
(comp (ref R3)
(value 10M)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_10M_P2.54mm.wrl)
(field (name Description) "40Mega 10% 0805 SMD")
(field (name FARNELL) 1174521)
(field (name MFG) "TE Connectivity")
(field (name MFG_PN) RH73H2A40MKTN)
(field (name VALUE_B) 10M))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA694AE))
(comp (ref D4)
(value DNP)
(footprint Opto-Devices:PhotoDiode_DIL2_4.3x4.65_RM5.08)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/BPW34F.wrl)
(field (name Description) "silicon PIN photodiode")
(field (name FARNELL) 2981630)
(field (name MFG) Osram)
(field (name MFG_PN) BPX61)
(field (name "RS Online") 654-7785)
(field (name VALUE_B) BPW34F))
(libsource (lib Sensor_Optical) (part BPW34) (description "Silicon PIN Photodiode"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA6949D))
(comp (ref U1)
(value TLE2072)
(footprint Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm)
(fields
(field (name Description) TLE2072CP/ACP)
(field (name FARNELL) "3117956 ")
(field (name MFG) TI)
(field (name MFG_PN) TLE2072ACP))
(libsource (lib DIY_detector-custom-parts) (part TL072) (description ""))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 4FA69492))
(comp (ref C10)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(fields
(field (name Description) "100nF THT")
(field (name FARNELL) 2112751)
(field (name MFG) Multicomp)
(field (name MFG_PN) MC0805Y104M500A2.54MM))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5B0272F2))
(comp (ref J3)
(value "BNC socket")
(fields
(field (name Description) "male BNC wall socket")
(field (name FARNELL) 1169699)
(field (name MFG) Multicomp)
(field (name MFG_PN) 13-25))
(libsource (lib Connector) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AF8AE41))
(comp (ref BT1)
(value "9V battery clip")
(fields
(field (name FARNELL) 2817539)
(field (name MFG) CLIFF)
(field (name MFG_PN) FC6830))
(libsource (lib Device) (part Battery_Cell) (description "Single-cell battery"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AF99C51))
(comp (ref MK1)
(value "via for coincidence sandwich")
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFA0F85))
(comp (ref MK2)
(value "via for coincidence sandwich")
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFA107D))
(comp (ref MK3)
(value "via for coincidence sandwich")
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFA11AD))
(comp (ref MK4)
(value "via for coincidence sandwich")
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFA1235))
(comp (ref C1)
(value 10p)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(fields
(field (name Description) "10pF THT")
(field (name FARNELL) 1694175)
(field (name MFG) Multicomp)
(field (name MFG_PN) MC0805N100J101A2.54MM))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFA5A4D))
(comp (ref C6)
(value 3n3)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl)
(field (name Description) "3.3nF THT")
(field (name FARNELL) 2901293)
(field (name MFG) Suntan)
(field (name MFG_PN) TS170R1H332KSBBA0R)
(field (name VALUE_B) 10p))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFA6D34))
(comp (ref D3)
(value DNP)
(footprint Opto-Devices:PhotoDiode_DIL2_4.3x4.65_RM5.08)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/BPW34F.wrl)
(field (name Description) "silicon PIN photodiode\r")
(field (name FARNELL) 2981621)
(field (name MFG) Osram/Vishay)
(field (name MFG_PN) BPW34F/FA)
(field (name "RS Online") 654-7921)
(field (name VALUE_B) BPW34F))
(libsource (lib Sensor_Optical) (part BPW34) (description "Silicon PIN Photodiode"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFA9712))
(comp (ref D2)
(value DNP)
(footprint Opto-Devices:PhotoDiode_DIL2_4.3x4.65_RM5.08)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/BPW34F.wrl)
(field (name Description) "silicon PIN photodiode\r")
(field (name FARNELL) 2981621)
(field (name MFG) Osram/Vishay)
(field (name MFG_PN) BPW34F/FA)
(field (name "RS Online") 654-7921)
(field (name VALUE_B) BPW34F))
(libsource (lib Sensor_Optical) (part BPW34) (description "Silicon PIN Photodiode"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFA9764))
(comp (ref D1)
(value BPX61)
(footprint Opto-Devices:PhotoDiode_DIL2_4.3x4.65_RM5.08)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/BPW34F.wrl)
(field (name Description) "silicon PIN photodiode\r")
(field (name FARNELL) 2981621)
(field (name MFG) Osram/Vishay)
(field (name MFG_PN) BPW34F/FA)
(field (name "RS Online") 654-7921)
(field (name VALUE_B) BPW34F))
(libsource (lib Sensor_Optical) (part BPW34) (description "Silicon PIN Photodiode"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFA97B6))
(comp (ref SW1)
(value -)
(fields
(field (name Description) "SPDT switch on-none-on")
(field (name FARNELL) 9473416)
(field (name MFG) Multicomp)
(field (name MFG_PN) "1MS1T1B1M1QE "))
(libsource (lib Switch) (part SW_DPST_x2) (description "Single Pole Single Throw (SPST) switch, separate symbol"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFAB544))
(comp (ref MK5)
(value "M3 support")
(footprint Mounting_Holes:MountingHole_3.2mm_M3_ISO7380_Pad)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFD6430))
(comp (ref MK6)
(value "M3 support")
(footprint Mounting_Holes:MountingHole_3.2mm_M3_ISO7380_Pad)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFD64D0))
(comp (ref MK7)
(value "M3 support")
(footprint Mounting_Holes:MountingHole_3.2mm_M3_ISO7380_Pad)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5AFF1985))
(comp (ref R9)
(value 2k2)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name Description) "2.2k 1% THT")
(field (name FARNELL) 2401780)
(field (name MFG) Multicomp)
(field (name MFG_PN) MCMF006FF2201A50))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5B76C793))
(comp (ref R8)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/jumper_wire_P10.16mm.wrl)
(field (name Description) "10k 1% THT")
(field (name FARNELL) 2401780)
(field (name MFG) Multicomp)
(field (name MFG_PN) MCMF006FF1002A50)
(field (name VALUE_B) 0))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5D428EEE))
(comp (ref C9)
(value 6n8)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(fields
(field (name Description) "6.8nF THT")
(field (name FARNELL) 2901297)
(field (name MFG) Suntan)
(field (name MFG_PN) TS170R1H682KSBBA0R)
(field (name VALUE_B) DNP))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5D42EFF7))
(comp (ref J1)
(value Conn_01x02_Female)
(footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5D46E8CB))
(comp (ref J2)
(value Conn_01x02_Female)
(footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 5D483F0C))
(comp (ref R22)
(value 10M)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_10M_P2.54mm.wrl)
(field (name Description) "40Mega 10% 0805 SMD")
(field (name FARNELL) 1174521)
(field (name MFG) "TE Connectivity")
(field (name MFG_PN) RH73H2A40MKTN)
(field (name VALUE_B) 10M))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 6086B93D))
(comp (ref R21)
(value 10M)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_10M_P2.54mm.wrl)
(field (name Description) "40Mega 10% 0805 SMD")
(field (name FARNELL) 1174521)
(field (name MFG) "TE Connectivity")
(field (name MFG_PN) RH73H2A40MKTN)
(field (name VALUE_B) 10M))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 6086BF9D))
(comp (ref R20)
(value 10M)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(fields
(field (name 3D_B) ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_10M_P2.54mm.wrl)
(field (name Description) "40Mega 10% 0805 SMD")
(field (name FARNELL) 1174521)
(field (name MFG) "TE Connectivity")
(field (name MFG_PN) RH73H2A40MKTN)
(field (name VALUE_B) 10M))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Gamma_detektor/) (tstamps /607F8EA6/))
(tstamp 6086C823)))
(libparts
(libpart (lib Connector) (part Conn_01x02_Female)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_Coaxial)
(description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)")
(docs " ~")
(footprints
(fp *BNC*)
(fp *SMA*)
(fp *SMB*)
(fp *SMC*)
(fp *Cinch*))
(fields
(field (name Reference) J)
(field (name Value) Conn_Coaxial))
(pins
(pin (num 1) (name In) (type passive))
(pin (num 2) (name Ext) (type passive))))
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib DIY_detector-custom-parts) (part TL072)
(fields
(field (name Reference) U)
(field (name Value) TL072))
(pins
(pin (num 1) (name Out1) (type output))
(pin (num 2) (name In1-) (type output))
(pin (num 3) (name In1+) (type output))
(pin (num 4) (name Gnd) (type output))
(pin (num 5) (name In2+) (type output))
(pin (num 6) (name In2-) (type output))
(pin (num 7) (name Out2) (type output))
(pin (num 8) (name Vcc) (type output))))
(libpart (lib Device) (part Battery_Cell)
(description "Single-cell battery")
(docs ~)
(fields
(field (name Reference) BT)
(field (name Value) Battery_Cell))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part CP)
(description "Polarized capacitor")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D_Zener)
(description "Zener diode")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Zener))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part Q_NPN_EBC)
(description "NPN transistor, emitter/base/collector")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_NPN_EBC))
(pins
(pin (num 1) (name E) (type passive))
(pin (num 2) (name B) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib Device) (part Q_PJFET_DSG)
(description "P-JFET transistor, drain/source/gate")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_PJFET_DSG))
(pins
(pin (num 1) (name D) (type passive))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name G) (type input))))
(libpart (lib Device) (part Q_PNP_CBE)
(description "PNP transistor, collector/base/emitter")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_PNP_CBE))
(pins
(pin (num 1) (name C) (type passive))
(pin (num 2) (name B) (type input))
(pin (num 3) (name E) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Mechanical) (part MountingHole)
(description "Mounting Hole without connection")
(docs ~)
(footprints
(fp MountingHole*))
(fields
(field (name Reference) H)
(field (name Value) MountingHole)))
(libpart (lib Mechanical) (part MountingHole_Pad)
(description "Mounting Hole with connection")
(docs ~)
(footprints
(fp MountingHole*Pad*))
(fields
(field (name Reference) H)
(field (name Value) MountingHole_Pad))
(pins
(pin (num 1) (name 1) (type input))))
(libpart (lib Sensor_Optical) (part BPW34)
(aliases
(alias BP104))
(description "Silicon PIN Photodiode")
(docs http://www.vishay.com/docs/81521/bpw34.pdf)
(footprints
(fp Osram*DIL2*4.3x4.65mm*P5.08*))
(fields
(field (name Reference) D)
(field (name Value) BPW34)
(field (name Footprint) OptoDevice:Osram_DIL2_4.3x4.65mm_P5.08mm))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Switch) (part SW_DPST_x2)
(description "Single Pole Single Throw (SPST) switch, separate symbol")
(docs ~)
(fields
(field (name Reference) SW)
(field (name Value) SW_DPST_x2))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))
(pin (num 3) (name A) (type passive))
(pin (num 4) (name B) (type passive))))
(libpart (lib pspice) (part DIODE)
(description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints")
(docs ~)
(fields
(field (name Reference) D)
(field (name Value) DIODE))
(pins
(pin (num 1) (name K) (type input))
(pin (num 2) (name A) (type input)))))
(libraries
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical DIY_detector-custom-parts)
(uri /media/truecrypt1/Documents/eagle/miniWhip-Gamma/DIY_detector-custom-parts.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical Mechanical)
(uri /usr/share/kicad/library/Mechanical.lib))
(library (logical Sensor_Optical)
(uri /usr/share/kicad/library/Sensor_Optical.lib))
(library (logical Switch)
(uri /usr/share/kicad/library/Switch.lib))
(library (logical pspice)
(uri /usr/share/kicad/library/pspice.lib)))
(nets
(net (code 1) (name "Net-(C12-Pad1)")
(node (ref R13) (pin 2))
(node (ref R14) (pin 1))
(node (ref C12) (pin 1)))
(net (code 2) (name "Net-(C13-Pad1)")
(node (ref R13) (pin 1))
(node (ref Q1) (pin 2))
(node (ref C13) (pin 1)))
(net (code 3) (name "Net-(C14-Pad2)")
(node (ref R17) (pin 1))
(node (ref C14) (pin 2)))
(net (code 4) (name "Net-(D10-Pad2)")
(node (ref D10) (pin 2))
(node (ref R16) (pin 2))
(node (ref R15) (pin 1)))
(net (code 5) (name "Net-(Q2-Pad1)")
(node (ref R18) (pin 1))
(node (ref Q3) (pin 2))
(node (ref R17) (pin 2))
(node (ref Q2) (pin 1)))
(net (code 6) (name "Net-(C13-Pad2)")
(node (ref C13) (pin 2))
(node (ref C14) (pin 1))
(node (ref Q2) (pin 2))
(node (ref R16) (pin 1)))
(net (code 7) (name "Net-(Q2-Pad3)")
(node (ref Q2) (pin 3))
(node (ref Q3) (pin 3))
(node (ref R19) (pin 2)))
(net (code 8) (name GND)
(node (ref MK6) (pin 1))
(node (ref MK7) (pin 1))
(node (ref R14) (pin 2))
(node (ref R15) (pin 2))
(node (ref R18) (pin 2))
(node (ref MK5) (pin 1))
(node (ref R9) (pin 2))
(node (ref C9) (pin 2))
(node (ref D3) (pin 2))
(node (ref D2) (pin 2))
(node (ref D1) (pin 2))
(node (ref J2) (pin 2))
(node (ref U1) (pin 4))
(node (ref R2) (pin 2))
(node (ref D4) (pin 2))
(node (ref C5) (pin 2))
(node (ref J1) (pin 2))
(node (ref C8) (pin 2))
(node (ref C7) (pin 2))
(node (ref R7) (pin 2))
(node (ref C3) (pin 2))
(node (ref D8) (pin 1))
(node (ref D11) (pin 2))
(node (ref R10) (pin 2))
(node (ref J4) (pin 2))
(node (ref Q3) (pin 1)))
(net (code 9) (name "Net-(C11-Pad1)")
(node (ref C11) (pin 1))
(node (ref D9) (pin 1))
(node (ref J4) (pin 1))
(node (ref Q1) (pin 1))
(node (ref D11) (pin 1))
(node (ref R12) (pin 1))
(node (ref R19) (pin 1))
(node (ref C12) (pin 2)))
(net (code 10) (name "Net-(D10-Pad1)")
(node (ref D10) (pin 1))
(node (ref D9) (pin 2)))
(net (code 11) (name "Net-(D5-Pad2)")
(node (ref Q1) (pin 3))
(node (ref TP1) (pin 1))
(node (ref R11) (pin 2))
(node (ref D5) (pin 2)))
(net (code 12) (name "Net-(D5-Pad1)")
(node (ref D6) (pin 2))
(node (ref D5) (pin 1)))
(net (code 13) (name "Net-(D7-Pad1)")
(node (ref D8) (pin 2))
(node (ref D7) (pin 1)))
(net (code 14) (name "Net-(D6-Pad1)")
(node (ref D6) (pin 1))
(node (ref D7) (pin 2)))
(net (code 15) (name "Net-(C11-Pad2)")
(node (ref R11) (pin 1))
(node (ref C11) (pin 2))
(node (ref R12) (pin 2))
(node (ref R10) (pin 1)))
(net (code 16) (name "Net-(C7-Pad1)")
(node (ref R6) (pin 2))
(node (ref C7) (pin 1))
(node (ref R7) (pin 1))
(node (ref U1) (pin 5)))
(net (code 17) (name /Gamma_detektor/Output)
(node (ref C10) (pin 2))
(node (ref R9) (pin 1))
(node (ref J2) (pin 1)))
(net (code 18) (name "Net-(C10-Pad1)")
(node (ref C9) (pin 1))
(node (ref C10) (pin 1))
(node (ref R8) (pin 2)))
(net (code 19) (name "Net-(SW1-Pad1)")
(node (ref SW1) (pin 1)))
(net (code 20) (name "Net-(C1-Pad1)")
(node (ref U1) (pin 2))
(node (ref D4) (pin 1))
(node (ref C1) (pin 1))
(node (ref D3) (pin 1))
(node (ref D2) (pin 1))
(node (ref D1) (pin 1))
(node (ref R20) (pin 2)))
(net (code 21) (name "Net-(C6-Pad2)")
(node (ref U1) (pin 7))
(node (ref R5) (pin 1))
(node (ref R8) (pin 1))
(node (ref C6) (pin 2)))
(net (code 22) (name "Net-(BT1-Pad1)")
(node (ref BT1) (pin 1))
(node (ref SW1) (pin 2)))
(net (code 23) (name "Net-(J3-Pad2)")
(node (ref J3) (pin 2)))
(net (code 24) (name "Net-(BT1-Pad2)")
(node (ref BT1) (pin 2)))
(net (code 25) (name "Net-(J3-Pad1)")
(node (ref J3) (pin 1)))
(net (code 26) (name "Net-(R22-Pad1)")
(node (ref R3) (pin 2))
(node (ref R22) (pin 1)))
(net (code 27) (name "Net-(R21-Pad1)")
(node (ref R22) (pin 2))
(node (ref R21) (pin 1)))
(net (code 28) (name "Net-(R20-Pad1)")
(node (ref R20) (pin 1))
(node (ref R21) (pin 2)))
(net (code 29) (name "Net-(C1-Pad2)")
(node (ref C1) (pin 2))
(node (ref C2) (pin 1)))
(net (code 30) (name "Net-(C3-Pad1)")
(node (ref C3) (pin 1))
(node (ref U1) (pin 3))
(node (ref R1) (pin 2))
(node (ref R2) (pin 1)))
(net (code 31) (name +9V)
(node (ref U1) (pin 8))
(node (ref C8) (pin 1))
(node (ref R6) (pin 1))
(node (ref R1) (pin 1))
(node (ref J1) (pin 1))
(node (ref C5) (pin 1)))
(net (code 32) (name "Net-(C2-Pad2)")
(node (ref C2) (pin 2))
(node (ref R3) (pin 1))
(node (ref U1) (pin 1))
(node (ref C4) (pin 1)))
(net (code 33) (name "Net-(C6-Pad1)")
(node (ref U1) (pin 6))
(node (ref R4) (pin 1))
(node (ref R5) (pin 2))
(node (ref C6) (pin 1)))
(net (code 34) (name "Net-(C4-Pad2)")
(node (ref R4) (pin 2))
(node (ref C4) (pin 2)))))