SlideShare uma empresa Scribd logo
1 de 36
PID Controllers
and introduction to
PLC systems
By
Dr. Palitha Dassanayake
Control Systems
Speed
Time
Motion
profile
Micro-processor control system
Fly ball governor
Steam
valve
James watt
(speed increases,
Steam value closes)
Control Systems in early days
Input- Voltage
Output-Rotated angle
Control System
Voltage
Voltage
Amplifier
Telephone line
Amplifications Amplifications Amplifications
Telephone line amplification problem
noise noise noise noise
noise
With the amplification, noise gets increased and increased…
Input
voltage(a) Amplifier
gain
Output
voltage
Amplifier
gain
Attenuator
circuit
Input
voltage
Output
voltage(b)
_
+
-
Feedback
gain
+
Reference
input(b) Controller
Controlled
variable
Process
Actuating
signal
Reference
input
(a)
Controller
Controlled
variable
Process
Actuating
signal
Open Loop control system
Closed Loop control system
PID controller
P= proportional
I=Integral
D=Derivative
90%-95% closed loop automatic
controllers are PID
Automatic Controller
-
Sensor
+
Reference
input r(t)
Controller PlantActuator
Output y(t)
Step input and on and
off controller
r(t)
Time
A
If y(t)<r(t) ON
If y(t)>r(t) OFF
Time
y(t)
P controllers
_
Sensor
feedback
+
Set value r(t) Output y(t)
P process
Steady State Error ?
Transient Response
Time
u(t)
SSE
)()(()( trtykptu −=
P controller outputs
Input r(t)= step input value 2
s+
=
1
1
functionTransfer
Kp=1
Kp=5
Steady state error decreases with kp for this particular application
Plant
Reducing S.S.E
_
+
Set value Output
P
+
+
plant
U(t)
We may place an external input,
but different set points have different SSE ?
PI Controller
))()(()( tytrte −=
P
_
+
Set value Output
I
+
+
process
U(t)
e(t)
∫+= dttekitekptu )(*)(*)(
Integral part
PI controller output
Step input value =2 Kp=5
KI=1
KI=5
S.S.E exists
S.S.E is zero
KI=20 There is an overshoot
PID controllers
P
_
+
Set value Output
I
D
+
+
+
plant
dt
tde
kddttekitekptu
)(
*)(*)(*)( ++= ∫
))()(()( tytrte −=
PID controller output
Step input value =2 Kp=5 and KI=20
KD=1
KD=10
S.S.E still exists
Transient response is also less
PID controller output
contd. Kp=5, KI=20 and KD=10
input r(t)- pulse input
output y(t)
Tuning of PID
controllers
PID values are different from one system to another
It is required to tune a P, PD, PI or PID controller
Basic industrial approaches
 Design a stable tuned PID controller after modeling
 Develop a simulator after modeling and tune
observing the simulator result
 On site tuning
 Combination of all three approaches
PLC is similar to using a computer but has certain features
that are specific to their use as controllers.
These are:
1. They are rugged and designed to withstand vibrations,
temperature, humidity and noise.
2. The interfacing for inputs and outputs is inside the controller.
3. They are easily programmed and have an easily understood
programming language. Programming is primary concerned
with logic and switching operations.
Programmable Logic Controllers
Data bus
Address bus
Control bus
CPU
clock
Memory
Input/
Output
unit
Program
panel
Input
channels
Output
channels
Architecture of a Programmable Logic Controller
Normally opened contact
Normally closed contact
AND operation
LADDER DIAGRAMS
OR operation
Output
Special Instruction
I0.0 Q0.0
I0.1 Q0.1
I0.0 I0.1 Q0.0
Ladder diagram using S7 200
Q0.0I0.0
I0.1
Setting and Resetting an output
I0.0 Q0.0
I0.1 Q0.0
S
R
Setting and Resetting a Memory
I0.0 M0.0
S
I0.1 M0.0
R
Memory
Input Register I
Type Symbol Example
Bit I0.1
Byte IB4
Output Register O
Type Symbol Example
Bit Q1.1
Byte QB5
Variable Memory V
Store intermediate results performed by the
control logic in a program
Type Symbol Example
Bit V10.1
Byte VW100
Bit Memory M
Store intermediate status of an operation or
other control information
Type Symbol Example
Bit M26.7
Byte MD20
Two types of timers available
1. On Delay Timer
2. Off Delay Timer
On Delay Timer (T33- steps of 10ms)
I0.0 T33
2000+
IN
PT
TON
Q
ET
T33 Q0.0
Time
onSwitch
ON
Bulb
OFF
20s
offSwitch
Off Delay Timer (T33- steps of 10ms)
I0.0 T33
1500+
IN
PT
TOF
Q
ET
T33 Q0.0
Time
onSwitch
ON
Bulb
OFF
15s
offSwitch
Counters
I0.0 C48
5+
UP
R
C48 Q0.0
PV
I0.1
Logo Programming
&
I1
I2
Q1
AND Operation
I1
I2
Q1
OR Operation
1≤
S7 200 Programming Techniques
1. Ladder Programming
2. Statement Lists (SLT)
3. Function Block Diagrams
Statement List (SLT)
This programming method introduces a list of statements.
Let’s look at the basic programming using SLT.
Statement List (SLT)
This programming method introduces a list of statements.
Let’s look at the basic programming using SLT.
AND Operation
LD I I0.0 // Read I0.0
A I I0.1 //and with I0.1
= Q0.0 //write the value to Q0.0
Statement List (SLT)
This programming method introduces a list of statements.
Let’s look at the basic programming using SLT.
AND Operation
LD I I0.0 // Read I0.0
A I I0.1 //and with I0.1
= Q0.0 //write the value to Q0.0
OR Operation
LD I I0.0 // Read I0.0
O I I0.1 //or with I0.1
= Q0.0 //write the value to Q0.0
On delay Timer
Network 1
LD I0.0
TON T33,+2000
Network 2
LD T33
= Q0.0
Network 1
LD I0.0
LD I0.1
CTU C48,+5
Network 2
LD C48
= Q0.0
Timers Counters
I0.0
I0.1
AND
Q0.0
Functional Block Diagrams
I0.0
I0.1
OR
Q0.0
END

Mais conteúdo relacionado

Mais procurados

Timer counter in arm7(lpc2148)
Timer counter in arm7(lpc2148)Timer counter in arm7(lpc2148)
Timer counter in arm7(lpc2148)Aarav Soni
 
Analog To Digital Conversion (ADC) Programming in LPC2148
Analog To Digital Conversion (ADC) Programming in LPC2148Analog To Digital Conversion (ADC) Programming in LPC2148
Analog To Digital Conversion (ADC) Programming in LPC2148Omkar Rane
 
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9Irfan Qadoos
 
Arduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motorArduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motorAmarjeetsingh Thakur
 
Signal Handling in Linux
Signal Handling in LinuxSignal Handling in Linux
Signal Handling in LinuxTushar B Kute
 
Maxon epos2 feature-comparison-chart
Maxon epos2 feature-comparison-chartMaxon epos2 feature-comparison-chart
Maxon epos2 feature-comparison-chartElectromate
 
Galil ioc7007 catalog
Galil ioc7007 catalogGalil ioc7007 catalog
Galil ioc7007 catalogElectromate
 
Microcontroller Instruction Set atmel
Microcontroller Instruction Set atmelMicrocontroller Instruction Set atmel
Microcontroller Instruction Set atmelRuderocker Billy
 
PIC timer programming
PIC timer programmingPIC timer programming
PIC timer programmingAkash Puri
 
Interrupts for PIC18
Interrupts for PIC18Interrupts for PIC18
Interrupts for PIC18raosandy11
 

Mais procurados (18)

Timer counter in arm7(lpc2148)
Timer counter in arm7(lpc2148)Timer counter in arm7(lpc2148)
Timer counter in arm7(lpc2148)
 
Lecture7
Lecture7Lecture7
Lecture7
 
Analog To Digital Conversion (ADC) Programming in LPC2148
Analog To Digital Conversion (ADC) Programming in LPC2148Analog To Digital Conversion (ADC) Programming in LPC2148
Analog To Digital Conversion (ADC) Programming in LPC2148
 
Intrerfacing i
Intrerfacing iIntrerfacing i
Intrerfacing i
 
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
 
input
inputinput
input
 
Easy testing for smps led driver
Easy testing for smps led driverEasy testing for smps led driver
Easy testing for smps led driver
 
Arduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motorArduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motor
 
Signal Handling in Linux
Signal Handling in LinuxSignal Handling in Linux
Signal Handling in Linux
 
Maxon epos2 feature-comparison-chart
Maxon epos2 feature-comparison-chartMaxon epos2 feature-comparison-chart
Maxon epos2 feature-comparison-chart
 
PITOPS Industrial Process Control Software
PITOPS Industrial Process Control SoftwarePITOPS Industrial Process Control Software
PITOPS Industrial Process Control Software
 
Galil ioc7007 catalog
Galil ioc7007 catalogGalil ioc7007 catalog
Galil ioc7007 catalog
 
Microcontroller Instruction Set atmel
Microcontroller Instruction Set atmelMicrocontroller Instruction Set atmel
Microcontroller Instruction Set atmel
 
PIC timer programming
PIC timer programmingPIC timer programming
PIC timer programming
 
Interrupts for PIC18
Interrupts for PIC18Interrupts for PIC18
Interrupts for PIC18
 
8253
82538253
8253
 
Lecture 3a analog to digital converter
Lecture 3a   analog to digital converterLecture 3a   analog to digital converter
Lecture 3a analog to digital converter
 
Signal
SignalSignal
Signal
 

Semelhante a Automationcontrol3

Plc presentation
Plc presentationPlc presentation
Plc presentationNits Sharma
 
Advanced motion controls dzcantu 020b080
Advanced motion controls dzcantu 020b080Advanced motion controls dzcantu 020b080
Advanced motion controls dzcantu 020b080Electromate
 
Advanced motion controls dzxcante 040l080
Advanced motion controls dzxcante 040l080Advanced motion controls dzxcante 040l080
Advanced motion controls dzxcante 040l080Electromate
 
CIVIL Industrial Automation PPT.pptx
CIVIL Industrial Automation PPT.pptxCIVIL Industrial Automation PPT.pptx
CIVIL Industrial Automation PPT.pptxdontknow288849
 
ie450pp10.ppt
ie450pp10.pptie450pp10.ppt
ie450pp10.pptpouyan6
 
PLC, or Programmable Logic Controller, is a specialized industrial computer u...
PLC, or Programmable Logic Controller, is a specialized industrial computer u...PLC, or Programmable Logic Controller, is a specialized industrial computer u...
PLC, or Programmable Logic Controller, is a specialized industrial computer u...Govindarajv11
 
PLC (PROGRAMMABLE LOGIC CONTROLLER)
PLC (PROGRAMMABLE LOGIC CONTROLLER)PLC (PROGRAMMABLE LOGIC CONTROLLER)
PLC (PROGRAMMABLE LOGIC CONTROLLER)navalip331
 
Plc Siemens Training Notes
Plc Siemens Training NotesPlc Siemens Training Notes
Plc Siemens Training Notesplc_course
 

Semelhante a Automationcontrol3 (20)

Plc presentation
Plc presentationPlc presentation
Plc presentation
 
Advanced motion controls dzcantu 020b080
Advanced motion controls dzcantu 020b080Advanced motion controls dzcantu 020b080
Advanced motion controls dzcantu 020b080
 
First
First First
First
 
Advanced motion controls dzxcante 040l080
Advanced motion controls dzxcante 040l080Advanced motion controls dzxcante 040l080
Advanced motion controls dzxcante 040l080
 
CIVIL Industrial Automation PPT.pptx
CIVIL Industrial Automation PPT.pptxCIVIL Industrial Automation PPT.pptx
CIVIL Industrial Automation PPT.pptx
 
ie450pp10.ppt
ie450pp10.pptie450pp10.ppt
ie450pp10.ppt
 
ie450pp10.ppt
ie450pp10.pptie450pp10.ppt
ie450pp10.ppt
 
PLC.ppt
PLC.pptPLC.ppt
PLC.ppt
 
PLC good.ppt
PLC good.pptPLC good.ppt
PLC good.ppt
 
ie450pp10.ppt
ie450pp10.pptie450pp10.ppt
ie450pp10.ppt
 
ie450pp10.ppt
ie450pp10.pptie450pp10.ppt
ie450pp10.ppt
 
ie450pp10.ppt
ie450pp10.pptie450pp10.ppt
ie450pp10.ppt
 
PLC, or Programmable Logic Controller, is a specialized industrial computer u...
PLC, or Programmable Logic Controller, is a specialized industrial computer u...PLC, or Programmable Logic Controller, is a specialized industrial computer u...
PLC, or Programmable Logic Controller, is a specialized industrial computer u...
 
PLC (PROGRAMMABLE LOGIC CONTROLLER)
PLC (PROGRAMMABLE LOGIC CONTROLLER)PLC (PROGRAMMABLE LOGIC CONTROLLER)
PLC (PROGRAMMABLE LOGIC CONTROLLER)
 
ie450pp10.ppt
ie450pp10.pptie450pp10.ppt
ie450pp10.ppt
 
plc1.ppt
plc1.pptplc1.ppt
plc1.ppt
 
PLC Basics
PLC BasicsPLC Basics
PLC Basics
 
PLC
PLCPLC
PLC
 
Plc Siemens Training Notes
Plc Siemens Training NotesPlc Siemens Training Notes
Plc Siemens Training Notes
 
PLC Intro
PLC IntroPLC Intro
PLC Intro
 

Último

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxJisc
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfDr Vijay Vishwakarma
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 

Último (20)

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 

Automationcontrol3