hexagon logo

Probe Qualification Results/Statistics

Can anyone explain how I can get the results from my probe qualifications into a dimension or report, in order to export them to a statistics package (QC-Calc preferably)? I'd like to be able to track all of these results, and not have to look at the results text file everytime I want to see them. I'm running PC-Dmis 2010, if it matters. Any thoughts?
Parents
  • PROBEDATA can get you mmuch info.

    assign/v1=PROBEDATA() this gives active probe tip

    assign/v2=PROBEDATA("TOFFSET") this gives THEO offset

    assign/v3=PROBEDATA("OFFSET") this gives actual offset

    assign/v4=PROBEDATA("VECTOR") this gives vector

    assign/v5=PROBEDATA("A") this gives "A" angle of wrist

    assign/v6=PROBEDATA("B") this gives "B" angle of wrist

    assign/v7=PROBEDATA("TDIAM") this gives THEO tip diam

    assign/v8=PROBEDATA("DIAM") this gives actual tip diam

    assign/v9=PROBEDATA("DATE") this gives date of last qual

    assign/v10=PROBEDATA("TIME") this give time of last qual

    assign/v11=PROBEDATA("STANDARDDEVIATION") this gives STDDEV



    For any other (not current tip rotation in use) ex. T1A9045B0

    assign/v2=PROBEDATA("TOFFSET","T1A9045B0") this gives THEO offset

    assign/v3=PROBEDATA("OFFSET","T1A9045B0") this gives actual offset

    assign/v4=PROBEDATA("VECTOR","T1A9045B0") this gives vector

    assign/v5=PROBEDATA("A","T1A9045B0") this gives "A" angle of wrist

    assign/v6=PROBEDATA("B","T1A9045B0") this gives "B" angle of wrist

    assign/v7=PROBEDATA("TDIAM","T1A9045B0") this gives THEO tip diam

    assign/v8=PROBEDATA("DIAM","T1A9045B0") this gives actual tip diam

    assign/v9=PROBEDATA("DATE","T1A9045B0") this gives date of last qual

    assign/v10=PROBEDATA("TIME","T1A9045B0") this give time of last qual

    assign/v11=PROBEDATA("STANDARDDEVIATION","T1A9045B0") this gives STDDEV


    Hope this helps you

    Steve
Reply
  • PROBEDATA can get you mmuch info.

    assign/v1=PROBEDATA() this gives active probe tip

    assign/v2=PROBEDATA("TOFFSET") this gives THEO offset

    assign/v3=PROBEDATA("OFFSET") this gives actual offset

    assign/v4=PROBEDATA("VECTOR") this gives vector

    assign/v5=PROBEDATA("A") this gives "A" angle of wrist

    assign/v6=PROBEDATA("B") this gives "B" angle of wrist

    assign/v7=PROBEDATA("TDIAM") this gives THEO tip diam

    assign/v8=PROBEDATA("DIAM") this gives actual tip diam

    assign/v9=PROBEDATA("DATE") this gives date of last qual

    assign/v10=PROBEDATA("TIME") this give time of last qual

    assign/v11=PROBEDATA("STANDARDDEVIATION") this gives STDDEV



    For any other (not current tip rotation in use) ex. T1A9045B0

    assign/v2=PROBEDATA("TOFFSET","T1A9045B0") this gives THEO offset

    assign/v3=PROBEDATA("OFFSET","T1A9045B0") this gives actual offset

    assign/v4=PROBEDATA("VECTOR","T1A9045B0") this gives vector

    assign/v5=PROBEDATA("A","T1A9045B0") this gives "A" angle of wrist

    assign/v6=PROBEDATA("B","T1A9045B0") this gives "B" angle of wrist

    assign/v7=PROBEDATA("TDIAM","T1A9045B0") this gives THEO tip diam

    assign/v8=PROBEDATA("DIAM","T1A9045B0") this gives actual tip diam

    assign/v9=PROBEDATA("DATE","T1A9045B0") this gives date of last qual

    assign/v10=PROBEDATA("TIME","T1A9045B0") this give time of last qual

    assign/v11=PROBEDATA("STANDARDDEVIATION","T1A9045B0") this gives STDDEV


    Hope this helps you

    Steve
Children
No Data