Design method of solar semiconductor air conditioning control device

Publisher:行者无疆1978Latest update time:2014-10-27 Source: 21icKeywords:Semiconductor  CH452L555  Timer Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

    Solar semiconductor refrigeration and air conditioning is a special refrigeration method based on the photovoltaic effect of solar energy, that is, through the "light-electricity-cold" approach, and using the electricity generated by solar cells to drive semiconductor refrigeration devices to achieve heat energy transfer. The electricity converted from solar photovoltaics can not only match the DC power supply mode of thermoelectric refrigeration, but also the solar radiation intensity and cooling demand have a good time matching. In addition, solar energy is clean and environmentally friendly, with abundant resources, inexhaustible, and solar energy and semiconductors are environmentally friendly. Therefore, solar semiconductor refrigeration and air conditioning can create a high-quality green living space. This design uses Hainan's unique natural conditions and takes low cost as the benchmark to provide a design method for a solar semiconductor refrigeration and air conditioning test device. This method has broad application prospects in Hainan and tropical areas. One of the tasks of this project is to design a solar semiconductor air conditioning control system.

  1 System composition of solar semiconductor air conditioner

  The solar semiconductor refrigeration system can be composed of five parts: solar photovoltaic conversion device, energy matching digital controller, energy storage device, semiconductor refrigeration device, and system control device.

  When the sun is shining, the solar photovoltaic converter can convert the sunlight energy shining on it into electrical energy, providing the necessary energy source for the air conditioning system. The electrical energy output by the solar photovoltaic converter in this article is very consistent with the electrical energy required by the air conditioning system. When there is no sunshine or insufficient sunshine, other auxiliary energy sources or energy storage devices are required to store part of the electrical energy output by the solar photovoltaic converter for backup, thereby ensuring that the solar semiconductor air conditioning system can operate around the clock. The digital control matcher can match the output impedance of the solar cell array with the equivalent load impedance, so that the energy transmission and conversion of the entire system is always in the best state, and at the same time control the overcharge and over-discharge of the energy storage device.

  Semiconductor cooling and heating devices are usually composed of multiple thermopiles or refrigeration units, in which both the cold end and the hot end are equipped with heat dissipation devices. When cooling is required, the cold end is placed indoors to absorb heat to achieve the purpose of lowering the temperature and cooling; the hot end is placed outdoors for ventilation and heat dissipation. In winter, when the ambient temperature is low and heating is required, the direction of the current passing through the thermopile can be changed by changing the positive and negative poles of the power supply. At this time, the cold end of the thermopile becomes the hot end to release heat to the room, and the original hot end becomes the cold end to absorb heat to the surrounding environment, thereby achieving the purpose of heating and air conditioning. Figure 1 shows the experimental device diagram of the refrigeration module of this design.

 

  The control device of this system has two main functions. One is to adjust the indoor temperature and measure and control the temperature of the surface of the heat-conducting ceramic plate at the cold end and hot end of the refrigeration plate. The other is to adjust the indoor humidity, that is, to control a humidification device. This system can not only realize automation and intelligence, but also provide the most comfortable environment indoors. The overall system test device is shown in Figure 2.

 

  2 Design of air conditioning control system

  In semiconductor refrigeration and heating devices, the contact thermal resistance can be reduced by applying thermal grease on the surface of the thermally conductive ceramic sheets at the cold and hot ends of the refrigeration sheet. However, the thermal grease will melt easily when it exceeds 60°C. Therefore, it is necessary to keep track of the temperature of the ceramic surface at all times. Once this temperature is exceeded, the fan needs to be turned on for heat dissipation. In addition, the room temperature is set within a certain range (-10°C to 40°C). Users can adjust the temperature according to their own requirements with an accuracy of ±0.5°C. In addition, the system can also detect indoor humidity and automatically adjust the humidity based on the comparison between the actual humidity and the set value. The human-computer dialogue interface is mainly used to set the upper and lower limits of temperature and humidity and to display the temperature and humidity values ​​in real time. [page]

        3 Hardware Design

  This system uses the AT89C51 single-chip microcomputer produced by ATMEL, two DS18B20 integrated temperature sensors produced by DALLAS, and capacitive humidity sensor HS1101 for hardware design. The system is divided into five parts: humidity acquisition, temperature acquisition, keyboard display, alarm display, and execution output. Each circuit is based on the AT89C51 single-chip microcomputer, and the temperature, humidity or keyboard scanning signals are collected to the single-chip microcomputer by the single-chip microcomputer input/output port. After the single-chip microcomputer's calculation processing, the input and output ports are output to the alarm display and execution ports for automatic control and monitoring of temperature and humidity. The control system structure block diagram is shown in Figure 3.

 

  3.1 Temperature Collection

  The PO.1 and P0.2 ports of the microcontroller are used as the data input and output ports of the temperature sensor. The temperature sensor DS18B20 uses a one-wire data transmission, so this system only needs one port to complete the input and output operations of the sensor. After the temperature sensor detects the analog temperature, it can be converted into a 9- to 12-bit digital value and stored in the register. When reading the temperature value, it can be read from port PC5 under strict timing.

  3.2 Humidity Collection

  HSll01 is actually equivalent to a humidity-sensitive capacitor, and its oscillation circuit is composed of a 555 timer. When the ambient humidity changes, the capacitance of the humidity sensor HSll01 will change accordingly. In this way, the capacitance value can be converted into a square wave signal with a frequency inversely proportional to it through the oscillation circuit, and the signal is transmitted to the microcontroller through PD3. The microcontroller can obtain the corresponding humidity value through frequency calculation.

  3.3 Keyboard Display

  CH452L is a keyboard display driver chip, whose pins DIN, DOUT, LOAD, and DCLK are connected to PB0~PB2 and PD2 of the microcontroller respectively. The system can set various parameters through the keyboard. The temperature and humidity values ​​collected by the microcontroller can also be displayed in real time through the digital tube.

  3.4 Output Execution Port

  The system can automatically detect the temperature and humidity values, and determine whether the temperature and humidity values ​​exceed the limit range. If they exceed the range, PEO and PE1 will output signals to control the actuator to adjust the temperature and humidity. In order to improve the stability of the system, a photoelectric isolator should be used between the single-chip system and the actuator unit to isolate the system from the on-site environment.

4 Software Design

  After the microcontroller is powered on, the system should be initialized first. After the initialization is completed, it is determined whether the upper and lower limits of temperature and humidity are set. If they are set, it enters the parameter setting subroutine, otherwise, it enters the temperature and humidity detection subroutine. After the temperature and humidity detection subroutine is called, it enters the temperature and humidity parameter display subroutine, and then makes an over-limit judgment. If there is an over-limit, it enters the alarm display and execution subroutine, otherwise, it returns to the initialization module and re-executes. The main program execution flow chart is shown in Figure 4.

 

  The main program of this design includes initialization module, temperature and humidity detection module, temperature and humidity parameter display module, alarm display module and execution module. The initialization module is responsible for calling the initialization system subroutine to initialize the relevant IO terminals and timing counters; the temperature and humidity detection module is responsible for calling the temperature detection subroutine and the humidity detection subroutine. The temperature detection program starts the temperature conversion from the initialization of the temperature sensor DS18B20. After the conversion is completed, it reads the 9-bit binary code and processing data and converts it into the corresponding temperature value; the humidity detection program starts to calculate the frequency of the humidity signal from the initialization of the humidity sensor HS1101 and converts it into the corresponding humidity value; the temperature and humidity parameter display module is mainly responsible for calling the display parameter subroutine of the keyboard display driver chip CH452L. The CH452L display driver can start the display driver from the initialization of CH452L, enter the display program, and send the temperature and humidity values ​​at the same time; the execution module is responsible for calling the alarm display and execution subroutines. The execution program and the alarm display program start from judging whether it is over-limit. As long as any parameter of the temperature and humidity exceeds the limit, the system will enter the control execution program and the alarm display program.

  5 Conclusion

  Solar semiconductor air conditioners have the advantages of energy saving and no noise, which can meet the common needs of mankind. The solar semiconductor air conditioning control system introduced in this article uses temperature and humidity sensors and takes a single-chip microcomputer as the core. Therefore, the temperature and humidity monitoring system has a high cost performance, is easy to use, and works stably and reliably. In fact, this control system can not only be used in air conditioners, but also in greenhouses, grain storage and other temperature control aspects, so it has certain promotion value. The test results also show that the system can detect the indoor temperature very well and can automatically adjust according to the set temperature, and can automatically cut off the power when the temperature exceeds the limit. The response is very sensitive and can achieve the expected purpose.

Keywords:Semiconductor  CH452L555  Timer Reference address:Design method of solar semiconductor air conditioning control device

Previous article:A Brief Analysis of 8051 Modular Programming Techniques
Next article:Design of Experimental System Based on AT89S51 Single Chip Microcomputer

Recommended ReadingLatest update time:2024-11-17 00:20

Lip-Bu Chen takes over as Chairman of Credo Semiconductor Board
SerDes supplier Credo Semiconductor has appointed former Cadence CEO Lip-Bu Tan as its new chairman of the board. Credo develops chips for 100G, 200G, 400G and 800G networks. Tan remains Cadence’s executive chairman. Credo’s board of directors also includes Sylvia Acevedo, a Qualcomm board member, and Manpreet Khair
[Semiconductor design/manufacturing]
Nordic Semiconductor enables Matter 1.3 certified smart smoke and carbon monoxide detector modules
HooRii Technology's modules use Nordic's nRF52840 SoC to provide reliable ultra-low-power wireless Matter 1.3 connectivity OSLO, Norway – September 19, 2024 – Nordic Semiconductor design partner HooRii Technology has launched a Matter 1.3 certified module that enables smart smoke and carbon mono
[sensor]
Nordic Semiconductor enables Matter 1.3 certified smart smoke and carbon monoxide detector modules
PIC32MZ tutorial -- Core Timer
  Core Timer is a very popular feature of PIC32 since it is a piece of the MIPS M4K core itself and is common to all MIPS processors. Most RTOS's timer are based on core timer. This timer has a fixed prescaler 1:2, and it is a 32-bit timer, no need to combine with two 16-bit timer like we do with other timers (Timer2
[Microcontroller]
MCU timer working mode 0 (timer013 bit timer)
;Timer 0 working mode 0 (13-bit timer), P1.1 port is connected to the common anode LED lamp, the result of the operation is to make the LED light bright and dark ; Timing COUNT EQU 5000; Timing can only be 5ms LED EQU P1.1   ORG 0000H           MOV R0,#00H L0: DJNZ R0,L0 ;At the beginning, a small delay is perfo
[Microcontroller]
Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号