-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlog.html
2447 lines (2176 loc) · 111 KB
/
log.html
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
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html">
<title></title>
</head>
<body>
<h2>Changelog for "Lessons In Electric Circuits", all volumes, all chapters</h2>
<hr>
<p><b>2014</b> (Listed in chronological order from most recent to first
<p>Volume 3, Chapters: 3 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 1,2 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 6 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 14 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 9 Modified 02/01/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 14 Modified 01/28/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 4 Modified 01/28/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 9 Modified 01/24/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 1 Modified 01/24/2014 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 8 Modified 01/24/2014 (DC) -- Typo, See Bill [email protected] CONTRIBUTORS LIST.</p>
<p><b>2013</b> (Listed in chronological order from most recent to first
<p>Volume 4, Chapters: 8 Modified 01/14/2013 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 9 Modified 01/14/2013 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1, 2 Modified 01/14/2013 (DC) -- See Eugene Smirnoff CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 01/14/2013 (DC) -- See Eugene Smirnoff CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 01/12/2013 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 01/12/2013 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 8 Modified 01/12/2013 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 10 Modified 01/12/2013 (DC) -- See tony [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 10 Modified 01/12/2013 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 01/12/2013 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>index.htm Modified 01/12/2013 (DC) -- Added link to Socratic Instrumentation, main index page.</p>
<p>Volume 4, Chapters: 8 Modified 01/12/2013 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p><b>2012</b> (Listed in chronological order from most recent to first
<p>Volume 3, Chapters: 3 Modified 06/23/2012 (DC) -- Credits, See Bill_Marsden, Nov 2003, CONTRIBUTORS LITS.</p>
<p>Volume 4, Chapters: 3 Modified 05/27/2012 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 05/21/2012 (DC) -- Clarification See Bill_Marsden, CONTRIBUTORS LITS.</p>
<p>Volume 3, Chapters: 4 Modified 05/17/2012 (DC) -- Typos.</p>
<p>Volume 4, Chapters: 11 Modified 05/07/2012 (DC) -- images see George Zogopoulos Papaliakos CONTRIBUTORS LIST.</p>
<p>Volume 5, Chapters: 2 Modified 05/07/2012 (DC) -- images see RobinGriffiths CONTRIBUTORS LIST.</p>
<p>Volume 5, Chapters: 2 Modified 05/06/2012 (DC) -- Typo/, see NRG CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 6 Modified 05/06/2012 (DC) -- Typo/, see SgtWookie CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 05/06/2012 (DC) -- Typo/image, see twentywindsorblue CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 05/06/2012 (DC) -- Typos, see [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1 Modified 01/30/2012 (DC) -- Images, see Bob Arthur, CONTRIBUTORS LIST.</p>
<p><b>2011</b> (Listed in chronological order from most recent to first
<p>Volume 1-6, file hi.latex Modified 06/09/2011 (DC) -- See D Crunkilton CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 13 Modified 06/09/2011 (DC) -- Assistance; see Kurt Zierhut CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 13 Modified 05/27/2011 (DC) -- Typo; see D Crunkilton CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 8, 12 Modified 02/18/2011 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 6 Modified 02/18/2011 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 1-4 Modified 02/17/2011 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 13 Modified 02/17/2011 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 4 Modified 02/17/2011 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 02/17/2011 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p><b>2010</b> (Listed in chronological order from most recent to first
<p>Vol 4, Chapter 11; Modified 11/04/2010 (DC) -- New section. See George Zogopoulos Papaliakos 11/2010 CONTRIBUTORS LIST.</p>
<p>Vol 3, Chapter 3; Modified 09/08/2010 (DC) -- See [email protected] 10/2010 CONTRIBUTORS LIST.</p>
<p>Vol 2, Ch 13; Vol 3 Chs 3, 4, 5, 7; Vol 6, Ch 6 Modified 09/08/2010 (DC) -- See D Crunkilton 09/2010 CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 14 Modified 08/23/2010 (DC) -- See [email protected] 08/2010 CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2,4 Modified 08/22/2010 (DC) -- See Unregistered [email protected] 08/2010 CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 4 Modified 08/22/2010 (DC) -- See Unregistered [email protected] 08/2010 CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1 Modified 08/22/2010 (DC) -- Unregistered [email protected] 08/2010 CONTRIBUTORS LIST.</p>
<p>Volume 5, Chapters: 1 Modified 08/22/2010 (DC) -- See [email protected] 08/2010 CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 5 Modified 08/22/2010 (DC) -- See [email protected] 08/2010 CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 6 Modified 08/22/2010 (DC) -- See [email protected] 08/2010 CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1 Modified 07/08/2010 (DC) -- See Unregistered [email protected] 07/2010 CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 5 Modified 07/08/2010 (DC) -- See Unregistered [email protected] 07/2010 CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 07/08/2010 (DC) -- See [email protected] 07/2010 CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 11 Modified 07/08/2010 (DC) -- See Bill [email protected] 07/2010 CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 04/17/2010 (DC) -- See [email protected] 04/2010 CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 8 Modified 04/17/2010 (DC) -- See [email protected] 04/2010 CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 04/09/2010 (DC) -- image 03075, See [email protected] 04/2010 CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 9 Modified 03/07/2010 (DC) -- See [email protected] 02/2010 CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 03/07/2010 (DC) -- image 03075, See [email protected] 02/2010 CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 11 Modified 02/08/2010 (DC) -- New Section. See Bill Marsden 02/2010 CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 4 Modified 02/08/2010 (DC) -- See Dennis Crunkilton 02/2010 CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1 Modified 01/03/2010 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 2 Modified 01/22/2010 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 8 Modified 01/20/2010 (DC) -- See [email protected] CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 1,9 Modified 01/17/2010 (DC) -- See [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 6 Modified 01/17/2010 (DC) -- See [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 7 Modified 01/17/2010 (DC) -- See [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 13 Modified 01/17/2010 (DC) -- See [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 3 Modified 01/17/2010 (DC) -- See Walter [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 8 Modified 01/17/2010 (DC) -- New Chapter, see CONTRIBUTORS LIST.</p>
<p><b>2009</b> (Listed in chronological order from most recent to first
<p>Volume 5, Chapters: 1 Modified 12/06/2009 (DC) -- See D Crunkilton, CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 12/05/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 11/20/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 11/18/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: Modified 11/18/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 8 Modified 11/18/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 11/18/2009 (DC) -- [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3,4 Modified 11/18/2009 (DC) -- Unregistered [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 11/18/2009 (DC) -- See Bill [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 1 Modified 11/18/2009 (DC) -- See The [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 10 Modified 09/01/2009 (DC) -- See Ray A. Rayburn, See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1 Modified 09/01/2009 (DC) -- See David [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 8 Modified 09/01/2009 (DC) -- See Peter [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 08/31/2009 (DC) -- See Peter O'[email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 08/25/2009 (DC) -- See Unregistered [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 08/24/2009 (DC) -- See Unregistered [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 6 Modified 08/24/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 7 Modified 08/24/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 07/14/2009 (DC) -- See Unregistered [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 06/29/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 06/29/2009 (DC) -- See Unregistered [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1 Modified 06/29/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 1 Modified 06/29/2009 (DC) -- See Peter O'Dette, See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 7 Modified 06/28/2009 (DC) -- See Unregistered [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 7 Modified 06/28/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters:2 Modified 04/29/2009 (DC) -- See Unregistered [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters:3 Modified 04/29/2009 (DC) -- See [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters:4,9 Modified 04/28/2009 (DC) -- See D crunkilton, Bill [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters:9 Modified 04/18/2009 (DC) -- [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters:1 Modified 04/14/2009 (DC) -- Peter [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 4 Modified 04/13/2009 (DC) -- Bill [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 4,7-9 Modified 04/05/2009 (DC) -- D Crunkilton, See, CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 2 Modified 04/05/2009 (DC) -- Peter [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 4 Modified 03/10/2009 (DC) -- [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 13 Modified 03/09/2009 (DC) -- Ron Harrison, See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 03/06/2009 (DC) -- [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 8 Modified 03/06/2009 (DC) -- Unregistered [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 4 Modified 02/23/2009 (DC) -- Olivier Derewonko, See CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 2 Modified 02/20/2009 (DC) -- peter [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 02/20/2009 (DC) -- Unregistered [email protected], See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 02/19/2009 (DC) -- Bill Marsden, See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 11 Modified 02/19/2009 (DC) -- Changed John Panhalt to John Anhalt. See 12/09/2008. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 10, 12, 13 Modified 02/19/2009 (DC) -- Dennis Crunkilton, See CONTRIBUTORS LIST.</p>
<p><b>2008</b> (Listed in chronological order from most recent to first
<p>Volume 3, Chapters: 7 Modified 12/09/2008 (DC) -- [email protected] See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 12/09/2008 (DC) -- [email protected] See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1 Modified 12/09/2008 (DC) -- John Schwab See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 11 Modified 12/09/2008 (DC) -- John Panhalt, See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 6 Modified 10/20/2008 (DC) -- Professor [email protected]. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 8 Modified 10/19/2008 (DC) -- [email protected]. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 10/18/2008 (DC) -- [email protected]. See CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 7 Modified 08/28/2008 (DC) -- Bill Marsden, new section. See CONTRIBUTORS LIST.</p
>
<p>Volume 4, Chapters: 2 Modified 08/08/2008 (DC) -- [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 5, Chapters: 9 Modified 08/08/2008 (DC) -- [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 1 Modified 07/08/2008 (DC) -- [email protected]. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 9 Modified 06/28/2008 (DC) -- [email protected]. See CONTRIBUTORS LIST.</p>
<p>Volume 2 Chapters: 5 Modified 06/16/2008 (DC) -- Miguel Rodriguez Yepes. See CONTRIBUTORS LIST.</p>
<p>Volume 5, Chapters: many Modified 05/27/2008 (DC) -- Len Nunn. See CONTRIBUTORS LIST.</p>
<p>Volume all, Chapters: many Modified 05/15/2008 (DC) -- Colin Creitz. See CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 6 Modified 05/14/2008 (DC) -- [email protected], [email protected] . See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 04/20/2008 (DC) -- Ken Braswell. See CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 12 Modified 04/08/2008 (DC) -- Keith@insyst_ltd.com, CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 8 Modified 04/24/2008 (DC) -- [email protected] . See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 04/21/2008 (DC) -- [email protected], section title. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 9 Modified 04/14/2008 (DC) -- Bill Marsden, new section. See CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 15 Modified 04/08/2008 (DC) -- studiot@insyst_ltd.com, CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 5 Modified 04/08/2008 (DC) -- davidr@insyst_ltd.com, CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 04/04/2008 (DC) -- [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 15 Modified 03/23/2008 (DC) -- [email protected], CONTRIBUTORS LIST.</p>
<p>Volume all, Chapters: all Modified 03/23/2008 (DC) -- [email protected], CONTRIBUTORS LIST.</p>
<p>Volume all, Chapters: all Modified 03/21/2008 (DC) -- [email protected], CONTRIBUTORS LIST.</p>
<p>Volume all, Chapters: all Modified 03/21/2008 (DC) -- Font change in PDF, Timothy Kingman, CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapter: 6 Modified 03/21/2008 (DC) -- Centering of figures in PDF, Imranullah Syed.com, CONTRIBUTORS LIST.</p>
<p><b>2008</b> (Listed in chronological order from most recent to first
<p>Volume 3, Chapter:1,2 Modified 03/09/2009 (DC) -- [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 5, Chapter:4 Modified 03/09/2008 (DC) -- [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapter: 5 Modified 02/29/2008 (DC) -- Forrest M. Mims III, CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapter: 1 Modified 02/29/2008 (DC) -- Typo, [email protected], CONTRIBUTORS LIST, Feburary 2008.</p>
<p>Volume 2, Chapter: 2 Modified 02/29/2008 (DC) -- Typo, [email protected], CONTRIBUTORS LIST, Feburary 2008.</p>
<p>Volume 3, Chapter: 2 Modified 02/29/2008 (DC) -- Typo, [email protected], CONTRIBUTORS LIST, Feburary 2008.</p>
<p>Volume 3, Chapters: 2 Modified 02/25/2008 (DC) -- [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 02/15/2008 (DC) -- Image error, see [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1 Modified 02/12/2008 (DC) -- Spelling, see [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 4, Chapters: 1 Modified 02/12/2008 (DC) -- Spelling, see Dan Simon, CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1 Modified 02/04/2008 (DC) -- Spelling, see [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapters: 9 Modified 02/01/2008 (DC) -- Clarification, see Stacy Mckenna Seip, CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1, 3, 4, 8, 9, 10, 16 Modified 02/01/2008 (DC) -- Various, see Stacy Mckenna Seip, CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 7 Modified 02/01/2008 (DC) -- Correction, see [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 15 Modified 02/01/2008 (DC) -- Typo correction, see [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 02/01/2008 (DC) -- Image correction, see Chris Lesiak, CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 7 Modified 02/01/2008 (DC) -- Image correction, see [email protected], CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 3 Modified 02/01/2008 (DC) -- Typo, see Larry Weber, CONTRIBUTORS LIST.</p>
<p><b>2007</b> (Listed in chronological order from most recent to first
<p>Volume 4, Chapters: 7 Modified 11/27/2007 (DC) -- Image correction. See [email protected] in CONTRIBUTORS LIST.</p>
<p>Volume 3 , Chapters: 2 Modified 11/27/2007 (DC) -- Another correction by [email protected] See Contributors list.</p>
<p>Volume 4, Chapters: 9 Modified 11/01/2007 (DC) -- Additions to chpater by David Zitzelsberger. See Contributors list.</p>
<p>Volume 2, Chapters: 13 Modified 11/21/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2, 3 Modified 11/21/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3 , Chapters: 2 Modified 11/16/2007 (DC) -- Another correction by [email protected] See Contributors list.</p>
<p>Volume 1 , Chapters: 1 Modified 11/14/2007 (DC) -- Added David M. St. Pierre to contributors list. See Contributors list.</p>
<p>Volume 3 , Chapters: 1 Modified 11/07/2007 (DC) -- Another correction by [email protected] See Contributors list.</p>
<p>Volume 3, Chapters: 2 Modified 11/02/2007 (DC) -- Added [email protected] to contributors list. See Contributors list.</p>
<p>Volume 4, Chapters: 9 Modified 11/01/2007 (DC) -- Added David Zitzelsberger as author to Credits list. Contributors list.</p>
<p>Volume 2, Chapters: 1 Modified 10/30/2007 (DC) -- Added [email protected] to contributors lies. See Contributors list.</p>
<p>Volume 5, Chapters: 2 Modified 10/21/2007 (DC) -- Changed Chapter title, added wiring color codes section.</p>
<p>Volume 1, Chapters: 3 Modified 10/09/2007 (DC) -- Added AFCI breaker paragraphs after GFCI.</p>
<p>Volume 1, Chapters: 3 Modified 10/09/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 3 Modified 09/28/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 09/22/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapter: 13, Volume 2 chpater 2 Modified 09/22/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters 8-13, 15, 16, Volume 2, Chapter 1 Modified 09/22/2007 (DC) -- Submitted by anonymous. Numerous typos, corrections.</p>
<p>Volumes 6, Chapter 4 Modified 09/21/2007 (DC) -- Added induction motor experiment.</p>
<p>Volumes 1, 3, sml2html.sed Modified 09/10/2007 (DC) -- Added Devin Bayer to contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 09/02/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 2 Modified 09/02/2007 (DC) -- Added [email protected] to contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 6, Chapters: 1 Modified 08/31/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 1 Modified 08/31/2007 (DC) -- Added [email protected] to contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapter: 9 Modified 08/31/2007 (DC) -- Added [email protected] to contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapters: 1, 5, 6 Modified 08/24/2007 (DC) -- Added [email protected] to contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 1, Chapter: 2 Modified 08/24/2007 (DC) -- Added [email protected] to contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapter: 1 Modified 08/19/2007 (DC) -- Added Xoy Aguilar to contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapter: 2 Modified 08/08/2007 (DC) -- Added [email protected] to contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 2, Chapter: 1 Modified 07/25/2007 (DC) -- Added [email protected] to conributor list. See CONTRIBUTORS LIST, image problem.</p>
<p>Volume 1, Chapter: 2 Modified 07/17/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST, typo.</p>
<p>Volume 3, Chapter: 1 Modified 07/02/2007 (DC) -- Added [email protected] to Contributor list. See CONTRIBUTORS LIST.</p>
<p>Volume 3, Chapters: 1, 2, 3, 8, 9 Modified 07/02/2007 (DC) -- Added "Attenuator" section to CH 1; Ch 2 completed; Ch 3 completed. Additions to CH 9.</p>
<p>Volume 3, Chapter: 8 Modified 07/02/2007 (DC) -- Added Wayne Little to Contributors list as author of "Input to output phase shift" subsection. See CONTRIBUTORS LIST.</p>
<p>Volume 5, Chapter: 1 Modified 06/27/2007 (DC) -- Renumbered a few images to conform to Tony's standards. Added Printed inductor formula.</p>
<p>Volume 1 Chpater: 15 Modified 06/27/2007 (DC) -- Added picture to inductance formula.</p>
<p>Volume 4, Chapter: 8, Modified 06/10/2007 (DC) -- Added [email protected] to contributors list for corrections.</p>
<p>Volume 2, Chapter: 6, Modified 04/22/2007 (DC) -- Added [email protected] to contributors list for corrections.</p>
<p>Volume 2, Chapter: 9, Modified 04/20/2007 (DC) -- Added [email protected] to contributors list for corrections.</p>
<p>Volume 1, Chapter: 3, Modified 04/20/2007 (DC) -- Added [email protected] and [email protected] to contributors list for corrections.</p>
<p>Volume 2, 3 ,5, Chapters: various, Modified 04/20/2007 (DC) -- Added Michiel van Bolhuis to contributors list, numerous corrections to text. See "CONTRIBUTORS LISTs".</p>
<p>Volume 2, Chapter: 13, Modified 04/05/2007 (DC) -- Added "Running 3-phase motors on 1-phase", new text .</p>
<p>Volume 2, Chapter: 12, Modified 04/05/2007 (DC) -- Added Bob Schmid to contributors list, Suggested addition of inductosyn to text. See "CONTRIBUTORS LIST", added inductosyn text.</p>
<p>Volume 2, Chapter: 9, Modified 02/06/2007 (DC) -- Added Brendan Finley to contributors list, clarification, See "CONTRIBUTORS LIST".</p>
<p>Volume 1, Chapter: 6, Modified 01/30/2007 (DC) -- Added [email protected] to contributors list corrections, See "CONTRIBUTORS LIST".</p>
<hr>
<p><span style="font-weight: bold;">2006</span> (Listed in chronological order from most recent to first of year)<br>
</p>
<p>Volume 2, Chapter: 11, Modified 11/04/2006 (DC) -- Added Steven Jones to contributors list for suggested addition.</p>
<p>Volume 2, Chapter: bibliography, Modified 10/18/2006 (DC) -- Moved Bibliography to end of chapters.</p>
<p>Volume 1, Chapter 10, Modified 10/17/2006 (DC) -- Added Davy Van Nieuwenborgh to contributors list for corrections and new content. See "CONTRIBUTORS LIST".</p>
<p>Volume 1, Chapter 10, Modified 10/17/2006 (DC) -- Added to Chapter 10, Node voltage method, new section. See "CONTRIBUTORS LIST", and Ch 10 TOC.</p>
<p>Volume 2, Chapter 4 Modified 08/12/2006 (DC) -- Added Kieran Clancy to contributors list for corrections. See "CONTRIBUTORS LIST".</p>
<p>Volume 2, Chapters 6, 10, 11, Modified 08/10/2006 (DC) -- Added Elmo Mäntynen to contributors list for corrections. See "CONTRIBUTORS LIST".</p>
<p>Volume 1, Chapters 8, 16, Modified 08/10/2006 (DC) -- Added Manuel Duarte to contributors list for corrections. See "CONTRIBUTORS LIST".</p>
<p>Volume 5, Chapter 3, Modified 07/31/2006 (DC) -- Added Geoff Hosking to contributors list for correction. See "CONTRIBUTORS LIST".</p>
<p>Volume 2, Chapters: all, Modified 06/15/2006 (DC) -- Added to D Crunkilton's contributors list for major format change. Most images changed to captioned floating figures for more book like appearance of PDF. Html version also affected. Changed edition number. See "CONTRIBUTORS LIST".</p>
<p>Volume 1, Chapter 12, Modified 05/30/2006 (DC) -- Added Brad Drum to contributors list for correction. See "CONTRIBUTORS LIST".</p>
<p>Volume 1, Chapter 1, Modified 06/01/2006 (DC) -- Added Derek Terveer to contributors list for correction. See "CONTRIBUTORS LIST".</p>
<p>Volume 1, Chapter 12, Modified 05/30/2006 (DC) -- Added Brad Drum to contributors list for correction. See "CONTRIBUTORS LIST".</p>
<p>Volume 3, Chapter 5, Modified 04/30/2006 (DC) -- Added Dino Rosaldi to contributors list for correction. See "CONTRIBUTORS LIST".</p>
<p>Volumes: all, Modified 03/06/2006 (DC) -- Added Jeff DeFreitas to contributors lists. See "CONTRIBUTORS LIST".</p>
<p>All .pdf, Modified 02/27/2006 (DC) -- All pdf's have active links in TOC, index for easier navigation.</p>
<p>index.htm, Modified 02/24/2006 (DC) -- New "hosted by ibiblio" image .</p>
<p>Volumes 3, Chapter 4, Modified 02/22/2006 (DC) -- Added Sulev Eesmaa to contributors list for correction. See "CONTRIBUTORS LIST".</p>
<p>Volumes: all, Chapters: all but appendices, *.sed, hi.latex, Makefile, Modified 17/18/2006 (DC) -- Added mini table of contents to head of chpaters. See "CONTRIBUTORS LIST".</p>
<p>Volume 2 Chapter: 13, Modified 01/18/2006 (DC) -- Added "AC motors" chapter. See "CONTRIBUTORS LIST".</p>
<p>Directory: Devel, File: Tutorial.sml, Modified 01/18/2006 (DC) -- Added documentation related to new tags. See "Tutorial".</p>
<hr>
<p><span style="font-weight: bold;">2005</span> (Listed in chronological order from most recent to first of year)<br>
</p>
<p>Volume 5 Chapter: 1, Modified 12/11/2005 (DC) -- Added new content to dielectric table. See "CONTRIBUTORS LIST".</p>
<p>Volumes 1, Chapter 11, Modified 12/11/2005 (DC) -- Added Sridhar Chitta to contributors list for clarifications. See "CONTRIBUTORS LIST".</p>
<p>Volumes 2, Chapter 10, Modified 12/11/2005 (DC) -- Added Richard Cooper to contributors list for corrections. See "CONTRIBUTORS LIST".</p>
<p>Volumes 2, 3 Chapters: various, Modified 10/31/2005 (DC) -- Changed Makefile for bigger, less ugly nutmeg-spice plots in .ps & .pdf; no change to .html.</p>
<p>Volume 5 Chapter: 1, Modified 10/30/2005 (DC) -- Added new content. See "CONTRIBUTORS LIST".</p>
<p>index.htm, root index Modified 10/14/2005 (DC) -- Updated Xcircuit url.</p>
<p>Volume 4 Chapter: 9, Modified 10/08/2005 (DC) -- Typographical capitalization corrections to sectiontitle. See "CONTRIBUTORS LIST".</p>
<p>Volume 2 Chapter: 9, Modified 09/22/2005 (DC) -- Broke "Special transformers and applications" seection into subsections. Added Scott-T transformer and LVDT subsections. Added to Air core transformers subsection. See "CONTRIBUTORS LIST".</p>
<p>Volume 3 Chapter: 1.4, Modified 07/25/2005 (DC) -- Added Clifford Bailey, allaboutcircuits.com to contributors list for typo's. See "CONTRIBUTORS LIST".</p>
<p>Volume 1 Chapter: 2.3, Modified 07/19/2005 (DC) -- Added Norm Meyrowitz, nkm-allaboutcircuits.com to contributors list for typo's. See "CONTRIBUTORS LIST".</p>
<p>Volumes 1,2,3,4,6 Chapters: various, Modified 06/29/2005 (DC) -- Added line-allaboutcircuits.com to contributors list for typo's. See "CONTRIBUTORS LIST".</p>
<p>Volume 1, Chapters 1, 2, 3, Modified 06/27/2005 (DC) --Added Geoffrey Lessel to contributors list for typo's. See "CONTRIBUTORS LIST".</p>
<p>Volume 2, Chapter 13, Modified 06/01/2005 (DC) --
Added Bill Stoddard to contributors list for permission to reprint photos. See
"CONTRIBUTOR LIST".</p>
<p>Volume 3, Chapters 4,5, 6, Modified 06/01/2005 (DC) --
Replaced Spice plots with
Spice-Nutmeg plots. See "CONTRIBUTOR LIST".</p>
<p>Volume 2, Chapters 6, 7, 8, 9, 10 Modified 06/01/2005 (DC) --
Replaced Spice plots with
Spice-Nutmeg plots Added gnuplot Fourier plots. See "CONTRIBUTOR LIST".</p>
<p>Volume 4, Chapter 12: Modified 06/01/2005 (DC) -- Added Dennis
Crunkliton's Shift Registers to the volume. </p>
<p>Volume 3, Chapter 4, Modified 04/09/2005 (DC) -- Added corrections
by
Sean Donner. Typographical error correction. See "CONTRIBUTOR LIST"
for
details</p>
<p>Volume 1, Chapters 12, 13, 15 & 16, Modified 01/25/2005 (DC) --
Added
more corrections by Sean Donner. Numerous typographical error
corrections in
chapters. see "CONTRIBUTOR LIST" section for details</p>
<p>Volume 2, Chapters 3, 4, 5, 7, & 8, Modified 01/25/2005 (DC) --
Added
Sean Donner's name to the contributor's list. Numerous typographical
error
corrections in chapters, 02083.eps image changed, see "CONTRIBUTOR
LIST" for
details.</p>
<p>Volume 5, Chapter 5: Modified 01/25/2005 (DC) -- Added Bernard
Sheehan's
name to the contributor's list -- (tan /cot).</p>
<p>Volume 4, Chapter 8: Modified 01/13/2005 (DC)-- Converted
subsections and
subsubsections to sections for better index at www.allaboutcircuits.com</p>
<hr>
<p><b>2004</b> (Listed in chronological order from most recent to first
of
year)</p>
<p>Volume 1, Chpater 1: Modified 12/30/2004 (DC) -- Added Sean Donner's
name
to the contributor's list. Typographical error correction in "Voltage
and
current" section (by a the/ by the) also (current of current/ of
current).</p>
<p>Volume 4, Chapter 8: Modified 11/14/2004 (DC) -- Added Paul Stokes
name to
the contributor's list . Corrected serious errors near "Fold up the
corners"
change Out=B'C' to Out=B'D', 14118.eps same change.</p>
<p>Volume 1, Chapter 2: Modified 09/20/2004 (TK) -- Corrected a serious
typographical error, thanks to Larry Cramblett. One of the sentences in
the
"Nonlinear conduction" section of chapter 2 stated that voltage and
current
were <i>inversely</i> related for most conductors. Oy vay!</p>
<p>Volume 4, Chapter 8: Modified 07/31/2004 (TK) -- Added Dennis
Crunkliton's
Karnaugh mapping chapter to the volume. This is a milestone for the
project:
the first complete chapter submission from a contributor!</p>
<p>Volume 2, Chapter 1: Modified 03/28/2004 (TK) -- Corrected minor
typographical error, thanks to Harvey Lew. Also added Lew's name to the
contributor list for the Reference volume, for a typographical error he
spotted there about a year ago that I forgot to credit him for.</p>
<p>Volume 5, Chapter 1: Modified 03/28/2004 (TK) -- Added Imperial
gallons
conversion to table, as per request from Gerald Gardner of Anglia
Polytechnic University.</p>
<p>Volume 2, Chapter 9: Modified 01/10/2004 (TK) -- Edited section on
Tesla
coils, as per recommendations from Bart Anderson.</p>
<p>Volume 3, Chapter 2: Modified 01/01/2004 (TK) -- Minor correction:
changed
spelling from Neils Bohr to Niels Bohr, as per suggestion from Maciej
Noszczyski.</p>
<p>Volume 4, Chapter 16: Modified 01/01/2004 (TK) -- Changed spelling
of
"Grey" code to "Gray" code, in honor of Frank Gray, who patented the
code in
1953. Sorry, Frank!</p>
<br>
<p><i>Excuses for not writing much this year: busy taking classes at
Skagit
Valley College, completing Socratic Electronics project, and teaching
new
classes at Bellingham Technical College.</i></p>
<hr>
<p><b>2003</b> (Listed in chronological order from most recent to first
of
year)</p>
<p>Volume 3, Chapter 1: Modified 11/23/2003 (TK) -- Correction on
Alexander
Graham Bell's nationality: he was Scottish by birth, not American.
Thanks to
Colin Barnard for pointing this out!</p>
<p>Volume 1, Chapter 13: Modified 06/25/2003 (TK) -- Corrected
"magnetic
field" typo to "electric field."</p>
<p>Volume 4, Chapter 6: Modified 05/18/2003 (TK) -- Added new
illustration
and accompanying text to the PLC motor control circuit example, to make
the
design fail-safe. Roger Hollingsworth was the originator of this edit.</p>
<p>Volume 3, Chapter 2: Modified 03/12/2003 (TK) -- Minor typo
correction in
the spectroscopic notation of Neon.</p>
<p>Volume 1, Chapter 12: Modified 02/22/2003 (TK) -- Corrected
typographical
error, as pointed out by Aaron Forster.</p>
<p>Volume 3, Chapter 9: Modified 02/17/2003 (TK) -- Clarified some of
the
calculus concepts in the "Computational Circuits" section.</p>
<p>Volume 1, Chapter 7: Modified 01/24/2003 (TK) -- Added Tony
Armstrong's
suggestion of reversing resistor polarity in terminal strip circuit.</p>
<p>Volume 1, Chapter 3: Modified 01/22/2003 (TK) -- Clarified issues
regarding safety in ungrounded power systems, following an email from
Anil
Kini in India.</p>
<p>Volume 5, Chapter 5: Modified 01/22/2003 (TK) -- Added references to
"arc"
functions.</p>
<p>Volume 1, Chapter 10: Modified 01/05/2003 (TK) -- Corrected two
typographical errors, and added an unbalanced bridge circuit to the
Mesh
Current analysis section. Also, added Dejan Budimir's name to the
contributor's list.</p>
<p>Volume 1, Chapter 7: Modified 01/03/2003 (TK) -- Minor typographical
error
corrections.</p>
<br>
<p><i>Excuses for not writing much this year: busy teaching new class,
developing new research-discussion based curriculum for this new class,
and
beginning Socratic Electronics project.</i></p>
<hr>
<p><b>2002</b> (Many not listed in chronological order)</p>
<p>Volume 3, Chapter 3: Modified 12/16/2002 (TK) -- Correction
illustration
13047 as per Jered Wierzbicki's recommendation (I had Boltzmann's
constant
written incorrectly: 1.38 x 10^-22 instead of 1.38 x 10^-23 as it
should have
been).</p>
<p>Volume 3, Chapter 9: Modified 12/09/2002 (TK) -- Corrected error in
image
03335, with incorrect feedback resistor value (it was 2000 ohms and it
should
have been 1000 ohms).</p>
<p>Volume 3, Chapter 2: Modified 12/08/2002 (TK) -- Correction
illustration
03120 as per Bill Heath's recommendation (the atom had seven protons
instead
of six like it should have).</p>
<p>Volume 1, Chapter 10: Modified 12/07/2002 (TK) -- Corrected several
typographical errors, as per recommendations from contributor Bill
Heath.</p>
<p>Volume 1, Chapter 1: Modified 09/27/2002 (TK) -- Correction
illustration
00006 as per Bill Heath's recommendation (the atom had seven protons
instead
of six like it should have).</p>
<p>Volume 1, Chapter 13: Modified 08/23/2002 (TK) -- Added capacitor
photographs from Warren Young.</p>
<p>Volume 2, Chapter 1: Modified 07/08/2002 (TK) -- Added references to
"form
factor" and "crest factor," and elaborated a bit more on analog meter
calibration for AC waveforms.</p>
<p>Volume 1, Chapter 2: Modified 06/30/2002 (TK) -- Changed screenshot
captures of SPICE tutorial to PNG format rather than JPEG. Also,
re-named
these image files according to the new 2* filename convention for all
screenshots.</p>
<p>Volume 2, Chapter 14: Modified 06/30/2002 (TK) -- Changed screenshot
captures of Nutmeg analyses to PNG format rather than JPEG. Also,
re-named
these image files according to the new 2* filename convention for all
screenshots.</p>
<p>Volume 2, Chapter 9: Modified 06/30/2002 (TK) -- Added photograph
(52016)
of induction heating unit, as an example of eddy current losses in
ferrous
materials.</p>
<p>All chapters: Modified 06/29/2002 (TK) -- Modified image markup to
new
SubML standard (version 0.94), whereby HTML-compatible filename
extensions
are included within the "image" tags, not just the file name itself.
This new
markup standard allows for more flexibility in image file formats for
HTML
output.</p>
<p>Volume 1, Chapter 2: Modified 06/23/2002 (TK) -- Minor change on
formatting of SPICE command-line reference.</p>
<p>Volume 2, Chapter 7: Modified 06/23/2002 (TK) -- Minor editing.</p>
<p>Volume 3, Chapter 2: Modified 06/23/2002 (TK) -- Minor editing.</p>
<p>Volume 3, Chapter 2: Modified 06/20/2002 (TK) -- Changed quotation
at
beginning of chapter, plus some minor editing.</p>
<p>All chapters: Modified 06/15/2002 (TK) -- Added dates to the
contributions
listing.</p>
<p>Volume 3, Chapter 2: Modified 06/09/2002 (TK) -- Continued writing.</p>
<p>Volume 3, Chapter 2: Modified 06/06/2002 (TK) -- Continued writing.</p>
<p>Volume 3, Chapter 2: Modified 06/04/2002 (TK) -- Added text
discussing
quantum numbers.</p>
<p>Volume 1, Chapter 8: Modified 05/25/2002 (TK) -- Minor editing.</p>
<p>Volume 3, Chapter 2: Modified 05/22/2002 (TK) -- Added more to the
"Quantum Physics" chapter.</p>
<p>Volume 1, Chapter 4: Modified 05/18/2002 (TK) -- Added super-large
and
super-small metric prefixes to the list.</p>
<p>Volume 1, Chapter 13: Modified 05/18/2002 (TK) -- Minor editing of
text in
calculus section, for easier readability.</p>
<p>Volume 4, Chapter 1: Modified 05/18/2002 (TK) -- Minor editing.</p>
<p>Volume 4, Chapter 2: Modified 05/18/2002 (TK) -- Minor editing.
Also,
added new section called "Bit groupings," discussing the various and
sundry
terms used to describe common collections of bits (byte, nibble, etc.).</p>
<p>Volume 2, Chapter 10: Modified 05/07/2002 (TK) -- Changed definition
of
prefix "poly-" in accordance with Ed Beroset's suggestion, that
"polymath"
and "polygamy" might not be understood by non-English speakers.</p>
<p>Volume 1, Chapter 2: Modified 05/05/2002 (TK) -- Corrected
references of
"Chapter 2" power calculations to "Joule's Law".</p>
<p>Volume 1, Chapter 14: Modified 05/05/2002 (TK) -- Corrected
references of
"Ohm's Law" power calculations to "Joule's Law".</p>
<p>Volume 2, Chapter 2: Modified 05/05/2002 (TK) -- Corrected
references of
"Ohm's Law" power calculations to "Joule's Law".</p>
<p>Volume 3, Chapter 1: Modified 05/05/2002 (TK) -- Corrected
references of
"Ohm's Law" power calculations to "Joule's Law".</p>
<p>Volume 3, Chapter 3: Modified 05/05/2002 (TK) -- Corrected
references of
"Ohm's Law" power calculations to "Joule's Law".</p>
<p>Volume 2, Chapter 1: Modified 04/29/2002 (TK) -- Elaborated on
"average"
waveform values, to clarify confusion some people had over the true
average
(positive and negative values averaging to zero in a symmetrical
waveform)
versus the practical average (all values considered in their absolute
forms).
This was in response to a suggestion by Mark D. Zarella.</p>
<p>Volume 2, Chapter 3: Modified 04/21/2002 (TK) -- Added index
reference to
"RF."</p>
<p>Volume 2, Chapter 14: Modified 04/21/2002 (TK) -- Added photograph
of
home-made 2.4 GHz waveguide/directional antenna to the "Waveguides"
section.</p>
<p>Volume 3, Chapter 4: Modified 04/21/2002 (TK) -- Added index
reference to
"integrated circuit."</p>
<p>Volume 3, Chapter 7: Modified 04/17/2002 (TK) -- Added comment about
"sensitive gate" SCRs.</p>
<p>Volume 2, Chapter 9: Modified 04/13/2002 (TK) -- Added comments on
heat
ratings, Class designations, and inter-winding force as a
noise-producing
factor.</p>
<p>Volume 3, Chapter 7: Modified 04/10/2002 (TK) -- After discovering
that
"Gate-Controlled Switch" is just another name for the Gate-Turn-Off
thyristor, I deleted the pending section on GCS's and added text to the
SCR/GTO section.</p>
<p>Volume 3, Chapter 7: Modified 04/09/2002 (TK) -- Added sections
regarding
IGFET/Thyristor hybrid devices (MOS-gated thyristor and the MCT).</p>
<p>Volume 1, Chapter 2: Modified 04/07/2002 (TK) -- Minor editing.</p>
<p>Volume 1, Chapter 6: Modified 04/07/2002 (TK) -- Added illustrations
of
potentiometer construction.</p>
<p>Volume 3, Chapter 3: Modified 04/07/2002 (TK) -- Added commentary on
"resistance" functions of multimeters having "diode-check" functions as
well.
Also, corrected many typographical errors and illustrative errors.</p>
<p>Volume 3, Chapter 7: Modified 04/06/2002 (TK) -- Added comments
regarding
positive feedback.</p>
<p>Volume 1, Chapter 2: Modified 04/03/2002 (TK) -- Added screenshots
to the
SPICE section to help readers understand better the use of this
software.</p>
<p>Volume 2, Chapter 3: Modified 04/02/2002 (TK) -- Added text and
photograph
elaborating on skin effect and inductors in RF circuits. Also,
corrected
spelling of the word "gage" to "gauge."</p>
<p>Volume 1, Chapter 11: Modified 04/01/2002 (TK) -- Added details of
saturated versus unsaturated (mercury) standard cells.</p>
<p>Volume 1, Chapter 1: Modified 03/31/2002 (TK) -- Minor stylistic
changes
to paragraph comparing potential energy of water reservoir to potential
energy of an elevated rock.</p>
<p>Volume 2, Chapter 1: Modified 03/30/2002 (TK) -- Modified text
regarding
explanation of "Hertz," as per John Symonds' suggestion.</p>
<p>Volume 2, Chapter 14: Modified 03/24/2002 (TK) -- Continued writing.</p>
<p>Volume 2, Chapter 14: Modified 03/20/2002 (TK) -- Continued writing.</p>
<p>Volume 2, Chapter 14: Modified 03/17/2002 (TK) -- Continued writing.</p>
<p>Volume 2, Chapter 14: Created 03/10/2002 (TK) -- Began developing
content
for this chapter, learning more about the subject as I go!</p>
<p>Volume 3, Chapter 3: Modified 03/07/2002 (TK) -- Added index
reference to
"diode check" meter function.</p>
<p>Volume 3, Chapter 5: Modified 03/06/2002 (TK) -- Minor editing.</p>
<p>Volume 3, Chapter 4: Modified 03/05/2002 (TK) -- Added some text and
graphics regarding negative feedback in multi-stage amplifiers.</p>
<p>Volume 2, Chapter 11: Modified 02/05/2002 (TK) -- Corrected a minor
typesetting error.</p>
<p>Volume 1, Chapter 8: Modified 01/19/2002 (TK) -- Made small changes
and
additions to section on 4-wire (Kelvin) resistance measurements.</p>
<p>Volume 2, Chapter 2: Modified 01/09/2002 (TK) -- Rewrote section on
polarity markings and phase.</p>
<p>Volume 2, Chapter 5: Modified 01/07/2002 (TK) -- Added a short
section at
the beginning reviewing concepts of resistance, reactance, and
impedance.</p>
<p>Volume 2, Chapter 7: Modified 01/17/2002 (TK) -- Minor changes to
wording
of text.</p>
<p>Volume 2, Chapter 9: Modified 01/05/2002 (TK) -- Added text and
illustrations regarding transformer inrush current. Broke "Practical
considerations" section into subsections.</p>
<p>Volume 2, Chapter 12: Modified 01/03/2002 (TK) -- Minor additions to
twin-T capacitive circuit text and illustrations.</p>
<p>Volume 3, Chapter 2: Modified 01/02/2002 (TK) -- Added several
diagrams
showing planar cross-sections of common semiconductor devices along
with
their schematic symbols.</p>
<p>Volume 3, Chapter 3: Modified 01/01/2002 (TK) -- Wrote zener diode
section.</p>
<p>Volume 3, Chapter 3: Modified 02/13/2002 (TK) -- Corrected graphic
errors
in zener diode section (I used the wrong symbol for a zener diode: the
Schottky diode symbol!).</p>
<p>Volume 3, Chapter 4: Modified 01/06/2002 (TK) -- Wrote section on
feedback.</p>
<p>Volume 3, Chapter 6: Modified 01/02/2002 (TK) -- Added section on
IGBTs.</p>
<p>Volume 3, Chapter 7: Modified 01/06/2002 (TK) -- Wrote section on
Silicon-Controlled Switches (SCSs).</p>
<p>Volume 3, Chapter 8: Modified 01/31/2002 (TK) -- Added text
recommending
the model 353 as a performance upgrade to the 1458.</p>
<p>Volume 3, Chapter 8: Modified 02/21/2002 (TK) -- Added comments
about
"latch-up" quirk of some op-amps.</p>
<p>Volume 3, Chapter 8: Modified 03/18/2002 (TK) -- Corrected some
numerical
errors in images 03037 and 03038. Added schematic diagram of a
home-made
op-amp circuit, as well as the internal schematic for a model 741.
Added
LM324 parameters to model list.</p>
<p>Volume 3, Chapter 8: Modified 05/01/2002 (TK) -- Added illustration
and
text warning readers of problems caused by lack of power supply ground
(a
common ground with the input signals).</p>
<p>Volume 3, Chapter 8: Modified 05/19/2002 (TK) -- Added "positive
feedback"
as index items.</p>
<p>Volume 3, Chapter 9: Modified 04/27/2002 - 04/28/2002 (TK) -- Began
writing "Computational Circuits" section.</p>
<p>Volume 3, Chapter 9: Modified 05/01/2002 (TK) -- Added some
comments, and
one illustration, to the "Computational Circuits" section, regarding
noise
errors and drift errors.</p>
<p>Volume 3, Chapter 9: Modified 06/23/2002 (TK) -- Minor editing.</p>
<p>Volume 3, Chapter 9: Modified 08/23/2002 (TK) -- Added Warren
Young's
(modified) text as the first installment of a new "Power Supplies"
section.</p>
<p>Volume 3, Chapter 13: Modified 04/02/2002 (TK) -- Added some text in
the
last section, regarding the advantages and disadvantages of tubes in
comparison to semiconductors.</p>
<p>Volume 3, Chapter 13: Modified 04/06/2002 (TK) -- Minor editing
changes,
plus comments on "ultralinear" tetrode connections for audio power
amplifiers
and tube use in audio equipment. Also added photograph of a "cat-eye"
tube.</p>
<p>Volume 3, Chapter 13: Modified 04/10/2002 (TK) -- Added two
paragraphs to
the last section (Tubes versus Semiconductors).</p>
<p>Volume 3, Chapter 13: Modified 07/21/2002 (TK) -- Minor error
corrections
and stylistic changes.</p>
<p>Volume 4, Chapter 3: Modified 03/03/2002 (TK) -- Minor editing.
Also,
corrected source code error: two "comment" lines weren't closed,
resulting in
several important sections at the end of the chapter being hidden from
view!</p>
<p>Volume 4, Chapter 3: Modified 04/17/2002 (TK) -- Altered some CMOS
schematic diagrams for better clarity and accuracy, and added text and
graphics regarding CMOS bilateral switches.</p>
<p>Volume 4, Chapter 3: Modified 04/19/2002 (TK) -- Minor grammar
correction.</p>
<p>Volume 4, Chapter 3: Modified 05/14/2002 (TK) -- Added a new
section:
"Logic signal voltage levels".</p>
<p>Volume 4, Chapter 3: Modified 05/18/2002 (TK) -- Continued writing
new
section: "Logic signal voltage levels".</p>
<p>Volume 4, Chapter 3: Modified 05/19/2002 (TK) -- Continued writing
new
section: "Logic signal voltage levels". Added illustrations and text
regarding Schmitt trigger gates. Modified section on DIP gate packaging.</p>
<p>Volume 4, Chapter 3: Modified 06/26/2002 (TK) -- Minor editing.</p>
<p>Volume 4, Chapter 4: Modified 03/03/2002 (TK) -- Minor editing.</p>
<p>Volume 4, Chapter 4: Modified 04/17/2002 (TK) -- Minor editing.</p>
<p>Volume 4, Chapter 5: Modified 05/18/2002 (TK) -- Added photographs
and
text of octal-based relays and a three-phase motor contactor.</p>
<p>Volume 4, Chapter 6: Modified 03/03/2002 (TK) -- Minor editing.</p>
<p>Volume 4, Chapter 6: Modified 05/19/2002 (TK) -- Added "Programmable
Logic
Controller" section.</p>
<p>Volume 4, Chapter 7: Created 02/23/2002 to 02/24/2002 (TK)</p>
<p>Volume 4, Chapter 7: Modified 03/03/2002 (TK) -- Continued writing.</p>
<p>Volume 4, Chapter 7: Modified 06/16/2002 (TK) -- Continued writing.</p>
<p>Volume 4, Chapter 7: Modified 06/23/2002 (TK) -- Minor changes.</p>
<p>Volume 4, Chapter 10: Modified 05/22/2002 (TK) -- Minor
typographical
correction.</p>
<p>Volume 4, Chapter 11: 06/02/2002 (TK) -- Started writing.</p>
<p>Volume 4, Chapter 11: 06/03/2002 (TK) -- Continued writing.</p>
<p>Volume 4, Chapter 13: Modified 04/09/2002 (TK) -- Modified comments
on ADC
resolution.</p>
<p>Volume 4, Chapter 14: Modified 05/18/2002 (TK) -- Minor editing.</p>
<p>Volume 5, Chapter 1: Modified 05/05/2002 (TK) -- Corrected
references of
"Ohm's Law" power calculations to "Joule's Law".</p>
<p>Volume 5, Chapter 1: Modified 05/18/2002 (TK) -- Added super-large
and
super-small metric prefixes to the list.</p>
<p>Volume 5, Chapter 1: Modified 07/02/2002 (TK) -- Minor revisions to
conversion factors. Also added section crediting source of conversion
data.</p>
<p>Volume 5, Chapter 4: Modified 05/25/2002 (TK) -- Minor editing.</p>
<p>Volume 5, Chapter 7: Modified 02/03/2002 (TK) -- Minor typo
corrections in
some of the op-amp netlists (had inverting and noninverting inputs