Program a 3 axis position movement

I have a motion controller from Nationa Aperture Inc., Model MC-CQ-4X, which controls the position movement of X-Y-Z axis. First I'm not sure if I need a driver from this manufacture, if I do , I have not located one from the list. I have very little experience with labview and need a startup process in the block diagram. There are 3 comm ports for each axis.  So, how do I setup the labview program to control movement of each axis. Please send an example setup program showing the block diagram setup.

Hi MR2SAILOR,
Thanks for the additional information.  It sounds like you'll need to treat this more like an instrument driver issue than a motion control issue.  I searched on our Instrument Driver Network (ni.com/idnet) and I didn't find anything from that manufacturer.  Have you tried contacting National Aperture to see if they have an instrument driver available?  I looked around a bit on their website and it seems like they intend for people to use their products with LabVIEW. 
To clarify, do you have NI-VISA installed?
Michael B.
Applications Engineer

Similar Messages

  • Imported image's position moves when updated in Indesign CS6. Why??

    After modifying an imported image from illustrator, the imported image's position moves within the frame of Indesign CS6 when the link is updated.

    You have not provided any relevant information, so nobody can know. you can simply have added content that expands the bounding box. Well, whatever, ask in the relevant forums and be much more specific.
    Mylenium

  • Y axis position

    Hi all,
    how can I change the Y axis position in a multiple Y axis graph?
    Thanks, Gilles

    Hi,
    if you want to show Y scale at the right side of your graph instead of its ordinary position at the left you must do the following things:
    Right click on the title of the scale and select "swap sides" option from pop-up menu.
    Good luck.
    Oleg Chutko.

  • I have an IMac intel  OS x 10.8.2, I would like to know what is the best program to use to make movies and burn them to a DVD???

    What is the best program to use that will be compatable with a IMac intel OS x 10.8.2, that will allow me to make movies, add music then burn it to a DVD.  The program I have now, will make the movie but will not burn it???

    You want iDVD.
    Purchase iLife 11  (includes iDVD) on disk.
    IDVD is a wonderful piece of software and well worth the low cost of $40.
    http://www.amazon.com/Apple-MC623Z-A-iLife-VERSION/dp/B003XKRZES/ref=sr_1_1?ie=U
    http://dealmac.com/lw/artclick.html?1,527850,1872219
    Yes, there are programs that will put a movie on a DVD.   I have tried most of the other substitutes including Toast, Burn, DVD Creator, Wondershare, and others.  None of them come anywhere near the ease-of-use and power of iDVD.

  • Setting time critical digital output based on axis position (PCI-7358)

    HI,
    I need to set a time critical digital output based on encoder position (this will switch fast acting valves). I was planning to try the general purpose DIO but I can't find any examples, I have been through the manuals, searched the site etc. Where can I find help with this, all the examples only seem to deal with digital input triggering or RTSI? I'm thinking of an onboard program that just monitors encoder positions and sets digital outputs.
    Some time back I seem to remember reading that general purpose DIO should not be used for time critical operations, is that correct? And if so what are the other options - RTSI going to another DIO board? The DIO really needs to be deterministic, is RTSI the only option?
    Any advice appreciated / Martin
    Certified LabVIEW Architect

    Even with an onboard program you will always get a delay of several milliseconds between your axis has crossed the position and until the digital outputs are set. If this is ok for you then you could choose this approach.
    For the case that you only want to toggle one digital line the Breakpoint feature should be the best solution as it toggles the breakpoint output almost immediately when the breakpoint positions are reached.
    If you need to change a whole pattern instead of only a single line then the approach you mentioned would be the best solution (RTSI and high-speed DIO like the 653x boards). Combine this approach with the breakpoint feature by routing the breakpoint output to RTSI and using this as a update clock signal for the DIO board.
    Best regards,
    Jochen Klier
    National Instruments Germany

  • Chart Axis Position

    Hi there,
    I'm wondering how I can fix the vertical axis of a chart into
    position. I have 4 charts that are vertically aligned. When the
    chart labels of one get larger than than the rest of the labels the
    chart resizes to make more room for the label. When this happens it
    throws the charts out of alignment. This is a big problem for me as
    the 4 charts share the same X-axis and I only have labels turned on
    for the bottom chart. The chart type is a linechart and the axis
    are both of linearAxis type. I have tried the verticalAxisRatio
    property of the lineChart but this has a rendering problem and
    tends to chop of part of the labels. Im wondering if I can
    explicitly fix the position of the vertical axis so they won't
    move.
    Thanks in advance.
    Tim

    Wow, I tried so many things (even tried the Scope and Sweep chart mode) but some settings must have been different then because the scope chart mode does it this time! Thanks a lot.
    Ben64

  • Newbie Help: Single Axis Repeated Movement

    Hi there - I have a (hopefully) simple question about creating a VI with NI Motion to help me control a stepper motor.
    I have an NI 7334 Motion Controller box attached to a simple stepper motor. I've already used MAX to make sure that it works correctly, and I've already made a simple one-axis motion vi based off of the examples provided within the FlexMotion pack. My current predicament is in trying to code a VI that performs a cyclic movement (forward to max length, stop, reverse to minimum length). I can't seem to find a way to just make the motor go forward without any position input (essentially, I want three "operating states": on and extending, off, on and reversing). Right now, the only way I can do that is to have the stepper move to a position well outside its highest step.
    I'm not a LabView expert, so any and all help on this will be appericated!
    Thanks!

    Imran,
    you should use the "Set Operation Mode.flx" vi to configure your axis to operate in Velocity Mode. In this mode you don't need to specify a target position and the axis will keep turning until you send the stop command.
    I hope this helps,
    Jochen Klier
    National Instruments

  • Charting: vertical axis position

    Hi!
    I need to manually position the vertical axis along the chart by setting the verticalAxisRenderer.x value.
    If I do that, it seem like chart compoenent automatically correncts the axis to be on the left side.
    Any ideas?

    Hi,
    Thanks for your suggestion but I need to position the axis anywhere like axis.x=500;
    I was playing arround for a few hours and so far I have came to the following solution which looks promising so far:
    I created a custom axis renderer which extends AxisRenderer. Then I tricked the chart component that it cannot set the x value of the axisRenderer.
    So.. if anyone come the the same problem in the future, this might be a solution.
    package si.catalina.qos.views.reports.charts.cartesianChart
        import mx.charts.AxisRenderer;
        public class CustomPositionAxisRenderer extends AxisRenderer
            private var _xValue:Number=0;
            public function CustomPositionAxisRenderer()
                super();
            override public function set x(value:Number):void
                _xValue=value;
            override public function get x():Number
                return _xValue;
            public function set xValue(value:Number):void
                _xValue=value;       
            override public function move(x:Number, y:Number):void
                super.move(_xValue,y);           

  • Precise positioning/move of gradient annotator?

    Hello, when one has selected an object and assigned a gradient fill, and after pressing G to select the gradient tool, the X and Y coordinates correspond the location of the shape, not the location of the gradient.  Meaning, even if I know the coordinates where I want to place the start point of the gradient annotator, I can't manually enter them.  The Info panel will show the location of the mouse pointer, but not while I hold down the mouse button while dragging the annotator, so that doesn't really help much.  It appears that you just can't select a gradient in the same way you can select an object.  If I could, I could simply use the align commands to take care of this for me, or move things relative to some point.
    Oh also it seems that snapping to points or grids does not work when moving the annotator.  Nudging also does not work.  Maybe I am going about this in the wrong way?  because surely people want to have high precision with positioning their annotators? 
    Something else that might be helpful is if I could move the annotator on-the-fly while also expanding it or rotating it -- with the spacebar similar to how it's done with segments and shapes.
    Thanks in advance for advice!

    Wow. I've been wanting to know this like forever too but three years and still no response.
    Anyone?

  • Best Program to Split Up Large .mov Files?

    Hi Applers,
    Let's say I have a large .mov file (1920x1080, MPEG-2, 1h46m long). Now I want to divide it up into 15-20 minute chunks.
    If I wanted to avoid using FCP or Compressor, what is the best program to do split it up with the least amount of trouble? Third-party ones are fine, but I prefer the free variety.
    Thanks in advance,
    Steve

    Hi,
    [MPEGstreamclip|http://www.squared5.com> is exactly what you are looking for:
    a FREE excellent application that allows you to set in and out to export sections of your movie to whatever codec you like.
    Luca

  • Dynamically set y axis (position) with javascript

    Hello
    I wonder if it is possible with javascript to set a y position of flowed subform in non interactive adobe form?
    For example: For a certain subform  which is inclued in (flowed) main I want to be shown at certain vertical (y) position but only in the last page at bottom of main.
    Last page I can find with
    if(xfa.layout.page(this) == xfa.layout.pageCount())
    but when changing
    this.y = "100 mm"
    it doesn't changes subform position.
    I also tried with this.y = "100in", but result is the same.
    Does anybody now a solution?

    It's not a field, it's a complete subform with a table and some texts fields, which I want to show only in last page.
    I tried changing subform to a positioned already before and changing it's y axis in javascript (tried in all events) doesn't work.
    Could it be that syntax posted in first post isn't correct?
    In that case (positioned subform) I have blank space on all pages but last one. For example, if a complete layout of a page is 100%, main 70% and subform 30%, I get 30% of blank space on all pages before last one, which I would like to avoid, so that main would be 100% in every page but last one and in the last one main should be only 70% and subform 30%.

  • What program to use to watch movies transferred from S4 to my laptop

    Hi. I have copied/transferred videos taken on my S4 to my HP Pavilion laptop. The OS is Vista Home Premium. I play them through iTunes since they are .mp4 files. However, the video is jerky and not in sync with the audio. Is there anything I can do so the video and audio play together, smoothly, like the files play on the S4? Or, is there a better program to use to play .mp4 files?
    Thanks for your help.

    I use VLC all the time for any video formats that are not native to Apple OSX.  Which is usually MPG2 and WMV.  Pretty much every other video format plays within quicktime with no problem.  (although MPG2 works sometimes).
    VLC is a good player to play pretty much ANY video type.  It even plays those pesky proprietary formats that many Hard Drive Camcorders compress the video to.  So you should be good to go.
    Now... a note about the program.  It does have some sort of video render function that will allow you to recompress from one format to another.  such as .MOV to MPG or something to that effect.
    My advice... Don't even try.  It's for advanced users.  I'm an advanced video editor and even after 4 years, I still can't figure out that part of VLC.  I just stick to other programs for that.
    But just to watch difficult video formats... this is a really good program to use because it will play EVERYTHING!
    Good luck.

  • I can get my ipad programes but they will not move and are frozen.

    My Ipad goes on ok, and I can change programes but they freeze on one page and will not move, have not dropped or damaged it,
    it is only 6 months old Any help please

    I have managed to find a solutions.from friend.
    Turn of main power on ipad for 10mins then turn on again.
    WORKED.

  • BUG - layer position moves when switching frames in timeline

    When creating a new layer and positioning it in the active frame, the position is sometimes wrong when returning to that frame.
    1. create multiple frames in the timeline
    2. create a layer and position it somewhere in the image
    3. view another frame
    4. return to the original frame and the position has changed
    Positioning the layer again seems to work, it doesn't move by itself when moving between frames, but remains in position.

    Same as your otehr post: Screenshots!
    Mylenium

  • Any other programs that play downloaded HD movies?

    Hello,
    I was curious if there are any other programs that play HD movies downloaded on itunes? I know I can use Quicktime player for SD movies, I guess it isn't designed for HD. I know you can watch the movies in itunes, but was wondering if there are any other programs that I could use as a stand alone?
    thanks for your time.

    Hi Farmer_Adam53077,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iTunes: Purchasing and viewing HD videos
    http://support.apple.com/kb/ht3209
    iTunes for Windows: Unable to view or play HD video content that requires HDCP
    http://support.apple.com/kb/ts3354
    Cheers,
    - Judy

Maybe you are looking for

  • Client Installing But Not All Components Are Available Post Install

    Hi, Now I am not positive how the posy client install process works but it seems the CM client normally installs and has only base components, then downloads a policy and installs the other components based on the policy? I have 2 DP's that is PXE en

  • Update from Mac 10.5.8 to Lion ???

    Hi, im new at the community. My Name is Fabian from Germany. My dad gave me his older Mac Mini. The Mac Mini runs with Mac OS 10.5.8. I want to update the mac mini to Mountion Lion or Mavericks. But idont know how to. I am realy thankful for any help

  • Multiple instances of AppleSpell running

    Fast user switching enabled. I stay logged in. My daughter logs in for a while and uses nothing but Safari. She logs out completely. When I get back on, there are five instances of AppleSpell running under her name and one running under mine. What's

  • Can't open my ebook (VE error 59)!

    When I'm trying to open my ebook (bought from amazon) I just can't add it to the Library. Only this message shows up: Adobe DRM Error System: 8 State: 4 Code: 59 Class: 1 Message: VE error 59

  • Rman Concept Regarding

    Hi Gurus, Could anyone please refer me any RMAN doc, where i can get information about how RMAN works behind the scene. Regards, Shaan