Home » CEEFAX disks » telesoftware6.adl » 22-04-88/INSTR
22-04-88/INSTR
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » CEEFAX disks » telesoftware6.adl |
Filename: | 22-04-88/INSTR |
Read OK: | ✔ |
File size: | 0D80 bytes |
Load address: | FFFF1900 |
Exec address: | FFFF8023 |
Duplicates
There is 1 duplicate copy of this file in the archive:
- CEEFAX disks » telesoftware9.adl » 18-09-88/INSTR
- CEEFAX disks » telesoftware6.adl » 22-04-88/INSTR
File contents
10 REM Circuit Analyser 20 REM Manual / AUG 87 30 40 MODE4 50 PRINT''"1. Introduction" 60 PRINT"==============="'' 70 PRINT" This program allows the analysis of"' 80 PRINT"circuits containing resistors,inductors"' 90 PRINT"capacitors, current sources and voltage"' 100 PRINT"sources."' 110 PRINT'" Also available is DC (for passive" 120 PRINT'"components) and AC (for active" 130 PRINT'"devices as well)" 140 PROCspace 150 PRINT''"2. Circuit Description" 160 PRINT"======================" 170 PRINT'" The circuit to be analysed is" 180 PRINT'"entered in the form of a text file" 190 PRINT'"with line numbers from 1 to 50" 200 PRINT'" The circuit must then be labelled" 210 PRINT'"into a set of sequential nodes. It is" 220 PRINT'"essential that these nodes are" 230 PRINT'"positive and that node 0 is always" 240 PRINT'"ground (ie 0 volts)." 250 PROCspace 260 PRINT''"3. Program Format" 270 PRINT"=================" 280 PRINT'" Components are described in the" 290 PRINT'"following format, where the characters" 300 PRINT'"xxx are any characters the user wishes" 310 PRINT'"to put in" 320 PRINT'"i) Resistor - Rxx node1 node2 Value" 330 PRINT'" eg. R23 3 2 10K" 340 PRINT'"is resistor R23 connected between node" 350 PRINT'"3 and 2 of value 10K ohms" 360 PRINT'"ii) Capacitor - Cxx node1 node2 Value" 370 PRINT'" eg. C16 1 0 10u" 380 PRINT'"is capacitor C16 connected between node" 390 PRINT'"1 and 0 of value 10u Farads" 400 PROCspace 410 PRINT'' 420 PRINT"iii) Inductor - Lxx node1 node2 Value" 430 PRINT'" eg. L2 21 2 10m" 440 PRINT'"is inductor L2 connected between node" 450 PRINT'"21 and 2 of 10m Henries" 460 PRINT'"iv) Voltage source - Vxx -node +node Val" 470 PRINT'" eg. V1 1 0 10" 480 PRINT'"is a voltage source connected between" 490 PRINT'"node 1 and 0 of 10 volts" 500 PRINT'"v) Current source - Ixx -node +node Val" 510 PRINT'" eg. I1 2 1 10m" 520 PRINT'"is a current source connected between" 530 PRINT'"node 2 and 1 of 10m Amps" 540 PROCspace 550 PRINT''"Values of components can have the" 560 PRINT'"scaling factors:-" 570 PRINT''"G - 1E9 M - 1E6 K - 1E6" 580 PRINT'"m - 1E-9 u - 1E-6 n - 1E-9" 590 PRINT''"4. AC sources" 600 PRINT"=============" 610 PRINT'"to have AC voltage or current sources" 620 PRINT'"the first line in your program must" 630 PRINT'"state the frequency of all sources" 640 PRINT'"eg. FREQ 10K" 650 PRINT'"which is a frequency of 10 KHz" 660 PRINT'"given AC analysis the values given for" 670 PRINT'"sources are RMS values." 680 PROCspace 690 PRINT''"5. Using the Analyser" 700 PRINT"=====================" 710 PRINT'" The program is menu driven and" 720 PRINT'"allows the user to load or save" 730 PRINT'"programs to disk/tape." 740 PRINT'" The editor allows circuit files" 750 PRINT'"to be written into the memory and run" 760 PRINT'"using the following commands:-" 770 PRINT'"LIST - shows current program listing" 780 PRINT'"ON - enables printer" 790 PRINT'"OFF - disables printer" 800 PRINT'"RUN - executes program in memory." 810 PRINT'"END - returns to menu" 820 PROCspace 830 PRINT''"6. Example File" 840 PRINT"===============" 850 PRINT'" An example of a series RCL circuit," 860 PRINT'"with an AC voltage source of 10 volts" 870 PRINT'"RMS and frequency of 10KHz." 880 PRINT''"1 FREQ 10K" 890 PRINT'"2 R1 3 2 10K" 900 PRINT'"3 C1 2 1 10u" 910 PRINT'"4 L1 1 0 2.1m" 920 PRINT'"5 V1 3 0 10" 930 PROCspace 940 PRINT''"7. Program Limitations" 950 PRINT"======================" 960 PRINT'"1) line numbers must be sequenced 1,2,." 970 PRINT'"2) No more than 40 nodes are allowed" 980 PRINT'"3) No more than 50 program lines" 990 PRINT'"4) Program comments should start *" 1000 PRINT'"5) No nodes can be left unconnected" 1010 PRINT'' 1020 1030 END 1040 1050 DEFPROCspace 1060 PRINT'" Press <SPACE> for next page" 1070 A$=GET$ 1080 IFA$<>" " GOTO1070 1090 CLS:ENDPROC
� Circuit Analyser � Manual / AUG 87 ( �4 2 �''"1. Introduction" < �"==============="'' F/ �" This program allows the analysis of"' P0 �"circuits containing resistors,inductors"' Z0 �"capacitors, current sources and voltage"' d �"sources."' n- �'" Also available is DC (for passive" x' �'"components) and AC (for active" � �'"devices as well)" � �space � �''"2. Circuit Description" � �"======================" �) �'" The circuit to be analysed is" �+ �'"entered in the form of a text file" �' �'"with line numbers from 1 to 50" �- �'" The circuit must then be labelled" �. �'"into a set of sequential nodes. It is" �' �'"essential that these nodes are" �+ �'"positive and that node 0 is always" � �'"ground (ie 0 volts)." � �space �''"3. Program Format" �"=================" + �'" Components are described in the" "/ �'"following format, where the characters" ,/ �'"xxx are any characters the user wishes" 6 �'"to put in" @, �'"i) Resistor - Rxx node1 node2 Value" J �'" eg. R23 3 2 10K" T/ �'"is resistor R23 connected between node" ^" �'"3 and 2 of value 10K ohms" h. �'"ii) Capacitor - Cxx node1 node2 Value" r" �'" eg. C16 1 0 10u" |0 �'"is capacitor C16 connected between node" �$ �'"1 and 0 of value 10u Farads" � �space � �'' �- �"iii) Inductor - Lxx node1 node2 Value" � �'" eg. L2 21 2 10m" �. �'"is inductor L2 connected between node" � �'"21 and 2 of 10m Henries" �1 �'"iv) Voltage source - Vxx -node +node Val" � �'" eg. V1 1 0 10" �. �'"is a voltage source connected between" �! �'"node 1 and 0 of 10 volts" �0 �'"v) Current source - Ixx -node +node Val" � �'" eg. I1 2 1 10m" . �'"is a current source connected between" ! �'"node 2 and 1 of 10m Amps" �space &+ �''"Values of components can have the" 0 �'"scaling factors:-" :# �''"G - 1E9 M - 1E6 K - 1E6" D% �'"m - 1E-9 u - 1E-6 n - 1E-9" N �''"4. AC sources" X �"=============" b. �'"to have AC voltage or current sources" l, �'"the first line in your program must" v+ �'"state the frequency of all sources" � �'"eg. FREQ 10K" �' �'"which is a frequency of 10 KHz" �/ �'"given AC analysis the values given for" � �'"sources are RMS values." � �space � �''"5. Using the Analyser" � �"=====================" �* �'" The program is menu driven and" �( �'"allows the user to load or save" � �'"programs to disk/tape." �+ �'" The editor allows circuit files" �. �'"to be written into the memory and run" �' �'"using the following commands:-" - �'"LIST - shows current program listing" �'"ON - enables printer" �'"OFF - disables printer" * �'"RUN - executes program in memory." * �'"END - returns to menu" 4 �space > �''"6. Example File" H �"===============" R. �'" An example of a series RCL circuit," \. �'"with an AC voltage source of 10 volts" f$ �'"RMS and frequency of 10KHz." p �''"1 FREQ 10K" z �'"2 R1 3 2 10K" � �'"3 C1 2 1 10u" � �'"4 L1 1 0 2.1m" � �'"5 V1 3 0 10" � �space � �''"7. Program Limitations" � �"======================" �0 �'"1) line numbers must be sequenced 1,2,." �- �'"2) No more than 40 nodes are allowed" �) �'"3) No more than 50 program lines" �+ �'"4) Program comments should start *" �, �'"5) No nodes can be left unconnected" � �'' � � ��space $% �'" Press <SPACE> for next page" . A$=� 8 �A$<>" " �TnD B �:� �
00000000 0d 00 0a 17 20 f4 20 43 69 72 63 75 69 74 20 41 |.... . Circuit A| 00000010 6e 61 6c 79 73 65 72 0d 00 14 16 20 f4 20 4d 61 |nalyser.... . Ma| 00000020 6e 75 61 6c 20 2f 20 41 55 47 20 38 37 0d 00 1e |nual / AUG 87...| 00000030 05 20 0d 00 28 07 20 eb 34 0d 00 32 19 20 f1 27 |. ..(. .4..2. .'| 00000040 27 22 31 2e 20 49 6e 74 72 6f 64 75 63 74 69 6f |'"1. Introductio| 00000050 6e 22 0d 00 3c 19 20 f1 22 3d 3d 3d 3d 3d 3d 3d |n"..<. ."=======| 00000060 3d 3d 3d 3d 3d 3d 3d 3d 22 27 27 0d 00 46 2f 20 |========"''..F/ | 00000070 f1 22 20 20 20 54 68 69 73 20 70 72 6f 67 72 61 |." This progra| 00000080 6d 20 61 6c 6c 6f 77 73 20 74 68 65 20 61 6e 61 |m allows the ana| 00000090 6c 79 73 69 73 20 6f 66 22 27 0d 00 50 30 20 f1 |lysis of"'..P0 .| 000000a0 22 63 69 72 63 75 69 74 73 20 63 6f 6e 74 61 69 |"circuits contai| 000000b0 6e 69 6e 67 20 72 65 73 69 73 74 6f 72 73 2c 69 |ning resistors,i| 000000c0 6e 64 75 63 74 6f 72 73 22 27 0d 00 5a 30 20 f1 |nductors"'..Z0 .| 000000d0 22 63 61 70 61 63 69 74 6f 72 73 2c 20 63 75 72 |"capacitors, cur| 000000e0 72 65 6e 74 20 73 6f 75 72 63 65 73 20 61 6e 64 |rent sources and| 000000f0 20 76 6f 6c 74 61 67 65 22 27 0d 00 64 11 20 f1 | voltage"'..d. .| 00000100 22 73 6f 75 72 63 65 73 2e 22 27 0d 00 6e 2d 20 |"sources."'..n- | 00000110 f1 27 22 20 20 20 41 6c 73 6f 20 61 76 61 69 6c |.'" Also avail| 00000120 61 62 6c 65 20 69 73 20 44 43 20 28 66 6f 72 20 |able is DC (for | 00000130 70 61 73 73 69 76 65 22 0d 00 78 27 20 f1 27 22 |passive"..x' .'"| 00000140 63 6f 6d 70 6f 6e 65 6e 74 73 29 20 61 6e 64 20 |components) and | 00000150 41 43 20 28 66 6f 72 20 61 63 74 69 76 65 22 0d |AC (for active".| 00000160 00 82 19 20 f1 27 22 64 65 76 69 63 65 73 20 61 |... .'"devices a| 00000170 73 20 77 65 6c 6c 29 22 0d 00 8c 0b 20 f2 73 70 |s well)".... .sp| 00000180 61 63 65 0d 00 96 20 20 f1 27 27 22 32 2e 20 43 |ace... .''"2. C| 00000190 69 72 63 75 69 74 20 44 65 73 63 72 69 70 74 69 |ircuit Descripti| 000001a0 6f 6e 22 0d 00 a0 1e 20 f1 22 3d 3d 3d 3d 3d 3d |on".... ."======| 000001b0 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |================| 000001c0 22 0d 00 aa 29 20 f1 27 22 20 20 20 54 68 65 20 |"...) .'" The | 000001d0 63 69 72 63 75 69 74 20 74 6f 20 62 65 20 61 6e |circuit to be an| 000001e0 61 6c 79 73 65 64 20 69 73 22 0d 00 b4 2b 20 f1 |alysed is"...+ .| 000001f0 27 22 65 6e 74 65 72 65 64 20 69 6e 20 74 68 65 |'"entered in the| 00000200 20 66 6f 72 6d 20 6f 66 20 61 20 74 65 78 74 20 | form of a text | 00000210 66 69 6c 65 22 0d 00 be 27 20 f1 27 22 77 69 74 |file"...' .'"wit| 00000220 68 20 6c 69 6e 65 20 6e 75 6d 62 65 72 73 20 66 |h line numbers f| 00000230 72 6f 6d 20 31 20 74 6f 20 35 30 22 0d 00 c8 2d |rom 1 to 50"...-| 00000240 20 f1 27 22 20 20 20 54 68 65 20 63 69 72 63 75 | .'" The circu| 00000250 69 74 20 6d 75 73 74 20 74 68 65 6e 20 62 65 20 |it must then be | 00000260 6c 61 62 65 6c 6c 65 64 22 0d 00 d2 2e 20 f1 27 |labelled".... .'| 00000270 22 69 6e 74 6f 20 61 20 73 65 74 20 6f 66 20 73 |"into a set of s| 00000280 65 71 75 65 6e 74 69 61 6c 20 6e 6f 64 65 73 2e |equential nodes.| 00000290 20 49 74 20 69 73 22 0d 00 dc 27 20 f1 27 22 65 | It is"...' .'"e| 000002a0 73 73 65 6e 74 69 61 6c 20 74 68 61 74 20 74 68 |ssential that th| 000002b0 65 73 65 20 6e 6f 64 65 73 20 61 72 65 22 0d 00 |ese nodes are"..| 000002c0 e6 2b 20 f1 27 22 70 6f 73 69 74 69 76 65 20 61 |.+ .'"positive a| 000002d0 6e 64 20 74 68 61 74 20 6e 6f 64 65 20 30 20 69 |nd that node 0 i| 000002e0 73 20 61 6c 77 61 79 73 22 0d 00 f0 1d 20 f1 27 |s always".... .'| 000002f0 22 67 72 6f 75 6e 64 20 28 69 65 20 30 20 76 6f |"ground (ie 0 vo| 00000300 6c 74 73 29 2e 22 0d 00 fa 0b 20 f2 73 70 61 63 |lts).".... .spac| 00000310 65 0d 01 04 1b 20 f1 27 27 22 33 2e 20 50 72 6f |e.... .''"3. Pro| 00000320 67 72 61 6d 20 46 6f 72 6d 61 74 22 0d 01 0e 19 |gram Format"....| 00000330 20 f1 22 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d | ."=============| 00000340 3d 3d 3d 3d 22 0d 01 18 2b 20 f1 27 22 20 20 20 |===="...+ .'" | 00000350 43 6f 6d 70 6f 6e 65 6e 74 73 20 61 72 65 20 64 |Components are d| 00000360 65 73 63 72 69 62 65 64 20 69 6e 20 74 68 65 22 |escribed in the"| 00000370 0d 01 22 2f 20 f1 27 22 66 6f 6c 6c 6f 77 69 6e |.."/ .'"followin| 00000380 67 20 66 6f 72 6d 61 74 2c 20 77 68 65 72 65 20 |g format, where | 00000390 74 68 65 20 63 68 61 72 61 63 74 65 72 73 22 0d |the characters".| 000003a0 01 2c 2f 20 f1 27 22 78 78 78 20 61 72 65 20 61 |.,/ .'"xxx are a| 000003b0 6e 79 20 63 68 61 72 61 63 74 65 72 73 20 74 68 |ny characters th| 000003c0 65 20 75 73 65 72 20 77 69 73 68 65 73 22 0d 01 |e user wishes"..| 000003d0 36 12 20 f1 27 22 74 6f 20 70 75 74 20 69 6e 22 |6. .'"to put in"| 000003e0 0d 01 40 2c 20 f1 27 22 69 29 20 52 65 73 69 73 |..@, .'"i) Resis| 000003f0 74 6f 72 20 2d 20 52 78 78 20 6e 6f 64 65 31 20 |tor - Rxx node1 | 00000400 6e 6f 64 65 32 20 56 61 6c 75 65 22 0d 01 4a 20 |node2 Value"..J | 00000410 20 f1 27 22 20 20 20 20 20 20 20 20 65 67 2e 20 | .'" eg. | 00000420 52 32 33 20 33 20 32 20 31 30 4b 22 0d 01 54 2f |R23 3 2 10K"..T/| 00000430 20 f1 27 22 69 73 20 72 65 73 69 73 74 6f 72 20 | .'"is resistor | 00000440 52 32 33 20 63 6f 6e 6e 65 63 74 65 64 20 62 65 |R23 connected be| 00000450 74 77 65 65 6e 20 6e 6f 64 65 22 0d 01 5e 22 20 |tween node"..^" | 00000460 f1 27 22 33 20 61 6e 64 20 32 20 6f 66 20 76 61 |.'"3 and 2 of va| 00000470 6c 75 65 20 31 30 4b 20 6f 68 6d 73 22 0d 01 68 |lue 10K ohms"..h| 00000480 2e 20 f1 27 22 69 69 29 20 43 61 70 61 63 69 74 |. .'"ii) Capacit| 00000490 6f 72 20 2d 20 43 78 78 20 6e 6f 64 65 31 20 6e |or - Cxx node1 n| 000004a0 6f 64 65 32 20 56 61 6c 75 65 22 0d 01 72 22 20 |ode2 Value"..r" | 000004b0 f1 27 22 20 20 20 20 20 20 20 20 20 20 65 67 2e |.'" eg.| 000004c0 20 43 31 36 20 31 20 30 20 31 30 75 22 0d 01 7c | C16 1 0 10u"..|| 000004d0 30 20 f1 27 22 69 73 20 63 61 70 61 63 69 74 6f |0 .'"is capacito| 000004e0 72 20 43 31 36 20 63 6f 6e 6e 65 63 74 65 64 20 |r C16 connected | 000004f0 62 65 74 77 65 65 6e 20 6e 6f 64 65 22 0d 01 86 |between node"...| 00000500 24 20 f1 27 22 31 20 61 6e 64 20 30 20 6f 66 20 |$ .'"1 and 0 of | 00000510 76 61 6c 75 65 20 31 30 75 20 46 61 72 61 64 73 |value 10u Farads| 00000520 22 0d 01 90 0b 20 f2 73 70 61 63 65 0d 01 9a 08 |".... .space....| 00000530 20 f1 27 27 0d 01 a4 2d 20 f1 22 69 69 69 29 20 | .''...- ."iii) | 00000540 49 6e 64 75 63 74 6f 72 20 2d 20 4c 78 78 20 6e |Inductor - Lxx n| 00000550 6f 64 65 31 20 6e 6f 64 65 32 20 56 61 6c 75 65 |ode1 node2 Value| 00000560 22 0d 01 ae 20 20 f1 27 22 20 20 20 20 20 20 20 |"... .'" | 00000570 20 65 67 2e 20 4c 32 20 32 31 20 32 20 31 30 6d | eg. L2 21 2 10m| 00000580 22 0d 01 b8 2e 20 f1 27 22 69 73 20 69 6e 64 75 |".... .'"is indu| 00000590 63 74 6f 72 20 4c 32 20 63 6f 6e 6e 65 63 74 65 |ctor L2 connecte| 000005a0 64 20 62 65 74 77 65 65 6e 20 6e 6f 64 65 22 0d |d between node".| 000005b0 01 c2 20 20 f1 27 22 32 31 20 61 6e 64 20 32 20 |.. .'"21 and 2 | 000005c0 6f 66 20 31 30 6d 20 48 65 6e 72 69 65 73 22 0d |of 10m Henries".| 000005d0 01 cc 31 20 f1 27 22 69 76 29 20 56 6f 6c 74 61 |..1 .'"iv) Volta| 000005e0 67 65 20 73 6f 75 72 63 65 20 2d 20 56 78 78 20 |ge source - Vxx | 000005f0 2d 6e 6f 64 65 20 2b 6e 6f 64 65 20 56 61 6c 22 |-node +node Val"| 00000600 0d 01 d6 1e 20 f1 27 22 20 20 20 20 20 20 20 20 |.... .'" | 00000610 65 67 2e 20 56 31 20 31 20 30 20 31 30 22 0d 01 |eg. V1 1 0 10"..| 00000620 e0 2e 20 f1 27 22 69 73 20 61 20 76 6f 6c 74 61 |.. .'"is a volta| 00000630 67 65 20 73 6f 75 72 63 65 20 63 6f 6e 6e 65 63 |ge source connec| 00000640 74 65 64 20 62 65 74 77 65 65 6e 22 0d 01 ea 21 |ted between"...!| 00000650 20 f1 27 22 6e 6f 64 65 20 31 20 61 6e 64 20 30 | .'"node 1 and 0| 00000660 20 6f 66 20 31 30 20 76 6f 6c 74 73 22 0d 01 f4 | of 10 volts"...| 00000670 30 20 f1 27 22 76 29 20 43 75 72 72 65 6e 74 20 |0 .'"v) Current | 00000680 73 6f 75 72 63 65 20 2d 20 49 78 78 20 2d 6e 6f |source - Ixx -no| 00000690 64 65 20 2b 6e 6f 64 65 20 56 61 6c 22 0d 01 fe |de +node Val"...| 000006a0 1f 20 f1 27 22 20 20 20 20 20 20 20 20 65 67 2e |. .'" eg.| 000006b0 20 49 31 20 32 20 31 20 31 30 6d 22 0d 02 08 2e | I1 2 1 10m"....| 000006c0 20 f1 27 22 69 73 20 61 20 63 75 72 72 65 6e 74 | .'"is a current| 000006d0 20 73 6f 75 72 63 65 20 63 6f 6e 6e 65 63 74 65 | source connecte| 000006e0 64 20 62 65 74 77 65 65 6e 22 0d 02 12 21 20 f1 |d between"...! .| 000006f0 27 22 6e 6f 64 65 20 32 20 61 6e 64 20 31 20 6f |'"node 2 and 1 o| 00000700 66 20 31 30 6d 20 41 6d 70 73 22 0d 02 1c 0b 20 |f 10m Amps".... | 00000710 f2 73 70 61 63 65 0d 02 26 2b 20 f1 27 27 22 56 |.space..&+ .''"V| 00000720 61 6c 75 65 73 20 6f 66 20 63 6f 6d 70 6f 6e 65 |alues of compone| 00000730 6e 74 73 20 63 61 6e 20 68 61 76 65 20 74 68 65 |nts can have the| 00000740 22 0d 02 30 1a 20 f1 27 22 73 63 61 6c 69 6e 67 |"..0. .'"scaling| 00000750 20 66 61 63 74 6f 72 73 3a 2d 22 0d 02 3a 23 20 | factors:-"..:# | 00000760 f1 27 27 22 47 20 2d 20 31 45 39 20 20 4d 20 2d |.''"G - 1E9 M -| 00000770 20 31 45 36 20 20 4b 20 2d 20 31 45 36 22 0d 02 | 1E6 K - 1E6"..| 00000780 44 25 20 f1 27 22 6d 20 2d 20 31 45 2d 39 20 20 |D% .'"m - 1E-9 | 00000790 75 20 2d 20 31 45 2d 36 20 20 6e 20 2d 20 31 45 |u - 1E-6 n - 1E| 000007a0 2d 39 22 0d 02 4e 17 20 f1 27 27 22 34 2e 20 41 |-9"..N. .''"4. A| 000007b0 43 20 73 6f 75 72 63 65 73 22 0d 02 58 15 20 f1 |C sources"..X. .| 000007c0 22 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 22 0d |"=============".| 000007d0 02 62 2e 20 f1 27 22 74 6f 20 68 61 76 65 20 41 |.b. .'"to have A| 000007e0 43 20 76 6f 6c 74 61 67 65 20 6f 72 20 63 75 72 |C voltage or cur| 000007f0 72 65 6e 74 20 73 6f 75 72 63 65 73 22 0d 02 6c |rent sources"..l| 00000800 2c 20 f1 27 22 74 68 65 20 66 69 72 73 74 20 6c |, .'"the first l| 00000810 69 6e 65 20 69 6e 20 79 6f 75 72 20 70 72 6f 67 |ine in your prog| 00000820 72 61 6d 20 6d 75 73 74 22 0d 02 76 2b 20 f1 27 |ram must"..v+ .'| 00000830 22 73 74 61 74 65 20 74 68 65 20 66 72 65 71 75 |"state the frequ| 00000840 65 6e 63 79 20 6f 66 20 61 6c 6c 20 73 6f 75 72 |ency of all sour| 00000850 63 65 73 22 0d 02 80 15 20 f1 27 22 65 67 2e 20 |ces".... .'"eg. | 00000860 46 52 45 51 20 31 30 4b 22 0d 02 8a 27 20 f1 27 |FREQ 10K"...' .'| 00000870 22 77 68 69 63 68 20 69 73 20 61 20 66 72 65 71 |"which is a freq| 00000880 75 65 6e 63 79 20 6f 66 20 31 30 20 4b 48 7a 22 |uency of 10 KHz"| 00000890 0d 02 94 2f 20 f1 27 22 67 69 76 65 6e 20 41 43 |.../ .'"given AC| 000008a0 20 61 6e 61 6c 79 73 69 73 20 74 68 65 20 76 61 | analysis the va| 000008b0 6c 75 65 73 20 67 69 76 65 6e 20 66 6f 72 22 0d |lues given for".| 000008c0 02 9e 20 20 f1 27 22 73 6f 75 72 63 65 73 20 61 |.. .'"sources a| 000008d0 72 65 20 52 4d 53 20 76 61 6c 75 65 73 2e 22 0d |re RMS values.".| 000008e0 02 a8 0b 20 f2 73 70 61 63 65 0d 02 b2 1f 20 f1 |... .space.... .| 000008f0 27 27 22 35 2e 20 55 73 69 6e 67 20 74 68 65 20 |''"5. Using the | 00000900 41 6e 61 6c 79 73 65 72 22 0d 02 bc 1d 20 f1 22 |Analyser".... ."| 00000910 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |================| 00000920 3d 3d 3d 3d 3d 22 0d 02 c6 2a 20 f1 27 22 20 20 |====="...* .'" | 00000930 20 54 68 65 20 70 72 6f 67 72 61 6d 20 69 73 20 | The program is | 00000940 6d 65 6e 75 20 64 72 69 76 65 6e 20 61 6e 64 22 |menu driven and"| 00000950 0d 02 d0 28 20 f1 27 22 61 6c 6c 6f 77 73 20 74 |...( .'"allows t| 00000960 68 65 20 75 73 65 72 20 74 6f 20 6c 6f 61 64 20 |he user to load | 00000970 6f 72 20 73 61 76 65 22 0d 02 da 1f 20 f1 27 22 |or save".... .'"| 00000980 70 72 6f 67 72 61 6d 73 20 74 6f 20 64 69 73 6b |programs to disk| 00000990 2f 74 61 70 65 2e 22 0d 02 e4 2b 20 f1 27 22 20 |/tape."...+ .'" | 000009a0 20 20 54 68 65 20 65 64 69 74 6f 72 20 61 6c 6c | The editor all| 000009b0 6f 77 73 20 63 69 72 63 75 69 74 20 66 69 6c 65 |ows circuit file| 000009c0 73 22 0d 02 ee 2e 20 f1 27 22 74 6f 20 62 65 20 |s".... .'"to be | 000009d0 77 72 69 74 74 65 6e 20 69 6e 74 6f 20 74 68 65 |written into the| 000009e0 20 6d 65 6d 6f 72 79 20 61 6e 64 20 72 75 6e 22 | memory and run"| 000009f0 0d 02 f8 27 20 f1 27 22 75 73 69 6e 67 20 74 68 |...' .'"using th| 00000a00 65 20 66 6f 6c 6c 6f 77 69 6e 67 20 63 6f 6d 6d |e following comm| 00000a10 61 6e 64 73 3a 2d 22 0d 03 02 2d 20 f1 27 22 4c |ands:-"...- .'"L| 00000a20 49 53 54 20 2d 20 73 68 6f 77 73 20 63 75 72 72 |IST - shows curr| 00000a30 65 6e 74 20 70 72 6f 67 72 61 6d 20 6c 69 73 74 |ent program list| 00000a40 69 6e 67 22 0d 03 0c 1d 20 f1 27 22 4f 4e 20 2d |ing".... .'"ON -| 00000a50 20 65 6e 61 62 6c 65 73 20 70 72 69 6e 74 65 72 | enables printer| 00000a60 22 0d 03 16 1f 20 f1 27 22 4f 46 46 20 2d 20 64 |".... .'"OFF - d| 00000a70 69 73 61 62 6c 65 73 20 70 72 69 6e 74 65 72 22 |isables printer"| 00000a80 0d 03 20 2a 20 f1 27 22 52 55 4e 20 2d 20 65 78 |.. * .'"RUN - ex| 00000a90 65 63 75 74 65 73 20 70 72 6f 67 72 61 6d 20 69 |ecutes program i| 00000aa0 6e 20 6d 65 6d 6f 72 79 2e 22 0d 03 2a 1e 20 f1 |n memory."..*. .| 00000ab0 27 22 45 4e 44 20 2d 20 72 65 74 75 72 6e 73 20 |'"END - returns | 00000ac0 74 6f 20 6d 65 6e 75 22 0d 03 34 0b 20 f2 73 70 |to menu"..4. .sp| 00000ad0 61 63 65 0d 03 3e 19 20 f1 27 27 22 36 2e 20 45 |ace..>. .''"6. E| 00000ae0 78 61 6d 70 6c 65 20 46 69 6c 65 22 0d 03 48 17 |xample File"..H.| 00000af0 20 f1 22 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d | ."=============| 00000b00 3d 3d 22 0d 03 52 2e 20 f1 27 22 20 20 41 6e 20 |=="..R. .'" An | 00000b10 65 78 61 6d 70 6c 65 20 6f 66 20 61 20 73 65 72 |example of a ser| 00000b20 69 65 73 20 52 43 4c 20 63 69 72 63 75 69 74 2c |ies RCL circuit,| 00000b30 22 0d 03 5c 2e 20 f1 27 22 77 69 74 68 20 61 6e |"..\. .'"with an| 00000b40 20 41 43 20 76 6f 6c 74 61 67 65 20 73 6f 75 72 | AC voltage sour| 00000b50 63 65 20 6f 66 20 31 30 20 76 6f 6c 74 73 22 0d |ce of 10 volts".| 00000b60 03 66 24 20 f1 27 22 52 4d 53 20 61 6e 64 20 66 |.f$ .'"RMS and f| 00000b70 72 65 71 75 65 6e 63 79 20 6f 66 20 31 30 4b 48 |requency of 10KH| 00000b80 7a 2e 22 0d 03 70 14 20 f1 27 27 22 31 20 46 52 |z."..p. .''"1 FR| 00000b90 45 51 20 31 30 4b 22 0d 03 7a 15 20 f1 27 22 32 |EQ 10K"..z. .'"2| 00000ba0 20 52 31 20 33 20 32 20 31 30 4b 22 0d 03 84 15 | R1 3 2 10K"....| 00000bb0 20 f1 27 22 33 20 43 31 20 32 20 31 20 31 30 75 | .'"3 C1 2 1 10u| 00000bc0 22 0d 03 8e 16 20 f1 27 22 34 20 4c 31 20 31 20 |".... .'"4 L1 1 | 00000bd0 30 20 32 2e 31 6d 22 0d 03 98 14 20 f1 27 22 35 |0 2.1m".... .'"5| 00000be0 20 56 31 20 33 20 30 20 31 30 22 0d 03 a2 0b 20 | V1 3 0 10".... | 00000bf0 f2 73 70 61 63 65 0d 03 ac 20 20 f1 27 27 22 37 |.space... .''"7| 00000c00 2e 20 50 72 6f 67 72 61 6d 20 4c 69 6d 69 74 61 |. Program Limita| 00000c10 74 69 6f 6e 73 22 0d 03 b6 1e 20 f1 22 3d 3d 3d |tions".... ."===| 00000c20 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |================| 00000c30 3d 3d 3d 22 0d 03 c0 30 20 f1 27 22 31 29 20 6c |==="...0 .'"1) l| 00000c40 69 6e 65 20 6e 75 6d 62 65 72 73 20 6d 75 73 74 |ine numbers must| 00000c50 20 62 65 20 73 65 71 75 65 6e 63 65 64 20 31 2c | be sequenced 1,| 00000c60 32 2c 2e 22 0d 03 ca 2d 20 f1 27 22 32 29 20 4e |2,."...- .'"2) N| 00000c70 6f 20 6d 6f 72 65 20 74 68 61 6e 20 34 30 20 6e |o more than 40 n| 00000c80 6f 64 65 73 20 61 72 65 20 61 6c 6c 6f 77 65 64 |odes are allowed| 00000c90 22 0d 03 d4 29 20 f1 27 22 33 29 20 4e 6f 20 6d |"...) .'"3) No m| 00000ca0 6f 72 65 20 74 68 61 6e 20 35 30 20 70 72 6f 67 |ore than 50 prog| 00000cb0 72 61 6d 20 6c 69 6e 65 73 22 0d 03 de 2b 20 f1 |ram lines"...+ .| 00000cc0 27 22 34 29 20 50 72 6f 67 72 61 6d 20 63 6f 6d |'"4) Program com| 00000cd0 6d 65 6e 74 73 20 73 68 6f 75 6c 64 20 73 74 61 |ments should sta| 00000ce0 72 74 20 2a 22 0d 03 e8 2c 20 f1 27 22 35 29 20 |rt *"..., .'"5) | 00000cf0 4e 6f 20 6e 6f 64 65 73 20 63 61 6e 20 62 65 20 |No nodes can be | 00000d00 6c 65 66 74 20 75 6e 63 6f 6e 6e 65 63 74 65 64 |left unconnected| 00000d10 22 0d 03 f2 08 20 f1 27 27 0d 03 fc 05 20 0d 04 |".... .''.... ..| 00000d20 06 06 20 e0 0d 04 10 05 20 0d 04 1a 0c 20 dd f2 |.. ..... .... ..| 00000d30 73 70 61 63 65 0d 04 24 25 20 f1 27 22 20 50 72 |space..$% .'" Pr| 00000d40 65 73 73 20 3c 53 50 41 43 45 3e 20 66 6f 72 20 |ess <SPACE> for | 00000d50 6e 65 78 74 20 70 61 67 65 22 0d 04 2e 09 20 41 |next page".... A| 00000d60 24 3d be 0d 04 38 13 20 e7 41 24 3c 3e 22 20 22 |$=...8. .A$<>" "| 00000d70 20 e5 8d 54 6e 44 0d 04 42 08 20 db 3a e1 0d ff | ..TnD..B. .:...| 00000d80