<< Chapter < Page Chapter >> Page >
Đây là giáo trình về mô hình hệ thống điều khiển tự động

Mục tiêu

Trong bài thí nghiệm này chúng ta sẽ tìm hiểu phương pháp mô hình hóa một hệ điều khiển tự động, bao gồm:

  • Hàm truyền và phương trình trạng thái của hệ thống
  • Đáp ứng vòng hở và đáp ứng vòng kín của hệ thống
  • Xây dựng bộ điều khiển PID
  • Chỉnh định thông số của bộ đỉều khiển và khảo sát đáp ứng của hệ thống.

***SORRY, THIS MEDIA TYPE IS NOT SUPPORTED.***

Hình 5.1 – Một mô hình hệ thống điều khiển tiêu biểu

Tham khảo

[1].The Mathworks Inc., Matlab Notebook User’s Guide – Control toolbox, 2003.

[2]. Phạm Văn Tấn, Bài giảng môn Cơ sở Tự động học, Bộ môn Viễn Thông và Tự động hóa, khoa Công nghệ Thông tin, Đại học Cần Thơ, 2001.

[3].Nguyễn Công Định, Phân tích và Tổng hợp các hệ thống Điều khiển bằng máy tính, NXB Khoa học và Kỹ thuật, 2002.

[4]. (External Link)

[5]. (External Link)

Thực hành

Để có thể thực hiện tốt bài thí nghiệm, sinh viên cần nắm vững các kiến thức cơ bản về Điều khiển tự động (Cơ sở tự động học). Do đó, bài này không bắt buộc đối với các sinh viên Tin học (nếu có) và các sinh viên Điện tử theo hướng Viễn thông. Trong trường hợp đó, có thể sinh viên đã thực tập bài 4 hoặc sinh viên có thể chuyển sang bài 7.

Hàm truyền và phương trình trạng thái của hệ thống

Trong điều khiển tự động, người ta thường biểu diễn một hệ thống vật lý bằng hàm truyền (transfer function) hay phương trình trạng thái (state-space equation) của nó (đối với các hệ phi tuyến, để đạt được điều này, người ta phải dùng phương pháp tuyến tính hóa từng đoạn).

Giả sử có hệ thống điều khiển tốc độ motor DC như hình vẽ 5.2 [4]. Trong đó:

J = 0.01 kgm2/s2 là moment quán tính của rotor

b = 0.1 Nms hệ số ma sát

K=Ke=Kt=0.01 Nm/Amp các hằng số sức điện động

R = 1 ohm điện trở

L = 0.5 H điện cảm

I:dòng điện chạy trong cuộn dây của motor

V: điện áp trên hai đầu cuộn dây motor – ngõ vào

: vị trí trục – ngõ ra

***SORRY, THIS MEDIA TYPE IS NOT SUPPORTED.***

Hình 5.2 – Mô hình toán một hệ điều khiển tốc độ motor DC

Phương trình vi phân mô tả hệ thống như sau:

J d 2 θ dt 2 + b dt = Ki L di dt + Ri = V K dt alignl { stack { size 12{J { {d rSup { size 8{2} } θ} over { ital "dt" rSup { size 8{2} } } } +b { {dθ} over { ital "dt"} } = ital "Ki"} {} #L { { ital "di"} over { ital "dt"} } + ital "Ri"=V - K { {dθ} over { ital "dt"} } {} } } {}

Hàm truyền: Biến đổi Laplace 2 vế của phương trình trên ta được:

s ( Js + b ) Θ ( s ) = KI ( s ) ( Ls + R ) I ( s ) = V Ks Θ ( s ) alignl { stack { size 12{s \( ital "Js"+b \) Θ \( s \) =KI \( s \) } {} #size 12{ \( ital "Ls"+R \) I \( s \) =V - ital "Ks"Θ \( s \) } {} } } {}

Suy ra: ( Ls + R ) ( Js + b ) + K 2 = KV size 12{ left [ \( ital "Ls"+R \) \( ital "Js"+b \) +K rSup { size 8{2} } right ]sΘ=KV} {} hay θ V = K ( Ls + R ) ( Js + b ) + K 2 size 12{ { { {θ} cSup { size 8{ cdot } } } over {V} } = { {K} over { \( ital "Ls"+R \) \( ital "Js"+b \) +K rSup { size 8{2} } } } } {}

Biểu diễn hàm truyền này trong Matlab ta thực hiện như sau (sinh viên nên lưu thành file.m):

>>J=0.01;

>>b=0.1;

>>K=0.01;

>>R=1;

>>L=0.5;

>>num=K;% tử số của hàm truyền

>>den=[(J*L) ((J*R)+(L*b)) ((b*R)+K^2)];% mẫu số hàm truyền

>>hamtruyen = tf(num,den)

 Đáp ứng bước vòng hở:

>>step(num,den)% hoac

>>step(hamtruyen)

 Đáp ứng xung vòng hở:

***SORRY, THIS MEDIA TYPE IS NOT SUPPORTED.***

>>impulse(hamtruyen)

Phương trình trạng thái: Dạng tổng quát:

X = AX + BU Y = CX + DU alignl { stack { size 12{ {X} cSup { size 8{ cdot } } =AX+"BU"} {} #Y="CX"+"DU" {} } } {}

với X là véctơ trạng thái, U là véctơ tín hiệu vào và Y là véctơ tín hiệu ra.

 Biến trạng thái và phương trình trạng thái: Từ phương trình vi phân mô tả hệ thống, nếu đặt x 1 = θ size 12{x rSub { size 8{1} } = {θ} cSup { size 8{ cdot } } } {} x 2 = i size 12{x rSub { size 8{2} } =i} {} , ta có:

x 1 = b J x 1 + K J x 2 + 0V x 2 = K L x 1 R L x 2 + 1 L V Y = x 1 + 0 x2 + 0 V alignl { stack { size 12{ {x rSub { size 8{1} } } cSup { size 8{ cdot } } = - { {b} over {J} } x rSub { size 8{1} } + { {K} over {J} } x rSub { size 8{2} } +0V} {} #{x rSub { size 8{2} } } cSup { size 8{ cdot } } = - { {K} over {L} } x rSub { size 8{1} } - { {R} over {L} } x rSub { size 8{2} } + { {1} over {L} } V {} # Y```=```````````x rSub { size 8{1} } +```0`x2```+`0``V {} } } {} hay X = b J K J K L R L X + 0 1 L V Y = 1 0 X alignl { stack { size 12{ {X} cSup { size 8{ cdot } } = left [ matrix {- { {b} over {J} } {} # { {K} over {J} } {} ## - { {K} over {L} } {} # - { {R} over {L} } {}} right ]X+ left [ matrix {0 {} ## { {1} over {L} }} right ]V} {} #Y= left [ matrix { 1 {} # 0{}} right ]X {}} } {}

 Biểu diễn phương trình trạng thái trong Matlab như sau:

>>J=0.01;

>>b=0.1;

>>K=0.01;

>>R=1;

>>L=0.5;

>>A = [-b/J K/J; -K/L -R/L];

Questions & Answers

what is defense mechanism
Chinaza Reply
what is defense mechanisms
Chinaza
I'm interested in biological psychology and cognitive psychology
Tanya Reply
what does preconceived mean
sammie Reply
physiological Psychology
Nwosu Reply
How can I develope my cognitive domain
Amanyire Reply
why is communication effective
Dakolo Reply
Communication is effective because it allows individuals to share ideas, thoughts, and information with others.
effective communication can lead to improved outcomes in various settings, including personal relationships, business environments, and educational settings. By communicating effectively, individuals can negotiate effectively, solve problems collaboratively, and work towards common goals.
it starts up serve and return practice/assessments.it helps find voice talking therapy also assessments through relaxed conversation.
miss
Every time someone flushes a toilet in the apartment building, the person begins to jumb back automatically after hearing the flush, before the water temperature changes. Identify the types of learning, if it is classical conditioning identify the NS, UCS, CS and CR. If it is operant conditioning, identify the type of consequence positive reinforcement, negative reinforcement or punishment
Wekolamo Reply
please i need answer
Wekolamo
because it helps many people around the world to understand how to interact with other people and understand them well, for example at work (job).
Manix Reply
Agreed 👍 There are many parts of our brains and behaviors, we really need to get to know. Blessings for everyone and happy Sunday!
ARC
A child is a member of community not society elucidate ?
JESSY Reply
Isn't practices worldwide, be it psychology, be it science. isn't much just a false belief of control over something the mind cannot truly comprehend?
Simon Reply
compare and contrast skinner's perspective on personality development on freud
namakula Reply
Skinner skipped the whole unconscious phenomenon and rather emphasized on classical conditioning
war
explain how nature and nurture affect the development and later the productivity of an individual.
Amesalu Reply
nature is an hereditary factor while nurture is an environmental factor which constitute an individual personality. so if an individual's parent has a deviant behavior and was also brought up in an deviant environment, observation of the behavior and the inborn trait we make the individual deviant.
Samuel
I am taking this course because I am hoping that I could somehow learn more about my chosen field of interest and due to the fact that being a PsyD really ignites my passion as an individual the more I hope to learn about developing and literally explore the complexity of my critical thinking skills
Zyryn Reply
good👍
Jonathan
and having a good philosophy of the world is like a sandwich and a peanut butter 👍
Jonathan
generally amnesi how long yrs memory loss
Kelu Reply
interpersonal relationships
Abdulfatai Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Thí nghiệm cad (computer-aided design). OpenStax CNX. Jul 29, 2009 Download for free at http://cnx.org/content/col10797/1.1
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Thí nghiệm cad (computer-aided design)' conversation and receive update notifications?

Ask