Can some body help me to develop labview code for generating pulse to drive ac servo motor

can some body help me to develop labview code for generating pulse to drive ac servo motor... i am using NI 9401 card ....tnx

Driving an AC servo motor would (I missed AC on the previous msg) requires some complex hardware. This is generally done by drivers specifically designed for this purpose. I doubt you will be able to accomplish this with the hardware you currently have and it might be cheaper to just buy a driver for it and control the speed through the driver.

Similar Messages

  • I HAVE A MAC BOOK AND I CAN GET TO WORK THE CD 1 IT DOESN'T READ AND ONLY APPEAR A ICON LIKE A FOLDER WIR ONE QUESTION MARK, CAN SOME BODY HELP?

    I HAVE A MAC LAP TOP MAC BOOK AND  WANT JUST TO REINSTALL THE SOFTWARE I DONT CARE ABOUT MY FILES I HAVE BACK UP BUT WHEN I INSERT THE DISK VERSION 10.5 WHICH COMES WITH MY COMPUTER DOESN'T WANT TO READ I HEARD THA IS TRYING BUT NOTHING,
    CAN SOME BODY HELP ME...

    There is a possibility that the disk drive could be broken, if it just spits it back out that usually means its toast. If your MacBook has a Core 2 Duo processor, you can install Lion (via a thumb drive not disks). Here is a link to the Lion thumb drive.You can also still order them for $19.99 by calling 1-800-MY-APPLE. Also you can borrow an external disk drive and try the Leopard disks that way as well.
    Good Luck!

  • Can some body help me? yesterday I format my iphone and it have been more than 24 hours a litlle circle moving

    can some body help me? yesterday I format my iphone and it have been more than 24 hours a litlle circle moving

    Reset, hold both the Home and Power buttons for about 10 seconds until the iPhone begins to start. If still problem, and your decide to Restore your iPhone, try DFU Mode Restore. Open iTunes on computer. Connect iPhone to computer with USB cable. Hold both Home and Power button, after exactly 10 seconds release the Power Button, keep holding the Home button until iTunes recognizes iPhone in Recovery Mode, usually about 20 seconds time.

  • Hi, folks can some body help me¡  How  I can  use  de second  code  to  the  Itunes card  to  use  the  Itunes card.... My  number is vanished, how  i can submit  my  Itunes card?

    Hi, folks can some body help me¡  How  I can  use  de second  code  to  the  Itunes card  to  use  the  Itunes card.... My  number is vanished, how  i can submit  my  Itunes card?

    iTunes Store: Invalid, inactive, or illegible codes
    http://support.apple.com/kb/TS1292

  • Can some body help me reg. BAPI_USER_LOCK

    Hi,
    I am using  this FM BAPI_USER_LOCK   to lock firecall id's .But it is not working in 4.0 B version.
    Can some body help me any alterante FM for the FM.
    Thanks

    Hi,
    Below are the notes for this Function module.
    You can unlock user USERNAME with the method Unlock.
    The method is fully integrated in the central user administration system.
    If the method is called in a sytem that belongs to a group for central user maintenance, the method behaves accordingly.
    If the method is called in the central system of this type of system group, this triggers user distribution.
    The user is also locked in the dependent systems.
    The prerequisite for this is that the field maintenance attributes (Transaction SCUM) are set.
    You need to do the prerequistie for running this BAPI.
    With Regards,
    Sumodh.P

  • Hello can some body help me on my icloud app.i cannot send an email with iCloud

    Hello
    can some body help me on my icloud app.i cannot send an email with iCloud
    excuse me my english

    Hello
    thanks for your prompt response
    yes i defined an account for icloud
    Regards
    Faisal Djama

  • I renew my itunes match and all the old information was lost can some body help me ?

    i renew my i tunes match and all the old information was lost can some body help me ?
    a few month ago i had all my songs on the cloud with i tunes match
    than apple has change their policy and they wanted 24.99 for a year
    after two month i renew my i tunes match but all my information was lost and now i cant play and sync all the music a had
    any body had this problem ?  any body solved it ?

    Greetings yoavfromseattle,
    Welcome to the Apple Support Communities!
    I understand that after renewing your iTunes Match subscription, you are not able to access your music as you would expect. To troubleshoot this situation, I would recommend reading over and working through the information in the attached article. 
    How to troubleshoot iTunes Match - Apple Support
    Cheers,
    Joe

  • Pages is deactivating iCloud alone, can some body help me

    pages is deactivating iCloud alone, can some body help me

    I am having a similar problem. When I try to open pages, it opens and then quits immediately.  It is only when with iCloud. So what's going on with the Pages app? Needs to be corrected SOON!

  • Can any body help me to prepare f.s for!

    can any body help me to prepare f.s for!
    all material movements and asociated accoutning document?
    all open purchase orders for a given plant and delivery period?

    Hi
    what do you mean by f.s, is it functional specification?
    Material document associated accounting document you can find MSEG and BSEG tables
    Open Purchase Orders for a given plant and delivery period
    Purchase orders infirmation is available in EKKO (Header) and EKPO (Item)
    Take the information from EKKO by company code, pass it on to EKPO by plant (WERKS)which is not equal to (EKPO -ELIKZ) for open PO and for delivery date (EKET-EINDT).
    please check and let me know if you need anything.
    regards
    Srinivas

  • Error message while compling the following code.can some body help me?

    Hi all,
    I wrote a simple program which connects to oracle 9i which uses thin driver,
    the following code is
    import java.io.*;
    import java.sql.*;
    import oracle.jdbc.*;
    import oracle.sql.*;
    import javax.sql.*;
    class JdbcVersion
    public static void main (String args[])
    throws IOException, SQLException
         //Register Oracle's Driver
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
         //Build the connection string.
         String connString ="jdbc:oracle:thin:@(description=(address_list=" +
    "(address=(protocol=tcp)(port=1521)(host=home-f831b673e0))" +
    "(address=(protocol=tcp)(port=1521)(host=home-f831b673e0)))" +
    "(connect_data=(sid=PLSExtProc))" +
    "(source_route=yes))";
    Connection conn = DriverManager.getConnection(connString, "<username>", "<password>");
    // Create Oracle DatabaseMetaData object
    DatabaseMetaData meta = conn.getMetaData();
    // gets driver info:
    System.out.println("JDBC driver version is " + meta.getDriverVersion());
    and after compling this code i am getting an error message that
    C:\>java JdbcVersion
    Exception in thread "main" java.sql.SQLException: Io exception: Software caused
    connection abort: recv failed
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at JdbcVersion.main(JdbcVersion.java:24)..
    can any one help me in this regards??

    hi nthali,
    now i wote a simple code as you suggested....and again encontering with new problem
    import oracle.jdbc.*;
    import java.sql.*;
    public class Test {
    public Test() {
    public static void main(String[] args) {
    Test test1 = new Test();
    test1.test();
    public void test(){
    try{
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection conn = DriverManager.getConnection("jdbc:Oracle:thin:@localhost:PNPKEY:'scott':'tiger'");
    Statement stmt = conn.createStatement();
    ResultSet rs = stmt.executeQuery("select * from player");
    while(rs.next()){
    System.out.println(rs.getString("id"));
    // System.out.println(rs.getString("name"));
    catch(Exception e){
    e.printStackTrace();
    this is java code...
    and while running it is giving me an error like this....
    C:\work>java Test
    java.sql.SQLException: invalid arguments in call
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.check_error(DBError.java)
    at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at Test.test(Test.java:14)
    at Test.main(Test.java:9)...
    can you help me??? in this problem...please??

  • Authorized distributors In Russia doesn't want to sale products to new shops. Can some body help?

    Hello Apple , I could not find a email to write to you about this so I will write it here.
    So what is the problem - we have wrote and call to all the distributors in Russia and they will not work with us.
    The answers from distirbutors.
    Marvel - said that we need to buy 10 products at time ( we said okay , sent us the price list ) -next day we had none price on the email. We have called them and asked where the price list is? the aswer was we will not sent it and ended the call.
    Same history with diHouse
    So how shold we work to get the authorized reseller, when we can`t buy at the distributors?
    And we are a new internet shop and a shop-office in Saint Petersburg in Russia. We have some other projects for reklame our shop, we have the money to buy products soo .
    We spend money to register the shop and many other thinks.. And got this.
    So what should we do import the products from Finland ?
    Please help and sorry for bad english.

    You are not talking to Apple here, this is a user to user technical support forum. Try going to http://www.apple.com/feedback and just pick a product. Do not expect a reply, however.
    Best of luck.

  • My ipad has problem what sould i do can some body help me pls

    i rest my ipad 2 but is link to the person i buy from

    iCloud: Activation Lock - http://support.apple.com/kb/PH13695
    Activation Lock: Removing a device from a previous owner’s account - http://support.apple.com/kb/TS4515
    Try the above.  If you cannot contact the original owner then the iPad is useless to you and you need to see if you can get a refund/  Apple will/can do nothing to help you.

  • HT5654 I am not able to restore my phone. From the last 15 days atleast 10 times it has gone to recovery mode. Can some body help

    Iphone 5, 7.0.4 ios. Phone is keep on going into recovery mode and now it is not restoing through itunes as well. Showing error 9. please help

    Configure your security software
    Check your security software and settings, which can block ports and prevent connection to Apple servers during update and restore.
    Common errors: 2, 4, 6, 9, 1000, 1611, 9006, 9807, 9844. Sometimes as a result of this issue, a device might stop responding during the restore process.

  • Please help to write a java code for generate Random numbers

    I need a program for generate Random integer numbers by using roulette wheel theory. I search several ares, but I'm unable to find out at lease a Pseudo code for implement this. If you know or have a code for this, Please send me a mail to [email protected] or post here.

    Gagana wrote:
    I need a program for generate Random integer numbers Have a look at the java.util.Random class:
    [http://java.sun.com/j2se/1.5.0/docs/api/java/util/Random.html]
    Or Google:
    [http://www.google.com/search?q=random+java]
    by using roulette wheel theory. What is that?
    ... Please send me a mail to [email protected]
    No, that defeats the purpose of a public forum. And no one is going to e-mail you (other than someone trying to sell V1AGRA).

  • Capturing  through Sony HDV using firewire800 to 400 adaptor is not recognizing can any body help me solve this

    I am trying to capture using firewire 800 to 400 adaptor through a Sony HDV VTR. The VTR is not recognizing can some body help me solve this problem.
    I am using FCP7 and IMAC with 10.6.8 version os
    I dont have a 6 pin or 400 firewire port in the system

    Let's start with basics.
    Does your computer recognize that there is a VTR attached?
    • Open up system profiler>Hardware>FireWire.  Does your machine show up?
    If no, you need to figure out if the problem lies with the VTR, the cable, the adapter or your computer.
    My guess is with the adapter. A number of people have expressed frustration getting fw400 device to work through fw800 ports.
    If that's your problem, see if you can find an older Mac w/ fw400 ports or a dedicated fw800 to 400 cable.
    good luck,
    x
    ps - In "locking the barn after the paddle has been lost upstream" mode, this is why non-expandable computers like the iMac are so problematic. A MacBookPro with the expresscard 34 slot or a MacPro with 3 slots can work around these kind of issues. A closed box like the iMac is a dead end. Sorry.

Maybe you are looking for

  • Iphone calendar issues in list view

    Hi can anyone help. I have two iphones both 3G on a 8gb one a 16gb. Both are synced via mobileme to ICAL which contains 4 different calendars. ONe the 16gb everything works fine. On the 8gb the list view has become corrupted so that it splits events

  • Calendar can the day's number be displayed?

    A day is displayed with the usual information - the day of the week and the date, and month.   Is it possible to have the number of the day as it relates to the entire year displayed?  For example - October 30, 2013 is day 303/365.  Is this feature a

  • A critical error has occured: java.lang.NullPointerException in bank detail

    Hi all,         When i maintain data for infotype 0009 in R3, bank details link works fine. But when there is no data maintained in R3 for infotype 9..... instead of option for creating new bank details...im getting the following error... java.lang.N

  • What is a "replacement" vs "repair?"

    Hello everyone, I had a problem with my iPad which I called Apple for and the Senior Advisor there said he would replace my iPad for FREE. I took it into the store and spent over a few hours there waiting and the store reps said they could not do any

  • IPlanet Web Server 4.1 sp9 search engine

    Hello, In the search engine, when I try to create a new collection, iPlanet tells me the following message: Unexpected Failure:Error initialising loader, Please check the loader error log. Any idea where is the trouble? Thank you J. Carlos