I want to choose the right USB DAQ device for my application

Let me share the .exe file, that I use for my application, i.e. the thermostat for QCD. It is available at the following URL:

http://www.teamwavelength.com/support/software.php?page=datasheets&view=temperaturecontrollers

Temperature controller I use is PTC 10 K - CH got the NI USB 6351 data acquisition card. I tried the interface between the PC and PTC 10 K - CH, but could not get the desired results. (no monitoring/precise temperature control for the conduct of the LASER Source). It's a .exe file, I couldn't find how code works as well. So even if the program runs without error, I can't understand why it does not show the proper temperature values. Manual for the same Temp.Controller is available on the website of electronic wavelength.

I would like to know if NI USB 6351 is suitable for the PTC 10 K - CH? If so, what are the common mistakes, I need to make the same thing with LabVIEW interfacing while (because I'm a beginner)? Any help is appreciated.

Hi DEV_DS,

It seems that you have just 2 channels of, 1 AO channel, and 1 line.  Glancing at the datasheet, I see no reason that the USB-6351 should not work with the PTC10K-CH.

Can you share with us a screenshot of the configuration tab data acquisition channels, a screenshot of your list of devices and Interfaces developed NI MAX, and a description of the physical wiring connections you have made in the material?

Tags: NI Hardware

Similar Questions

  • How to choose the right number of VMs for an application?

    Hello:

    Our society needs to install Project Server 2007 on a server of ESXi4 and told me to use 2 virtual machines: an application server and a database server. But my question is:

    -If the two machines will be installed on the same server, and that these machines will be used exclusively for Project Server, so why use 2 virtual machines instead of using a single with more ram and put in place the database server and the application? Y at - it a gain by using two virtual computers instead of one?

    Thank you very much

    Concerning

    Carlos Negroni

    I have not used in Project Server, but I had similar problems with Oracle at the same time. It's that we have to separate the server database from the application servers as we have done in the physical world. What it came down to us has kep application as separate VMS servers. It makes it easy for the application fixes and performance as Oracle worked better with separate servers. Even if they have been virtualized or not, I think that they should always be regarded as separate servers (VMs).

    www.phdvirtual.com, manufacturers of esXpress

  • Choose the right hard internal storage for my Macbook Pro

    Hello

    I have amac book pro with this specification:

    Model name: MacBook Pro

    Model identifier: MacBookPro9, 1

    Processor name: Intel Core i7

    Processor speed: 2.6 GHz

    Number of processors: 1

    Total number of Cores: 4

    (By heart) L2 Cache: 256 KB

    L3 Cache: 6 MB

    Memory: 8 GB

    Boot ROM version: MBP91.00D3.B0D

    Version of the SCM (System): 2.1f175

    Serial number (System): C0 * V35

    Material UUID: A2089733-79E3-5628-A2B7-252143B9745B

    Is it? can I change the it is a HDD with a SSD?

    < personal information under the direction of the host >

    a DSS replacement for this model would be a 2.5-inch form factor drive.

    The internal Bus is SATA-II, then don't pay do not supplement for disc SATA-III (but a SATA-III will demote and work very well).

    Build your new Mac OS on the drive in an external case or adapter and make sure it is by working together, so that you don't do too much at once and can't debug what would be issues when you start 'surgery' to install the drive...

  • Choose the right PC for PCIe-1430

    It's the difference between PCIe-1430 and the PCIe-1429?

    I already see this article:

    Choose the right PC for the NI PCIe-1429

    http://digital.NI.com/public.nsf/allkb/1FD6E5B5A08C1E0786256F9B0079D449

    specifically, I want to know if anyone can share here the model of PC or configuration it uses with the PCIe-1430 framegrabber.

    I want to know what pc should I have to connect 2 camera link card PCIe-1430.

    Your help is appreciated.

    Dear Moti,

    I used the Dell Dimension 9100 and work Dell Precision 470 with the NI PCIe-1429 and PCIe1430, all two has worked well.

    -Robert Eastlund

  • Please help me choose the right format mask

    Hello everyone.

    We use Oracle 11.1.0.7 RAC.

    Please help me choose the right format for function to_char mask. On the left is a digital input, on the right is output desired:

    NUMBER VARCHAR2

    0,123 0.123

    12345678-12345678

    12345678.1234 12345678.1234

    12345678.123 12345678.123

    12.00000008 12.00000008

    WITH data AS
            (SELECT 0.123 n FROM DUAL
             UNION ALL
             SELECT 12345678 FROM DUAL
             UNION ALL
             SELECT 12345678.1234 FROM DUAL
             UNION ALL
             SELECT 12345678.123 FROM DUAL
             UNION ALL
             SELECT 12.00000008 FROM DUAL)
    SELECT
         TO_CHAR (n)
    FROM
         data;
    

    Thank you, Dmitry.

    Hi, Dmitri,

    Dmitry Dunaev wrote:

    Hello everyone.

    We use Oracle 11.1.0.7 RAC.

    Please help me choose the right format for function to_char mask. On the left is a digital input, on the right is output desired:

    NUMBER VARCHAR2

    0,123 0.123

    12345678-12345678

    12345678.1234 12345678.1234

    12345678.123 12345678.123

    12.00000008 12.00000008

    1. WITH the data AS
    2. (SELECT 0,123 n FROM DUAL)
    3. UNION ALL
    4. 12345678 SELECT FROM DUAL
    5. UNION ALL
    6. SELECT 12345678.1234 FROM DUAL
    7. UNION ALL
    8. SELECT 12345678.123 FROM DUAL
    9. UNION ALL
    10. SELECT THE DOUBLE 12.00000008)
    11. SELECT
    12. To_char (n)
    13. Of
    14. data;

    Thank you, Dmitry.

    I don't think that TO_CHAR can do by itself.  You should maybe call TO_CHAR and then manipulate the output a bit.

    Looks like TO_CHAR with 1 single argument does exactly what you want except when it returns a string starting with a decimal point, in which case you want to concatenate a '0'.  So call TO_CHAR with 1 argument, see if returns the string begins with a decimal point and, if so, put a '0' on it, like this:

    WITH got_str AS

    (

    SELECT n

    TO_CHAR (n) AS str

    FROM the data

    )

    SELECT n

    CASE

    WHAT LIKES str '. %'

    THEN "0". Str

    Of ANOTHER str

    END AS str0

    OF got_str

    ;

    Output:

    STR0 N

    ---------- -----------------------------------------

    0,123.123

    12345678-12345678

    12345678.1 12345678.1234

    12345678.1 12345678.123

    12.0000001 12.00000008

    What do you want for greater than-1 negative numbers?  You may need to make the CASE a little more complicated expression, like this:

    WITH got_str AS

    (

    SELECT n

    TO_CHAR (n) AS str

    FROM the data

    )

    SELECT n

    CASE

    WHAT LIKES str '. %'

    THEN "0". Str

    WHEN the str LIKE '. %'

    THEN '-0 "|" SUBSTR (str, 2)

    Of ANOTHER str

    END AS str0

    OF got_str

    ;

  • Choose the right model of project

    I'm pretty handy with Primere Pro CS5 and a bit with After Effects.

    Usually of digital HD work.

    But when it comes to formats, well, it's something that I need to focus on learning.

    I have a DCR-HC21. Records on Mini-DV tape.

    I have a lot of videos I want to transfer them to DVD.

    I am able to import video from the camera using firewire, in first Pro CS5.

    However, I want to be sure I chose the right settings when

    initially implemented for the project. For the best quality.

    Any help would be great.

    Try this:

    warning

    And to better understand what is happening, look at this:

    How to choose the right sequence settings?

    Edit:

    When you create a new project you are presented
    with a setting of the sequence to the choice menu.
    You can skip this step by pressing "Cancel", then import your media
    and create the type of sequence that best adapts to your images.

  • Tab Favorites is located on the left, but I want it on the right

    My bookmarks tab is on the left of the screen, when I want it on the right side.

    Here are two extensions that can do. Take one of them as you like.

    The extension moves sidebar on the right side of the browser.

    / 7865 RightBar

    The award-winning all-in - One Sidebar (AiOS):
    -place of the sidebar to the left or to the right of the browser

    and many other features

    All-in-One sidebar

  • HP pavilion 15-e034tx: how to choose the right RAM for laptop

    How to choose the right RAM for my laptop (Pavilion 15-e034tx). I know I should buy DDR3 ram.

    Are there other factors should I consider when buying one? I got 2 slots for ram, which od these combos are possible?

    1-4 + 4 GB
    2-4 GB + 8 GB
    3-8 GB + 8 GB

    Thank you

    From the Manual:

    Two customer accessible/upgradable memory module slots

    Support for dual channel DDR3L (1600 MHz)

    Support 8192 MB RAM system in the following configurations:

    8192 MB (8192 MB × 1, × 4096 MB 2)

    Manual download link

    See page 53 for instructions. Memory access is easy via the service Panel. This is the part number for the approved 4 HP concert module:

    4 GB (PC3L, 12800, 1600 MHz) 691740-001

    http://www.Amazon.com/HP-691740-001-4GB-1600MHz-PC3L-12800/DP/B00CI08FX4/ref=sr_1_2?ie=UTF8 & qid = 1451655870 & SR = 8-2 & Keywords = 691740-001

    A 8 GB module is listed in the manual, and it's a 3rd generation of processor i5 I suspect 2 x 8 = 16 concerts would work, but strictly following the manual your only option is to add a 4 GB for a total of 8. Most users really not more 8 GB and adding a second identical module will allow two-channel operation, so you should see a noticeable jump in the overall performance.

    If it's 'the Answer' please click on 'Accept as Solution' to help others find it.

  • 4540 proBook s: how to choose the right network driver

    Hello guys. I clean installed Windows 7 Professional. Now, I see that I can not connect my computer to the internet, so I need to install the network drivers. I wen to the HP website and saw that there are 19 different network for my laptop drivers.
    How to choose the right method?

    Hello:

    Below are the links to the ethernet and wireless drivers you need...

    Wireless:

    This package contains the installation package driver for Ralink wireless LAN controllers in the laptop models running a supported operating system.

    File name: sp66089.exe

    This card also needs a bluetooth driver...

    This package contains the OS driver installation package for the Ralink Bluetooth in laptop computers running taken in charge.

    File name: sp59632.exe

    Ethernet:

    This package provides the driver for the Ethernet Realtek controller in the laptop models running a supported operating system.

    File name: sp63213.exe

  • I don't want to see the right part of comment toolbar.

    I use adobe acrobat reader of DC in my mac book.

    I don't want to see the right part of comment toolbar.

    How always hide that

    Please help me.

    on the right is the toolbar and you can toggle with SHIFT + f4

  • FOR ADMINS - how to choose the right answer on a thread on this forum?

    FOR ADMINS - how to choose the right answer on a thread on this forum?

    For example, on:

    "missing plug-in" for safari after you download!

    http://forums.Adobe.com/thread/897677?TSTART=0

    It does not show on 5.1 Safari and Firefox on Mac OS X 10.6.8 6.0.2.

    Thank you!

    The normal user (non-admin type), which can mark a reply as useful or appropriate is the user who started the discussion.

  • Choose the platform correct blackberry 10 for the use of functions such as call history, use of data, message records

    I want to design a blackberry 10 application that can fetch all call logs, data internate, messages through the application usage. Please help me choose the right platform that can provide all the APIs that are required for this application. 10 webworks Blackberry and Android runtime dosen't supports all API.

    Thank you.

    You can watch here

    https://developer.BlackBerry.com/native/documentation/Cascades/device_platform/invocation/invoking_c...

  • I have Iphone with SER. DN number * RY9. I want to know the number of hardware device.

    I have an Iphone 6 with number of ser: DN * RY9. I want to know the number of hardware device. Is - this samsung or other?

    Thank you

    < personal information under the direction of the host >

    Please, do not post your serial number i public forum na.

    There is no way outside of disassembly of the iPhone to see what kind of CPU, there is a, nor is it important. Both processors are made to the exact same specifications and perform exactly the same.

  • Want to rip the cd audio books "s for pc.

    Want to rip the cd audio books "s for pc. How do I use media player, or should I go for another software

    Hi WilliamHillZX,

    Try the following to see if it helps.

    a. open Windows Media Player.

    b. click on 'Tools' at the top of the Windows Media Player window and select 'Options' in the menu dropdown.

    c. click the "Rip Music" tab and click on the menu under "Format". Select 'MP3' in the menu, and then select the check box next to "Rip CD automatically." Select "apply then 'OK' to save the changes.

    d. press the button to open the drawer of CD or DVD from the computer, insert the CD in the tray and press the status bar. Windows Media Player will automatically rip the audio book in the 'Library' of the program section.

  • Hello! I have download CC and paid $69.99 but I want to use the programs that I pay for, why, if I pay $69.99, I have to use the test programs? you want to know what I pay and how I can get the services of programs I want to use.

    Hello! I have download CC and paid $69.99 but I want to use the programs that I pay for, why, if I pay $69.99, I have to use the test programs? you want to know what I pay and how I can get the services of programs I want to use.

    Miguelo28272279 for more information on how to solve the connection error preventing your membership to authorize please see sign, activation or connection errors. CS5.5 and later, Acrobat DC.  We invite you to update this discussion if you have any questions about the steps listed in the document.

Maybe you are looking for