大棚温度湿度自动控制系统的设计

以下是资料介绍,如需要完整的请充值下载. 本资料已审核过,确保内容和网页里介绍一致.  
无需注册登录,支付后按照提示操作即可获取该资料.
资料介绍:

摘   要
本设计为一闭环控制系统,由89C51单片机,A/D转换电路,温度检测电路,湿度检测电路、控制系统组成。温度检测电路将检测到的温度转换成电压,该模拟电压经ADC0809转换后,进入89C51单片机,单片机通过比较输入温度与设定温度来控制风扇或电炉驱动电路,当棚内温度在设定范围内时,单片机不对风扇或电炉发出动作。实现了对大棚里植物生长温度及土壤和空气湿度的检测,监控,并能对超过正常温度、湿度范围的状况进行实时处理,使大棚环境得到了良好的控制。
该设计还具有对温度的实时显示功能,对棚内环境温度的预设功能。
关键词:89C51单片机、A/D转换、温度检测、湿度检测、控制系统

Abstract
This design is on shutting the wreath the control the system, and be constituted by 89 C51s machine of single slice, A/ D convert electric circuit, temperature examine electric circuit, degree of humidity examine electric circuit, control system. Temperature examination electric circuit will temperature that examine conversion electric voltage, should imitate the electric voltage after ADC0809 convert, enter 89 C51 the machine of single slice, machine of single slice pass to more input the temperature and set up the temperature to control the fan or electric stove to move the electric circuit, and be room inside temperature is within the scope of enactment, single slice the wrong fan or electric stove of machine send out the action. Realizes to examination big room plant grew temperature and soil with air degree of humidity, supervise and control, and can right over the scope of normal temperature, degree of humidity that condition proceed the solid hour handle, made the big room environment to get the good control.
Should design to still have to temperature of solid hour show function, to room inside environment the preparing of temperature establish the function?                    
Key words:89 C51s machine of single slice、A/ D conversion、temperature examination、degree of humidity examination、 control system

自动控制系统的设计
自动控制系统的各个环节的特性一般是给定的,如机械、气动、电动、液压等设备。在设计自动控制系统时,采用加入一个专门用来校正(补偿)系统特性的环节(校正环节),来改变系统特性,使其符合给定的特性要求。实现该环节的装置,称为校正装置或调节器。设计自动控制系统主要是校正装置的设计。由于该系统一般达不到控制的要求,因而自动控制系统均采用闭环(反馈)控制方法。在采用串联校正时。
我们引进串级控制的方式来实现对本系统的控制。串级控制可以较简易地解决几个因素(本系统中为两个:温度、湿度)影响同一个被控对象的相关问题。在该串级控制中,有主回路(温度控制)和副回路(湿度控制)之分。主回路的输出是修正副回路的依据,副回路的输出作为控制量作用于被控对象。




题目
大棚温湿自动控制系统
目    录
ABSTRACT 4
引  言 5
1   概述 6
1.1我国设施农业的发展动态 6
1.2我国设施栽培的主要类型 7
1.3我国设施栽培存在的主要问题 8
1.4对我国设施栽培的几点建议 9
(优秀毕业设计:www.2bysj.cn)
1.5本设计的市场前景 10
2  自动控制系统的设计 11
3   比例微积分控制原理 13
3.1  比例积分调节器 13
3.2 PID调节器 13
4    可控硅及其工作原理 16
4.1可控硅结构 16
4.2可控硅工作原理及特性 16
4.3单相可控硅整流电路 19
5   温度传感器 21
5.1铂电阻 21
5.2热敏电阻 21
5.3 热电偶 22
5.4 半导体PN结温度传感器 24
6   数模转换原理 27
6.1 概述 27
6.2 R-2R倒 T形电阻网络D/A转换器 28
6.3 D/A转换器的主要参数 29
7   具体方案设计 31
7.1实施方案及分析 31
7.2单元电路设计 33
结  束  语 36
参考文献 37
附  录 38
致  谢 53

附  录
附录一  控制系统源程序
The code meets all ad7416 family timing requirements when executed by an; AT89Cx051 micro controller with a 6 MHz clock. Code modifications may be; required if a faster clock is substituted.
FADDR        DATA   24H     
zdata        DATA   28H     
address      DATA   29H    
addr_hi      DATA   2AH    ;
Microcontroller connections to aad7416 OR AT24C02 serial bus lines.
SCL             EQU    P3.4 
SDA             EQU    P3.5  
**************ad7416presodo*****************
WD_H_KEY EQU P1.6
WD_L_KEY EQU P1.7
H_KEY EQU   P3.2
JDQ    EQU P1.5
H_DATA DATA 50H   ; H_DATA 存放温度报警上限
L_DATA DATA 51H   ; L_DATA 存放温度报警上限
W_DATA DATA 52H
M_DATA DATA 53H
S_H_DATA    DATA 59H
S_L_DATA    DATA 5AH
M_H    DATA 6BH;
M_L    DATA 6CH;
ORG 0000H
AJMP MAIN