Quadratic Roots Calculation,Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
Hello friends! I hope you all will be absolutely fine and having fun. Today I am going to share my knowledge with all of you guys that how to make a simple program for Quadratic Roots Calculation in LabVIEW. Quadratic equation is a second order basic equation. It plays a vital role for a lot of mathematical problems. The answer obtained from this equation is knows as its roots (also called quadratic roots). It can not have more than two roots. Roots can be 0,1 or maximum 2 and not more than that. We can solve quadratic equation in three different ways, but in this tutorial we will focus on one of them only. Here, I am going to tell you about form and the different ways of Quadratic Roots Calculation.

Ways to Solve Quadratic Equation

The quadratic equation is of the form ax²+bx+c. Where "x" is unknown variable and we have to find it. "a", "b" and "c" are known as the constants of quadratic equation. It has three different ways to solve as described below.
  1. By factorization: It can be much quicker. The resulting equation are simple and easy to solve when each factor is set to "0". But his method has a lot of of limitations. Sometimes it is very difficult to solve some of the polynomials by factorization and sometimes it becomes impossible with this particular method.
  2. By completing square: It is very easy to solve when the constant "b" is even. This method includes more steps as compared to the other methods. So, it can make the calculations complicated.
  3. Using quadratic formula: It is basically a generic formula and it can solve any of the quadratic equation.
From all of the above described rules to solve a quadratic equation and to find quadratic roots, we will use only one of them which is named as "Using Quadratic Formula". In this tutorial we will design an algorithm which helps us to solve the quadratic equation and to find the quadratic roots due to its vast applications in mathematics department. The design algorithm is based only on solving the quadratic equation using quadratic formula. Because, it is a generic formula and has a capability to solve each and every quadratic equation. We will design the algorithm on Quadratic Roots Calculation in LabVIEW:

Quadratic Roots Calculation in LabVIEW

  • You can download this LabView Simulation for Quadratic Roots Calculation by clicking the below button:

Download LabView Simulation

  • Go to the "Front Panel" and press "Right Click".
  • Go to Controls-> Modern-> Numeric-> Numeric Control. You can see the different numeric block here.
Quadratic Roots Calculation,Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Select the encircled block and place it on the "Front Panel".
  • The figure below shows the selected blocks.
  • Similarly place two more blocks on the "Front Panel" and change their names as "a", "b" and "c". These are basically the coefficients of quadratic equation.
  • The figure below shows the illustration of all of the above steps.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
Selection of Numeric Indicator
  •  Now, again go to Controls-> Modern-> Numeric-> Numeric Indicator.
  • Select the encircled block and place it on the "Front Panel".
  • Similarly place two more blocks and change their names to "y", "x1" and "x2" respectively.
  • The figure below shows all of the above steps.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • In above figure "x1" and "x2" are two quadratic roots of the quadratic equation. These roots can be real as well as imaginary. It depends upon the coefficients of quadratic equation.
  • Now go to the "Block Diagram" window.
  • You can see it is looking like a figure below.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
Selection of Formula Node
  • Arrange all the block, as the above figure shows the arrangement.
  • Now, go to Functions-> Programming-> Structures-> Formula Node. You can see different structure blocks there.
  • The figure below shows the selection of the "Formula Node".
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Select the encircled one and place it on the "Font Panel".
  • The figure below shows the "Formula Node" on the "Block Diagram" window.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
 
  • Now put you cursor on inside the "Formula Node" and write the code for calculating the roots of quadratic equation.
  • Here is the screen shot of the written algorithm to find quadratic roots.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Now put your cursor on the "Formula Node" and press "Right Click", you can see a new window on you screen.
  • Go to "Add Input"  and press click.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • After clicking on this option you can see a new input is added to the "Formula Node".
  • The below shows the adjusted input.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Similarly add two more inputs and change their names to "b" and "c".
  • Make their connections with the "Numeric Controls".
  • The figure below illustrates the above steps.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Now, put your cursor on the "Formula Node" again an  press "Right Click" and go to the "Add Output".
  • Similarly add three outputs to the "Formula Node".
  • Change their names to "y", "x1" and "x2".
  • Make the connections between outputs of the "Formula Node" and "Numeric Indicator".
  • The figure below shows the illustration of all of the above steps.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
For Loop selection
  • Go to the "Block Diagram" window and press "Right Click".
  • Go to Functions-> Programming-> Structures-> For Loop. you can see different structures blocks.
  • The figures below shows the selection of "For Loop".
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Select the desired block and place it on the "Block Diagram" window.
  • The figure below shows the selected "For Loop".
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Now, place the entire program inside the "For Loop".
  • Go to the bottom right of the "For Loop" and press "Right Click" on it.
  • Go to Create->Control.  You can see a stop button is now generated.
  • The figure below shows the entire algorithm.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • The figure above shows the complete algorithm for "Calculating Quadratic Roots using NI LabVIEW".
  • Now go to "Front Panel". Here you can see the whole output of the designed algorithm.
  • "Run" the program and change the values of the quadratic coefficients, you can obtain the corresponding output.
  • The program will continue to start until you terminate it.
  • If you press the stop button then the program will terminate.
  • The figure below shows the screen shot of the complete output of the designed algorithm.
Quadratic Roots Calculation, Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
Making better External Look
  • Press "Double Click" on the "Front Panel" and start typing the name of the project.
  • Go to the upper Toolbar (18pt application form) and change the color, style and size of the text.
  • The figure below shows the illustration of all of the above steps.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Go to the "Front Panel" and press "Right Click".
  • Go to Controls-> Modern-> Decoration. You can see different "Decoration" blocks there.
Quadratic Roots Calculation,Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Select the encircled blocks and place them on the "Front Panel".
  • Arrange them in way shown in the figure below.
  • Extend the placed blocks so that you can put the whole program inside these blocks.
Quadratic Roots Calculation,Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Now select the entire program and drag it over these blocks.
  • You can see the figure below on your screen.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Now, go to the upper toolbar and perform the following steps.
  • The figure shows the steps to perform.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • Press "Move to Front" your program will appear clearly on the front side of these blocks.
  • Here is the screen shot of the above step.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
Tools Palette
  • You can use this tools to change the color of your output.
  • Go to the upper toolbar and go to View-> Tools Palette.
  • Screen shot is shown in the figure below.
 
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • When you select this option, you can see a new window on your screen.
  • Here is the scree shot of the new window appeared on the screen.
Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • You can change the color of your output according to your own choice.
  • I have changed them according to  my choice.
  • Here is the screen shot of the final output with different colors.
Quadratic Roots Calculation, Calculating quadratic roots using LabVIEW, Finding quadratic roots in LabVIEW, How to find quadratic roots in LabVIEW, How to find roots of quadratic equation using LabVIEW, Use LabVIEW to find roots of quadratic equation
  • The above figure shows the complete output of the designed algorithm.
  • Here's the video in which I have explained how to use this LabView VI:
This is all from the tutorial Quadratic Roots Calculation in LabVIEW. I hope you have enjoyed this tutorial Quadratic Roots Calculation in LabVIEW. I will explain the further details in my later tutorials so you must watch them too. Till then, take care. :)