home *** CD-ROM | disk | FTP | other *** search
/ Compu-Fix / Compu-Fix.iso / misc / elem / 2.chn (.txt) < prev    next >
Encoding:
Turbo Pascal Chain module  |  1993-03-01  |  11.6 KB  |  169 lines

  1. 9The modules in this program are listed below.  To review 
  2. 0a given module, select the corresponding number.
  3. 1      Title 
  4. 2      Introduction
  5. 3      Circuits
  6. 4      Symbols
  7. 5      Schematic No. 1
  8. 6      Schematic No. 2
  9. 7      Calculation
  10. 8      Test
  11. 9      Conclusion
  12. "ENTER the NUMBER of your choice:  
  13. C(ontinue / R(eview
  14. ?           (**************************************************)
  15. ?           (*                                                *)
  16. ?           (*             Elementary Electricity             *)
  17. ?           (*                                                *)
  18. ?           (*   Tutorial No. 2                               *)
  19. ?           (*                                                *)
  20. ?           (*                SERIES RESISTORS                *)
  21. ?           (*                                                *)
  22. ?           (*                   Version 1.0                  *)
  23. ?           (*                                                *)
  24. ?           (*                                                *)
  25. ?           (*   This program illustrates simple, resistive   *)
  26. ?           (*   series circuits, and provides the  student   *)
  27. ?           (*   with  opportunities to calculate the total   *)
  28. ?           (*   resistance  in a  number of such circuits.   *)
  29. ?           (*                                                *)
  30. ?           (*   Written by T. J. Meyers      July 10, 1985   *)
  31. ?           (*                                                *)
  32. ?           (**************************************************)
  33. INTRODUCTION
  34. ;If you have studied the tutorial Ohm's Law you already know
  35. :that electrical resistance is defined as the opposition to
  36. +the flow of electric charge in a conductor.
  37. @In this program you will see how different electrical components
  38. @such as resistors, dry cells, and switches may be connected end-
  39. @to-end, that is, in SERIES, to form complete electric circuits. 
  40. AYou will be expected to determine the total electrical resistance
  41. $in a number of such simple circuits.
  42. CIRCUITS
  43. 3A simple electric circuit consists of the following
  44. three elements:
  45. %     1.  a source of electric charges
  46. 4     2.  a device, or load, which changes the energy
  47. 3         of the charges into another form of energy
  48. :     3.  a closed path through which the charges may flow.
  49. :An example of a simple electrical circuit could be a small
  50. :incandescent bulb (such as a flashlight bulb) connected by
  51. =two short pieces of wire to a dry cell.  In a flashlight, two
  52. >dry cells are placed end to end (in series) to form a battery.
  53. =The case of the flashlight, if made of metal, takes the place
  54. >of the connecting wires.  A push-button switch opens or closes
  55. <the electrical circuit, thus controlling the flow of charge.
  56. >                         ELECTRIC SYMBOLS                     
  57. >                    Used in schematic diagrams                
  58. >............................    represents a wire conductor   
  59. >           /                                                  
  60. >........../  ...............    on-off switch in OPEN position
  61. >......../\  /\  /\..........    a resistor (could represent a 
  62. >          \/  \/                            light bulb)       
  63. >         |     _                                              
  64. >        _|_                      represents a chemical        
  65. >      _______                    (dry) cell -- 1.5 volts      
  66. >         |     +                                              
  67. >         |                                                    
  68. A                           SCHEMATIC DIAGRAM I                   
  69. A                         A simple series circuit                 
  70. A                   (direction of flow of charge                  
  71. A                   when switch is closed) ------>                
  72. A                ........../\  /\  /\  /\..................       
  73. A                :           \/  \/  \/                   :       
  74. A                :                                        :       
  75. A                :            RESISTOR  (R-1)             :       
  76. A DRY      -    _:_                                       :       
  77. A CELL        _______                                     :       
  78. A          +     :                                        :       
  79. A (1.5V)         :                                /       :       
  80. A                :.............................../   .....:       
  81. A                                                                 
  82. A                                                                 
  83. A                     <----  (current)         SWITCH (open)      
  84. A                                               (sw-1)            
  85. A                                                                 
  86. SCHEMATIC DIAGRAM II
  87. The series circuit extended
  88. AYou will have noted that in a series circuit the current must    
  89. @flow through each circuit element in turn.  Now, let's look at  
  90. Athe more complex series circuit below.  The charges leave the    
  91. Anegative terminal of the battery, flow through resistor R-1,     
  92. Athen through switch sw-1 (when closed), and, finally, through    
  93. Aresistor R-2, returning to the battery at the positive terminal. 
  94. A                ............/\  /\  /\...........                
  95. A                :             \/  \/            :                
  96. A           -   _:_                              :                
  97. A             _______           R-1              :                
  98. A  3 volt       _:_                               /  sw-1         
  99. A  battery    _______                            /                
  100. A           +    :                               :                
  101. A                :.........../\  /\  /\..........:                
  102. A                              \/  \/                             
  103. A                                                                 
  104. A                                R-2                              
  105. -CALCULATION OF RESISTANCE IN A SERIES CIRCUIT
  106. 9                                                         
  107. 9         ...../\  /\  ...../\  /\  ...../\  /\  .....    
  108. 9                \/  \/       \/  \/       \/  \/         
  109. 9                                                         
  110. 9                 R-1           R-2          R-3          
  111. 8     Let's assume in the sketch above that the resistors
  112. 9     have the values 25 ohms, 48 ohms, and 37 ohms.  What
  113. 9     will be their combined resistance?...               
  114. 9     If you said 110 ohms you are correct.  To determine 
  115. 9     the equivalent resistance of any number of resistors
  116. 9     connected in SERIES you simply sum their values.    
  117. FINAL EXAM
  118. 4Determine the equivalent resistance of the following
  119. #resistors when connected in SERIES.
  120. R-1 =  
  121.  16 ohms
  122.      R-3 =  
  123.  41 ohms
  124. R-2 =  
  125.  96 ohms
  126.      R-4 =  
  127. 113 ohms
  128. )The equivalent resistance in ohms is:    
  129. !Of course.  Just simple addition.
  130. 3What?  Not enough fingers?  Add those digits again!
  131. 'The equivalent resistance in ohms is:  
  132. !Good.  I thought you could do it.
  133. +Mercy!  You can't add?  The correct sum is 
  134. 2Now let's try something a trifle more challenging.
  135. Let:  R-5 = 
  136.      300 ohms
  137.     R-6 = 
  138.  7.5 k ohms
  139.      R-7 = 
  140.  1.1 megohms
  141. 1The equivalent resistance in megohms will be:    
  142. %Excellent!  You have passed the exam!
  143. Incorrect.  You must try again.
  144. R-5 + R-6 + R-7 = 
  145. %Very good.  You have passed the exam.
  146. #Too bad.  You have failed the exam.
  147. The correct answer is 
  148.      megohms.
  149. 5For your own benefit, you should work at this problem
  150. until you get it right.
  151. CONCLUSION
  152. -To sum up, let's repeat the following points:
  153. 51.  An electric circuit is a closed path around which
  154.     electric charges may flow.
  155. 62.  In a series circuit, the charges flow, externally,
  156. 7    from the negative terminal of the cell, or battery,
  157.     to the positive terminal.
  158. 93.  In a series circuit, since the elements are connected
  159. 9    end-to-end the charges must flow through each element
  160.     in turn.
  161. <4.  In a series circuit, the total resistance of the circuit
  162. 9    is the arithmetic sum of the values of the individual
  163.     resistances in the circuit.
  164. 3                  Press spacebar to try again      
  165. 3                     To return to the menu         
  166. 3                  first, type (q,Q) to quit        
  167. 3                  then,  type (menu,MENU) at A>    
  168. 5                         Press (q,Q) to quit         
  169.