当前位置:首页 > 技术知识 > 正文内容

伺服系统基本组成单元_伺服系统结构组成

maynowei6个月前 (08-23)技术知识60

什么是伺服系统?该系统的主要组成部件有哪些?

维基百科有相关的介绍,

The Meaning of Servo System

Servo is the abbreviation of ServoMechanism, which comes from Greece, and its meaning is slave. As the name suggests, it means that the system follows external instructions to perform the desired movement, and the movement elements include position, speed, torque and other quantities.

Servo是ServoMechanism的缩写,来源于希腊语,意思是奴隶。顾名思义,是指系统按照外界指令进行所需的运动,运动指令包括位置、速度、扭矩或其他的控制量

一个伺服系统的构成通常包含受控体(plant)致动器(actuator)传感器(sensor)控制器(controller)等几个部分。

伺服控制系统的基本组成,

参考链接:

https://medium.com/@m.stepperonline/what-is-a-servo-system-brief-introduction-19c055b68709

科尔摩根在自己网站的一篇博客中提到了伺服系统

In its basic form, a servo system consists of an actuator (the muscle), a control device (the brain), and a feedback element (the senses). In the automation world, while the muscle can be a variety of mechanisms, it is most likely represented by a servo motor. The brain can also be represented by a variety of elements but is typically a motion controller or servo drive. The sense provides feedback information to the brain through a current sensor and/or an encoder, resolver, or even a vision system.

参考链接

https://www.kollmorgen.com/en-us/blogs/what-are-basic-elements-servo-system

因此伺服系统,基本组成包括驱动器、伺服电机、控制器、反馈装置(传感器)以及被控负载

参考链接:

http://www.wiki-kollmorgen.eu/wiki/DanMoBilder/file/s300s700help/reference/overview_servo_drives.htm

相关文章

网络安全常用术语(网络安全常用术语介绍)

黑客帽子之分白帽白帽:亦称白帽黑客、白帽子黑客,是指那些专门研究或者从事网络、计算机技术防御的人,他们通常受雇于各大公司,是维护世界网络、计算机安全的主要力量。很多白帽还受雇于公司,对产品进行模拟黑客...

打通 JAVA 与内核系列之 一 ReentrantLock 锁的实现原理

写JAVA代码的同学都知道,JAVA里的锁有两大类,一类是synchronized锁,一类是concurrent包里的锁(JUC锁)。其中synchronized锁是JAVA语言层面提供的能力,在此不...

C语言进阶教程:线程同步:互斥锁、条件变量与信号量

在多线程编程中,线程同步是确保数据一致性和程序正确性的关键。当多个线程需要访问共享资源时,如果缺乏适当的同步机制,就可能导致竞态条件(Race Condition)、死锁(Deadlock)等问题。本...

如何在Go中同步线程(go语言同步锁)

单线程代码已经带来头痛。添加第二个线程,就是从基础头痛升级了。解决方案?互斥锁:线程和数据的交通警察。一旦你理解了它们,线程同步就变成了第二本能,语言无关。在C++和Go中工作,我遇到过所有常见的混乱...

PL/SQL Developer连接Oracle数据库详解

序言:oracle数据库比较难搞,好不容易安装上了,但是怎么连接呢,直接在服务器里用自带的命令行操作太繁琐,所以PL/SQL Developer客户端的好处就显而易见了,今天和大家聊聊客户端具体配置方...

你可能疏忽的plsql和navicat连接Oracle注意点

在日常开发中,我们总是少不了要连接数据库,你是否遇到过填写的账号、密码、连接地址都对,但就是连接不上Oracle的情况?这里说一下其中一种连接不上Oracle的原因,这种情况简单,但很可能被疏忽。记下...