home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / vmsnet / pdp11 / 1005 < prev    next >
Encoding:
Internet Message Format  |  1993-01-23  |  2.1 KB

  1. Path: sparky!uunet!stanford.edu!rutgers!spcvxb!terry
  2. From: terry@spcvxb.spc.edu (Terry Kennedy, Operations Mgr.)
  3. Newsgroups: vmsnet.pdp-11
  4. Subject: Re: Emulex doc's
  5. Message-ID: <1993Jan23.080351.4981@spcvxb.spc.edu>
  6. Date: 23 Jan 93 13:03:51 GMT
  7. References: <727656541.150000.WILSON@ULLA.FORNAX.COM> <22JAN199317355431@rover.uchicago.edu>
  8. Organization: St. Peter's College, US
  9. Lines: 45
  10.  
  11. In article <22JAN199317355431@rover.uchicago.edu>, frank@rover.uchicago.edu (Frank - Hardware Hacker - Borger) writes:
  12. >     You also need some kind of exerciser, (mainly to select the head
  13. >     you have to align,) an adapter to bring out the test signal, and you
  14. >     also need a special tool to adjust the heads.
  15.  
  16.   It's not that bad. You can substitute a simple program for the exerciser
  17. (see the sample in BASIC-Plus for RSTS/E after my sig), hook the scope up
  18. directly to the read preamps up in the shroud, and use a regular Allen wrench
  19. to loosen/tighten the head bolt. You can wiggle the head back and forth with
  20. the Allen wrench in the head bolt socket.
  21.  
  22.   I've been able to achieve factory-level tolerances this way in RM05's.
  23.  
  24.   CAUTION: Be sure to put the head alignment lock pin in the alignment pos-
  25. ition. Crashing an alignment pack is _much_ better than losing a finger in
  26. the drive.
  27.  
  28. >     Then, (at least in my case,) you do it so infrequently that it takes
  29. >     a day or two of diddling to remember just how to do it.
  30.  
  31.   That's true 8-)
  32.  
  33. >     All in all, a >lot< more expensive than doing it for an RK05.
  34.  
  35.   Ever change a head in an RA60? You just throw 'em in. Each surface has its
  36. own servo. Of course, to reduce head switch time, you can align 'em.
  37.  
  38.     Terry Kennedy        Operations Manager, Academic Computing
  39.     terry@spcvxa.bitnet    St. Peter's College, Jersey City, NJ USA
  40.     terry@spcvxa.spc.edu    +1 201 915 9381
  41.  
  42. 10    rem align.bas - quick and dirty head alignment program for RM05's.
  43. 20    open "dr3:" as file #1%, recordsize 4096% &
  44.     \ field #1%, 4096% as a$
  45. 30    input "Head: ",h%
  46. 35    input "Cylinder: ",cyl%
  47. 40    h=h%*4% &
  48.     \ on error goto 90
  49. 50    b=cyl%*76.
  50. 60    get #1%, block b+h
  51. 70    input "Next?",a$ &
  52.     \ goto 30
  53. 90    print err,erl,h%,b+h &
  54.     \ resume 70
  55. 32767    end
  56.