Schedule November 2007

return to main 1401 Restoration Page
go to Team Bios

Contents:
Thurs November 1 - 729 tape drives, Demos at Vintage Computer Festival
Wed November 07 - general, Sat November 10 - 2nd Sat.
Wed November 14 - general,
Wed November 21 - general, Sat November 24 - 4th Sat.
Wed November 28 - general,


Thursday November 01 - 729 tape drives

From Bob Feretich

I have performed a comprehensive test of the Tape Analyzer's driver's ability to respond to simulated record read/write requests from the 1401.

The Test

  • A hardware timer in the Tape Analyzer's PIC processor was used to initiate record transfer requests. It was set to generate a request every 50 milliseconds.
  • When the timer triggered, the PIC would send an USB Event message to the Windows PC. This Event message indicates that the PIC has received a record from the 1401 an requests the PC to upload this record. The Event message is received by the driver and the driver sends a USB Command message to the PIC, telling it to upload the record from its buffer. The driver then receives uploaded record is received from the PIC and adds it to a large buffer (the Tape Buffer). The PIC timestamps all outbound messages with its timer value (each count in the timer value represents 0.3 mSec). The large buffer represents a magnetic tape and is large enough to hold about 15 MBs.
  • The above test was run until the records in the buffer exceeded 14 MBs; A total of 29,815 records. The elapsed time for the test was about 25 minutes.
  • During this time several C++ compiles and internet downloads were performed. Compute heavy tasks like compiles are scheduled at the PASSIVE_LEVEL and are easily preempted by the driver's interrupt service routine. The downloads were expected to create more of a challenge, since our driver would be competing with the Ethernet driver's interrupt service routines. About 12 downloads were performed on files ranging in size from 500 KB to 9MB.
  • Both the timestamp of the PIC's Event message and the timestamp from the PIC's response to the upload Command message are recorded, along with the record data in the Tape Buffer.
  • The Tape Buffer if written to a disk file at the end of the test.
  • After the test, the timestamps in the generated disk file are analyzed to generate statistics on the driver's response latency.
  • The test is performed on a Compaq X1010 notebook computer, 1.3 GHz, 512MB.

Results:

Test duration: About 25 minutes.
Records transmitted: 29,815
Record length: 496 characters per record
Size of generated Tape file: 14.9 MBs
Minimum response time: 2 ticks (0.6 mSec)
Maximum response time: 20 ticks (6.0 mSec)
Average response time: 5 ticks (1.5 mSec)
Histogram charts: pdf's attached.

Histogram data:
Millisecs[ticks]=count

0.6 to 0.9[2]=267
0.9 to 1.2[3]=5371
1.2 to 1.5[4]=6064
1.5 to 1.8[5]=6088
1.8 to 2.1[6]=6072
2.1 to 2.4[7]=5473
2.4 to 2.7[8]=457
2.7 to 3.0[9]=19
3.0 to 3.3[10]=0
3.3 to 3.6[11]=1
3.6 to 3.9[12]=0
3.9 to 4.2[13]=1
4.2 to 4.5[14]=1
4.5 to 4.8[15]=0
4.8 to 5.1[16]=0
5.1 to 5.4[17]=0
5.4 to 5.7[18]=0
5.7 to 6.0[19]=0
6.0 to 6.3[20]=1

Conclusions:

  • The test simulated a realistic 1401 tape session.
  • The tested driver is slower than the production version, because it was generating a substantial amount console debug output that will be removed.
  • Although the driver is not 100% complete, the remaining additions will not effect the performance sensitive paths.
  • The test environment subjected the PC to much heavier loading than should occur during actual use. (In actual use, network data transfers could be limited to times when the emulated drives are not in operation. The test results indicate that this restriction may not be necessary.)
  • The test was successful with the worst case latency having more than a 50% safety margin.

Note that the response time distribution is very tight. More than 99.9% of responses fall between 0.6 and 3.0 mSec. The worst outlier response time is about 6 mSec. Since our response time requirement is 10 mSec., I believe that the driver will be able to meet our requirements.

Regards,

Bob Feretich

Ron Williams was there, and Ed Thelen lurked about - but no tape people showed up.


Demos at Vintage Computer Festival Saturday November 3, 2007

Beta Test of 1401 formal demos
After a number of meetings, the Vintage Computer Festival was selected to provide a test platform for formal tours of the 1401. We have been giving informal tours and been handing out souvenir "powers of 2" and "BIG PRINT" printouts for over a year. Dan McInnis followed the plan, and is a real pro at speaking. Ron Williams was the 083 sorter operator and "computer operator". Ed Thelen collected visitor names and keypunched them for the BIG PRINT program.
At a different VCF presentation,
Here is Lee Felsenstein, "moderator" of the old Homebrew Computer Club, and many other notable accomplishments, Wikipedia listing. At the Homebrew Computer Club he wielded a sizeable club as a show of authority/power - but has seemingly mellowed since;-))


Wednesday November 7 - general

From Bob Feretich - received Sunday November 4 ,2007
I ran the test again. This time I used 80 character records. During the test (about 25 minutes), I performed several simultaneous downloads and C++ compiles. The resulting distribution was even tighter than with the 496 character record test. The worst case response time was about 5 mSec. See the attached histogram.

Plans...
First, I need to update the driver documentation before I forget the changes.
Then, I plan to focus on the PIC firmware. Previously, I implemented a skeleton of the needed functionality. Now I need to implement the remainder of the message command set and the interface to the 1401 Tape Channel. I am probably a month away from attempting to pass records between the 1401 and PIC.

Status:

  • The overall design has been proved to be satisfactory to handle the required response times.
  • PIC firmware - a basic subset of functionality is implemented and working. The 1401 tape channel interface code needs to be implemented. I plan to focus in this area next and then work downward in this list. (50% complete)
  • Kernel Driver (.sys) - main paths (interrupt request queuing, cancellation and servicing), are implemented and working. Work remains in IBM 729 emulation specific areas. More PIC firmware needs to be implemented before these areas can be tested. (80% complete)
  • User Mode Driver (.dll) - This driver provides the interface between the Kernel Driver and the Java environment. A subset of commands are currently supported. (50% complete)
  • Java Interface Classes - Java classes that provide access to the Tape Analyzer. (99% complete, modifications may be needed to make the Java Daemon easier to construct.
  • Java Daemon - manages the tape file data and access to the Tape Analyzer.
  • Java GUI Applets - The web browser user interface to all of the above.
Jeff is working on the Java Daemon and Applets. The general plan is that I will work from the top of the above list to the bottom, while Jeff works from the bottom upward. We should meet somewhere in the middle.

Regards,
Bob

From Allen Palmer - received Monday November 5, 2007
Grant.
Forgot to answer this item
> ... Should we have an overall plan and recruit to it?

Status ....

  • Hopefully we have the Mod V reading & writing without error. We got the 'data' envelopes into spec last time we were there. I will check with Ron to see if he is still having read errors..
  • I have ''stolen'' brushes and installed them in one of the other drives. I have applied power and started to de-bug it.
  • Two other drives have been completely rebuilt and are awaiting brushes.
  • The last drive is awaiting reinstalling the rebuilt parts.
  • What can we do to get them up & running ............
    1. Steal more brushes & put them into the Mod V because Bob or Ron can work on the one because it is all SMS logic. The 729 on the display floor has brushes & if the museum will allow is to borrow these until we get some new ones made we can bring up this drive.
    2. Glen & I can reinstall the remaining parts in 2 full work days. That will leave us with the 3 Mod II & IV's. One of them I have already started working on.
    3. Once we get brushes we can work on the II & IV's. The Mod II & IV are very mechanical, all relays & timers. We can have put two teams together and they can work side by side helping each other bring them up in parallel..
I ask the other team members for their ideas.
Allen j Palmer

From John Falk - received Monday November 5, 2007
All
Just a note about the three versions of 729's and how they were designated
RELAY, NOR and NORLAY
  • The original relay drives are called "RELAY"
  • The second redesigned sms controlled are called "NOR" Drives ( for No Relays)
  • The later and better drives were called "NorLay". (some relays were added back in for reliability)
John

  • Visible at 4:00 were Ron Williams, Bob Erickson, Allen Palmer, Glenn Lea, Stan Paddock.

  • Allen Palmer got the somewhat working 729 tape drive working a little better. Prolay activity to somewhat functional. During a test run, Stan said the thing sounded like the carburator was set too rich !! The chatter was not very regular. Then it decided not to work again :-(( Many short records just moved tape continuously :-((

  • Bob Erickson declared the IBM 513 Reproducing Punch "fully functional". (An optional feature of an emitter back to an accounting machine does not work correctly - but we have no accounting machine - yet.)
    I reproduced a 250 card deck with no krinkled kards - try that again - no crinkled cards ;-)) Apparently Bob Erickson got some better rubber thingies that help push cards into the output stacker.
    But neither Stan nor I could figure how to finish the job by running the last cards out of the machine. The name of the operation is "Run Out". As soon as the machine senses no more cards in the read input hopper, it just stops, with two cards still in the rollers :-(( Trying to cheat by depressing the input hopper card sense switch allows one more card to go through - but then the next card station senses no card, and stops again :-(( - So there is still a card left in the machine :-| - Like still in there right now.

    Current operating rules for 80-80 reproduction of a deck
    1. Turn on machine power (motor generator) with big switch on right of machine.
    2. Place plug board labeled "80 - 80 Repro" into plug board holder and lower handle
    3. Assure that the left three ganged switches are in the "DOWN" position
    4. Assure that the right three switches are in the "UP" position
    5. Probably best assure that the chad box is no more than 1/2 full
    6. Assure that the Punch Error Check Stop Bar is in normal position
    7. Put the deck to be reproduced in the left hand input hopper, face down, 12 edge in
    8. Put sufficient blank cards into the right hand input hopper, face down, 12 edge in
    9. Depress the "START" switch for at least two card cycles to get the job started
    10. If you need to stop the machine, depress the "STOP" switch
    11. ?How to run cards out of the machine?
    12. When leaving to machine, place the ON/OFF switch in the OFF (down) position -
      this decreases wear on the big motor generator (and saves energy)
      To be polite, empty the chad box -

  • Bob Erickson wants to start working on an IBM 503 accounting machine that is in the museum somewhere. He got some spare type bars and adding counters from ?his garage?.

  • Stan Paddock is working to drive an IBM 026 from a PC so that we can punch cards from Ron Mak's ROPE. Stan is trying to find a premanufactured relay board so that he will not have to complete his home brew version. The search for an economical USB version (under say $400) is tough!!

  • Stan and somebody got these breakers cleaned, (by rubbing an IBM card through the contacts while the machine was running) and this new 083 works perfectly. (The old 083 from Germany as been removed from the 1401 restoration room - we couldn't even get the rusty thing to feed cards reliably.


Saturday November 11 - 2nd Saturday,

  • Present were Ron Williams, Bob Erickson, Judith Haemmerle and Tim Coslett
    This report is from Bob Erickson.

  • Bob & Judith worked on 513 user/operator instructions for us. Bob tried to remember, and Judith wrote 'em down ;-))

  • Duplicating cards in the IBM 513 is not reliable yet. The first four cards of a test deck were bad.

  • Ron was duplicating a deck with the 1401. Heck of jam in the 1402 punch, maybe 10 cards. Took a while to straighten it out.

  • Grant Saviers is making new rubber shoes for punch side output hopper of the 513,

  • Glen and Bob plan to talk Wednesday (14th) with ... about maybe making plastic (see through) covers on 513.

  • Wednesday, general talk about getting permission to restore IBM 403 accounting machine?

  • Keypunch #1 died, ? swapped a tube, then OK. Will wait for Frank King to test the tubes in the machine.


Wednesday November 14 - general

  • Present were (left to right) facing camera: (left picture) Bill Flora, Stan Paddock, Frank King, Joe Preston, Mike Cheponis, Glenn Lea, | (right picture) Glenn Lea, Bob Erickson, Jeff Stutzman, Allen Palmer, Ron Williams.
    Not shown, Robert Garner, Ed Thelen

  • Robert Garner showed videos of his New York adventure.

  • Bob Erickson and Glenn Lea made transparent cover plates for the IBM 513 summary punch. Brown paper adheres to the plastic during shipping and working to help protect the plastic from scratches. The plastic is fastened to the 513 using already existing holes in the 513.

  • Allen and and the 729 tape drive guys are back from a summer play time building and shooting eight foot rockets. Allen and the crew have some catching up to do. Ron Williams immortalized the summer rocketry with this statue of Allen at the firing button. Note the rope from the rocket around Allen's foot. If that rocket goes in a hurry, so does Allen ;-))

  • Bill Flora and Frank King want to upgrade the lubricants we use on the equipment. The lubricants used by IBM were modern in the 1930s, but great improvements in adhesion, wear, ... were made in the 1970s for automobiles and aircraft. Here is Bill searching the LubriPlate web site for suitable "lubritection" replacements.

  • Stan Paddock is interfacing a PC to a keypunch so we can use Ron Mak's ROPE environment and automatically keypunch object decks. He can active the hole punch magnets - now for the card release control - Consulting with Bob Erickson (513 in background) Eureka, I found it. He then ordered a USB based box controlling 24 relays ( giving 10 spares). USB KeyPunch Preliminary Notes

  • Frank King is entertaining some visitors by sorting cards at 1000/minute, about 17/second.
    We have been demoing/entertaining for months. Equipment, except for tapes, works. All anticipated software works - Powers of 2, Dan's System Exerciser, Big Print, all working for months - as far as the team is concerned, come one, come all :-))

  • Fun & Games - Jeff Stutzman dreamed out loud of making a Tesla coil - that reminded Stan Paddock of a Ford coil test setup in his truck -


Wed November 21 - general

  • Present were: Ron Williams, Allen Palmer, Frank King, Joe Preston, Glenn Lea, Stan Paddock, Ron Mak (for docent meeting)
    This report from Ron Williams, mostly.

  • From Allen Palmer

    Glenn & I worked today installing the new brushes in our working drive. We turn the machine on, ran Ron's test - the one that fails most of the time - plus test decks 5000 & 5030 many times all without failure. Not sure exactly why it ran perfectly, only time will tell. Next item it to put more of the new brushes together and install in the other Mod V. Once they are in we will turn on power and see what we get. Hoping for a quick bring up ( don't we always at least hope) .
    allen"

    Ron's "far out theory" - bad brushes making sparks - spark gaps make broad band noises, might backup over an inter-record gap -

  • Ron Williams, Stan Paddock, Ron Mak, Bill Worthington, Jim Somers - were at the 2:00 demo meeting.

  • Ron Williams & Frank King changed the oil in the chain oiler, and did a standard chain cleaning. One print position died on wednesday, changing the driver card did no good - but started working again Saturday - driver signal looks good. 1403 look for back EMF - apparently looks for the back EMF - if incorrect back EMF, an error signal is generated - there was no error signal. Frank wonders if the tape in the magnetic gap is worn? We put in an unauthorized substitute a year or so ago.

  • Joe was working on keypunches. The maintenance crew removed the white equipment status boards from the Liebert air conditioner - and did not replace them -


Saturday November 24 - 4th Saturday

  • Present were: Ron Williams, Bob Erickson, Stan Paddock, Judith Haemmerle
    This report from Ron Williams.

  • Judith, Stan Bob worked on 513, took out punch check unit (an assembly of some 80 relay/solenoids) and cleaned with air compressor outside. Reinstalled - worked much better - actually seems purfekt ;-)

  • Stan and Ron repaired table on Sellam's keypunch. Folks should not try to lift 026 by the table. (It came here that way). Wood screws and two part epoxy were used.
    One of ours has the same damage but the parts are not there, angled rod (threads into something that looks a Tee-nut (like in a furniture kit) - held in by tiny wood screws.


Wednesday November 28 - general



Go to December 2007
go to Team Bios