585,987 active members*
4,210 visitors online*
Register for free
Login
Page 3 of 3 123
Results 41 to 51 of 51
  1. #41
    Join Date
    Jun 2015
    Posts
    4154

    Re: default precision

    so far was local behaviour : positioning another question : is a cnc going how it should ?

    this means how close is a cnc movement to a real(=theoretical) trajectory ?

    some available movements and functions :
    ...1) segments ( G01 ), arches ( G02 / 03 ) > most used
    ...2) interpolation ( G101 / 102 / 103 ) > less used, but still
    ...3) regression ( nurbs )

    i will begin with 2) interpolation: milling on a spindle frontal with CX is not so precise as milling :
    ... on a spindle frontal with real Y axis, or
    ... on a mill

    thus, axis interpolation ( CX ) :
    ... delivers good results if shape is near spindle center ( X close to 0 )
    ... losses precision when X increases
    ... delivers real trajectory when X does not move during cutting, but this is a particular case, when an arch has it's center on spindle axis

    1a) segments and arches - let's check out the segments in attached image is a grid with squares equal with cnc's displayed accuracy : 0.001

    let's consider that machine should move among a segment between those 2 yellow points; those yellow circles are sugesting the "positioning error", because machine is never on a middle of a square, as shown in previous posts; however, let's consider "positioning error=0"

    question : because machine displayed accuracy is 0.001, will the machine move among the blue squares ( 0.001 x 0.001 ), or among the yellow line ? well, yellow line is theoretical, will never be reached, so, will the machine move with 0.001 acuracy, or better ?

    G01 triggers an internal function, that will comand X & Y motors to move syncro, with a sincronization factor = depending on neccesary X and Y axis travel ( syncro = dy / dx or something like that )

    a movement is generated like this : acceleration - straight palier ( constant speed ) - deceleration
    actually, like this : acceleration - straight palier ( constant speed ) - deceleration - moving slow to ipw - stop

    motors will accelerate and break differently, with light differences, but there will be a duration when bought motors will be on the straight palier, with their speed syncronized : in this moment, motors are running continuously, and this generates a path pretty close to a real/ theoretical line ; this movement is slowed down by the "following error", but still, results are more better than the grid

    1b) segments and arches - let's check out the arches - same thing happens with arches, only that syncronziation changes , because dy/dx changes ; motors are internally comanded to move in this manner, with best available electronics accuracy; if an arch is coded not by G02 / 03, but with a row of G01, than the result is not the same, because machine will accelerate & break at each segment ; arches accuracy is not as good as segments, but is still ok

    3) regression ( nurbs ) :
    ... machine will try to maintain a constant speed as long as possible, without breaking and accelerating at each segment
    ... machine will try to keep up the syncronization as long as possible, and reduce differences between syncronizations (actual and next), modifing the syncro when needed, thus getting away a bit from the trajectory, within a given tolerance
    ... is the equivalent of G01 or G02, but for a complex shape; thus, is reading the trajectory, and after it walks on it as best as possible

    Attached Thumbnails Attached Thumbnails 02.PNG  
    Ladyhawke - My Delirium, https://www.youtube.com/watch?v=X_bFO1SNRZg

  2. #42
    Join Date
    Jun 2015
    Posts
    4154

    Re: default precision

    momentum among a path

    once a movement begins with a given feed, machine will try to keep it :
    ... among positioning / leaving is all ok
    ... when cutting, will require more power, so to avoid losing speed
    ... if too much power is required, than "torque limiter" drops in

    obvious, more power means a lower accuracy, yet enough for roughing

    best accuracy is achieved when machine is moving gentle
    Ladyhawke - My Delirium, https://www.youtube.com/watch?v=X_bFO1SNRZg

  3. #43
    Join Date
    Jun 2015
    Posts
    4154

    Re: default precision

    so, about this precision, i think caution is required when exporting complex shapes for milling, with small segments, thus the machine can not reach and maintain the desired feed

    if i knew all this, i would not have posted this thread
    Ladyhawke - My Delirium, https://www.youtube.com/watch?v=X_bFO1SNRZg

  4. #44
    Join Date
    Jun 2015
    Posts
    4154

    Re: default precision

    Quote Originally Posted by RCaffin View Post
    It's all great fun.
    Cheers
    Roger
    Hy RCaffin, please, i am a bit in doubts about senzors used to locate parts, and i remembered your posts in this thread

    attached images are from a nikken catalog

    those senzors start to flash , bip when they are in contact ... and i suppose that with extra senzors they can be programmed to work like a renishaw

    about the ones that need conductive materials :
    ... for example on a lathe : does the electric circuit goes turret-senzor-part-chuck-chasis-turret, thus is it a closed circuit or opened ?
    ... for a mill : does the electric circuit goes spindle-senzor-part-vice-table-chasis-spindle, thus is it a closed circuit or opened ?

    and how are working those senzors for non-conductive parts ?

    ... once i was ready to send a senzor back, because i thought it was not working, but it proved to work on the lathe being in it, while in my hand it did not work kindly !
    Ladyhawke - My Delirium, https://www.youtube.com/watch?v=X_bFO1SNRZg

  5. #45
    Join Date
    Jun 2010
    Posts
    4256

    Re: default precision

    Hi Kitten

    The Nikken UMT sensors are nothing more than a very fancy electrical switch. The tip is floating while the body is connected to the frame of the machine. Touch something metallic which is electrically connected to the machine and you complete the circuit. Beep! This won't work on plastics.

    The UMS is different. I am guessing, but with a lot of physics and electronics background. The guts of the sensor is probably the 3-point kinematic type which people have made with bolt heads etc. When a 3-point kinematic unit is 'triggered' the circuit is opened. How they sense this is the cute bit. I will call it '3-point' although there are actually 6 points of contact is such a unit.

    The 3-point switch is part of a tuned resonant circuit which rings at a certain frequency. The adjacent sensor, which is not physically connected, contains an oscillator which is tuned to the same frequency. Since the remote head is positioned near the probe, the oscillator is coupled into the resonant loop in the probe. The trick here is that the oscillator can sense the presence of the resonant loop, and it can also sense when that resonant loop ceases to resonate. When the switch is opened, the resonant loop in the probe is no longer. So this sort of probe will work with plastics.

    If you want the tech details, look up metal detectors (the sort they use on beaches) and 'grid dip meters'. Same thing.

    I have made a number of each sort, including some very useful and very robust Z-probes which are good for pure height detection. I can sense travel of 0.8 microns, which is the basic resolution of my Z axis. The Z-probes can also be used as ZTOs.

    Cheers
    Roger

  6. #46
    Join Date
    Jun 2015
    Posts
    4154

    Re: default precision

    The tip is floating while the body is connected to the frame of the machine. Touch something metallic which is electrically connected to the machine and you complete the circuit. Beep! This won't work on plastics
    hy Roger ... this means that i can not detect a metalic part inside a plastic vice ?

    thank you for all the infos, i only needed a light idea ...i can not comprehend such stuff

    you are the god of probes all the best !
    Ladyhawke - My Delirium, https://www.youtube.com/watch?v=X_bFO1SNRZg

  7. #47
    Join Date
    Jun 2010
    Posts
    4256

    Re: default precision

    this means that i can not detect a metalic part inside a plastic vice ?
    That is correct, unless ...
    If you can hook up a wire from some metal part of the machine to the metal object in the plastic vice, then it should still work. It does not need to be heavy wire: very light wire would do.

    Cheers
    Roger

  8. #48
    Join Date
    Jun 2015
    Posts
    4154

    Re: default precision

    If you can hook up a wire from some metal part of the machine to the metal object in the plastic vice, then it should still work. It does not need to be heavy wire: very light wire would do
    hy Roger ... actually i thought of something else

    is not like i will craft probes, but wait a bit to do a drawing so that circuit is closed even on plastic

    ... this is as far as i can go with electrics ; kindly !
    Ladyhawke - My Delirium, https://www.youtube.com/watch?v=X_bFO1SNRZg

  9. #49
    Join Date
    Jun 2010
    Posts
    4256

    Re: default precision

    Hi Kitten

    Yes, put the 'switch' inside the probe and the material you are probing is not a problem.
    Infinite are the ways of doing this ...

    Cheers
    Roger

  10. #50
    Join Date
    Jun 2015
    Posts
    4154

    Re: default precision

    hello, about the main idea of this thread : it may be possible that the machine checks diff to be in droop not only at corners, but always; obviously, diff is always checked, but i dont know what is the comparison factor

    some heavy cutting tests + diff charts proved that Okumas are reliable, diff being lower than few microns

    to be sure of such things, special equipment is needed

    diff deviations are higher when cutting specs increase, and using the cncs at this state will make it behave more roughly when it is used at lower specs

    in other words, accuracy of the machine can be and it is tested, but tools used are not easy available ...

    having them running in background may deliver numbers, giving you trust of what a cnc is capable of kindly !
    Ladyhawke - My Delirium, https://www.youtube.com/watch?v=X_bFO1SNRZg

  11. #51
    Join Date
    Jun 2015
    Posts
    4154

    Re: default precision

    Quote Originally Posted by OkumaWiz View Post
    I have had success in decreasing cycle time by "changing accuracy" of the machine. for example if you are on a horizontal mill and you rapid from left side to right side, you will see significant delays at the end of every rapid move "back, over, in" while the machine confirms that the DIFF is small enough to proceed with the next block.
    hy mr wizard, if i may, would you use this trick with same confidence, for a " slow rpm face milling ", and also for a " high speed tapping " operation ? i am looking for a method to quantify the 'confidence' / kindly

    Code:
    OFAST
      NOEX LV01 = 0
      GOTO NHERE
    OSLOW
      NOEX LV01 = 0.0001
      NHERE NOEX VINPX=LV01 VINPY=LV01 VINPZ=LV01 ( VINPA=LV01 )
    RTS
    Ladyhawke - My Delirium, https://www.youtube.com/watch?v=X_bFO1SNRZg

Page 3 of 3 123

Similar Threads

  1. REG Precision Metal Arts - located in Massachusetts offering precision machining.
    By REGPrecision in forum Manufacture Company Listing
    Replies: 0
    Last Post: 06-03-2015, 04:46 AM
  2. Replies: 0
    Last Post: 03-10-2015, 10:20 AM
  3. Specialize in producing precision plastic mold, precision plastic parts
    By metalstampingmold in forum FeatureCAM CAD/CAM
    Replies: 0
    Last Post: 12-25-2014, 09:19 AM
  4. TL-1 RPM default
    By missinglink in forum Haas Lathes
    Replies: 4
    Last Post: 06-14-2013, 02:36 PM
  5. Replies: 6
    Last Post: 03-06-2004, 05:11 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •