hexagon logo

SPC and datapage

I have 2 key dimensions that I need to supply SPC > CPK > and Histograms.
I send these to datapage and after several parts how does one yeild the Histogram and CPK?
Parents
  • I would prefer the program not to have operator intervention. In other words fully automated without stops. If I am getting this the Dimension Labels would be automated? Can I only send the keys so that datapage only contains them in the variable list? How would I do that if so? I am guessing put the datapage callout at the program end where only the keys would follow?

    Di it in the DIMENSION itself, you can select WHERE (OUTPUT) the dimension data goes, BOTH, STATS, or REPORT or NONE.

    AND, the process IS automatic using the variables & generic features, once you program it in, it's there and does it all on it's own.

    C1         =COMMENT/INPUT,NO,'measure size of circle "B"'
                ASSIGN/V1 = C1.INPUT
                ASSIGN/V2 = 0
    T026       =GENERIC/CIRCLE,DEPENDENT,RECT,OUT,$
                NOM/XYZ,V2,V2,V2,$
                MEAS/XYZ,V2,V2,V2,$
                NOM/IJK,0,0,1,$
                MEAS/IJK,0,0,1,$
                RADIUS/5,(V1/2)
    DIM D047= LOCATION OF CIRCLE T026  UNITS=MM ,$
    GRAPH=OFF  TEXT=OFF  MULT=1.00  OUTPUT=BOTH
    AX   NOMINAL     +TOL       -TOL       MEAS        DEV      OUTTOL   
    D      10.000      0.500      0.500      9.000     -1.000      0.500 <--------
    END OF DIMENSION D047
    
Reply
  • I would prefer the program not to have operator intervention. In other words fully automated without stops. If I am getting this the Dimension Labels would be automated? Can I only send the keys so that datapage only contains them in the variable list? How would I do that if so? I am guessing put the datapage callout at the program end where only the keys would follow?

    Di it in the DIMENSION itself, you can select WHERE (OUTPUT) the dimension data goes, BOTH, STATS, or REPORT or NONE.

    AND, the process IS automatic using the variables & generic features, once you program it in, it's there and does it all on it's own.

    C1         =COMMENT/INPUT,NO,'measure size of circle "B"'
                ASSIGN/V1 = C1.INPUT
                ASSIGN/V2 = 0
    T026       =GENERIC/CIRCLE,DEPENDENT,RECT,OUT,$
                NOM/XYZ,V2,V2,V2,$
                MEAS/XYZ,V2,V2,V2,$
                NOM/IJK,0,0,1,$
                MEAS/IJK,0,0,1,$
                RADIUS/5,(V1/2)
    DIM D047= LOCATION OF CIRCLE T026  UNITS=MM ,$
    GRAPH=OFF  TEXT=OFF  MULT=1.00  OUTPUT=BOTH
    AX   NOMINAL     +TOL       -TOL       MEAS        DEV      OUTTOL   
    D      10.000      0.500      0.500      9.000     -1.000      0.500 <--------
    END OF DIMENSION D047
    
Children
No Data