Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
Hello friends! I hope you all will be absolutely fine. Today, I am going to share my knowledge with all of you guys, on how to make a Temperature Conversion in LabVIEW. Temperature is actually measured with different units at different places all across the world. However, there are three basic standard units for measuring the temperature i.e. Celsius, Fahrenheit and Kelvin. We can convert them in each other by performing some mathematical operations. In this tutorial I am going to elaborate only one of these conversions. I would like to tell the standards of these scales with reference to the freezing and boiling point of water. "Celsius" scale is basically the scale based on 0 degrees for the freezing point of water and 100 degree for the boiling point of water. "Fahrenheit" scale is based on 32 for the freezing point and 212 for the boiling point of water. Kelvin scale is based on 273 for the freezing point and 373 for the boiling point of the water.Fahrenheit, Celsius and Kelvin are denoted by "F", "C" and "K" respectively. There are mathematical expressions to convert the temperature from one scale to another scale.

Temperature Conversion Formulas

Here are the three formulas for temperature conversion.
Celsius to Fahrenheit Conversion
  • To convert "Celsius" to "Fahrenheit" use the expression below.

F = 9/5 °C + 32

Fahrenheit to Celsius Conversion
  • If you want to convert "Fahrenheit" to "Celsius" use the expression below.

C = 5/9 ( F - 32 )

Celsius to Kelvin Conversion
  • You can convert "Celsius" to "Kelvin" by using the expression below.

K = C + 273

By using all of the above expressions you can convert easily one scale to another one. Here, I am going to elaborate the steps which will help you to design Temperature Conversion in LabVIEW 2015. Click on the below button to download this LabView Simulation for Temperature conversion. So, now let's get started with the the designing of Temperature Conversion in LabView:

Download LabView Simulation

Temperature Conversion in LabVIEW

  • Go to the Front Panel and right click on it.
  • Now, go to the Controls -> Modern -> Numeric -> Numeric Control as shown in below figure:
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Select this block and place it on the Front Panel.
  • Change its name to "Celsius" as shown in below figure:
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Now, go to Controls -> Modern -> Numeric -> Numeric Indicator.
  • Select this block and place it on the Front Panel.
  • The figure below explains it:
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Name it as a Fahrenheit.
  • Select another Numeric Control and place it similarly on the Front Panel and name it Kelvin.
  • All these numeric controls are shown in below figure:
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Now let's move to the block diagram and design our small algorithm.
  • Your block diagram will look something as shown in below figure:
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Now, we have to apply some technique so that the conversion from one scale to another becomes possible in an easy manner.
  • Go to Functions -> Express -> Arithmetic & Comparison -> Formula.
  • Select this block and place it on the "Front Panel" window.
  • Here is the figure in which you can see how to do this:
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • As you place this block on the "Front Panel" , you will see the figure below on your laptop's screen.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Now Change the formula according to your requirements.
  • I have changed the formula in order to convert "Celsius" to "Fahrenheit".
  • After changing the formula press "OK".
  • And now, the "Block Diagram" window looks like the figure below.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Now, connect the "Celsius" with the "X1" terminal of the "Formula" block and connect "Result" with the "Fahrenheit" block.
  • The figure below shows the display of the above step.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Now, the "Celsius" scale is converted into the "Fahrenheit " scale.
  • We have to convert "Celsius" to "Kelvin" now.
  • Go to Functions -> Programming -> Numeric -> Add.
  • Select this block and place it on the Front Panel.
  • Connect the input terminal of the Add block to the Celsius.
  • And go to the second input terminal of the Add block.
  • Go to Create -> Constant.
  • And set the value of the constant as 273.
  • The figure below explains all of the above steps.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Go to the "Front Panel".
  • Run the Program and you can see by changing the values of the "Celsius" the change occurs in the values of the "Fahrenheit" and "Kelvin" as well.
  • You can see for 0°C the "Fahrenheit" scale shows 32 and the "Kelvin" scale show the value of 273.
  • Here is the screen shot of the "Front Panel".
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • You can also see the different temperatures by using other FPGA blocks.
  • Go to Controls -> Modern -> Numeric -> Thermometer.
  • Select this block and place it on the "Front Panel".
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Change its name from "Thermometer" to "Fahrenheit".
  • Similarly select the same block again an place it on the "Front Panel".
  • Change its name from "Thermometer" to "Kelvin".
  • Change its upper limit from "100" to "300" in order to observe the results more accurately.
  • The figure below shows the above steps.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Go to the "Front Panel" and connect these blocks with "Fahrenheit" and "Kelvin" as in below figure:
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Now "Run" the program and change the value of the "Celsius" scale.
  • You can see the change in the temperature on both "Fahrenheit" and "Kelvin" scale. Red color shows the temperature.
  • Here is the screen shot of the above steps.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • You can observe the temperature on "Gauge".
  • Go to the Controls -> Modern -> Numeric -> Gauge.
  • The figure below shows the gauge selection:
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
 
  • Select this block and place it on the "Front Panel".
  • Change its name from "Gauge" to "Fahrenheit".
  • Similarly select another block and change its name from "Gauge" to "Kelvin".
  • Change its range from "100" to "300".
  • The figure below illustrates all of the above steps.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Go to the "block Diagram" window and connect these blocks with "Fahrenheit" and "Kelvin".
  • Here is the screen shot of the above step.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Now, go to the "Front Panel".
  • Run the program and change the value of the "Celsius" scale.
  • You can see the corresponding changes on both the blocks.
  • The figure below elaborate all of the above steps.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • This is the temperature conversion program from the "Celsius" scale to both the "Fahrenheit" and the "Kelvin".
  • If you want, that your program should continue to run until you terminate it, "For Loop" is helpful in this condition.
  • Go to the "Block Diagram" window and press "Right Click".
  • Go to Functions -> Programming -> Structures -> For Loop.
  • The figure below illustrates the above steps:
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Select this block and place it on the "Block Diagram" window.
  • Place the complete program inside this loop as shown below
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Go to the bottom right button and go to Create -> Control as shown below.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Complete output of the system is shown below.
Temperature conversion in LabVIEW 2015, Temperature conversion in LabVIEW, Celsius to Fahrenheit conversion, Simple temperature conversion in NI LabVIEW, How to make temperature conversion program in LabVIEW, Make temperature conversion in LabVIEW 2015
  • Here's the video demonstration of this Temperature Conversion Project in LabView, it will explain How to use this simulation:
That's all from the tutorial "Temperature Conversion in LabVIEW. I hope you enjoyed this tutorial. I will share few more LabView Tutorials soon. Till then, take care :)