How can i synchronize analog output and analog input timings to generate and measure voltage at the same time.

how can i synchronize analog output and analog input timings to generate and measure voltage at the same time.

Read this Tutorial
http://zone.ni.com/devzone/cda/tut/p/id/3615#toc3
And also refer to this link where You have repeated this question.
PS: Please stick to one thread. That way, its easier to keep track of your query and answers

Similar Messages

  • How can I do to acquire and save date in the same time and in the same file when I run continual my VI without interrupti​on.

    I've attached a VI that I am using to acquire amplitude from Spectrum analyzerse. I tried to connect amplitude ouput to the VI Write Characters To File.vi and Write to Spreadsheet File.vi. Unfortunately when I run continual this VI without interruption, labview ask me many time to enter a new file name to save a new value.
    So, How can I do to aquire and save date in the same time and in the same file when I run continual my VI for example during 10 min.
    Thank you in advance.
    Regards,
    Attachments:
    HP8563E_Query_Amplitude.vi ‏37 KB

    Hi,
    Your VI does work perfectly. Unfortunately this not what I want to do. I've made error in my last comment. I am so sorry for this.
    So I explain to you again what I want to do exactly. I want to acquire amplitude along road by my vehicle. I want to use wheel signal coming from vehicle to measure distance along road. Then I acquire 1 amplitude each 60 inches from spectrum analyzer.
    I acquire from PC parallel port a coded wheel signal coming from vehicle (each period of the signal corresponds to 12 Inches). Figure attached shows the numeric signal coming from vehicle, and the corresponding values “120” and “88” that I can read from In Port vi.
    So I want to acquire 1 time amplitude from spectrum analyser each 5
    period of the signal that I am acquiring from parallel port.
    So fist I have to find how can I count the number of period from reading the values “120” and “88” that I am acquiring from In Port (I don’t know the way to count a number of period from reading values “120” and “88”).
    Here is a new algorithm.
    1) i=0 (counter: number of period)
    2) I read value from In Port
    3) If I acquire a period
    i= i+1 (another period)
    4) If i is multiple of 5 (If I read 5 period)
    acquire 1 time amplitude and write to the same
    file this amplitude and the corresponding distance
    Distance = 12*i). Remember each period of signal
    Corresponds to 12 Inches).i has to take these
    values: 5,10,15,20,25,35,40,45,50,55,60............
    5) Back to 2 if not stop.
    Thank you very much for helping me.
    Regards,
    Attachments:
    Acquire_Amplitude_00.vi ‏59 KB
    Figure_Algorithm.doc ‏26 KB

  • How can i use both Windows and Mac os at the same time on my iMac

    How can i use both Windows and Mac os at the same time on my iMac

    You can use Parallels desktop or VM Fusion to run both operating systems at the same time. Both programs work well, but I personally perfer VM Fusion.

  • How can I connect to Oracle and SQL server at the same time?

    I have been trying to find a way to connect to Oracle Database through the developer 2000 and SQL server at the same time. I need to return some data from Oracle Database and some from the Sql Server Database. And update both through SQL. I find there is such a thing as the Oracle Transparent Gateway for SQL server. I can't find it on any of my CD's or through OTN downloadable files. If anyone can point me where to get this. Or tell of another way this can be accomplished I would appreciate it. TIA.
    [email protected]

    I have been trying to find a way to connect to Oracle Database through the developer 2000 and SQL server at the same time. I need to return some data from Oracle Database and some from the Sql Server Database. And update both through SQL. I find there is such a thing as the Oracle Transparent Gateway for SQL server. I can't find it on any of my CD's or through OTN downloadable files. If anyone can point me where to get this. Or tell of another way this can be accomplished I would appreciate it. TIA.
    [email protected]
    As far as I know you have 3 options depending on your specifications. I don't think option #3 will work if you need to actually join a
    SQL Server table to an Oracle table.
    1. Oracle Transparent Gateway. I haven't used the Oracle Transparent Gateway but my understanding is that Oracle gateways are
    separate purchased products from Oracle. I've never seen any free/development versions of it anywhere. You'll need to contact
    your Oracle sales rep about it.
    2. Heterogeneous Connectivity. There's something called Heterogeneous Connectivity that could work for you - depends on what
    version of Oracle you're on and what OS. You basically set up an ODBC data source on the Oracle server and modify the listener.ora
    and tnsnames.ora files. You can then create a database link to SQL Server just like you would to any other Oracle database. You can
    check your Oracle documentation for how this works. There's also some very good documents on Metalink that tell you how to do this
    as well as a Heterogeneous Connectivity forum on this site.
    3. Use the exec_sql package available in Developer 2000. This allows you to open and execute cursors to remote databases within
    Developer. We have an account validation process that uses this - when a person enters an account number in a form while logged
    into Oracle it validates the account is valid in our main accounting DB2 database. We also pull HR information from DB2 into Oracle
    this way. If you're using Forms 6i exec_sql is a built-in command, in Forms 5.0 and 5.5 you have to add it as an attached library to
    the form. I think you also need the OCA options installed from the Developer software to have access to the library in Forms 5.0 and
    5.5. The library will be in the $ORACLE_HOME\oca20\plsqllib directory for these versions. The Developer documentation should have
    additional information.
    HTH

  • How can I record a microphone and software instrument at the same time in Garageband 10.0.1?  It seems I can record one or the other, but not both at the same time?

    I am trying to record a vocal mic and a keyboard (using a software instrument) at the same time using Garageband 10.0.1.  It seems that I can't record the mic input and the software instrument at the same time.  I can record the mic input by itself, and I can record the software instrument by itself (if I don't have a mic input track created), but I can't record them together.
    It seems like this should be an obvious thing to be able to do, but I can't figure out how to make it work.
    Can someone help?
    Thanks,
    Kurt

    Kurt1997 wrote:
    I am trying to record a vocal mic and a keyboard (using a software instrument) at the same time using Garageband 10.0.1.
    you need to "record enable" both tracks:
    http://www.bulletsandbones.com/GB/GBFAQ.html#multitrackrecordinggbv10
    This FAQ entry offers a Minute GarageBand video tutorial
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • How can I have a canvas and external controls at the same time?

    Typically all the space of an applet is used for 2D or 3D; that is, the applet provides the canvas. I am trying to develop an applet where I only want to use part of the applet space for 3D, and then, outside that space (but still within the applet) I would like to add some controls (e.g. buttons or text fields) to provide some interaction. In other words, I want to have an applet that contains something like a frame for 3D, and some controls outside the frame.
    It may be quite easy, but I am very new to applets. Can anyone kindly give me some suggestions? Any help is highly appreciated!
    Regards,
    Hua

    I got it figured out. Thanks anyway!

  • How do i view itunes store and my library at the same time?

    how do i view itunes store and my library at the same time?

    apple killed this feature (and i'm really unhappy about this!!). please send a request to apple directly. they obviously don't read this forum. the more people complain about this, the better!
    http://www.apple.com/feedback/itunesapp.html

  • Can oracle work in shared and dedicated mode at the same time?

    Hi All,
    can oracle work in shared and dedicated mode at the same time?
    Thanks

    A database can work only in one mode at a time.
    If the database is started in Dedicated Mode then it can not run in the Shared Mode. If you need to run it in the Shared Mode, bring down the Database , change DISPATCHERS, SHARED_SERVER, SHARED_SERVER_SESSIONS parameters in initfile and bring up the database to run it in Dedicated Mode.
    But there is one catch here, if you have started the database in Shared Server Mode even then you can make a Dedicated connection to server.
    Thanks!
    M-

  • Can I run a podcast and an app at the same time?

    Can I run a podcast and an app at the same time?

    Yes for most.  You can run a regular app with an audio podcast.  I do not know what could run with a video podcast.

  • I am using several Macs running Yosemite. I was recently "upgraded" to Xfinity's new cable modem which can support both 2.5Ghz and 5Ghz networks at the same time. Actually I can connect to the internet over both with a satisfactory bump in speed for

    I am using several Macs running Yosemite. I was recently “upgraded” to Xfinity’s new cable modem which can support both 2.5Ghz and 5Ghz networks at the same time. Actually I can connect to the internet over both with a satisfactory bump in speed for the Ghz. However when I connect to the 5Ghz the Time capsule disappears from the Airport Utility and claims to be Not Found. Is there something I have done wrong or just a Yosemite Teething Problem

    First restart your mac and try again.
    It could be
    that the router and the TC are interfering wirelessly with each other.
    You can check this by pressing the option key while clicking on the wireless icon on your screen
    Open Wireless Diagnostics
    enter your user password
    Press CMD 4 then Scan
    You will see all the wireless channels being used in your location and you can check if they are on the same channel
    Make the SSID for the TC simple like MyTC
    Set 5Ghz to auto
    Update the TC
    Try again
    Ted

  • Can i run remote profiling and remote debugging at the same time

    can i run remote profiling and remote debugging at the same time .
    i am using jdev9.0.5 and oc4j9.0.4 standalone server.

    i think i am wrong

  • How to transform a layer object and a path at the same time?

    Hi all,
    I know I am going to kick myself when you tell me the answer to this!
    I would really like to know if there is any way I can manage to to transform both a layer object and a path at the same time....or if there is any workaround to achieve this.
    In a nutshell, say for example I spend a VERY long time creating an intricate path around a very detailed object, and then at the very end notice just how crooked and out of perspective it is, and would like to straighten it.
    Of course I could transform and correct the object, and then carefully transform the path - but it just won't be exact, and I will have to spend a long time adjusting the path and making SURE it is perfect.
    Isn't there any way I could get to transform them together?
    Usually of course I do all the correction to straighten and correct perspective beforehand, but in some instances after I am done creating the path I then notice that the image could have used further adjustments.
    I appreciate so very much any advice you may have:)
    Thank you kindly,
    Christine

    Okay...I found another way as well... suddenly it all started coming to me in the last few minutes:)
    Once the image is on it's own layer, then we can select the path and then make a vector mask by going to "Layer>Vector Mask>Current Path". Once the vector mask is created, simply click on the image icon on it's layer, then transform away to your heart's content, and the path is transformed along with it. Once finished, the path for the vector mask can be saved as usual. (Don't click on the vector mask icon when transforming the image, otherwise only the path will be transformed.)

  • How to run save for web and contact sheets at the same time

    Hi
    my question is simple and a means to save time-
    Lets suppose I have 3 camera images and I want to run either save for web applications on 2 cameras at the same time, how/can i do that to save time or lets say contact sheet action on 1 and save for web on the other to save time or photoshop files and this runs in the background?
    would really help save me time.

    Even if you could run the three process in the background at the same time I do not think the duration of the total execution time would be any shorter. You would still be executing the same number of processor instruction reading and writing the same number of files. If the whole processor was constrained by the processing power running them cuncurrenly may increase the processing time because of contention for the processor. If the processes are IO bound that will not change a overlaping the processes may cause more hard disk seaking because of contention of the hard disk arm.

  • How to record a USB mic and a guitar at the same time?

    I have an Audio-Technia AT-2020 USB mic and an Ovation acoustic/electric guitar. I wanted to record both of them at the same time, so i plugged the mic into the USB port (duh!) and the guitar into the 1/8" port on the computer (with a 1/4" to 1/8" adapter and a male/male headphone cable). However, when i went to select the inputs for the diffrent tracks, it was either one or the other. My question is, do you need an audio interface to be able to do multitrack recording? If so, could I use a USB hub, 1/8" to USB adapter, and plug both the guitar and mic to fool the computer into thinking i have an audio interface? I would rather not spend money on an audio interface ($200) and a new mic ($120) when i already have something that could work!
    Thanks to anyone who can help!

    beberhard14 wrote:
    do you need an audio interface to be able to do multitrack recording?
    create an aggregate device from the mic and line-IN:
    http://www.bulletsandbones.com/GB/Tutorials.html#allaboutaggregatedevices
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Can you capture 1 video and author another at the same time?

    To save time with videos that are not critical, can you capture one video to Premiere Pro at the same time you are authoring to Encore a previously captured video?

    Wilderness08 wrote:
    To save time with videos that are not critical, can you capture one video to Premiere Pro at the same time you are authoring to Encore a previously captured video?
    The short answer is yes.
    I have just done that and I am happy to report that it worked like a charm.
    I captured from a DVCAM tape via firewire using PPro CS6 while authoring a Blu-ray disk in Encore CS6.
    No frames were lost during capture and my test blu-ray project was completed without a hitch.

Maybe you are looking for

  • Error 403 Reported when trying to access web page through a program.

    I was writing a program for fun, to try to download a web page, pdf or anything from the web. The program works fine when given local file system path in URL and also works well when i tried to access a page from the tomcat installed on my machine bu

  • Can view file in Preview but it won't open in Pages

    I modified an existing document, got up this morning and it would not open. I receive this error. I am new to Mac and have no idea how to ask this question other than to post the error I get when I try and open it. Process: Pages [274] Path: /Applica

  • Use ibook as a wireless server

    hello, i have a 14" ibook running leopard{os x 10.6.8}. it has an airport card in it. if i installed the server software for this os, can i use it as a wireless server? tonythanking you in advance,

  • BC-CTS interface for SAP on IBM i?

    I have read about the Technology - Change and Transport System Interface (BC-CTS) https://www.sdn.sap.com/irj/sdn?rid=/webcontent/uuid/3a83de71-0501-0010-e490-b85cf78809d7 [original link is broken] This is the interface that SAP provides to third-par

  • Smtp capabilities embedded within a app

    hi does there exist some kind of api to implement smtp capabilities within a application that it is possible to send mails without having a smtp server running? thx :)