SlideShare a Scribd company logo
1 of 68
+_
Introduction to
in 3 Hours
for Control Design and Simulation
The Virtual Instrumentation Approach
Virtual Instrumentation Applications
• Design
– Signal and Image Processing
– Embedded System Programming
• (PC, DSP, FPGA, Microcontroller)
– Simulation and Prototyping
– And more…
• Control
– Automatic Controls and Dynamic
Systems
– Mechatronics and Robotics
– And more…
• Measurements
– Circuits and Electronics
– Measurements and Instrumentation
– And more…
Design
Prototyp
e
Deploy
A single graphical development platform
Spectrum of Control Applications
Process Control
Precision Machine Control
Motion Control
Flight Control
Engine Control
Industrial Control Embedded Control
Topics Covered
A. Review: LabVIEW Environment
• Front Panel / Block Diagram
• Toolbar /Tools Palette
B. The Design Process
1. Modeling
2. Control Design
3. Simulation
4. Optimization
5. Deployment
Start » All Programs » National Instruments LabVIEW 8.2
Startup Screen:
Start from a Blank VI:
New » Blank VI
Start from an Example:
Examples » Find
Examples…
»
or
Review: Open and Run LabVIEW
Review: Creating a Virtual Instrument
• LabVIEW programs are called
Virtual Instruments or VIs.
• Each VI has two windows
– Front Panel 🡪 User Interface (UI)
• Controls = User Inputs
• Indicators = Outputs
– Block Diagram 🡪 Program Code
• Data travels on wires from controls
through functions to indicators
• Blocks execute by Dataflow
Block Diagram
Front Panel
Front Panel
Review: Front Panel Controls Palette
(Controls & Indicators)
Indicator
:
Gauge
Control:
Numeri
c
Review: Block Diagram Functions Palettes
Structure:
While
Loop
Block Diagram
Window
Front Panel
Window
Numeric
Controls
Numeric
Indicator
Review: Block Diagram Terminals
Run Button
Continuous Run Button
Abort Execution
Execution Highlighting Button
Additional Buttons on
the Diagram Toolbar
Review: Status Toolbar
Retain Wire Values Button
Step Function Buttons
• Block diagram execution
– Dependent on the flow of data
– Block diagram does NOT execute
left to right
• Node executes when data is
available to ALL input terminals
• Nodes supply data to all output
terminals when done
Review: Dataflow Programming
Review: Context Help Window
• Help»Show Context Help, press the <Ctrl+H> keys
• Hover cursor over object to update window
Additional Help
– Right-Click on the VI icon
and choose Help, or
– Choose “Detailed Help.” on
the context help window
Review: Textual Math in LabVIEW
• Integrate existing scripts with LabVIEW for faster
development
• Interactive, easy-to-use, hands-on learning environment
• Develop algorithms, explore mathematical concepts, and
analyze results using a single environment
• Freedom to choose the most effective syntax, whether
graphical or textual within one VI
Supported Math Tools:
MathScript script node MathSoft software
Mathematica software MATLAB® software
Maple software Xmath software
MATLAB ® is a registered trademark of The MathWorks, Inc.
Review: Math with the MathScript Node
• Implement equations and algorithms textually
• Input and Output variables created at the border
• Generally compatible with popular m-file script language
• Terminate statements with a semicolon to disable immediate
output
Prototype your equations in the interactive MathScript Window.
(Functions»Programming»
Structures»MathScript)
Review: The Interactive MathScript Window
• Rapidly develop and test algorithms
(LabVIEW»Tools»MathScript Window)
Output
Window
Variable
Workspace
View/Modify
Variable Contents
User Commands
m-file Script
• Share Scripts and
Variables with the Node
• View /Modify Variable
content in 1D, 2D, and 3D
Review Exercise: Introduction to LabVIEW
Objectives:
• Calculate the Acceleration given Force and Mass
• Become familiar with the LabVIEW Environment
The Design Process
1. Modeling – Identify a mathematical representation of
the plant
2. Control Design – Choose a control method and
design a controller
3. Simulation – Employ a point-by-point approach to
simulate the system timing with a solver
4. Tuning and Verification – Introduce real-world
nonlinearities, tune, and verify the control algorithm
5. Deployment – Implement the finalized control system
Step 1:
Modeling
Identify a mathematical representation of
the plant
1. Modeling – Identify a mathematical representation of
the plant
2. Control Design – Choose a control method and
design a controller
3. Simulation – Employ a point-by-point approach to
simulate the system timing with a solver
4. Tuning and Verification – Introduce real-world
nonlinearities, tune, and verify the control algorithm
5. Deployment – Implement the finalized control system
The Design Process
Create a model that describes the motor speed given an input voltage.
Why Model?
A model represents a physical system
• Inputs and outputs have real-world units
• It is often a simplification of the system’s behavior
Many types of systems can be modeled
• Mechanical systems
• Electronic circuits
• Analog and digital filters
• Thermal and fluid systems
Models can be represented in many ways
• Transfer function
• State space
• Others
Modeling with the Transfer Function
A transfer function provides a mathematical description or model for how
the Inputs and Outputs of a system are related.
In this case, the system is a motor.
•Motor input is voltage
•Motor output is angular velocity
In this case, the model of the system is derived from the physical model
(using physics). An alternative would be to measure system response to
stimulus and derive a model with LabVIEW System Identification Toolkit.
QNET DC Motor Control Trainer
The model in this course is based on the
Quanser QNET DC Motor.
• The motor is a 24 volt DC motor
• The motor is highly linear in terms of its
speed given a voltage
• We will use the Control Design Toolkit
functions to create the mathematical model
in LabVIEW
Electrical
1.
2.
3.
Mechanical
4.
5.
6.
7.
Deriving the Motor Model
Motor Diagram
Fixed Magnets
Motor Coil
Brushes
Drive Shaft
Encoder
Inertial Mass
Motor model derivation from Quanser QNET Interactive Learning Guide.
Copyright ©2005, by Quanser Inc. All rights reserved.
Motor Specifications Sheet
Symbol Description Value Unit
Motor:
Rm Motor armature resistance. 3.30 ohms
Kt Motor torque constant. 0.0280 N.m
Km Motor back-emf constant 0.0280 V/(rad/s)
Jm Moment of inertia of motor rotor 9.64e-6 kg.m2
Ml Inertial load disc mass 0.033 kg
rl Inertial load disc radius 0.0242 m
Pulse-Width Modulated Amplifier:
Vmax PWM amplifier maximum output voltage 24 V
PWM amplifier maximum output current 5 A
PWM amplifier gain 2.3 V/V
Motor model specifications from Quanser QNET Interactive Learning Guide.
Copyright ©2005, by Quanser Inc. All rights reserved.
LabVIEW Control Design Toolkit
• Construct and analyze
system models
• Design basic and advanced
control algorithms
• Simulate response of
controller designs
• Analyze control efficiency
and stability interactively
Constructing Models Graphically
• Create continuous and discrete time
models
• Models can be created symbolically
Constructing Models Textually
MathScript allows models to be
created using m-file syntax.
Exercise 1a:
Create and Display a Transfer Function
• Use physical specifications to create a plant model.
• Build a transfer function with Control Design Toolkit.
Exercise 1b:
Create and Display a Transfer Function
• Use physical specifications to create a plant model
• Build a transfer function with Control Design Toolkit
Step 2:
Control Design
Choose a control type and design a
controller
The Design Process
1. Modeling – Identify a mathematical representation of
the plant
2. Control Design – Choose a control method and
design a controller
3. Simulation – Employ a point-by-point approach to
simulate the system timing with a solver
4. Tuning and Verification – Introduce real-world
nonlinearities, tune, and verify the control algorithm
5. Deployment – Implement the finalized control system
Use feedback to control the speed of the motor in the presence of disturbances.
Control Systems
• A control system consists of a Controller model
and a Plant model.
• Control systems can be open or closed loop.
+ _
PID Control Algorithm
PID stands for Proportional, Integral, Differential
• Common algorithm for:
– Linear, Single Input Single Output (SISO)
• Uses error from feedback as control input
– Proportional: Proportional linear reaction to error
– Differential: React more when signal is changing quickly
– Integral: React when error is present over a long period of time
+ _
Setpoint θ Output θ
Constructing a PID Controller with
Control Design Toolkit
• Create a PID model in
the form of a transfer
function
• Model can then be
interconnected with
plant model
Series: A B
A
B
+
+
A
B
+
-
Parallel:
Feedback:
Control Design Model Interconnection
Graphical MathScript
Control Design Model Interconnection
(MathScript)
• Use MathScript commands
to interconnect models
• Types of interconnection:
– Series
– Parallel
– Feedback
– Append
• Connect models in series and parallel
• Create feedback loops
Control Design Model Interconnection
(Graphical)
+_
Time Response Analysis
• Parametric Time Response
• Overshoot
• Rise Time
• Steady State Error
Displaying Frequency Response and
Dynamic Characteristics Data
Control Design Analysis and Display
Perform general linear simulations in
the time domain
Analyze models in the frequency
domain
Calculate dynamic properties of a
model
Review: While Loops
• terminal counts each
iteration
• Always runs at least
once
• Runs until stop condition
is met
Exercise 2:
Construct a PID Controller
• Build a PID controller with Control Design Toolkit.
• Create a system that combines PID controller with existing
transfer function.
• View time and frequency response data.
Step 3: Simulation
Test the controller and incorporate real-
world nonlinearities
1. Modeling – Identify a mathematical representation of
the plant
2. Control Design – Choose a control method and
design a controller
3. Simulation – Employ a point-by-point approach to
simulate the system timing with a solver
4. Tuning and Verification – Introduce real-world
nonlinearities, tune, and verify the control algorithm
5. Deployment – Implement the finalized control system
The Design Process
Test the motor and controller with real-world timing and a continuous time solver.
LabVIEW Simulation Module
• Develop dynamic systems such as motor controllers and
hydraulic simulators with LabVIEW
• Implement your dynamic systems with real-time I/O using
built-in LabVIEW data acquisition functions
• Simulate linear, nonlinear, and discrete systems with a wide
array of solvers
• Deploy dynamic systems to real-time hardware with the NI
LabVIEW Real-Time Module
• Translate models from The MathWorks, Inc. Simulink® into
LabVIEW with built-in utility
The Simulation Loop
• Built in Differential Equation Solver allows continuous-time system
• Similar to a While Loop with a predefined time period
• Installed with Simulation Module
• Double-click Input Node to configure simulation parameters
• Create an indicator on the Output Node to display Simulation
errors
Input Node Main Loop Output Node
Simulation Loop Parameters
• Drag left node to show current
parameters and provide inputs for
run-time simulation configuration
• Double-click Input Node to configure
simulation parameters
Generating Simulation Input
• Simulated Signals
– Step Input
– Impulse
– Front Panel User Input
• Real World signals
– Data Acquisition Hardware
Simulations can utilize a wide variety of
signal sources:
Capturing Simulation Output
• Use the Graph Utilities
functions to plot one or more
signals
• Plots are updated as the
Simulation Loop executes
Exercise 3:
Simulate the Motor Control System
• Build a PID controller with Simulation Module.
• Create a state model that combines PID controller with existing
transfer function.
• Use different solver methods in the Simulation loop to optimize
performance.
+_
Step 4: Tuning and Verification
Tune the controller behavior to meet
design specifications in a realistic
environment
1. Modeling – Identify a mathematical representation of
the plant
2. Control Design – Choose a control method and
design a controller
3. Simulation – Employ a point-by-point approach to
simulate the system timing with a solver
4. Tuning and Verification – Introduce real-world
nonlinearities, tune, and verify the control algorithm
5. Deployment – Implement the finalized control system
The Design Process
Introduce real-world voltage limits and tune control parameters for performance.
Introducing Nonlinearities
• Sources of Nonlinearities
– Saturation
– Noise
– Friction
• Nonlinearities cause ideal
models and controllers to
behave differently in the real
world.
Nonlinearity Example
• Ideal response with linear
model in Control Design
• Same controller with saturation
added in Simulation
Introducing a saturation nonlinearity with the Simulation
Module can change the behavior of a model dramatically.
Kc = 10
Ki = 0
Kd = 1
Controller Optimization
Control Design
• Tune Controller Parameters
• Estimate Performance
Simulation
• Introduce Impairments and Nonlinearities
• Verify Performance
Controller optimization is an iterative process
Tuning your PID Controller
Tune PID controller design using the step response
• Begin with Gains set at: Kc = 1, Ki = 0, and Kd = 0
• Increase Proportional Gain (Kc) to get desired rise time
• Increase Derivative Gain (Kd) to reduce overshoot and
settling time
• Increase Integral Gain (Ki) to reduce steady-state error
if necessary
Exercise 4:
Tune the Controller
• Change Simulation loop to a continuous model
• Incorporate nonlinearities into state model.
• Tune PID parameters with a continuous input.
+_
Step 5: Deployment
Implement the finalized control
system
1. Modeling – Identify a mathematical representation of
the plant
2. Control Design – Choose a control method and
design a controller
3. Simulation – Employ a point-by-point approach to
simulate the system timing with a solver
4. Tuning and Verification – Introduce real-world
nonlinearities, tune, and verify the control algorithm
5. Deployment – Implement the finalized control system
The Design Process
Deploy the control algorithm on real hardware to control the speed of the motor.
Control System Deployment Options
Algorithms designed in LabVIEW Control Design
Toolkit and Simulation Module can be deployed
on a desktop PC, or a Real Time system.
• Desktop PC
− Program runs on Windows
− Input and Output via NI Data Acquisition device
− For example, desktop PC with PCI-6259
• Real Time System
− Program runs on a deterministic operating
system
− Input and Output via specialized devices
− For example, CompactRIO controller with
selected modules
Deployment
Moving from a simulated model to a real life model
• Replace Plant Model with Hardware I/O
• Make sure Hardware I/O timing matches Simulation
Loop timing
Exercise 5: (Optional)
Use the Controller in a Real Life System
• Replace the plant model with the real life motor.
• Test the behavior of the motor, and compare to the original plant
model.
+_
Hidden Notes Page
Where Can I Learn More?
We have only begun to explore the many opportunities for control
and simulation within LabVIEW. Learn more by visiting the following
links:
System Identification Toolkit:
http://sine.ni.com/nips/cds/view/p/lang/en/nid/13853
Control Design Toolkit:
http://sine.ni.com/nips/cds/view/p/lang/en/nid/13854
Simulation Module:
http://sine.ni.com/nips/cds/view/p/lang/en/nid/13852
LabVIEW Real-Time Module:
http://www.ni.com/realtime
Data Acquisition and Control Hardware:
http://www.ni.com/dataacquisition
CompactRIO Real-Time Platform:
http://www.ni.com/compactrio
Educational Control Partners
Quanser – www.quanser.com
– LabVIEW based curriculum and solutions
– Linear, rotary, mechatronic and specialty control experiments
– Uniquely modular, allowing multiple configurations for a wide range of experiments
Quanser QNET – 010
DC Motor Control
Quanser QNET – 011
Rotary Inverted Pendulum
3 Degree of
Freedom
Helicopter
Modular
Linear Pendulum
Educational Control Partners
Educational Control Products (ECP) – www.ecpsystems.com
– LabVIEW control templates
– Intuitive systems provide unparalleled flexibility and dynamic fidelity
– In use at over 400 universities and industrial sites world-wide
– Proven to accelerate student learning while saving instructor time
ECP Model 220
Industrial Plant
ECP Model 730
Magnetic Levitation
ECP Model 205
Torsional Plant
ECP Model 750
Gyroscope
Additional Resources
• NI Academic Controls Web
– http://www.ni.com/academic/controls
• LabVIEW Student Edition DVD with Control Design and Simulation
– http://www.academicsuperstore.com/ search: LabVIEW
– Part Number: 752412
• Connexions: Full LabVIEW Introductory Course
– www.cnx.rice.edu
– Or search for “LabVIEW basics”
• LabVIEW Certification
– LabVIEW Fundamentals Exam (free on www.ni.com/academic)
– Certified LabVIEW Associate Developer Exam (industry recognized certification )

More Related Content

Similar to Intro to LV in 3 Hours for Control and Sim 8_5.pptx

Automotive engineering design - Model Based Design
Automotive engineering design - Model Based DesignAutomotive engineering design - Model Based Design
Automotive engineering design - Model Based DesignVinayagam Mariappan
 
Incremental Queries and Transformations for Engineering Critical Systems
Incremental Queries and Transformations for Engineering Critical SystemsIncremental Queries and Transformations for Engineering Critical Systems
Incremental Queries and Transformations for Engineering Critical SystemsÁkos Horváth
 
Presentation Verification & Validation
Presentation Verification & ValidationPresentation Verification & Validation
Presentation Verification & ValidationElmar Selbach
 
IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...
IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...
IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...Daniel Varro
 
Problem-solving and design 1.pptx
Problem-solving and design 1.pptxProblem-solving and design 1.pptx
Problem-solving and design 1.pptxTadiwaMawere
 
Getting Started with Innoslate
Getting Started with InnoslateGetting Started with Innoslate
Getting Started with InnoslateElizabeth Steiner
 
Closing the Design Cycle Loop with Executable Requirements and OSLC - IBM Int...
Closing the Design Cycle Loop with Executable Requirements and OSLC - IBM Int...Closing the Design Cycle Loop with Executable Requirements and OSLC - IBM Int...
Closing the Design Cycle Loop with Executable Requirements and OSLC - IBM Int...Modelon
 
Lessons Learned from Building Machine Learning Software at Netflix
Lessons Learned from Building Machine Learning Software at NetflixLessons Learned from Building Machine Learning Software at Netflix
Lessons Learned from Building Machine Learning Software at NetflixJustin Basilico
 
learn matlab for ease Lec5
learn matlab for ease Lec5learn matlab for ease Lec5
learn matlab for ease Lec5Amba Research
 
Unit 7 verification &amp; validation
Unit 7 verification &amp; validationUnit 7 verification &amp; validation
Unit 7 verification &amp; validationraksharao
 
53_36765_ME591_2012_1__1_1_Mechatronics System Design.pdf
53_36765_ME591_2012_1__1_1_Mechatronics System Design.pdf53_36765_ME591_2012_1__1_1_Mechatronics System Design.pdf
53_36765_ME591_2012_1__1_1_Mechatronics System Design.pdfDvbRef1
 
Introduction to simulation and modeling
Introduction to simulation and modelingIntroduction to simulation and modeling
Introduction to simulation and modelingantim19
 
modelling-and-simulation-made-easy-with-simulink.pdf
modelling-and-simulation-made-easy-with-simulink.pdfmodelling-and-simulation-made-easy-with-simulink.pdf
modelling-and-simulation-made-easy-with-simulink.pdfGBBarrios
 
Hardware-Software allocation specification of IMA systems for early simulation
Hardware-Software allocation specification of IMA systems for early simulationHardware-Software allocation specification of IMA systems for early simulation
Hardware-Software allocation specification of IMA systems for early simulationÁkos Horváth
 
Automated and Scalable Solutions for Software Testing: The Essential Role of ...
Automated and Scalable Solutions for Software Testing: The Essential Role of ...Automated and Scalable Solutions for Software Testing: The Essential Role of ...
Automated and Scalable Solutions for Software Testing: The Essential Role of ...Lionel Briand
 
Making Model-Driven Verification Practical and Scalable: Experiences and Less...
Making Model-Driven Verification Practical and Scalable: Experiences and Less...Making Model-Driven Verification Practical and Scalable: Experiences and Less...
Making Model-Driven Verification Practical and Scalable: Experiences and Less...Lionel Briand
 
introduction to mechatronics
introduction to mechatronicsintroduction to mechatronics
introduction to mechatronicsBilal_11kb
 
What’s eating python performance
What’s eating python performanceWhat’s eating python performance
What’s eating python performancePiotr Przymus
 

Similar to Intro to LV in 3 Hours for Control and Sim 8_5.pptx (20)

Automotive engineering design - Model Based Design
Automotive engineering design - Model Based DesignAutomotive engineering design - Model Based Design
Automotive engineering design - Model Based Design
 
Incremental Queries and Transformations for Engineering Critical Systems
Incremental Queries and Transformations for Engineering Critical SystemsIncremental Queries and Transformations for Engineering Critical Systems
Incremental Queries and Transformations for Engineering Critical Systems
 
Presentation Verification & Validation
Presentation Verification & ValidationPresentation Verification & Validation
Presentation Verification & Validation
 
IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...
IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...
IncQuery-D: Distributed Incremental Model Queries over the Cloud: Engineerin...
 
Unit i
Unit iUnit i
Unit i
 
Problem-solving and design 1.pptx
Problem-solving and design 1.pptxProblem-solving and design 1.pptx
Problem-solving and design 1.pptx
 
Getting Started with Innoslate
Getting Started with InnoslateGetting Started with Innoslate
Getting Started with Innoslate
 
Closing the Design Cycle Loop with Executable Requirements and OSLC - IBM Int...
Closing the Design Cycle Loop with Executable Requirements and OSLC - IBM Int...Closing the Design Cycle Loop with Executable Requirements and OSLC - IBM Int...
Closing the Design Cycle Loop with Executable Requirements and OSLC - IBM Int...
 
Lessons Learned from Building Machine Learning Software at Netflix
Lessons Learned from Building Machine Learning Software at NetflixLessons Learned from Building Machine Learning Software at Netflix
Lessons Learned from Building Machine Learning Software at Netflix
 
learn matlab for ease Lec5
learn matlab for ease Lec5learn matlab for ease Lec5
learn matlab for ease Lec5
 
Unit 7 verification &amp; validation
Unit 7 verification &amp; validationUnit 7 verification &amp; validation
Unit 7 verification &amp; validation
 
Mit16 30 f10_lec01
Mit16 30 f10_lec01Mit16 30 f10_lec01
Mit16 30 f10_lec01
 
53_36765_ME591_2012_1__1_1_Mechatronics System Design.pdf
53_36765_ME591_2012_1__1_1_Mechatronics System Design.pdf53_36765_ME591_2012_1__1_1_Mechatronics System Design.pdf
53_36765_ME591_2012_1__1_1_Mechatronics System Design.pdf
 
Introduction to simulation and modeling
Introduction to simulation and modelingIntroduction to simulation and modeling
Introduction to simulation and modeling
 
modelling-and-simulation-made-easy-with-simulink.pdf
modelling-and-simulation-made-easy-with-simulink.pdfmodelling-and-simulation-made-easy-with-simulink.pdf
modelling-and-simulation-made-easy-with-simulink.pdf
 
Hardware-Software allocation specification of IMA systems for early simulation
Hardware-Software allocation specification of IMA systems for early simulationHardware-Software allocation specification of IMA systems for early simulation
Hardware-Software allocation specification of IMA systems for early simulation
 
Automated and Scalable Solutions for Software Testing: The Essential Role of ...
Automated and Scalable Solutions for Software Testing: The Essential Role of ...Automated and Scalable Solutions for Software Testing: The Essential Role of ...
Automated and Scalable Solutions for Software Testing: The Essential Role of ...
 
Making Model-Driven Verification Practical and Scalable: Experiences and Less...
Making Model-Driven Verification Practical and Scalable: Experiences and Less...Making Model-Driven Verification Practical and Scalable: Experiences and Less...
Making Model-Driven Verification Practical and Scalable: Experiences and Less...
 
introduction to mechatronics
introduction to mechatronicsintroduction to mechatronics
introduction to mechatronics
 
What’s eating python performance
What’s eating python performanceWhat’s eating python performance
What’s eating python performance
 

Recently uploaded

Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 

Recently uploaded (20)

Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 

Intro to LV in 3 Hours for Control and Sim 8_5.pptx

  • 1. +_ Introduction to in 3 Hours for Control Design and Simulation
  • 3. Virtual Instrumentation Applications • Design – Signal and Image Processing – Embedded System Programming • (PC, DSP, FPGA, Microcontroller) – Simulation and Prototyping – And more… • Control – Automatic Controls and Dynamic Systems – Mechatronics and Robotics – And more… • Measurements – Circuits and Electronics – Measurements and Instrumentation – And more… Design Prototyp e Deploy A single graphical development platform
  • 4. Spectrum of Control Applications Process Control Precision Machine Control Motion Control Flight Control Engine Control Industrial Control Embedded Control
  • 5. Topics Covered A. Review: LabVIEW Environment • Front Panel / Block Diagram • Toolbar /Tools Palette B. The Design Process 1. Modeling 2. Control Design 3. Simulation 4. Optimization 5. Deployment
  • 6. Start » All Programs » National Instruments LabVIEW 8.2 Startup Screen: Start from a Blank VI: New » Blank VI Start from an Example: Examples » Find Examples… » or Review: Open and Run LabVIEW
  • 7. Review: Creating a Virtual Instrument • LabVIEW programs are called Virtual Instruments or VIs. • Each VI has two windows – Front Panel 🡪 User Interface (UI) • Controls = User Inputs • Indicators = Outputs – Block Diagram 🡪 Program Code • Data travels on wires from controls through functions to indicators • Blocks execute by Dataflow Block Diagram Front Panel
  • 8. Front Panel Review: Front Panel Controls Palette (Controls & Indicators) Indicator : Gauge Control: Numeri c
  • 9. Review: Block Diagram Functions Palettes Structure: While Loop
  • 11. Run Button Continuous Run Button Abort Execution Execution Highlighting Button Additional Buttons on the Diagram Toolbar Review: Status Toolbar Retain Wire Values Button Step Function Buttons
  • 12. • Block diagram execution – Dependent on the flow of data – Block diagram does NOT execute left to right • Node executes when data is available to ALL input terminals • Nodes supply data to all output terminals when done Review: Dataflow Programming
  • 13. Review: Context Help Window • Help»Show Context Help, press the <Ctrl+H> keys • Hover cursor over object to update window Additional Help – Right-Click on the VI icon and choose Help, or – Choose “Detailed Help.” on the context help window
  • 14. Review: Textual Math in LabVIEW • Integrate existing scripts with LabVIEW for faster development • Interactive, easy-to-use, hands-on learning environment • Develop algorithms, explore mathematical concepts, and analyze results using a single environment • Freedom to choose the most effective syntax, whether graphical or textual within one VI Supported Math Tools: MathScript script node MathSoft software Mathematica software MATLAB® software Maple software Xmath software MATLAB ® is a registered trademark of The MathWorks, Inc.
  • 15. Review: Math with the MathScript Node • Implement equations and algorithms textually • Input and Output variables created at the border • Generally compatible with popular m-file script language • Terminate statements with a semicolon to disable immediate output Prototype your equations in the interactive MathScript Window. (Functions»Programming» Structures»MathScript)
  • 16. Review: The Interactive MathScript Window • Rapidly develop and test algorithms (LabVIEW»Tools»MathScript Window) Output Window Variable Workspace View/Modify Variable Contents User Commands m-file Script • Share Scripts and Variables with the Node • View /Modify Variable content in 1D, 2D, and 3D
  • 17. Review Exercise: Introduction to LabVIEW Objectives: • Calculate the Acceleration given Force and Mass • Become familiar with the LabVIEW Environment
  • 18. The Design Process 1. Modeling – Identify a mathematical representation of the plant 2. Control Design – Choose a control method and design a controller 3. Simulation – Employ a point-by-point approach to simulate the system timing with a solver 4. Tuning and Verification – Introduce real-world nonlinearities, tune, and verify the control algorithm 5. Deployment – Implement the finalized control system
  • 19. Step 1: Modeling Identify a mathematical representation of the plant
  • 20. 1. Modeling – Identify a mathematical representation of the plant 2. Control Design – Choose a control method and design a controller 3. Simulation – Employ a point-by-point approach to simulate the system timing with a solver 4. Tuning and Verification – Introduce real-world nonlinearities, tune, and verify the control algorithm 5. Deployment – Implement the finalized control system The Design Process Create a model that describes the motor speed given an input voltage.
  • 21. Why Model? A model represents a physical system • Inputs and outputs have real-world units • It is often a simplification of the system’s behavior Many types of systems can be modeled • Mechanical systems • Electronic circuits • Analog and digital filters • Thermal and fluid systems Models can be represented in many ways • Transfer function • State space • Others
  • 22. Modeling with the Transfer Function A transfer function provides a mathematical description or model for how the Inputs and Outputs of a system are related. In this case, the system is a motor. •Motor input is voltage •Motor output is angular velocity In this case, the model of the system is derived from the physical model (using physics). An alternative would be to measure system response to stimulus and derive a model with LabVIEW System Identification Toolkit.
  • 23. QNET DC Motor Control Trainer The model in this course is based on the Quanser QNET DC Motor. • The motor is a 24 volt DC motor • The motor is highly linear in terms of its speed given a voltage • We will use the Control Design Toolkit functions to create the mathematical model in LabVIEW
  • 24. Electrical 1. 2. 3. Mechanical 4. 5. 6. 7. Deriving the Motor Model Motor Diagram Fixed Magnets Motor Coil Brushes Drive Shaft Encoder Inertial Mass Motor model derivation from Quanser QNET Interactive Learning Guide. Copyright ©2005, by Quanser Inc. All rights reserved.
  • 25. Motor Specifications Sheet Symbol Description Value Unit Motor: Rm Motor armature resistance. 3.30 ohms Kt Motor torque constant. 0.0280 N.m Km Motor back-emf constant 0.0280 V/(rad/s) Jm Moment of inertia of motor rotor 9.64e-6 kg.m2 Ml Inertial load disc mass 0.033 kg rl Inertial load disc radius 0.0242 m Pulse-Width Modulated Amplifier: Vmax PWM amplifier maximum output voltage 24 V PWM amplifier maximum output current 5 A PWM amplifier gain 2.3 V/V Motor model specifications from Quanser QNET Interactive Learning Guide. Copyright ©2005, by Quanser Inc. All rights reserved.
  • 26. LabVIEW Control Design Toolkit • Construct and analyze system models • Design basic and advanced control algorithms • Simulate response of controller designs • Analyze control efficiency and stability interactively
  • 27. Constructing Models Graphically • Create continuous and discrete time models • Models can be created symbolically
  • 28. Constructing Models Textually MathScript allows models to be created using m-file syntax.
  • 29. Exercise 1a: Create and Display a Transfer Function • Use physical specifications to create a plant model. • Build a transfer function with Control Design Toolkit.
  • 30. Exercise 1b: Create and Display a Transfer Function • Use physical specifications to create a plant model • Build a transfer function with Control Design Toolkit
  • 31. Step 2: Control Design Choose a control type and design a controller
  • 32. The Design Process 1. Modeling – Identify a mathematical representation of the plant 2. Control Design – Choose a control method and design a controller 3. Simulation – Employ a point-by-point approach to simulate the system timing with a solver 4. Tuning and Verification – Introduce real-world nonlinearities, tune, and verify the control algorithm 5. Deployment – Implement the finalized control system Use feedback to control the speed of the motor in the presence of disturbances.
  • 33. Control Systems • A control system consists of a Controller model and a Plant model. • Control systems can be open or closed loop. + _
  • 34. PID Control Algorithm PID stands for Proportional, Integral, Differential • Common algorithm for: – Linear, Single Input Single Output (SISO) • Uses error from feedback as control input – Proportional: Proportional linear reaction to error – Differential: React more when signal is changing quickly – Integral: React when error is present over a long period of time + _ Setpoint θ Output θ
  • 35. Constructing a PID Controller with Control Design Toolkit • Create a PID model in the form of a transfer function • Model can then be interconnected with plant model
  • 36. Series: A B A B + + A B + - Parallel: Feedback: Control Design Model Interconnection Graphical MathScript
  • 37. Control Design Model Interconnection (MathScript) • Use MathScript commands to interconnect models • Types of interconnection: – Series – Parallel – Feedback – Append
  • 38. • Connect models in series and parallel • Create feedback loops Control Design Model Interconnection (Graphical) +_
  • 39. Time Response Analysis • Parametric Time Response • Overshoot • Rise Time • Steady State Error
  • 40. Displaying Frequency Response and Dynamic Characteristics Data
  • 41. Control Design Analysis and Display Perform general linear simulations in the time domain Analyze models in the frequency domain Calculate dynamic properties of a model
  • 42. Review: While Loops • terminal counts each iteration • Always runs at least once • Runs until stop condition is met
  • 43. Exercise 2: Construct a PID Controller • Build a PID controller with Control Design Toolkit. • Create a system that combines PID controller with existing transfer function. • View time and frequency response data.
  • 44. Step 3: Simulation Test the controller and incorporate real- world nonlinearities
  • 45. 1. Modeling – Identify a mathematical representation of the plant 2. Control Design – Choose a control method and design a controller 3. Simulation – Employ a point-by-point approach to simulate the system timing with a solver 4. Tuning and Verification – Introduce real-world nonlinearities, tune, and verify the control algorithm 5. Deployment – Implement the finalized control system The Design Process Test the motor and controller with real-world timing and a continuous time solver.
  • 46. LabVIEW Simulation Module • Develop dynamic systems such as motor controllers and hydraulic simulators with LabVIEW • Implement your dynamic systems with real-time I/O using built-in LabVIEW data acquisition functions • Simulate linear, nonlinear, and discrete systems with a wide array of solvers • Deploy dynamic systems to real-time hardware with the NI LabVIEW Real-Time Module • Translate models from The MathWorks, Inc. Simulink® into LabVIEW with built-in utility
  • 47. The Simulation Loop • Built in Differential Equation Solver allows continuous-time system • Similar to a While Loop with a predefined time period • Installed with Simulation Module • Double-click Input Node to configure simulation parameters • Create an indicator on the Output Node to display Simulation errors Input Node Main Loop Output Node
  • 48. Simulation Loop Parameters • Drag left node to show current parameters and provide inputs for run-time simulation configuration • Double-click Input Node to configure simulation parameters
  • 49. Generating Simulation Input • Simulated Signals – Step Input – Impulse – Front Panel User Input • Real World signals – Data Acquisition Hardware Simulations can utilize a wide variety of signal sources:
  • 50. Capturing Simulation Output • Use the Graph Utilities functions to plot one or more signals • Plots are updated as the Simulation Loop executes
  • 51. Exercise 3: Simulate the Motor Control System • Build a PID controller with Simulation Module. • Create a state model that combines PID controller with existing transfer function. • Use different solver methods in the Simulation loop to optimize performance. +_
  • 52. Step 4: Tuning and Verification Tune the controller behavior to meet design specifications in a realistic environment
  • 53. 1. Modeling – Identify a mathematical representation of the plant 2. Control Design – Choose a control method and design a controller 3. Simulation – Employ a point-by-point approach to simulate the system timing with a solver 4. Tuning and Verification – Introduce real-world nonlinearities, tune, and verify the control algorithm 5. Deployment – Implement the finalized control system The Design Process Introduce real-world voltage limits and tune control parameters for performance.
  • 54. Introducing Nonlinearities • Sources of Nonlinearities – Saturation – Noise – Friction • Nonlinearities cause ideal models and controllers to behave differently in the real world.
  • 55. Nonlinearity Example • Ideal response with linear model in Control Design • Same controller with saturation added in Simulation Introducing a saturation nonlinearity with the Simulation Module can change the behavior of a model dramatically. Kc = 10 Ki = 0 Kd = 1
  • 56. Controller Optimization Control Design • Tune Controller Parameters • Estimate Performance Simulation • Introduce Impairments and Nonlinearities • Verify Performance Controller optimization is an iterative process
  • 57. Tuning your PID Controller Tune PID controller design using the step response • Begin with Gains set at: Kc = 1, Ki = 0, and Kd = 0 • Increase Proportional Gain (Kc) to get desired rise time • Increase Derivative Gain (Kd) to reduce overshoot and settling time • Increase Integral Gain (Ki) to reduce steady-state error if necessary
  • 58. Exercise 4: Tune the Controller • Change Simulation loop to a continuous model • Incorporate nonlinearities into state model. • Tune PID parameters with a continuous input. +_
  • 59. Step 5: Deployment Implement the finalized control system
  • 60. 1. Modeling – Identify a mathematical representation of the plant 2. Control Design – Choose a control method and design a controller 3. Simulation – Employ a point-by-point approach to simulate the system timing with a solver 4. Tuning and Verification – Introduce real-world nonlinearities, tune, and verify the control algorithm 5. Deployment – Implement the finalized control system The Design Process Deploy the control algorithm on real hardware to control the speed of the motor.
  • 61. Control System Deployment Options Algorithms designed in LabVIEW Control Design Toolkit and Simulation Module can be deployed on a desktop PC, or a Real Time system. • Desktop PC − Program runs on Windows − Input and Output via NI Data Acquisition device − For example, desktop PC with PCI-6259 • Real Time System − Program runs on a deterministic operating system − Input and Output via specialized devices − For example, CompactRIO controller with selected modules
  • 62. Deployment Moving from a simulated model to a real life model • Replace Plant Model with Hardware I/O • Make sure Hardware I/O timing matches Simulation Loop timing
  • 63. Exercise 5: (Optional) Use the Controller in a Real Life System • Replace the plant model with the real life motor. • Test the behavior of the motor, and compare to the original plant model. +_
  • 65. Where Can I Learn More? We have only begun to explore the many opportunities for control and simulation within LabVIEW. Learn more by visiting the following links: System Identification Toolkit: http://sine.ni.com/nips/cds/view/p/lang/en/nid/13853 Control Design Toolkit: http://sine.ni.com/nips/cds/view/p/lang/en/nid/13854 Simulation Module: http://sine.ni.com/nips/cds/view/p/lang/en/nid/13852 LabVIEW Real-Time Module: http://www.ni.com/realtime Data Acquisition and Control Hardware: http://www.ni.com/dataacquisition CompactRIO Real-Time Platform: http://www.ni.com/compactrio
  • 66. Educational Control Partners Quanser – www.quanser.com – LabVIEW based curriculum and solutions – Linear, rotary, mechatronic and specialty control experiments – Uniquely modular, allowing multiple configurations for a wide range of experiments Quanser QNET – 010 DC Motor Control Quanser QNET – 011 Rotary Inverted Pendulum 3 Degree of Freedom Helicopter Modular Linear Pendulum
  • 67. Educational Control Partners Educational Control Products (ECP) – www.ecpsystems.com – LabVIEW control templates – Intuitive systems provide unparalleled flexibility and dynamic fidelity – In use at over 400 universities and industrial sites world-wide – Proven to accelerate student learning while saving instructor time ECP Model 220 Industrial Plant ECP Model 730 Magnetic Levitation ECP Model 205 Torsional Plant ECP Model 750 Gyroscope
  • 68. Additional Resources • NI Academic Controls Web – http://www.ni.com/academic/controls • LabVIEW Student Edition DVD with Control Design and Simulation – http://www.academicsuperstore.com/ search: LabVIEW – Part Number: 752412 • Connexions: Full LabVIEW Introductory Course – www.cnx.rice.edu – Or search for “LabVIEW basics” • LabVIEW Certification – LabVIEW Fundamentals Exam (free on www.ni.com/academic) – Certified LabVIEW Associate Developer Exam (industry recognized certification )