"RTD Voltage to temperature conversion" for temperatures below 0 degrees

NI gives us a conversion VI for temperatures above 0 degrees Celsius. I need a converter also for negative temperatures.
Where can I find such a VI or a method ?

Labviewguru and Filipe:
I found the following rather excellent reference on line as a PDF by
searching RTD+NIST+equation at:
http://www.data-acq.co.uk/pdf/CHAP-4.pdf
It has the NIST polynomial equations and technical descriptions for
various types of thermocouples and RTDs. I think it is just what you
are looking for.
You'll just have to slap them into a LabVIEW equation box and that
should be that.
Douglas De Clue
[email protected]
Labviewguru wrote in message news:<[email protected]>...
> Filipe,
>
> Gosh, I was interested in this one, and kinda curious myself why you
> couldn't convert temperatures below 0degC. I looked up RTDs in the
> Omega Catalog, and sure enough, they
go to at least -200degC.
>
> Would National Instruments be interested in a new algorithm that is
> capable of converting all temperatures? If so, I'll do the legwork,
> find the correct algorithm, and program it up.

Similar Messages

  • Does the voltage to temperature conversation require in usb 6008 using daqmx 8.5??

    Another question need u all guy help.I currently using K-type thermocoupler for my project using usb 6008.Does the voltage to temperature conversation require in usb 6008 using daqmx 8.5? what is DAQ TEDS function use ? is it help us to convert?

    You will need to factor the voltage per degrees C to get to reading in degrees, this is 10mv per degree V for the device mentioned in the post you previously made
    http://forums.ni.com/ni/board/message?board.id=170&message.id=246200#M246200
    TEDS - Transducer Electronic Data Sheet
    A video about TEDS
    http://digital.ni.com/demo.nsf/websearch/8e55de8fe6b5702686256e7c007a47b4?opendocument

  • Temperature monitoring for Core i3 CPUs

    I have a i3 330M and lm-sensors results in nothing. Any ideas?

    I've dug up some more info..
    For temperature monitoring, a QST SDK is needed for supporting the ICH8 southbridge. The OpenAMT project is working on that (http://www.openamt.org/), but there doesn't seem to be much progess.
    However, it looks like Intel will be releasing an SDK itself. See: http://software.intel.com/en-us/forums/ … hp?t=54851
    Maybe after that we will have temperature & voltage monitoring support for all Nehalem and Arrandale chipsets.

  • What is the correct operating temperature range for the various iMac models?

    In our organization, we opperate approximately 20 mac systems (3-4 years old) with users performing a range of tasks using applications that range from 3D Design and graphics programs to MS Word and Outlook. There is concern that the systems (specifically iMacs) are running too hot and we've had a couple 'die'. Does anyone know of a list of acceptible opperating temperature ranges for Apple Computer systems? I am using a Mid-2010 3.2ghz Intel Core i3, with 8gb ddr3 and an ATI Radeon HD 5670 512mb graphics card, I have a 1 TB SATA that currently has 732GB's of free space. Below are my systems current temp readings using "Temperature Monitor" by Marcel Bresink.
    Has anyone else had issues with current Apple Computers overheating and dying?
    Thanks for your help, any input would be appreciated!

    The only items w/Temp ranges are the CPU cores. Your seetings look normal to me. These are mine:

  • Best conversion application (temperature, currency, speed etc)

    What is the best conversion application (temperature, currency, speed etc) that you have found???
    Also it is not something that comes with the iPhone 3g right now is it?

    I can't speak for what is "best", unless someone wants to give me an unlocked iPhone 3G and ship it across the border to me under cover of darkness. But you should look at what's listed here in terms of iPhone apps and see what you like"
    <http://www.ilounge.com/index.php/software/iphone/C254/>, and
    <http://www.appsafari.com/category/calculators/page/13/>.
    Mulder

  • Temperature Conversion

    Hi to all!
    It's my first post here.
    I just started my very first java class, and I have problem with my assignment.
    I have to write a program that accepts an integer # followed by a space and one letter, C or F. It should then convert number to opposite degrees (C or F).
    Example of output:
    Enter temperature: 35 F
    Temperature in C is: 1.6
    I managed to write the code, but I have a feeling that there is easier way to do this (while loop?).
    Also, I'm getting following error when I input letter other than C or F, shouldn't it go straight to "else" in this case?
    Enter temperature: 35 D
    Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String ind
    ex out of range: 4
    at java.lang.String.charAt(Unknown Source)
    at TempConversion.main(TempConversion.java:57)
    import java.util.Scanner;          // Needed for the scanner class
    public class TempConversion
         public static void main(String[] args)
              String temperature;          // To hold user's input
              Scanner keyboard = new Scanner(System.in);
              System.out.print("Enter temperature: ");
              temperature = keyboard.nextLine();
              if (temperature.charAt(1) == ' ' && temperature.charAt(2) == 'F')
                   String temp1 = temperature.substring(0,1);
                   double temp1d = Double.parseDouble(temp1);
                   System.out.println("Temp1 F to C: "+(5.0/9.0)*(temp1d-32.0));
              else if (temperature.charAt(1) == ' ' && temperature.charAt(2) == 'C')
                   String temp1 = temperature.substring(0,1);
                   double temp1d = Double.parseDouble(temp1);
                   System.out.println("Temp1 C to F: "+(((9.0/5.0)*temp1d)+32.0));
              else if (temperature.charAt(2) == ' ' && temperature.charAt(3) == 'F')
                   String temp2 = temperature.substring(0,2);
                   double temp2d = Double.parseDouble(temp2);
                   System.out.println("Temp2 F to C: "+(5.0/9.0)*(temp2d-32.0));
              else if (temperature.charAt(2) == ' ' && temperature.charAt(3) == 'C')
                   String temp2 = temperature.substring(0,2);
                   double temp2d = Double.parseDouble(temp2);
                   System.out.println("Temp1 C to F: "+(((9.0/5.0)*temp2d)+32.0));
              else if (temperature.charAt(3) == ' ' && temperature.charAt(4) == 'F')
                   String temp3 = temperature.substring(0,3);
                   double temp3d = Double.parseDouble(temp3);
                   System.out.println("Temp3 F to C: "+(5.0/9.0)*(temp3d-32.0));
              else if (temperature.charAt(3) == ' ' && temperature.charAt(4) == 'C')
                   String temp3 = temperature.substring(0,3);
                   double temp3d = Double.parseDouble(temp3);
                   System.out.println("Temp1 C to F: "+(((9.0/5.0)*temp3d)+32.0));
              else if (temperature.charAt(4) == ' ' && temperature.charAt(5) == 'F')
                   String temp4 = temperature.substring(0,4);
                   double temp4d = Double.parseDouble(temp4);
                   System.out.println("Temp4 F to C: "+(5.0/9.0)*(temp4d-32.0));
              else if (temperature.charAt(4) == ' ' && temperature.charAt(5) == 'C')
                   String temp4 = temperature.substring(0,4);
                   double temp4d = Double.parseDouble(temp4);
                   System.out.println("Temp1 C to F: "+(((9.0/5.0)*temp4d)+32.0));
              else
                   System.out.println("Input format is invalid.");
    }

    stdunbar wrote:
    Can I suggest two things: (1) use the trim() method (http://java.sun.com/javase/6/docs/api/java/lang/String.html#trim%28%29) to not care how many spaces are before or after the String you got from nextLine() and (2) use split (http://java.sun.com/javase/6/docs/api/java/lang/String.html#split%28java.lang.String%29) to then pull apart the String into the individual pieces. You can then examine the resulting String[] for what you expect to find.
    Edited by: stdunbar on Nov 23, 2009 12:26 PM - these are the worst forums in the world to provide useful links with[trim method link|http://java.sun.com/javase/6/docs/api/java/lang/String.html#trim%28%29]
    [split method link|http://java.sun.com/javase/6/docs/api/java/lang/String.html#split%28java.lang.String%29]
    Or in bare form...
    [http://java.sun.com/javase/6/docs/api/java/lang/String.html#trim%28%29]
    [http://java.sun.com/javase/6/docs/api/java/lang/String.html#split%28java.lang.String%29]
    Although I still think Scanner.nextInt() followed by next() or nextLine() is simpler.

  • Problem about temperature unit for SGL, LabVIEW 7.0 and 7.1

    A question about temperature unit for SGL and DBL, LabVIEW 7.0 and 7.1.
    The attachment is a test VI.
    From running the test.vi it shows that the temperature units Cdeg and degC are different (why?), and Cdeg and K seem to be same.
    For a SGL control in degC unit (i.e. "temperature 3" in frontpanel of test.vi), the default value can not set to zero. When set the default value to 0, it shows -6.10352E-6.
    The similar problem exists for the units Fdeg and degF.
    Could anyone please give me an explanation?
    Thank you,
    Xu
    Attachments:
    test.vi ‏28 KB

    Cdeg is another way of saying "In degrees defined by the Celsuis scale starting from absolute zero". So it is the same as Kelvin.
    degC is another way of saying "In degrees defined by the Celsius scale starting from the freezing point of pure water at sea level".
    As for missing zero by a about six microdegrees, it is because when units are used, the values are always converted to base units. The base unit for tempurature is Kelvin. 0 degC just happens to be a bit off from what a computer can give for that many degrees Kelvin. I am not sure why it is changing your input, however.
    Bob Young - Test Engineer - Lapsed Certified LabVIEW Developer
    DISTek Integration, Inc. - NI Alliance Member
    mailto:[email protected]

  • How can I do simulation for temperature

    How are you?
    How can I do simulation for temperature sensor for two hours, should be from 10AM until 11:59AM in summer season (10 degree gradually)
    i want simulate temperature sensor  in C,F and K in one gragh.

    duplicate post!
    Stick with your original thread, when the question don't change. Keep all relevant information in one thread!
    A bigger or bold font doesn't add any information/clarification to your question
    Message Edited by GerdW on 01-16-2010 01:14 PM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Lowers my temperature by more than 10 degrees?!

    I received my brand new replacement macbook yesterday and while i waited around 5 days for it, i knit a cover for it, kind of like an envelope that lookslike a sweater for my computer- really cute, it's purple with blue stripes. Anyways, i first downloaded coreduotemp to monitor my temperature and just sitting on my kitchen counter the temperature went up to 102 degrees farenheit. I then shut the lid after going on the internet for a little while. I came back a little while later and put the computer on top of the knit macbook pouch i made. The temperature never went over 93 degrees. Last night i had it on my lap in bed- 107 degrees. I have it on my lap with the knitty underneath- 91 degrees!!!!
    Does anyone know why this is, or is the love in every stitch attempting to save my computer from over heating? XD

    The lower temp is probably due to the heat being able to move through the knit cover rather than being trapped against a solid surface. However, 107F is not hot at all for a MacBook and well below the normal operating temps. My MacBook runs around 65-70 celsius (up to 158F) and this normal. Under a load it will get up to 80c before the fan kicks on. Don't worry about the heat you are fine.
    Macbook, 2.0 duo, black   Mac OS X (10.4.7)   80 gb hd, 2 gb ram, 5g ipod, 2g ipod

  • Sales Order Conversion for Go-Live

    Folks,
    I would like to get your expert thoughts on sales order conversion for go-live. I will give my thoughts below and would like to see if you can extend them and make this better.
    1. The environment is this: the order entry systems are several external systems interfacing  with SAP CRM. Therefore, there are two options to bring the sales orders to SCM: i) Use the same interface (BAPI_APO_AVAILABILITY_CHECK that is called from CRM) and create the orders, or, ii) Create the sales orders in ECC and then use the sales order integration model. Note that this is the only time sales orders will come from the ECC system. In steady state, they will come from CRM and based on the SPM scenario that SAP has enabled, they WILL NOT be replicated in ECC
    2. Ensure that all deliveries in the system have been executed. That is, there is no stock that has been assigned to a delivery and the delivery has not been shipped. If this is not the case, you have to bring the deliveries into the system also. So, to clarify, no outstanding deliveries will be brought into the system as part of the conversion.
    3. Sales order fields related to BOP will be populated through program or by other means. This is implementation specific. Some example fields are: i) Sales Org, ii) Delivery Priority, iii) Shipping Conditions on the header, iv) Transportation Zone of customer, v) Ship-to Party number, etc.
    4. Run BOP for all the sales orders based on the criteria that has been defined for this conversion. Note that the criteria for the conversion could be different from the criteria that we will use for steady state.
    Could you add any missing steps?
    Thanks,
    Satish

    thanks nitin
    i would like to use it as prepayemnt itself
    but when i am trying to load using oe_payments base table it loads
    but when i use data and use in oe_payments_iface all it doesnot load after i run the order import program
    can u plz suggest me where i am going wrong
    thnaks

  • File Content Conversion for Unequal Number of Columns

    Hi,
    Iam following this thread FCC for Unequal Number of Columns.
    /people/jeyakumar.muthu2/blog/2005/11/29/file-content-conversion-for-unequal-number-of-columns
    when iam doing ,iam getting an error
    Conversion initialization failed: java.lang.Exception: java.lang.Exception: java.lang.Exception: Error(s) in XML conversion parameters found: Parameter 'TOTALSET.fieldFixedLengths' or 'TOTALSET.fieldSeparator' is missing Consistency check: no. of arguments in 'TOTALSET.fieldFixedLength' does not match 'TOTALSET.fieldNames' (0 <> 1)
    My conversion parameters are
    Recordset Structure                      : TOTALSET,*
    TOTALSET.fieldNames                 : ITEMSET
    ignoreRecordsetName                   : true
    TOTALSET.fieldSeparator              : 'nl'
    My file structure is as below
    01,021000021,G4886704,080919,0742,001,,,2
    02,G4886704,021000021,1,080918,0742,,2
    03,000000135073477,,010,105303839,,,015,489113155,,,045,489039455,,,072,73700
    Please help in resoving the error.
    Thanks in Advance
    Srinivas

    Hi Srivinas,
    your file structure is as below
    01,021000021,G4886704,080919,0742,001,,,2
    02,G4886704,021000021,1,080918,0742,,2
    03,000000135073477,,010,105303839,,,015,489113155,,,045,489039455,,,072,73700
    So it's easy, you have to use KEYFIELD option, coz you have something like that :
    Line 1 : keyfield = 01 following by a limited number of columns (e.g 30 fields for Structure1)
    Line 2 : keyfield = 02 following by a limited number of columns (e.g 14 fields for Structure2)
    Line 3 : keyfield = 03 following by a limited number of columns (e.g 23 fields for Structure3)
    Thanks to the Keyfield, you define a field which is present in each line that you can used to distinguished the different structures of lines. In your case, it seems that the keyfield is the first column (01, 02, 03).
    Try to use that:
    Recorset = TOTALSET         (and don't use option "ignoreRecordsetName : true")
    Recordset structure =Structure1,1,Structure2,(star),Structure3,(start)       (the difficulty will be to find the good use of "*" and "1", but after some tests you will find the good one).
    Note: replace (start) by the character " * "
    Key field value = keyfield
    Key field type  = String (case sensitive)
    Structure1.fieldNames  = keyfield,field2, field3 etc.. of Structure1
    Structure2.fieldNames  = keyfield,field2, field3 etc.. of Structure2
    Structure3.fieldNames  = keyfield,field2, field3 etc.. of Structure3
    and then you will have a XML like that:
    TOTALSET
    Structure1  and all its fieldN
    Structure2  and all its fieldN
    Structure2  and all its fieldN
    Structure3  and all its fieldN
    Structure3  and all its fieldN
    TOTALSET
    Structure1  and all its fieldN    because I used Structure1,1
    Structure3  and all its fieldN
    Regards.
    Mickael
    Edited by: Mickael Huchet on Apr 20, 2009 5:18 PM
    Edited by: Mickael Huchet on Apr 20, 2009 5:19 PM

  • Query on Content conversion for Receiver SFTP Adapter

    Hi Experts,
    We have the receiver structre as follows:
    <DT_Receiever>
    <Header>
    <field1>abc<\field1>
    <field2>1234<\field2>
    <\Header>
    <Detail>
    <field3>nhj<\field3>
    <field4>bshsrt<\field4>
    <\Detail>
    <\DT_Receiever>
    We should do content conversion for the above structure using SFTP adapter at the receiver end.
    Kindly provide us some tips in achieving the same.
    Thanks
    Suganya.

    Hi Suganya,
    You can use message tranform bean for ur case.
    U have to use "StructXML2Plain"
    Please follow below link for ur reference If you face any problem please let me know....
    http://help.sap.com/saphelp_nw04/helpdata/en/24/4cad3baabd4737bab64d0201bc0c6c/content.htm
    Thanks,
    Enivass

  • Reg:File content conversion for Sender File Adaptor

    Hi all,
                i would like to know , how the file content conversion is written for the below mentioned XML code. The flat file will have only the table name and the fieldname
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Mt_File xmlns:ns0="http:/file_to_idoc">
       <query_table>ztable1</query_table>
       <row_count/>
       <Fields>
          <item>
             <fieldname>zempno</fieldname>
          </item>
       </Fields>
    </ns0:Mt_File>
    regards
    priya

    First you create the conversion rules, then you create the XML structure accordingly, not the other way.
    online help will help you

  • Content Conversion for Sending Communication Channel using File Protocol

    I have a file as follows:
    CUSC,CRCA,OBAL,DATE
    10197,0111,15250094.05,20071008
    10758,0111,8131440.17,20071008
    12939,0111,8212006.53,20071008
    13129,0111,6953749.77,20071008
    13331,0111,8607294.15,20071008
    13579,0111,11972774.95,20071008
    13676,0111,6636698.47,20071008
    What is the content conversion that I can proceed with so that I can go with the mapping. I have to use File Adapter?
    Please Help

    Hi,
    Check below links for Content conversion.
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion
    /people/anish.abraham2/blog/2005/06/08/content-conversion-patternrandom-content-in-input-file
    /people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    /people/venkat.donela/blog/2005/06/08/how-to-send-a-flat-file-with-various-field-lengths-and-variable-substructures-to-xi-30
    /people/anish.abraham2/blog/2005/06/08/content-conversion-patternrandom-content-in-input-file
    /people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter
    /people/jeyakumar.muthu2/blog/2005/11/29/file-content-conversion-for-unequal-number-of-columns
    /people/shabarish.vijayakumar/blog/2006/02/27/content-conversion-the-key-field-problem
    /people/michal.krawczyk2/blog/2004/12/15/how-to-send-a-flat-file-with-fixed-lengths-to-xi-30-using-a-central-file-adapter
    /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm
    Regards,
    Phani
    Reward points if Helpful

  • Unit of measure conversion for CIN is not relevant for pricing

    During creation of Ad item type order, when we enter the planned ad size e.g. A CO (Columns) x B IN (Inches), the system is showing a message "Unit of measure conversion for CIN is not relevant for pricing" and pricing is not determined in the Billing Data Set. However if the planned ad size is maintained as A CO (Columns) x B MM (Millimeters), there is no impact to pricing conditions.
    Any light how to fix this issue?
    Thanks,
    Suseela. V

    Dear Suseela,
    You need to maintain Unit of conversion using transaction code JH51. You have to follow the path Logistics-Advertising Management-Master Data-Conditions-Order/Billing Document-UM for Pricing.
    Here you can maintain combination using Booking Unit, Content Component, Design type and assign Unit of Measure to get relevant pricing into billing set conditions.
    Hope it will help. Thanks!
    Regards
    Indra

Maybe you are looking for

  • TA21610 Trying to fit screen size when using 42" tv for Mac mini

    Trying to fit screen for Samsung tv. The current view is too large. Tried the system preference display options. It remain to large 42" screen with 1080p 60Hz

  • Problem with Mac OS X Install

    My sister just tried to Install Mac OS X Leopard and when she was prompted to choose the desired location for the install (she choose her hard disk) she was told she would have to completely erase the contents of the old disk. I noticed she had only

  • Insufficient authorization to display object Message Mapping

    Hi there Every now and then when I try and open a message mapping object I get this error: Insufficient authorization to display object Message Mapping. I then restart my Integration Builder then it works again. Any Idea how I would fix this? Thanks,

  • Change Col datatype to Date from Number

    Hi all, I have a table storing date in 'YYYYMMDD' Format and the dataype of the column is NUMBER. Now how can I convert this column datatype into DATE in DD-MON-YY. Any help would be highly apreciated. Regards,

  • Billing plan in Contract.

    Hi Gurus, I wanna set the billing plan at item level in contracts. I have done the necessary settings and now billing plan is showing at item level. But, its happening that when I try to put values in billing plan for the contracts which are already