Thermal Performance Optimization of Building Envelopes in a Low-Cost and Energy-Saving Rural Dwelling in Severe Cold Region—Taking Central Area of Liaoning as an Example
Abstract
:1. Introduction
2. Characteristics of Rural Building Envelopes
2.1. Investigations and Measurements
- (1)
- Most traditional rural dwellings in the severe cold region of Northeast China were built between 2000 and 2010 (25%), while a considerable number of households (68%) still reside in old rural houses constructed from 1980 to 2000. There are relatively few newly constructed buildings after 2010 (7%). Most rural houses have a small number of functional rooms, including bedrooms, kitchens, and storage spaces, resulting in low space utilization.
- (2)
- A total of 68% of the rural houses had an area of 80–110 m2, which could meet daily living needs. To ensure adequate lighting, 90.5% of the rural houses face south. According to on-site visits, usually only the bedrooms and living rooms were heated.
- (3)
- The thickness of the exterior walls of all rural houses was 370 mm, 86% of the exterior walls were not designed with thermal insulation, and only 14% of them had implemented insulation measures. Additionally, the floors and roofs of these houses were generally not insulated. In this study, by integrating the findings from on-site research, the extruded polystyrene foam insulation board (XPS board) was taken as an example to optimize the design. Its thermal conductivity is 0.030 W/(m·K), and the market price is 380 CNY/m3 (USD52/m3).
- (4)
- The proportion of dwellings that set up vestibules or buffered film spaces (plastic greenhouses) was 52%, while 48% of dwellings instead opted to seal windows with plastic film. It could be seen that the thermal insulation effect of the indoor thermal environment in rural houses during winter was closely related to the construction of buffered film spaces.
- (5)
- According to survey data, the average annual household income in rural areas was approximately CNY 38,000 (USD 5232), and the average per capita annual income was about CNY 13,400 (USD 1845), slightly lower than the per capita disposable income data of CNY 17,000 (USD 2340) provided by the Liaoning Provincial Bureau of Statistics. This indicates that rural residents’ income levels were relatively low. Therefore, economic factors were important considerations when evaluating dwellings’ willingness to renovate rural dwellings.
2.2. Heat Transfer Characteristics of Kang-Heated Dwelling
3. Multi-Objective Optimization Model
3.1. Calculation Process
3.2. Model Establishment
3.2.1. Objective Function
- (1)
- Density of annual heating energy consumption
- (2)
- Renovation cost of building envelopes
3.2.2. Decision Variable
3.2.3. Constraint Condition
- (1)
- Thermal neutral operating temperature
- (2)
- Thickness of insulation layer
3.2.4. Mathematical Model
3.3. Boundary Condition
- (1)
- Thermal parameters of the rural building envelope
- (2)
- Indoor condition settings
- (3)
- The meteorological data
- (4)
- Ground temperature
- (5)
- Parameter setting of NSGA-II algorithm
3.4. Verification of Model Accuracy
4. Analysis of Results
4.1. Multi-Objective Optimization
4.2. Preferred Solution
- (1)
- Economically optimal energy-saving technology. The Pareto-optimal solution with the renovation cost lower than CNY 2000 (USD 275) is selected, as shown in Figure 9a. In this case, the insulation is concentrated in the bedroom–living room floor and the bedroom–living room roof, with average thicknesses of 40 mm and 10 mm, indicating that the insulation yields better energy-saving effects and higher economic benefits. Rural residents should give priority to the renovation of this area when upgrading their farmhouses. Compared to the reference house, the energy-saving rate is within 10%, making it a more economically viable technology within the calculation cycle.
- (2)
- Assessing the optimal energy-saving technology. The Pareto-optimal solution with retrofit costs ranging from CNY 2000 (USD 275) to CNY 6000 (USD 826) is selected, as shown in Figure 9b. In this case, the thickness of the insulation layer is prioritized for the bedroom living room floor, roof, and external wall, followed by the remaining room floor external wall, with thicknesses of 90 mm, 60 mm, 50 mm, 20 mm, and 10 mm, respectively. Given limited funds, rural residents focusing on retrofitting the bedroom–living room exterior envelope insulation of their rural dwellings will yield better results. Furthermore, compared to the reference building, the energy-saving rate is 10%~18%, which is the technical template that weighs the energy-saving effect and economy.
- (3)
- Optimal technology for the energy-saving effect. The Pareto-optimal solution with the renovation costs exceeding CNY 6000 (USD 826) is selected, as shown in Figure 9c. In this scenario, where the exterior envelope insulation of the bedroom–living room is already well-insulated, additional insulation is added to the ground, exterior walls, and roof of the heating room, with average thicknesses of 90 mm, 80 mm, and 30 mm, respectively. Furthermore, additional interior wall insulation can be considered. Compared with the reference building, the energy-saving rate is more than 20%, but the cost increment is also the highest.
5. Conclusions
- (1)
- In Kang-heated rural dwellings, roof, internal walls, and external walls directly in contact with the Kang exhibit the highest radiation heat losses, ranging from 30% to 38%, 26% to 30%, and 17% to 22%, respectively. This indicates that insulation measures must be added to these areas.
- (2)
- The average annual heating energy consumption density of buildings corresponding to the optimal solution set for low-cost and low-energy consumption ranges from 180 to 230 kWh/(m2·a), resulting in a potential reduction in building energy consumption of up to 22%. The total cost of energy-saving renovations for rural houses can reach CNY 8000 (USD 1100), which is lower than the annual disposable income of rural residents, rendering them economically feasible.
- (3)
- By employing the multi-objective optimization NSGA-II algorithm, three energy-saving schemes suitable for rural residential construction in the central area of Liaoning were identified: the economically optimal energy-saving scheme, the balanced optimal energy-saving scheme, and the energy-saving effect optimal scheme. The corresponding building renovation costs were less than CNY 2000 (USD 275), between CNY 2000 and 6000, and more than CNY 6000 (USD 826), respectively. Based on the annual disposable income of farmers and the optimization results, the balanced optimal energy-saving technology is recommended as the best scheme in this context. The energy-saving rate ranged from 10% to 18%.
Author Contributions
Funding
Data Availability Statement
Acknowledgments
Conflicts of Interest
Appendix A. Optimize Algorithm-Related Programs
- ① Definition of decision variables
- class MyProblem(Problem):
- def __init__(self,path,xl,xu,**kwargs):
- super().__init__(n_var = 9, n_obj = 2, n_constr = 0,
- xl = xl, xu = xu, elementwise_evaluation = True,**kwargs)
- self.path = path
- def _evaluate(self, x, out, *args, **kwargs):
- f1,f2 = main_run(self.path,[x[0],x[1],x[2],x[3],x[4],x[5],x[6],x[7],x[8]])
- out[‘F’] = [f1,f2]
- xl = np.array([0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.01,0.01])
- xu = np.array([0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.45,0.30])
- ② NSGA-II algorithm call
- algorithm = NSGA2(
- pop_size = 100,
- sampling = get_sampling(“real_random”),
- crossover = get_crossover(“real_sbx”, prob = 0.9, eta = 15),
- mutation = get_mutation(“real_pm”, eta = 20),
- eliminate_duplicates = True)
- termination = get_termination(“n_gen”, 200)
- res = minimize(problem,algorithm,termination,seed = 1,save_history = True,verbose = True)
- print(‘Threads:’, res.exec_time)
References
- Xie, L.N. Climate Division for Passive Solar Buildings. Ph.D. Thesis, Xi’an University of Architecture and Technology, Xi’an, China, 2016. [Google Scholar]
- Song, H.H. Analysis and Countermeasures on Ecological Problems of Rural human Inhabitation Environment in Bitter Cold District. Low Temp. Build. Technol. 2006, 28, 28–30. [Google Scholar]
- Jiang, Y.; Peng, C.; Shan, H. Classification of building energy consumption in China. Constr. Sci. Technol. 2015, 19, 22–26. [Google Scholar]
- Liu, K.C. Energy consumption testing and analysis of existing brick residential envelope in severe cold regions. Pet. Petrochem. Energy Conserv. 2013, 3, 18–19. [Google Scholar]
- Wang, H.W.; Chen, S.; Guo, J.X. A study on the current situation and influencing factors of farm household income. Coop. Econ. Technol. 2020, 24, 54–56. [Google Scholar]
- Jin, H. Research on Energy saving Technologies for Rural Residential Buildings in Heilongjiang Province. Constr. Technol. 2009, 8, 32–33. [Google Scholar]
- Liu, D.; Yang, L.; Hu, A.A. Energy Efficiency Design of New Rural House in the Central Shaanxi Plain. Build. Energy Effic. 2010, 38, 7–10. [Google Scholar]
- Wang, X.P.; Jin, H.; Chen, C.H. Research on Sustainable Design of Korean Ethnic Rural Residences in Yanbian Area; Architectural Physics Branch of China Architectural Society: Beijing, China, 2005; Volume 5. [Google Scholar]
- Li, Z.Z.; Liu, Z. Energy Efficiency and Indoor Thermal Comfort of Rural Residential Buildings in Western Liaoning Providence. Build. Energy Effic. 2018, 46, 134–139. [Google Scholar]
- Dang, Q. Research on Optimization Design of Attached Sunspace in Severe Cold Rural Area Based on Indoor Luminous and Thermal Environment—A Case Study of Baotou. Mater’s Thesis, Inner Mongolia University of Science and Technology, Hohhot, China, 2019. [Google Scholar] [CrossRef]
- Goia, F. Search for the optimal window-to-wall ratio in office buildings in different European climates and the implications on total energy saving potential. Sol. Energy 2016, 132, 467–492. [Google Scholar] [CrossRef]
- Fu, Y. Living Mode and Design of New Rural Housing. Master’s Thesis, Tianjin University, Tianjin, China, 2010. [Google Scholar]
- Guo, H.Y. The Research of The Design Patterns of The Livable Rural Houses in Changchun. Master’s Thesis, Jilin University of Architecture and Technology, Jilin, China, 2014. [Google Scholar]
- Yang, Y.N. Research on Rural Environment-Friendly Housing Design Based on Lifestyle in Southern Liaoning. Master’s Thesis, Dalian University of Technology, Dalian, China, 2013. [Google Scholar]
- Ren, Z.P. Research on Optimal Design of Farm Buildings in Cold Region Based on Energy Consumption Analysis. Master’s Thesis, Northeast Petroleum University, Daqing, China, 2020. [Google Scholar] [CrossRef]
- Ma, Y. Research on Indoor Thermal Environment of Rural House in The Northeast Severe Cold Area. Master’s Thesis, Harbin Institute of Technology, Harbin, China, 2013. [Google Scholar]
- Zheng, S.Q. Study on Energy-Saving Model of Rural Residential Buildings in Quanzhou, Fujian Province. Master’s Thesis, Tianjin University, Tianjin, China, 2017. [Google Scholar]
- Shao, T.; Jin, H. Optimization Design of Energy Saving for Rural Houses in Severe Cold Regions Based on an Optimization Algorithm. Build. Sci. 2019, 35, 99–107. [Google Scholar] [CrossRef]
- Al-Awadi, H.; Alajmi, A.; Abou-Ziyan, H. Effect of Thermal Bridges of Different External Wall Types on the Thermal Performance of Residential Building Envelope in a Hot Climate. Buildings 2022, 12, 312. [Google Scholar] [CrossRef]
- Zhang, C.; Yu, Z.; Zhu, Q.; Shi, H.; Yu, Z.; Xu, X. Air-Permeable Building Envelopes for Building Ventilation and Heat Recovery: Research Progress and Future Perspectives. Buildings 2024, 14, 42. [Google Scholar] [CrossRef]
- Coley, D.A.; Schukat, S. Low-energy design: Combining computer-based optimization and human judgement. Build. Environ. 2002, 37, 1241–1247. [Google Scholar] [CrossRef]
- Attia, S.; Hamdy, M.; O’Brien, W.; Carlucci, S. Assessing gaps and needs for integrating building performance optimization tools in net zero energy buildings design. Energy Build. 2013, 60, 110–124. [Google Scholar] [CrossRef]
- Longo, S.; Montana, F.; Riva Sanseverino, E. A review on optimization and cost-optimal methodologies in low-energy buildings design and environmental considerations. Sustain. Cities Soc. 2019, 45, 87–104. [Google Scholar] [CrossRef]
- Lizana, J.; Molina-Huelva, M.; Chacartegui, R. Multi-criteria assessment for the effective decision management in residential energy retrofitting. Energy Build. 2016, 129, 284–307. [Google Scholar] [CrossRef]
- Pardo, N.; Thiel, C. Evaluation of several measures to improve the energy efficiency and CO2 emission in the European single-family houses. Energy Build. 2012, 49, 619–630. [Google Scholar] [CrossRef]
- Asadi, E.; Da Silva, M.G.; Antunes, C.H.; Dias, L. Multi-objective optimization for building retrofit strategies: A model and an application. Energy Build. 2012, 44, 81–87. [Google Scholar] [CrossRef]
- Jermyn, D.; Richman, R. A process for developing deep energy retrofit strategies for single-family housing typologies: Three Toronto case studies. Energy Build. 2016, 116, 522–534. [Google Scholar] [CrossRef]
- Chicherin, S.; Zhuikov, A.; Junussova, L. Factors Affecting Indoor Temperature in the Case of District Heating. Sustainability 2023, 15, 15603. [Google Scholar] [CrossRef]
- Chicherin, S.; Zhuikov, A.; Junussova, L. District Heating for Poorly Insulated Residential Buildings—Comparing Results of Visual Study, Thermography, and Modeling. Sustainability 2023, 15, 14908. [Google Scholar] [CrossRef]
- Yu, W.; Wang, D.; Li, B.Z. A multi-objective design approach for the creation of low energy consumption in indoor thermal environment of residential buildings. Civ. Archit. Environ. Eng. 2016, 38, 13–19. [Google Scholar]
- Zhu, L.; Wang, B.; Sun, Y. Multi-objective optimization for energy consumption, daylighting and thermal comfort performance of rural tourism buildings in north China. Build. Environ. 2020, 176, 106841. [Google Scholar] [CrossRef]
- Zhu, D.D.; Yan, D.; Wang, B.; Hong, T.Z. Comparison of building energy simulation software: DeST, EnergyPlus and DOE-2. Build. Sci. 2012, 28 (Suppl. 2), 213–222. [Google Scholar]
- Ning, H.R. Research on Human Thermal Comfort and Thermal Adaptation in Heating Building Environments in Severe Cold Area. Ph.D. Thesis, Harbin Institute of Technology, Harbin, China, 2017. [Google Scholar]
- GB/T 50785-2012; Evaluation Standard for Indoor Thermal Environment in Civil Buildings. China Construction Industry Press: Beijing, China, 2012.
- GB/T 15405-2006; Thermal Specifications and Testing Method for Passive Solar Houses. China Construction Industry Press: Beijing, China, 2006.
- JGJ/T 358-2015; Technical Specification for Rural Kang System. China Construction Industry Press: Beijing, China, 2015.
- Fan, X.Y.; Chen, B.; Zhang, X.Y. Field study on heat transfer and pollutant diffusion paths characteristics of overall rural houses based on stove Kang in northern China. Build. Sci. 2019, 35, 9–15. [Google Scholar]
- JGJ 26-2018; Energy-Saving Design Standards for Residential Buildings in Severe Cold and Cold Regions. China Construction Industry Press: Beijing, China, 2018.
- ISO 52016-1:2017; Energy Performance of Buildings—Energy Needs for Heating and Cooling, Internal Temperatures and Sensible and Latent Heat Loads—Part 1: Calculation Procedures. ISO: Geneva, Switzerland, 2017.
- Zhao, J.Y. Research on the Low-Cost Energy-Efficient Optimization of Rural House in Central Liaoning to Meet Indoor Thermal Requirements. Master’s Thesis, Dalian University of Technology, Dalian, China, 2021. [Google Scholar]
- Zhu, Y.X. Built Environment, 4th ed.; Architectural Industry Press: Beijing, China, 2017; pp. 111–113. [Google Scholar]
- Qi, M.W.; Li, X.F.; Huang, H. Discussion on Measuring Ventilation Rates of Dorms through Tracer Gas Method with Human Body as CO2 Release Source. Build. Sci. 2013, 29, 50–57. [Google Scholar]
- Zhang, X.; Chen, W.-L.; Yu, W.-J.; Ma, Y.-X.; Yang, R.-Q. Experimental study of radiation-convection heat release ratio of commonly used heating radiators. Heat. Vent. Air Cond. 1994, 6, 13–15. [Google Scholar]
- Jin, X.; Tan, Y.F.; Yu, K.C. Test and analysis of the thermal performance of combined elevated Kang and radiator heating system in northern rural areas. J. Harbin Inst. Technol. 2019, 51, 179–186. [Google Scholar]
Content | Record Photos |
---|---|
Architectural appearances as examples | |
Investigation process | |
Measurement process | |
Measuring points |
Characteristics | Unit | Feature Proportion Statistics | ||||
---|---|---|---|---|---|---|
Areas | (m2) (%) | ≤50 | 50–80 | 80–100 | 100–110 | >110 |
2 | 13 | 33 | 37 | 17 | ||
Architectural form | (%) | Monolayer | Bilayer | |||
80.3 | 19.7 | |||||
Plan layout | (%) | Three bays | Four bays | Others | ||
65.8 | 13.9 | 20.3 | ||||
Buffer space | (%) | Only on the South | Only on the North | Both North and South | Neither North nor South | |
37 | 12 | 33 | 18 | |||
Construction year | (%) | 1980~2000 | 2000~2010 | After 2010 | ||
68 | 25 | 7 | ||||
Insulation type | (%) | External insulation | Intermediate insulation | Internal insulation | No insulation | |
6 | 2 | 6 | 86 | |||
Ground insulation | (%) | Yes | No | |||
2 | 98 | |||||
Roof insulation | (%) | Yes | No | |||
6 | 94 | |||||
Annual income (CNY) | (Yuan) (%) | <20,000 | 20,000~32,000 | 32,000~44,000 | 44,000~56,000 | >56,000 |
12 | 21 | 24 | 22 | 21 |
Test Parameters | Testing Instruments | Instrument Accuracy |
---|---|---|
Surface temperature/heat flow | JTNT-A multi-channel temperature and heat flow test system, Shiji Jiantong Technology Co., Ltd., Beijing, China | ±0.1 °C/±0.1 W/m2 |
Indoor and outdoor air temperature and relative humidity | WSZY-2 temperature and humidity recorder, Beijing Tianjian Huayi Technology Development Co., Ltd., Beijing, China | ±0.1 °C/±0.1%RH |
CO2 concentration inside and outside the dwelling | WEZY-1 Carbon Dioxide Recorder, Beijing Tianjian Huayi Technology Development Co., Ltd., Beijing, China | 0~5000 ppm (±75 ppm) |
Opening and closing frequency of door and window | CKJM-1 type magnetic switch recorder, Beijing Tianjian Huayi Technology Development Co., Ltd., Beijing, China | Maximum induction distance is 30 mm |
Insulation Layer Location | Minimum Value (m) | Maximum Value (m) | Step Length (m) | Initial Value (m) |
---|---|---|---|---|
Bedroom and living room exterior walls | 0.001 | 0.100 | 0.001 | 0.001 |
Kitchen and utility room exterior walls | 0.001 | 0.100 | 0.001 | 0.001 |
Internal walls in direct contact with the Kang | 0.001 | 0.100 | 0.001 | 0.001 |
Bedroom and living room roof | 0.001 | 0.100 | 0.001 | 0.001 |
Kitchen and utility room roof | 0.001 | 0.100 | 0.001 | 0.001 |
Bedroom and living room floors | 0.001 | 0.100 | 0.001 | 0.001 |
Kitchen and utility room floor | 0.001 | 0.100 | 0.001 | 0.001 |
South side window-to-wall ratio | 1% | 45% | 1% | 1% |
North side window-to-wall ratio | 1% | 30% | 1% | 1% |
Room | Time | Number of Personnel |
---|---|---|
Master Bedroom | 17:00 to the next day 8:00 | 2 |
Living room | 9:00~17:00 | 2 |
Kitchen | 7:00~8:00, 11:00~12:00, 16:00~18:00 | 1 |
Month | 11 | 12 | 1 | 2 | 3 |
---|---|---|---|---|---|
Average temperature | 0.2 | −9.3 | −12.6 | −8.1 | 1 |
Mutation Probability | Crossover Probability | Population Size | |
---|---|---|---|
Recommended scope | 0.005~0.10 | 0.75~0.95 | 20~200 |
Value | 0.10 | 0.90 | 100 |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2024 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Zhang, X.; Zhang, X.; Chen, B.; Zhao, J.R.; Sun, J.; Zhao, J.; Wei, B.; Zhu, J. Thermal Performance Optimization of Building Envelopes in a Low-Cost and Energy-Saving Rural Dwelling in Severe Cold Region—Taking Central Area of Liaoning as an Example. Buildings 2024, 14, 2505. https://doi.org/10.3390/buildings14082505
Zhang X, Zhang X, Chen B, Zhao JR, Sun J, Zhao J, Wei B, Zhu J. Thermal Performance Optimization of Building Envelopes in a Low-Cost and Energy-Saving Rural Dwelling in Severe Cold Region—Taking Central Area of Liaoning as an Example. Buildings. 2024; 14(8):2505. https://doi.org/10.3390/buildings14082505
Chicago/Turabian StyleZhang, Xueyan, Xingkuo Zhang, Bin Chen, Joe R. Zhao, Jiaojiao Sun, Jiayi Zhao, Bingyang Wei, and Jiayin Zhu. 2024. "Thermal Performance Optimization of Building Envelopes in a Low-Cost and Energy-Saving Rural Dwelling in Severe Cold Region—Taking Central Area of Liaoning as an Example" Buildings 14, no. 8: 2505. https://doi.org/10.3390/buildings14082505
APA StyleZhang, X., Zhang, X., Chen, B., Zhao, J. R., Sun, J., Zhao, J., Wei, B., & Zhu, J. (2024). Thermal Performance Optimization of Building Envelopes in a Low-Cost and Energy-Saving Rural Dwelling in Severe Cold Region—Taking Central Area of Liaoning as an Example. Buildings, 14(8), 2505. https://doi.org/10.3390/buildings14082505