Measure the voltage and the temperature at the same time with a single card PCI 6014 DAQ?

Hello guys,.

I'm doing a charger measuring the voltage of the battery, the charge current and the temperature of the battery using a 6014 cardboard...

I want to use my PCI6014 DAQ card to measure 2-channel analog voltage input and 1 temperature Channel Analog input using thermocouple type k measurement of voltage or temperature isolation is OK, but I can't understand how to measure the voltage and the temperature at the same time... I want to use input differential...

Thank you in advance, all the tips

YSL

Create a task and add channels to the task, as follows:

Christian

Tags: NI Software

Similar Questions

  • Can I use Lightroom on my mac and my pc at the same time with a single subscription?

    Hi all

    for five months now, I have a subscription to creative cloud for Lightroom and Photoshop. So far, I used just on my PC. Now I have bought me a MAC and want to install Lightroom on MAC either. Do I need a second subscription for MAC or can I use my subscription on MAC and PC at the same time?

    thx for your comments

    If you ask if you can run the software subscription on both machines at the same time, the answer is no.  Your license you can only use one of the facilities at any given time.

    If you ask that if you have the software installed and that can be used on both machines so the answer is Yes... just can not both machines in use, software subscription running at the same time.

  • Monthly subscription of Cloud first PR open CS6 and CC at the same time with a single subscription?

    I have download CS6 and CC version.

    I have a subscription monthly Premier Pro, but open just a CC and not a CS6 version

    WHY?

    Do I need a second subscription for the same program?

    your subscription to a cc allows you to install and use current and past (back to cs6) versions

  • Why can't acquire data from strain and resistance at the same time with a NI 9219 module?

    Hello

    I use a chassis with a NI9219 module 9172 cDAQ to try to acquire the strain and resistance at the same time, with the Labview SignalExpress software.  Is this possible?  When I try to display two values of signal at the same time, I get an error of assistant DAQ 50103 'the specified resource is reserved.  The operation could not be performed as indicated.  I used to be able to acquire the strain and tension at the same time, but now even that gives me error 50103.  I have hours trying to figure this out.  Any help would be greatly appreciated.

    Thank you

    Justin

    That's all!  Thank you very much, now I can sleep tonight - seriously!

    Thanks again,

    Justin

  • How to read 4 similar channels at the same time with the MCC

    Hello

    with the mcc libraries and a card PCi-6034 classic (by calculation of the measure), I want to read 4 analog channels at the same time. I have a "scope" with 4 channels.  How to read 4 channels at the same time with the mcc?

    MF

    Hello MF.

    Thank you for using OR support.  I guess you try to program in LabVIEW.  Where exactly did you get the MCC library of?

  • How many user take RDP at the same time with different user login ID in Server R2 2012

    How many user take RDP at the same time with different user login ID in Server R2 2012?

    How many user take RDP at the same time with different user login ID in Server 2008 R2?

    How many user take RDP at the same time with different user login ID in Server 2012 starndard?

    How many user take RDP at the same time with different user login ID in Server 2008 standard?

    This issue is beyond the scope of this site (for consumers) and to make sure you get the best answer, we need to ask either on Technet (for IT Pro) or MSDN (for developers)

    If you give us a link to the new thread we can point to some resources it
  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • I want to teach my students the adobe Illustrator. If I buy CC-Illustrator, we work at the same time with every devices with my ID?

    I want to teach my students the adobe Illustrator. If I buy CC-Illustrator, we work at the same time with every devices with my ID?

    No, you have your own identification number

  • Can I pair headset Bluetooth and a chest strap heart rate monitor Bluetooth at the same time with the Apple Watch 2 series

    Does anyone know if you can pair Bluetooth headset at the same time and heart rate monitor strap chest Bluetooth with the Apple Watch series 2? I can't find any info about it online. I hope so, because they have everything works without your phone now since it has GPS. Obviously a chest strap heart rate monitor gives you a more accurate reading. And who is running without music? If they want to really all the new capabilities of fitness improved series 2, that this is a must!

    The original WATCH allows you to do this, so I don't see why the series 2 would not.

  • Open and save files uploaded at the same time (with one click)

    GENERAL OBJECTIVE: To click on the PDF links online, save the files to my downloads folder AND open them in Acrobat Pro, all with a single click.

    Anyone has a suggestion for how I would say Firefox to save and open my downloads? I use OS X, if it help/questions.

    This happens automatically with my Mac. I a using 10.4 and another with 10.6. I use PDFView rather than Adobe, but I doubt that it makes much difference. You use Adobe as a request for assistance, not a plugin, right?

  • HP 8630: cannot copy and fax at the same time with hp 8630 all-in-one

    This unit is designed to be able to receive a fax and copy documents at the same time?  If so, my camera doesn't seem to be able to do.  is there a solution?

    Hello
    It's a consumer product dedigned for small & medium business, he cannot perform this multitasking as a commercial product or end of superior business.

    You can use a feature to a volume, not simultsnly...

  • Can I have Photoshop open with my desktop and laptop at the same time with the account of the company?

    I already have two individual accounts for my husband and me, but together, we use and work on 4 computers, so we need their access at any time. At the same time I can work on Photoshop on my computer laptop and InDesign on my desk. I'm not the greatest to leave thoughts programs the day either. If at some point, Photoshop can be opened on all computers. Will this be a problem on the behalf of the company?

    Cloud license allows 2 activations http://www.adobe.com/legal/licenses-terms.html

    -Two activations may NOT be used at the same time (noted in the link above of the license)

    If you must have the program create open on 2 computers at the same time, look for a subscription of the TEAM, so each ID is unique

    Team license links that can help

    - https://creative.adobe.com/plans?plan=team team plans

    -http://www.adobe.com/creativecloud/buy/business.html

    -https://helpx.adobe.com/contact/creative-cloud-teams.html using the team

    -manage your account http://forums.adobe.com/thread/1460939?tstart=0 team

  • use java edition and edition of native at the same time in a single java application

    Hello

    I have a situation where I need to use both versions of berkeley Db at the same time. I have an external library that I use and which requires the Java edition and my own code which uses the native version. Unfortunately, the library source code is not available and I don't want to see my program to use the Java edition.

    Some packages in je.4.0.103.jar and db.jar (version 5.1) contain the same naming structure and classes for example. com.sleepycat.persist.EntityStore. I removed the packages duplicated in je.4.0.103.jar however, it seems that the implementation is slightly different between the two versions I get

    java.lang.NoSuchMethodError: com.sleepycat.persist.EntityStore. < init > (MBCA/sleepycat/I/environment; Ljava/lang/String; MBCA/sleepycat/persist/StoreConfig ;) V

    When I had just two available versions my code for the preserved native version using the packets from the Java edition and an external library maintained on the use of the native version and therefore I had loads of errors.

    So how I differentiate them. The problem is because the two sets of packages have identical names and the names of classes for Java does not know which ones to use. I use eclipse then maybe there is an option where I can say that some classes to use some packages.


    Any ideas?

    Hello

    We do not officially support using BDB and BDB I from the same JVM process.

    It is possible to circumvent this limitation by creating two [url http://download.oracle.com/javase/1.4.2/docs/api/java/lang/ClassLoader.html] Chargers of Java classes which load a file two jar. When you call BDB or BDB I methods, the call should be put in brackets with calls like this that cause the correct class loader to use:

    ClassLoader saveLoader = Thread.currentThread().getContextClassLoader();
    Thread.currentThread().setContextClassLoader(/* specify correct loader for BDB or BDB JE here */);
    try {
       // do something with BDB or BDB JE
    } finally {
      Thread.currentThread().setContextClassLoader(saveLoader);
    }
    

    We are not experts in the field of chargers for custom classes and we do not have an example of this. We don't him did not ourselves, we know only that users have done.

    I hope this helps.

    Kind regards
    Alex Gorrod
    Oracle Berkeley DB

  • all play them at the same time with several videos tabs

    When I have several tabs open tabs with videos that all try to play at the same time

    Hi crazychief,

    Some Web sites will have this default tag value for their videos. You can try:

    • Enter about: config in the address bar and press to enter.
    • Agree that you will be attentive
    • Search for media.autoplay.enabled
    • Double click to change the false value

    Hope this helps!

  • Output signal analog two at the same time with the SCC-68. Is this possible?

    Hello!

    I plug in my SCC-68 two things. You're driving in the ao0 (22 screw terminals) and aoGND (55 terminal screw) and a speaker in ao1 (terminal screws 21) and aoGND (55 terminal screw).

    I'm trying to generate a sugnal ao1 sine and a DC ao0 signal. Separately, they work, but at the same time they do not have...

    I had try in Labview SignalExpress and also...

    Any help?

    Thanks: Koli

    Hi Koli,

    already use you it in your code. The vi s Express that you marked with ao0 ao1. :-)

    Mike

Maybe you are looking for