585,933 active members*
3,878 visitors online*
Register for free
Login

Thread: Z axis falls

Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2014
    Posts
    1

    Z axis falls

    I just got my Kflop/Kstep running in open loop using Kmotioncnc. I'm using C:\KMotion431\C Programs\KStep\InitKStep3Axis.c for my c program. When I let the machine sit idle the spindle will move down about .100 but it doesnt show the movement on the green DRO. I installed encoders and they show that the motor is turning, so i dont think it is backlash or mechanical issue causing the move. If I turn off the stepper motor power supply I dont experience the problem. I wonder if it has to do with the amplifier being turned off when it sits idle?

  2. #2
    Join Date
    May 2006
    Posts
    4045

    Re: Z axis falls

    Hi 09FLHX,

    The example InitKStep3Axis.c has the code shown below to loop watching for no motion for 10 seconds to disable KSTEP. You can observe on the KMotion Digital IO Screen IO 45 to see when KSTEP is enabled.

    That might be what is causing Z to fall. Try removing this code to see if it helps.

    Regards
    TK


    Code:
    	for (;;) // loop forever
    	{
    		WaitNextTimeSlice();
    		
    		// Service Amplifier disable after no activity for a while
    		if (ch0->Dest != LastX || ch1->Dest != LastY || ch2->Dest != LastZ)
    		{
    			// we moved - enable KStep Amplifers
    			SetBit(45);
    			T0 = Time_sec();  // record the time and position of last motion
    			LastX=ch0->Dest;
    			LastY=ch1->Dest;
    			LastZ=ch2->Dest; 
    		}
    		else
    		{
    			if (Time_sec() > T0 + 10.0) ClearBit(45);
    		}
    	}
    TK
    http://dynomotion.com

Similar Threads

  1. Z axis faults and falls to table
    By imaginemw in forum Fadal
    Replies: 11
    Last Post: 02-04-2012, 02:08 AM
  2. Taig headstock falls
    By littleCNCjohn in forum Benchtop Machines
    Replies: 0
    Last Post: 08-30-2011, 01:43 PM
  3. Z axis falls down when power turned off.
    By gorillam in forum Uncategorised MetalWorking Machines
    Replies: 12
    Last Post: 03-06-2010, 11:02 PM
  4. Looking for a CNC Machinist - Niagara Falls, NY.
    By Gunner in forum Employment Opportunity
    Replies: 1
    Last Post: 02-29-2008, 07:40 PM
  5. Tooling Falls off Racks?
    By nonnsgranite in forum Material Machining Solutions
    Replies: 3
    Last Post: 08-02-2006, 08:09 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
  •