液位控制系统中英⽂对照外⽂翻译⽂献
中英⽂对照翻译
The liquid level control system based on
dde\matlab\simulink
Process control is an important application field of automatic technology, it is to point to the level, temperature, flow control process variables, such as in metallurgy, machinery, chemical, electric power, etc can be widely used. Especially liquid level control technology in real life, played an important role in production, for example, the water supply, civil water tower if low water levels, can affect people's lives in water; Industrial enterprises with water, if the drainage water drainage or controlled properly or not, in relation to the workshop of condition; Boiler drum, if the control level boiler is too low, can make level boiler overheating, possible accident; Jing flow, liquid level control tower control accuracy and level of the craft can influence the quality of the products and the cost, etc. In these production field, are basically labor strength or the operation has certain risk nature of work, extremely prone to accidents caused by operating error, the losses, killing manufacturer. Visible, in actual production, liquid level control accuracy and control effects directly affect the factory production cost and economic benefit of saf
ety coefficient. Even equipment So, in order to ensure safety, convenient operation, you have to research the development of a d v a n c e d l e v e l c o n t r o l m e t h o d s a n d s t r a t e g i e s.
The graduation design topic is the liquid level control system based on dde\matlab\simulink\force control, Among them was controlled object for tank level, Communication mode for DDE communications , Matlab is mainly used in the simulation test ,And force control software used for modeling, This system mainly through combination of hardware and software device to achieve precise control of liquid level , In modern industry level control of important component, it influence upon production not allow to ignore, in order to ensure safety in production and the product quality and quantity, the level and perform effective control is very necessary, The following is a description of all aspects:
⼀PID controller
A proportional–integral–derivative controller (PID controller) is a generic .control loop feedback mechanism widely used in industrial control systems.
A PID controller attempts to correct the error between a measured process variable and a desired set point by calculating and then outputting a corrective action that can adjust the process accordingly.
The PID controller calculation (algorithm) involves three separate parameters; the Proportional, the Integral and Derivative values. The Proportional value determines the reaction to the current error, the Integral determines the reaction based on the sum of recent errors and the Derivative determines the reaction to the rate at which the error has been changing. The weighted sum of these three actions is used to adjust the process via a control element such as the position of a control valve or the power supply of a heating element. By "tuning" the three constants in the PID controller algorithm the PID can provide control action designed for specific process requirements. The response of the controller can be described in terms of the responsiveness of the controller to an error, the degree to which the controller overshoots the set point and the degree of system oscillation. Note that the use of the PID algorithm for control does not guarantee optimal control of the system or system stability.
Some applications may require using only one or two modes to provide the appropriate system control. This is achieved by setting the gain of undesired control outputs to zero. A PID controller will be called a PI, PD, P or I controller in the absence of the respective control actions. PI controllers are particularly common, since derivative action is very sensitive to measurement noise, and the absence of an integral value may prevent the system from reaching its target value due to the control action.
1.Control loop basics
A familiar example of a control loop is the action taken to keep one's shower water at the ideal temperature, which typically involves the mixing of two process streams, cold and hot water. The person feels the water to estimate its temperature. Based on this measurement they perform a control action: use the cold water tap to adjust the process. The person would repeat this input-output control loop, adjusting the hot water flow until the process temperature stabilized at the desired value.
Feeling the water temperature is taking a measurement of the process value or process variable (PV). The desired temperature is called the set point (SP). The output from the controller and input to the process (the tap position) is called the manipulated variable (MV). The difference between the measurement and the set point is the error (e), too hot or too cold and by how much. As a controller, one decides roughly how much to change the tap position (MV) after one determines the temperature (PV), and therefore the error. This first estimate is the equivalent of the proportional action of a PID controller. The integral action of a PID controller can be thought of as gradually adjusting the temperature when it is almost right.
Derivative action can be thought of as noticing the water temperature is getting hotter or colder, and how fast, and taking that into account when deciding how to adjust the tap,Making a change that is too large when the error is small is equivalent to a high gain controller and will lead to overshoot. If the
controller were to repeatedly make changes that were too large and repeatedly overshoot the target, this control loop would be termed unstable and the output would oscillate around the set point in either a constant, growing, or decaying sinusoid. A human would not do this because we are adaptive controllers, learning from the process history, but PID controllers do not have the ability to learn and must be set up correctly. Selecting the correct gains for effective control is known as tuning the controller.
If a controller starts from a stable state at zero error (PV = SP), then further changes by the controller will be in response to changes in other measured or unmeasured inputs to the process that impact on the process, and hence on the PV. Variables that impact on the process other than the MV are known as disturbances and generally controllers are used to reject disturbances and/or implement set point changes. Changes in feed water temperature constitute a disturbance to the shower process.
In theory, a controller can be used to control any process which has a measurable output (PV), a known ideal value for that output (SP) and an input to the process (MV) that will affect the relevant PV. Controllers are used in industry to regulate temperature, pressure, flow rate, chemical composition, speed and practically every other variable for which a measurement exists. Automobile cruise control is an example of a process which utilizes automated control.
Due to their long history, simplicity, well grounded theory and simple setup and maintenance requirements, PID controllers are the controllers of choice for many of
these applications.
2.PID controller theory
Note: This section describes the ideal parallel or non-interacting form of the PID controller. For other forms please see the Section "Alternative notation and PID forms".
The PID control scheme is named after its three correcting terms, whose sum constitutes the manipulated variable (MV). Hence:
where Pout, Iout, and Dout are the contributions to the output from the PID controller from each of the three terms, as defined below.
2.1. Proportional term
The proportional term makes a change to the output that is proportional to the current error value. The proportional response can be adjusted by multiplying the error by a constant Kp, called the proportional gain.
The proportional term is given by:
Where
Pout: Proportional output
Kp: Proportional Gain, a tuning parameter
e: Error = SP ? PV
t: Time or instantaneous time (the present)
Change of response for varying KpA high proportional gain results in a large change in the output for a given change in the error. If the proportional gain is too high, the system can become unstable (See th
e section on Loop Tuning). In contrast, a small gain results in a small output response to a large input error, and a less responsive (or sensitive) controller. If the proportional gain is too low, the control action may be too small when responding to system disturbances.
In the absence of disturbances, pure proportional control will not settle at its target value, but will retain a steady state error that is a function of the proportional gain and the process gain. Despite the steady-state offset, both tuning theory and industrial practice indicate that it is the proportional term that should contribute the bulk of the output change.
2.2.Integral term
The contribution from the integral term is proportional to both the magnitude of the error and the duration of the error. Summing the instantaneous error over time (integrating the error) gives the accumulated offset that should have been corrected previously. The accumulated error is then multiplied by the integral gain and added to the controller output. The magnitude of the contribution of the integral term to the overall control action is determined by the integral gain, Ki.
The integral term is given by:
Iout: Integral output
Ki: Integral Gain, a tuning parameter
e: Error = SP ? PV
τ: Time in the past contributing to the integral response
The integral term (when added to the proportional term) accelerates the movement of the process towards set point and eliminates the residual steady-state error that occurs with a proportional only controller. However, since the integral term is responding to accumulated errors from the past, it can cause the present value to overshoot the set point value (cross over the set point and then create a deviation in the other direction). For further notes regarding integral gain tuning and controller stability, see the section on loop tuning.
2.3 Derivative term
The rate of change of the process error is calculated by determining the slope of the error over time (i.e. its first derivative with respect to time) and multiplying this rate of change by the derivative gain Kd. The magnitude of the contribution of the derivative term to the overall control action is termed the d
erivative gain, Kd.
The derivative term is given by:
controller翻译中文Dout: Derivative output
Kd: Derivative Gain, a tuning parameter
e: Error = SP ? PV
t: Time or instantaneous time (the present)
The derivative term slows the rate of change of the controller output and this effect is most noticeable close to the controller setpoint. Hence, derivative control is
used to reduce the magnitude of the overshoot produced by the integral component and improve the combined controller-process stability. However, differentiation of a signal amplifies noise and thus this term in the controller is highly sensitive to noise in the error term, and can cause a process to become unstable if the noise and the derivative gain are sufficiently large.
2.4 Summary
The output from the three terms, the proportional, the integral and the derivative terms are summed to calculate the output of the PID controller. Defining u(t) as the controller output, the final form of the PID algorithm is:
and the tuning parameters are
Kp: Proportional Gain - Larger Kp typically means faster response since the
larger the error, the larger the Proportional term compensation. An excessively large proportional gain will lead to process instability and oscillation.
Ki: Integral Gain - Larger Ki implies steady state errors are eliminated quicker. The trade-off is larger overshoot: any negative error integrated during transient response must be integrated away by positive error before we reach steady state.
Kd: Derivative Gain - Larger Kd decreases overshoot, but slows down transient response and may lead to instability due to signal noise amplification in the differentiation of the error.
⼆Matlab Introduction
The MATLAB? environment is well suited to rapid prototyping and application development. The interactive programming environment, built-in math functions, toolboxes, editing and debugging tools, and deployment options all contribute to reducing your overall development time.
By using the built-in math functions and the many specialized functions contained within our toolboxes, MATLAB can significantly reduce the time it takes you to develop prototypes. In addition to integrated editing and debugging tools, MATLAB provides a performance profiler to help you further optimize your code when programming in MATLAB.
Building applications around complex algorithms and graphics is easier than ever
with the GUI builder, GUIDE. GUIDE was redesigned in MATLAB 6 to save you time. It offers all the drag and drop interface options you would expect, such as text boxes, radio buttons, check boxes, listboxes, sliders, pop-up menus, frames and more.
When you're ready to deploy your application, the MathWorks offers a number of different options that allow you to either convert or interface your MATLAB application to other environments including C/C+
+ and the Web. MATLAB is the most productive development environment for creating scientific and engineering applications because it offers powerful tools for every step in the process to reduce your overall development time.
MATLAB is a high-performance language for technical computing. It integrates computation, visualization, and programming in an easy-to-use environment where problems and solutions are expressed in familiar mathematical notation. Typical uses include
Math and computation
Algorithm development
Data acquisition
Modeling, sim ulation, and prototyping
Data analysis, exploration, and visualization
Scientific and engineering graphics
Application development, including graphical user interface building
三DDE Introduction
Dynamic data exchange (DDE, Dynamic data exchange) is real-time exchange data between applications, it is the effective method between different applications to share data a agreement. DDE agreement is a kind of open, and language unrelated, based on protocol, it allows multiple applications to any human agreed format data exchange or command. It is application through Shared memory process of the communication between a form, also need not user intervention of good data exchange method.
DDE applications can be divided into four types: client and server and client/server and the monitor. Conversation is a basic concept of DDE. DDE conversation happened in client applications and server application between. Customer is responsible for initializing and attendant session and control conversation flow, from the server application request data or services; The server application
response client applications of data or service request. Client/server applications is both client applications and server application request, it can be and can provide information. Monitor application for debugging purposes. DDE applications can have multiple burst conversation, a service applications can also have multiple client applications, a client applications can to multiple requests data service ap
plications, and an application can also act as client applications and services applications, when don't need the service application data or service, the customer will terminate session. DDE agreement must be synchronous control the news session, but in different application can switch between asynchronous session. DDE Application using the three layer identification system: Application name apply), theme name (from) and project name (Item). Application name (also called service name) is located at the top of the hierarchical structure, the service application registration for pointed out that particular DDE server application name, customer the application wants to establish session with the server application must be specified application name when this string marks; Name in every conversation topics is one and to identify logical data connection string, is the total classification, data it defines a server application conversation theme content, the server application can support one or more theme name; Project name identifies exchange unit of data string, furthermore confirm the conversation of detailed information, every theme name may have one or more project name.
Example: for a database interface applications, will it supports database name as a theme name, and will all sorts of SQL commands as project name, because the server application can support one or more theme, and each theme name name may have one or more project name; So, when to change or reconstruct a conversation, just changing the subject name or project name can.
四force control Introduction
Force control is Beijing SANWEI force control technology and "soft" control strategy software, real-time database and its management system, Web portal of tools and other products. These products are not isolated, and the force control is an application scale can free the system structure, the whole expansion force control system and its various products are made from some components procedures according to certain combinations and become. So this guide is not specifically targeted specific products separately describes the use of method, but the common use of all products introduced method. Force control configuration software is a can run on Windows 98/2000 / NT environment, and can run on Windows CE, DOS embedded environment control fu- nctions such as software modules. It USES function diagram way for users provide interface, possess and real-time database, graphical interface system and communication function.
Force charged with monitoring configuration software is to the field production data acquisition and process control of specialized software, the biggest characteristic is to flexible "configuration mode" instead of programming approach to system integration, and it provides a good user interface and simple engineering development, as long as the realization method of software module of pre-settings simple "configuration", it can easily realization and complete monitoring layer each function, shorten th
e automation engineer system integration time, greatly improve the efficiency of integration.
Force charged with monitoring configuration software is in the automatic control system monitoring layer level software platform, it can also and the domestic and foreign various industrial control network communication equipment manufacturer, it is ok with high reliable industrial controlling computer and network system integration, can achieve the purpose of the centralized management and monitoring, and can also be convenient to control layer and management for software and hardware to implement all the interface, with "third party" hardware and software systems for integration.
The control strategy in the force control, an application in generator may have a lot of control strategy, but only one main strategy. The Lord, the Lord was first execution strategy calls. Other strategies strategy Strategy nested grade 4, namely for most 0 ~ 3 level, in this category 4, grade 3 0 level supreme, the lowest. Senior strategy can call low-level strategy, and low-level strategy can't call senior strategy. In addition to tier 3 most can have 127 strategy outside, other three grades maximum respectively are 255 strategy. Control strategy of by some basic function blocks, a function blocks represent an operation, algorithm or variables. Function blocks basic execution element is strategy, similar to an integrated circuit blocks, have several input and output, each input and output tube feet all
have the only name.
Force control control strategy is in control strategy, edited generated generators in automatic control strategy for strategies when inventory compiled, and check grammar mistakes, compile can also manually. Control strategy, and you can also call between if A strategy was B strategy calls, says A is B son strategy. A functional block can be repeated calls, each calls are automa- tically entitled to a name by. The executive order and function block in the position of screen on the upper left, position relevant function block, according to priority execution left after the first order under implementation.
Force control control strategy of basic function blocks generator was divided into five categories: variable function blocks, mathematical operation function blocks, program control function blocks, logic function blocks function block and control algorithm.
基于matlab\dde\simulink\⼒控的液位控制系统
过程控制是⾃动技术的重要应⽤领域,它是指对液位、温度、流量等过程变量进⾏控制,在冶⾦、机械、化⼯、电⼒等⽅⾯得到了⼴泛应⽤。尤其是液位控制技术在现实⽣活、⽣产中发挥了重要作⽤,⽐如,民⽤⽔塔的供⽔,如果⽔位太低,则会影响居民的⽣活⽤⽔;⼯矿企业的排⽔与进⽔,如果排⽔或进⽔控制得当与否,关系到车间的⽣产状况;锅炉汽包液位的控制,如果锅炉内液位过低,会使锅炉过
热,可能发⽣事故;精流塔液位控制,控制精度与⼯艺的⾼低会影响产品的质量与成本等。在这些⽣产领域⾥,基本上都是劳动强度⼤或者操作有⼀定危险性的⼯作性质,极容易出现操作失误,引起事故,造成⼚家的损失。可见,在实际⽣产中,液位控制的准确程度和控制效果直接影响到⼯⼚的⽣产成本、经济效益甚⾄设备的安全系数。所以,为了保证安全条件、⽅便操作,就必须研究开发先进的液位控制⽅法和策略。
在本设计中以液位控制系统的⽔箱作为研究对象,⽔箱的液位为被控制量,选择了出⽔阀门作为控制系统的执⾏机构。针对过程控制试验台中液位控制系统装置的特点,建⽴了基于Visual Basic语⾔的PID液位控制模拟界⾯和算法程序。虽然PID控制是控制系统中应⽤最为⼴泛的⼀种控制算法。但是,要想取得良好的控制效果,必须合理的整定PID的控制参数,使之具有合理的数本次毕业设计的主题主要是基于matlab\dde\simulink\⼒控的液位控制系统的设计,控制对象为⽔箱的液位,⽽通信是通过DDE来实现的,MATLAB的作⽤是⽤来调试仿真,⼒控软件⽤于系统的监测和模拟,该系统主要通过软件与硬件相结合的⼿段来实现对液位的精确控制,液位控制在现代⼯业中占很重要的分量,它对⽣产的影响不容忽视,为了保证安全⽣产以及产品的质量和数量,对液位进⾏及时有效的控制是⾮常必要的,以下是各个环节的介绍:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论