Does anyone have the accurate angles and dimensions of the IN-18 pinout?

74 views
Skip to first unread message

Zachary

unread,
Mar 29, 2023, 10:06:34 PM3/29/23
to neonixie-l
I'm trying to model a socket in Fusion 360 but a lot of what I find online is contradictory. Any help would be greatly appreciated

gregebert

unread,
Mar 30, 2023, 5:33:11 PM3/30/23
to neonixie-l
This might help. It's the source-code for 3D-printed collar for IN-18 tubes and I have 14 tubes of different manufacturing dates that fit just fine. 


//
//  Copyright (c) 2016 Greg Ebert
//
//  Generate pin-collar for IN-18 tubes
//  By setting nrow & ncol, any number of copies can
//  be created in a single print.
//  Setting both to 1 gives a single object
//
//  Dimensions are millimeters
//
outer_radius = 29.5/2;     // Disk diameter
hole_radius = 5;           // Interior center-hole for tube nib
pin_radius = 1.4;          // For socket pins
pinring_radius = 17.40/2;  // Location of socket pins
disk_thickness = 6.84;     // Millimeters
chamfer = 1.5;            // Top angled section
spacing = 0.3;             // spacing when replicating
nrow = 5;                  // Number of rows (X direction)
ncol = 5;                  // Number of columns (Y direction)
disk_color = [0,1,0];
hole_color = [1,0,1];
chamfer_color = [1,0.6,0.5];

for(j=[1:1:ncol]) {
 for(i=[1:1:nrow]) {
  xoffset = i*(2*outer_radius + spacing);
  yoffset = j*(2*outer_radius + spacing);
  difference () {

    translate([xoffset,yoffset,(-disk_thickness/2)]) color([chamfer_color]) cylinder(h=(chamfer), r2=outer_radius, r1=(outer_radiu
s - chamfer), center=true, $fn=90);    // Top chamfer
    translate([xoffset,yoffset,0]) color([hole_color]) cylinder(h=2*disk_thickness, r=hole_radius, center=true, $fn=20);   // Cent
er hole
    for(npin=[1:1:14]) {
        x = xoffset + pinring_radius * cos(npin*360/15);
        y = yoffset + pinring_radius * sin(npin * 360/15);
        translate([x,y,0] )
        color([hole_color]) cylinder(h=2*disk_thickness, r=pin_radius,$fn=40,center=true);    // Pin holes
    } // loop
  }   // difference
 
difference () {
    translate([xoffset,yoffset,0]) color(disk_color) cylinder(h=(disk_thickness-chamfer), r=outer_radius, center=true, $fn=90);    //
Main disk
   
    translate([xoffset,yoffset,0]) color([hole_color]) cylinder(h=2*disk_thickness, r=hole_radius, center=true, $fn=20);   // Center h
ole
    for(npin=[1:1:14]) {
        x = xoffset + pinring_radius * cos(npin*360/15);
        y = yoffset + pinring_radius * sin(npin * 360/15);
        translate([x,y,0] ) color([hole_color]) cylinder(h=disk_thickness, r=pin_radius,$fn=40,center=true);    // Pin holes
    } // loop
  }   // difference
 }    // Nrow
}     // Ncol

petehand

unread,
Mar 30, 2023, 7:27:18 PM3/30/23
to neonixie-l
This might help.
in18.jpg
Also this -
IN18.PDF

petehand

unread,
Mar 30, 2023, 7:38:12 PM3/30/23
to neonixie-l
For what it's worth, it fits the same 14 pin socket as the 3LO1 and 6LO1 small CRTs.


newxito

unread,
Mar 31, 2023, 3:34:36 AM3/31/23
to neonixie-l
These are the x,y coordinates  in mm  I'm using for my boards... top view...

 IN-18.jpg

nnylfsw

unread,
Mar 31, 2023, 5:11:57 AM3/31/23
to neoni...@googlegroups.com
I see there is a solid CAD model at Grabcad.com.  Just go to the library and search.   There are several useful Nixie items located there.   I can't attest to the accuracy,  but should be easy to verify with the model.  Hope that helps. 
--
You received this message because you are subscribed to the Google Groups "neonixie-l" group.
To unsubscribe from this group and stop receiving emails from it, send an email to neonixie-l+...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/neonixie-l/c3266981-1bd9-4cf4-8685-cd25432f4944n%40googlegroups.com.

Paul Andrews

unread,
Mar 31, 2023, 9:16:13 AM3/31/23
to neonixie-l
Reply all
Reply to author
Forward
0 new messages