Total Factor Efficiency Study on China’s Industrial Coal Input and Wastewater Control with Dual Target Variables
Abstract
:1. Introduction
- (1)
- Considering the major input and output variables of China’s industry, this paper simultaneously calculated the TFE of coal input and wastewater output in China’s industrial sectors, which provided the decision-making basis for sustainable development.
- (2)
- Through improvement of the DEA model and development of an algorithm, this paper realized calculation of TFE of the input and output variables at the same time, enriching theoretical and computational literature of the model.
2. Methodology and Data
2.1. DEA Model with Dual Target Variable
- Input variables
- (1)
- Labor. We measured the labor input of each DMU by the average number of employees in those 39 industries from 2003 to 2014. The data source was the “China Statistical Yearbook (2004–2015)”, published by the National Bureau of Statistics [25].
- (2)
- Capital: We calculated capital input of different industries from 2003 to 2014 based on official statistics from the “China Statistical Yearbook (2004–2015)” [25]. The calculation is more complicated than that of labor. Here, we defined capital input as the stock fixed assets investment of the 39 industries, and adopted the “Perpetual Inventory” accounting method to estimate the Capital Stock from annual fixed assets investment based on the common practice of similar studies:
- (3)
- II.
- Output variables
- (1)
- Industrial added value: This is a straightforward output measurement of each industry, and a direct component of our country’s GDP, calculated by the Output Method. Throughout the years, the industrial added value has taken the largest proportion in our country’s annual GDP [1]. Therefore, the industrial added value is not only the most important indicator of a certain industry’s output level, but also an important indicator for China’s economic growth. Our data came from the “China Statistical Yearbook (2004–2015)” published by the National Bureau of Statistics of China [25], and we further adjusted the annual industrial added value of each industry by use of the GDP Deflator with 2003 being the base year.
- (2)
- Industrial wastewater emission, waste gas emission, and solid waste emission as three Undesirable Outputs. It is worth pointing out that although this study focused on the efficiency of industrial wastewater control, in practice, industrial waste gas and solid waste are also inevitable products of industrial production worldwide, especially for production processes that involve coal as an input. As we all know, the calculation result of the DEA Model is impacted by the choice of Input-Output variables. If we exclude these two undesirable outputs, it would not comply with the actual industrial production process and would cause inaccurate DEA calculation result due to neglect of major output variables. Therefore, we decided to include waste gas and solid waste into our model as outputs to reflect actual industrial production. It is also worth mentioning that many researchers put undesirable outputs on the input side of the DEA Model [28,29,30]. Although this practice has its rationality, given the setting of the DEA Model, undesirable output itself is still an output; it is the product of various input factors. Therefore, we decided it is inappropriate and contradictory to treat undesirable outputs as inputs for the purpose of assessing the Dual Target Variable TFE of coal input and industrial wastewater control (as an output) at the same time. Based on the theoretical model in Section 2.1 and with help of our MATLAB algorithm, we were able to simultaneously calculate the TFE of coal input and undesirable output (industrial wastewater) within the DEA framework by putting undesirable variables on the output side. Our calculation was based on wastewater, waste gas and solid waste emission data of various industries officially published in the “China Statistical Yearbook (2004–2015)” by the National Bureau of Statistics of China [25].
2.2. Industrial Classification in China
2.3. MATLAB Algorithm
3. Results
4. Discussion
- (1)
- The polarization of TFE results
- Good TFE results of manufacturing industries
- II.
- Poor TFE performance of natural resource industries
- (2)
- The effects of “Chinese characteristics” policies
- Effect on the electricity, heat production and supply industry (No. 37)
- II.
- Effect on the coal mining and washing industry (No. 1)
5. Conclusions
- (1)
- Improve technologies and innovation skills in the field of coal utilization and wastewater treatment. Currently, coal mining technology and equipment in China’s major coal production areas are not very advanced, resulting in a huge gap in terms of coal utilization and wastewater treatment capabilities, compared with the international standard. Therefore, advanced mining, smelting and cleaning technologies in the exploitation and industrial production stage of coal resources should be actively developed and adopted in order to minimize the environment impact of wastewater emission from coal production with the help of modern technologies. At the same time, the R&D investment in the field of coal utilization and wastewater treatment in the industrial production process should be increased.
- (2)
- The government should also learn from the lessons of the “coal-electric power price linkage” policy and introduce more market mechanisms. For example, it could develop and implement a compensation mechanism on natural resource utilization and environment pollution, and minimize the external cost and external benefit with the help of market mechanism and market economy.
Author Contributions
Funding
Acknowledgments
Conflicts of Interest
Appendix A
Algorithm A1. |
function DEASBMG = DEA(x) clc clear global N; global s; global Ig; global Ib; global Og; global Ob; global NIg; global NIb; global NOg; global NOb; global X; global Y; global m; global n; global i; Xg=[]; Xb=[]; Yg=[]; Yb=[]; Var=[]; [s,N]=size(Var); r0=zeros(s,1); R=zeros(s,s); fval=zeros(s,N); Theta=zeros(s,N); ThetaIgI=zeros(s,N); ThetaIgII=zeros(s,N); ThetaIgIII=zeros(s,N); ThetaOg=zeros(s,N); ThetaObI=zeros(s,N); ThetaObII=zeros(s,N); ThetaObIII=zeros(s,N); for k=1:N Ig=Xg’; Ib=Xb’; Og=Var(:,k)’; Ob=Yb’; X=[Ig;Ob]; Y=[Ib;Og]; [NIg,s]=size(Ig); [NIb,s]=size(Ib); [NOg,s]=size(Og); [NOb,s]=size(Ob); [m,s]=size(X); [n,s]=size(Y); A=[X;-Y]; for i=1:s [R(:,i),fval(i,k)]=fmincon(@Efficiency,r0,A,A(:,i),[],[],zeros(s,1),[]); ThetaIgI(i,k)=(Ig(1,:)*R(:,i))/Ig(1,i); ThetaIgII(i,k)=(Ig(2,:)*R(:,i))/Ig(2,i); ThetaIgIII(i,k)=(Ig(3,:)*R(:,i))/Ig(3,i); ThetaOg(i,k)=Og(1,i)/(Og(1,:)*R(:,i)); ThetaObI(i,k)=(Ob(1,:)*R(:,i))/Ob(1,i); ThetaObII(i,k)=(Ob(2,:)*R(:,i))/Ob(2,i); ThetaObIII(i,k)=(Ob(3,:)*R(:,i))/Ob(3,i); end end Thetag=[ThetaIgI’;ThetaIgII’;ThetaIgIII’;ThetaOg’;ThetaObI’;ThetaObII’;ThetaObIII’]’ function P=Efficiency(r) global m; global n; global X; global Y; global i; global Ig; global Ib; global Og; global Ob; global NIg; global NIb; global NOg; global NOb; Input=0; Output=0; for j=1:NIg Input=Input+(Ig(j,:)*r)/Ig(j,i); end for j=1:NIb Input=Input+Ib(j,i)/(Ib(j,:)*r); end for j=1:NOg Output=Output+(Og(j,:)*r)/Og(j,i); end for j=1:NOb Output=Output+Ob(j,i)/(Ob(j,:)*r); end P=((NOg+NOb)*Input)/((NIg+NIb)*Output); |
References
- National Bureau of Statistics of China. China Statistical Yearbook, 1979–2016; China Statistic Press: Beijing, China, 2016.
- National Bureau of Statistics of China. China Statistical Yearbook, 2001–2016; China Statistic Press: Beijing, China, 2016.
- Zhang, D.; Wang, J.; Lin, Y.; Si, Y.; Huang, C.; Yang, J.; Huang, B.; Li, W. Present situation and future prospect of renewable energy in China. Renew. Sustain. Energy Rev. 2017, 76, 865–871. [Google Scholar] [CrossRef]
- Peng, H.; Liu, Y. How government subsidies promote the growth of entrepreneurial companies in clean energy industry: An empirical study in China. J. Clean. Prod. 2018, 188, 508–520. [Google Scholar] [CrossRef]
- Wang, B.; Wang, Q.; Wei, Y.-M.; Li, Z.-P. Role of renewable energy in China’s energy security and climate change mitigation: An index decomposition analysis. Renew. Sustain. Energy Rev. 2018, 90, 187–194. [Google Scholar] [CrossRef]
- Xie, W.; Sheng, P.; Guo, X. Coal, oil, or clean energy: Which contributes most to the low energy efficiency in China? Util. Policy 2015, 35, 67–71. [Google Scholar] [CrossRef]
- Yang, X.J.; Hu, H.; Tan, T.; Li, J. China’s renewable energy goals by 2050. Environ. Dev. 2016, 20, 83–90. [Google Scholar] [CrossRef]
- Buzzi, D.C.; Viegas, L.S.; Rodrigues, M.A.S.; Bernardes, A.M.; Tenório, J.A.S. Water recovery from acid mine drainage by electrodialysis. Miner. Eng. 2013, 40, 82–89. [Google Scholar] [CrossRef]
- Bai, H.; Kang, Y.; Quan, H.; Han, Y.; Sun, J.; Feng, Y. Treatment of acid mine drainage by sulfate reducing bacteria with iron in bench scale runs. Bioresour. Technol. 2013, 128, 818–822. [Google Scholar] [CrossRef] [PubMed]
- Simate, G.S.; Ndlovu, S. Acid mine drainage: Challenges and opportunities. J. Environ. Chem. Eng. 2014, 2, 1785–1803. [Google Scholar] [CrossRef]
- Ma, Q.; Qu, Y.Y.; Zhang, X.W.; Shen, W.L.; Liu, Z.Y.; Wang, J.W.; Zhang, Z.-J.; Zhou, J.-T. Identification of the microbial community composition and structure of coal-mine wastewater treatment plants. Microbiol. Res. 2015, 175, 1–5. [Google Scholar] [CrossRef] [PubMed]
- Chang, S.; Zhuo, J.; Meng, S.; Qin, S.; Yao, Q. Clean coal technologies in China: Current status and future perspectives. Engineering 2016, 2, 447–459. [Google Scholar] [CrossRef]
- Wang, Y.; Song, Y.; Zhou, H.; Zhi, K.; Teng, Y.; He, R.; Tian, R.; Liu, Q. Comparative study on structural properties and combustion kinetics of Chinese Shenhua long flame raw coal and its pyrolytic char. Environ. Prog. Sustain. Energy 2017, 36, 766–774. [Google Scholar] [CrossRef]
- Gai, H.; Song, H.; Xiao, M.; Feng, Y.; Wu, Y.; Zhou, H.; Chen, B. Conceptual design of a modified phenol and ammonia recovery process for the treatment of coal gasification wastewater. Chem. Eng. J. 2016, 304, 621–628. [Google Scholar] [CrossRef]
- Qian, Y.; Yang, S.Y.; Ma, D.; Cui, P. Research advances in treatment of coal gasification wastewater with high phenol and ammonia. Chem. Ind. Eng. Prog. 2016, 35, 1884–1893. [Google Scholar]
- Geng, Z.Q.; Dong, J.G.; Han, Y.M.; Zhu, Q.X. Energy and environment efficiency analysis based on an improved environment DEA cross-model: Case study of complex chemical processes. Appl. Energy 2017, 205, 465–476. [Google Scholar] [CrossRef]
- U.S. Environmental Protection Agency. Watershed-Based National Pollutant Discharge Elimination System (NPDES) Permitting Technical Guidance; U.S. Environmental Protection Agency: Washington, DC, USA, 2007.
- Selman, M. Water quality trading programs: An international overview. WRI Issue Br. Water Qual. Trading 2009, 1, 1–16. [Google Scholar]
- Office of Wastewater Management U.S. Environmental Protection Agency. Emerging Technologies for Wastewater Treatment and In-Plant Wet Weather Management; Office of Wastewater Management U.S. Environmental Protection Agency: Washington, DC, USA, 2013.
- McCarty, P.L.; Bae, J.; Kim, J. Domestic wastewater treatment as a net energy producer—Can this be achieved? Environ. Sci. Technol. 2011, 45, 7100–7106. [Google Scholar] [CrossRef] [PubMed]
- Al-Isawi, R.H.K.; Scholz, M.; Al-Faraj, F.A.M. Assessment of diesel-contaminated domestic wastewater treated by constructed wetlands for irrigation of chillies grown in a greenhouse. Environ. Sci. Pollut. Res. 2016, 23, 25003–25023. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Fu, G.; Butler, D.; Khu, S.T. Multiple objective optimal control of integrated urban wastewater systems. Environ. Model. Softw. 2008, 23, 225–234. [Google Scholar] [CrossRef] [Green Version]
- Schütze, M.; Butler, D.; Beck, B.M. Modelling, Simulation and Control of Urban Wastewater Systems; Springer: London, UK, 2012. [Google Scholar]
- Bach, P.M.; Rauch, W.; Mikkelsen, P.S.; McCarthy, D.T.; Deletic, A. A critical review of integrated urban water modelling—Urban drainage and beyond. Environ. Model. Softw. 2014, 54, 88–107. [Google Scholar] [CrossRef]
- National Bureau of Statistics of China. China Statistical Yearbook, 2004–2015; China Statistic Press: Beijing, China, 2015.
- Zhang, J.; Wu, G.; Zhang, J. The estimation of China’s provincial capital stock: 1952–2000. Econ. Res. J. 2004, 10, 35–44. [Google Scholar]
- Department of Energy Statistics, National Bureau of Statistics of China. China Energy Statistical Yearbook, 2004–2015; China Statistic Press: Beijing, China, 2015.
- Reinhard, S.; Lovell, C.A.K.; Thijssen, G.J. Environmental efficiency with multiple environmentally detrimental variables; estimated with SFA and DEA. Eur. J. Oper. Res. 2000, 121, 287–303. [Google Scholar] [CrossRef]
- Färe, R.; Grosskopf, S. Directional distance functions and slacks-based measures of efficiency. Eur. J. Oper. Res. 2010, 200, 320–322. [Google Scholar] [CrossRef]
- Chen, S.; Zhang, S. Large-scale land use for construction and energy consumption after the new millennium with their impact on total-factor efficiency change in China’s regional economy. Energies 2014, 7, 1986–2003. [Google Scholar] [CrossRef]
- Ma, Y.; Jiang, C.; Hou, Z.; Wang, C. The formulation of the optimal strategies for the electricity producers based on the particle swarm optimization algorithm. IEEE Trans. Power Syst. 2006, 21, 1663–1671. [Google Scholar] [CrossRef]
- Tolson, B.A.; Shoemaker, C.A. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water Resour. Res. 2007, 43. [Google Scholar] [CrossRef] [Green Version]
- Ebbesen, S.; Kiwitz, P.; Guzzella, L. A generic particle swarm optimization Matlab function. In Proceedings of the 2012 American Control Conference (ACC), Montreal, QC, Canada, 27–29 June 2012; pp. 1519–1524. [Google Scholar]
- Cheng, S.-L.; Hwang, C. Optimal approximation of linear systems by a differential evolution algorithm. IEEE Trans. Syst. Man Cybern. A Syst. Hum. 2001, 31, 698–707. [Google Scholar] [CrossRef]
- Cook, W.D.; Liang, L.; Zhu, J. Measuring performance of two-stage network structures by DEA: A review and future perspective. Omega 2010, 38, 423–430. [Google Scholar] [CrossRef]
- Lim, S.; Zhu, J. Integrated data envelopment analysis: Global vs. local optimum. Eur. J. Oper. Res. 2013, 229, 276–278. [Google Scholar] [CrossRef]
- The State Council of the People’s Republic of China. Made in China 2025; People’s Publishing House: Beijing, China, 2015.
- United Nations Industrial Development Organization. UNIDO Annual Report 2014; United Nations Industrial Development Organization: Vienna, Austria, 2015. [Google Scholar]
- National Development and Reform Commission Abolition of “Refractory Bauxite Classification and Technical Conditions” and Other 61 Black Metallurgical Industry Standards. Available online: http://www.mofcom.gov.cn/aarticle/b/g/200508/20050800308551.html (accessed on 15 November 2017).
- Yang, W.X. China’s Energy Security in the Context of International Energy (Doctoral Dissertation); Shanghai Academy of Social Sciences: Shanghai, China, 2006. [Google Scholar]
- National Development and Reform Commission Main Functions of the NDRC. Available online: http://en.ndrc.gov.cn/mfndrc/ (accessed on 15 November 2017).
- National Development and Reform Commission the Notice of Issuing the Statement on the Establishment of Coal-Electricity Price Linkage Mechanism by NDRC. Available online: http://bgt.ndrc.gov.cn/zcfb/200807/t20080710_499686.html (accessed on 15 November 2017).
- The General Office of the State Council of the People’s Republic of China Guiding opinions of the General Office of the State Council on Deepening Coal Market Reform. Available online: http://www.gov.cn/zwgk/2012-12/25/content_2298187.htm (accessed on 15 November 2017).
- Economic Forecast Department of State Information Center of China Impact Analysis of the Cut of Coal On-Grid Price. Available online: http://www.sic.gov.cn/News/466/7188.htm (accessed on 15 November 2017).
- Standing Committee of the National People’s Congress of the People’s Republic of China. The People’s Republic of China Renewable Energy Law Amendment; The Law Press: Beijing, China, 2009.
- Standing Committee of the National People’s Congress of the People’s Republic of China. Cleaner Production Promotion Law of the People’s Republic of China (2012 Amendment); China Democracy and Legal system Publishing House: Beijing, China, 2012.
- Standing Committee of the National People’s Congress of the People’s Republic of China. Law of the People’s Republic of China on the Prevention and Control of Environmental Pollution by Solid Wastes (Amendment); China Democracy and Legal system Publishing House: Beijing, China, 2013.
- Standing Committee of the National People’s Congress of the People’s Republic of China. Environmental Protection Law of the People’s Republic of China (2014 Revision); China Legal Publishing House: Beijing, China, 2014.
- Standing Committee of the National People’s Congress of the People’s Republic of China. Marine Environmental Protection Law of the People’s Republic of China (2017 Amendment); China Legal Publishing House: Beijing, China, 2017.
- Li, Y.F. Study on Treatment and Reuse Technology of Concenrtated Wastewater of Coal Washing. Ph.D. Thesis, Northeastern University, Boston, MA, USA, 2005. [Google Scholar]
- Yang, W.X.; Li, L.G. Efficiency evaluation of industrial waste gas control in China: A study based on data envelopment analysis (DEA) model. J. Clean. Prod. 2018, 179, 1–11. [Google Scholar] [CrossRef]
- Yang, W.X.; Li, L.G. Efficiency Evaluation and Policy Analysis of Industrial Wastewater Control in China. Energies 2017, 10, 1201. [Google Scholar] [CrossRef]
- Yang, W.X.; Li, L.G. Analysis of total factor efficiency of water resource and energy in China: A study based on DEA-SBM model. Sustainability 2017, 9, 1316. [Google Scholar] [CrossRef]
- Yang, W.X.; Li, L.G. Energy efficiency, ownership structure, and sustainable development: Evidence from China. Sustainability 2017, 9, 912. [Google Scholar] [CrossRef]
No. | Industry |
---|---|
1 | Coal mining and washing |
2 | Oil and gas extraction |
3 | Black metal mining |
4 | Nonferrous metal mining |
5 | Nonmetallic mining |
6 | Other mining |
7 | Sideline food processing |
8 | Food manufacturing |
9 | Beverage manufacturing |
10 | Tobacco products |
11 | Textile |
12 | Textile and garment, shoes, hats manufacturing |
13 | Leather, fur, feather (velvet) and its products |
14 | Wood processing and wood, bamboo, rattan, brown, grass products |
15 | Furniture manufacturing |
16 | Paper and paper products |
17 | Printing and recording media |
18 | Cultural and educational sporting goods manufacturing |
19 | Oil processing, coking and nuclear fuel processing |
20 | Chemical raw materials and chemical products manufacturing |
21 | Pharmaceutical manufacturing |
22 | Chemical fiber manufacturing |
23 | Rubber products |
24 | Plastic products |
25 | Nonmetallic mineral products |
26 | Ferrous metal smelting and rolling processing |
27 | Nonferrous metal smelting and rolling processing |
28 | Metal products |
29 | General equipment manufacturing |
30 | Special equipment manufacturing |
31 | Transportation equipment manufacturing |
32 | Electrical machinery and equipment manufacturing |
33 | Communications equipment, computers and other electronic equipment manufacturing |
34 | Instrumentation and culture, office machinery manufacturing |
35 | Handicrafts and other manufacturing |
36 | Waste resources and waste materials recycling |
37 | Electricity, heat production and supply |
38 | Gas production and supply |
39 | Water production and supply |
No. | Industry | Year | |||||||
---|---|---|---|---|---|---|---|---|---|
2003 | 2004 | 2005 | 2006 | ||||||
Coal | Waste-Water | Coal | Waste-Water | Coal | Waste-Water | Coal | Waste-Water | ||
1 | Coal mining and washing | 0.0370 | 0.3717 | 0.2159 | 0.0213 | 0.0208 | 0.1894 | 0.0266 | 0.1946 |
2 | Oil and gas extraction | 1.0000 | 1.0000 | 0.5804 | 0.6147 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
3 | Black metal mining | 0.1215 | 0.0440 | 0.0333 | 0.1393 | 0.2408 | 0.0716 | 0.2436 | 0.0477 |
4 | Nonferrous metal mining | 0.0718 | 0.0334 | 0.0505 | 0.1698 | 0.3013 | 0.0329 | 0.3436 | 0.0192 |
5 | Nonmetallic mining | 0.1201 | 0.5106 | 0.0337 | 0.0301 | 0.0388 | 0.0592 | 0.0400 | 0.0578 |
6 | Other mining | 0.0610 | 0.3663 | 1.0000 | 1.0000 | 0.1354 | 0.0169 | 1.0000 | 1.0000 |
7 | Sideline food processing | 0.2182 | 0.0522 | 0.1358 | 0.1060 | 0.1296 | 0.0315 | 0.1412 | 0.0442 |
8 | Food manufacturing | 0.1093 | 0.0603 | 0.4419 | 0.2382 | 0.0788 | 0.0372 | 0.0842 | 0.0407 |
9 | Beverage manufacturing | 0.0356 | 0.0877 | 0.2984 | 0.1720 | 0.0911 | 0.0366 | 0.0981 | 0.0307 |
10 | Tobacco products | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
11 | Textile | 0.0296 | 0.0514 | 0.2511 | 0.1585 | 0.0835 | 0.0257 | 0.0833 | 0.0240 |
12 | Textile and garment, shoes, hats manufacturing | 1.0000 | 1.0000 | 0.9883 | 0.4360 | 0.7435 | 0.3713 | 0.4158 | 0.1604 |
13 | Leather, fur, feather (velvet) and its products | 0.7009 | 0.1505 | 0.5354 | 0.5631 | 0.5896 | 0.0702 | 0.6231 | 0.0691 |
14 | Wood processing and wood, bamboo, rattan, brown, grass products | 0.0259 | 0.1471 | 0.0925 | 0.0606 | 0.0769 | 0.1062 | 0.0939 | 0.2451 |
15 | Furniture manufacturing | 1.0000 | 1.0000 | 0.2765 | 0.5574 | 0.7719 | 0.6585 | 0.6314 | 0.9229 |
16 | Paper and paper products | 0.1501 | 0.0095 | 0.0436 | 0.0304 | 0.0220 | 0.0043 | 0.0307 | 0.0061 |
17 | Printing and recording media | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 0.5176 | 0.6307 | 0.4578 | 0.8300 |
18 | Cultural and educational sporting goods manufacturing | 1.0000 | 1.0000 | 0.7850 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
19 | Oil processing, coking and nuclear fuel processing | 0.0485 | 0.1072 | 0.0251 | 0.0079 | 0.0070 | 0.0426 | 0.0059 | 0.0394 |
20 | Chemical raw materials and chemical products manufacturing | 0.0998 | 0.0330 | 0.0523 | 0.0391 | 0.0635 | 0.0550 | 0.0390 | 0.0348 |
21 | Pharmaceutical manufacturing | 0.1441 | 0.0854 | 0.1756 | 0.1579 | 0.1464 | 0.0521 | 0.1453 | 0.0503 |
22 | Chemical fiber manufacturing | 0.0689 | 0.0193 | 0.0222 | 0.0358 | 0.0396 | 0.0138 | 0.0430 | 0.0147 |
23 | Rubber products | 0.0470 | 0.1922 | 0.1231 | 0.0856 | 0.0882 | 0.1327 | 0.0922 | 0.1440 |
24 | Plastic products | 0.3843 | 1.0000 | 0.4680 | 0.2716 | 1.0000 | 1.0000 | 0.3332 | 0.5913 |
25 | Nonmetallic mineral products | 0.0139 | 0.1048 | 0.0131 | 0.0202 | 0.0198 | 0.2147 | 0.0237 | 0.3181 |
26 | Ferrous metal smelting and rolling processing | 0.0199 | 0.0449 | 0.0205 | 0.0332 | 0.0315 | 0.0950 | 0.0222 | 0.0704 |
27 | Nonferrous metal smelting and rolling processing | 0.0223 | 0.1011 | 0.0151 | 0.0391 | 0.0512 | 0.0786 | 0.0694 | 0.1173 |
28 | Metal products | 0.2624 | 0.2003 | 0.3803 | 0.2923 | 0.3295 | 0.1097 | 0.3838 | 0.1188 |
29 | General equipment manufacturing | 0.0983 | 0.4481 | 0.4235 | 0.3881 | 0.4734 | 0.2585 | 0.5076 | 0.3624 |
30 | Special equipment manufacturing | 0.0548 | 0.2735 | 0.2143 | 0.1846 | 0.1994 | 0.2025 | 0.2336 | 0.2411 |
31 | Transportation equipment manufacturing | 0.0900 | 0.2694 | 0.2534 | 0.3103 | 0.2912 | 0.2124 | 0.3248 | 0.2298 |
32 | Electrical machinery and equipment manufacturing | 0.2584 | 0.7502 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
33 | Communications equipment, computers and other electronic equipment manufacturing | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
34 | Instrumentation and culture, office machinery manufacturing | 0.4070 | 0.1824 | 0.1334 | 1.0000 | 0.9095 | 0.3252 | 0.9426 | 0.4014 |
35 | Handicrafts and other manufacturing | 1.0000 | 1.0000 | 0.4892 | 0.0566 | 1.0000 | 1.0000 | 0.0605 | 0.4565 |
36 | Waste resources and waste materials recycling | 0.0118 | 0.0009 | 0.0677 | 0.1487 | 0.5560 | 0.3478 | 0.7609 | 0.2633 |
37 | Electricity, heat production and supply | 0.0096 | 0.0676 | 0.0109 | 0.0052 | 0.0077 | 0.0769 | 0.0048 | 0.0610 |
38 | Gas production and supply | 0.0091 | 0.0630 | 0.0521 | 0.0123 | 0.0068 | 0.0452 | 0.0078 | 0.0703 |
39 | Water production and supply | 1.0000 | 1.0000 | 0.9424 | 0.5049 | 0.4510 | 0.0192 | 0.4605 | 0.0191 |
No. | Industry | Year | |||||||
---|---|---|---|---|---|---|---|---|---|
2007 | 2008 | 2009 | 2010 | ||||||
Coal | Waste-Water | Coal | Waste-Water | Coal | Waste-Water | Coal | Waste-Water | ||
1 | Coal mining and washing | 0.0122 | 0.0697 | 0.0119 | 0.0957 | 0.0201 | 0.1613 | 0.0184 | 0.1241 |
2 | Oil and gas extraction | 0.6958 | 0.6657 | 0.7008 | 0.5751 | 0.3538 | 0.7053 | 0.3143 | 0.5112 |
3 | Black metal mining | 0.2653 | 0.0604 | 0.1728 | 0.0583 | 0.2063 | 0.0830 | 0.1598 | 0.0834 |
4 | Nonferrous metal mining | 0.3734 | 0.0232 | 0.3334 | 0.0230 | 0.3256 | 0.0302 | 0.2846 | 0.0247 |
5 | Nonmetallic mining | 0.0317 | 0.0589 | 0.0345 | 0.0709 | 0.0240 | 0.0749 | 0.0255 | 0.0672 |
6 | Other mining | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 0.0983 | 0.0229 |
7 | Sideline food processing | 0.1267 | 0.0308 | 0.0920 | 0.0294 | 0.0848 | 0.0360 | 0.0749 | 0.0297 |
8 | Food manufacturing | 0.0751 | 0.0428 | 0.0566 | 0.0390 | 0.0715 | 0.0476 | 0.1075 | 0.0624 |
9 | Beverage manufacturing | 0.0927 | 0.0294 | 0.3062 | 0.0979 | 0.1891 | 0.0861 | 0.1692 | 0.0467 |
10 | Tobacco products | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
11 | Textile | 0.0740 | 0.0218 | 0.0634 | 0.0214 | 0.0619 | 0.0230 | 0.0578 | 0.0196 |
12 | Textile and garment, shoes, hats manufacturing | 0.3621 | 0.1539 | 0.3209 | 0.1498 | 0.3156 | 0.1714 | 0.2663 | 0.1726 |
13 | Leather, fur, feather (velvet) and its products | 0.5919 | 0.0626 | 0.5625 | 0.0567 | 0.5278 | 0.0661 | 0.5406 | 0.0481 |
14 | Wood processing and wood, bamboo, rattan, brown, grass products | 0.0962 | 0.2102 | 0.0763 | 0.2216 | 0.0713 | 0.1871 | 0.0654 | 0.1874 |
15 | Furniture manufacturing | 0.8279 | 0.3445 | 0.6288 | 0.3542 | 0.6646 | 0.3884 | 0.5250 | 0.2760 |
16 | Paper and paper products | 0.0573 | 0.0097 | 0.0254 | 0.0060 | 0.0232 | 0.0067 | 0.0247 | 0.0059 |
17 | Printing and recording media | 0.5961 | 0.3782 | 0.5317 | 0.4623 | 0.5358 | 0.4324 | 0.4246 | 0.4015 |
18 | Cultural and educational sporting goods manufacturing | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
19 | Oil processing, coking and nuclear fuel processing | 0.0074 | 0.0604 | 0.0061 | 0.0726 | 0.0101 | 0.1180 | 0.0224 | 0.1891 |
20 | Chemical raw materials and chemical products manufacturing | 0.0372 | 0.0396 | 0.0294 | 0.0431 | 0.0308 | 0.0477 | 0.0294 | 0.0394 |
21 | Pharmaceutical manufacturing | 0.1385 | 0.0525 | 0.1037 | 0.0477 | 0.1013 | 0.0487 | 0.0886 | 0.0401 |
22 | Chemical fiber manufacturing | 0.1058 | 0.0416 | 0.1050 | 0.0391 | 0.0648 | 0.0372 | 0.1228 | 0.0408 |
23 | Rubber products | 0.0892 | 0.1467 | 0.0681 | 0.1488 | 0.0646 | 0.1576 | 0.0780 | 0.1811 |
24 | Plastic products | 0.3177 | 0.5072 | 0.2225 | 0.4411 | 0.1778 | 0.5429 | 0.1555 | 0.3953 |
25 | Nonmetallic mineral products | 0.0209 | 0.3018 | 0.0173 | 0.3693 | 0.0171 | 0.4227 | 0.0171 | 0.3862 |
26 | Ferrous metal smelting and rolling processing | 0.0306 | 0.1170 | 0.0220 | 0.1167 | 0.0241 | 0.1584 | 0.0425 | 0.2811 |
27 | Nonferrous metal smelting and rolling processing | 0.0652 | 0.1386 | 0.0443 | 0.1491 | 0.0501 | 0.1921 | 0.0258 | 0.1564 |
28 | Metal products | 0.3838 | 0.0889 | 0.2859 | 0.1065 | 0.2748 | 0.1070 | 0.2615 | 0.0915 |
29 | General equipment manufacturing | 0.5180 | 0.4127 | 0.3807 | 0.3572 | 0.3676 | 0.4241 | 0.3237 | 0.3583 |
30 | Special equipment manufacturing | 0.2282 | 0.3205 | 0.1821 | 0.2916 | 0.1629 | 0.3113 | 0.1344 | 0.2901 |
31 | Transportation equipment manufacturing | 0.3340 | 0.3114 | 0.2719 | 0.2448 | 0.2524 | 0.2839 | 0.2240 | 0.2436 |
32 | Electrical machinery and equipment manufacturing | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
33 | Communications equipment, computers and other electronic equipment manufacturing | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
34 | Instrumentation and culture, office machinery manufacturing | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
35 | Handicrafts and other manufacturing | 0.0750 | 0.2399 | 0.0595 | 0.4879 | 0.0613 | 0.2851 | 0.0534 | 0.3283 |
36 | Waste resources and waste materials recycling | 0.9494 | 0.1662 | 0.5540 | 0.2506 | 0.4781 | 0.1883 | 0.3436 | 0.1295 |
37 | Electricity, heat production and supply | 0.0041 | 0.0942 | 0.0033 | 0.0774 | 0.0061 | 0.1755 | 0.0058 | 0.1914 |
38 | Gas production and supply | 0.0085 | 0.1064 | 0.0099 | 0.1329 | 0.0077 | 0.1730 | 0.0064 | 0.1483 |
39 | Water production and supply | 0.2649 | 0.0467 | 0.3156 | 0.0204 | 0.5187 | 0.0199 | 0.1509 | 0.0108 |
No. | Industry | Year | |||||||
---|---|---|---|---|---|---|---|---|---|
2011 | 2012 | 2013 | 2014 | ||||||
Coal | Waste-Water | Coal | Waste-Water | Coal | Waste-Water | Coal | Waste-Water | ||
1 | Coal mining and washing | 0.0189 | 0.2541 | 0.0160 | 0.2545 | 0.0152 | 0.2501 | 0.0158 | 0.2595 |
2 | Oil and gas extraction | 0.4309 | 0.5271 | 0.2913 | 0.5270 | 0.2870 | 0.5270 | 0.5903 | 0.5142 |
3 | Black metal mining | 0.3063 | 0.1503 | 0.1513 | 0.0867 | 0.0507 | 0.0655 | 0.0401 | 0.0576 |
4 | Nonferrous metal mining | 0.3509 | 0.0255 | 0.2031 | 0.0256 | 0.1121 | 0.0254 | 0.0812 | 0.0243 |
5 | Nonmetallic mining | 0.0559 | 0.1375 | 0.0181 | 0.0638 | 0.0111 | 0.0648 | 0.0110 | 0.0689 |
6 | Other mining | 0.1974 | 0.0334 | 0.0552 | 0.0113 | 0.0429 | 0.0115 | 0.0850 | 0.0164 |
7 | Sideline food processing | 0.1010 | 0.0306 | 0.1060 | 0.0497 | 0.0309 | 0.0306 | 0.0298 | 0.0306 |
8 | Food manufacturing | 0.0597 | 0.0328 | 0.0321 | 0.0328 | 0.0204 | 0.0322 | 0.2159 | 0.1311 |
9 | Beverage manufacturing | 0.1926 | 0.0474 | 0.3729 | 0.0914 | 0.1184 | 0.0498 | 0.1290 | 0.0499 |
10 | Tobacco products | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
11 | Textile | 0.0829 | 0.0186 | 0.0699 | 0.0212 | 0.0366 | 0.0184 | 0.0360 | 0.0184 |
12 | Textile and garment, shoes, hats manufacturing | 0.3996 | 0.1723 | 0.2140 | 0.1723 | 0.1538 | 0.1723 | 0.1367 | 0.1726 |
13 | Leather, fur, feather (velvet) and its products | 0.8041 | 0.0482 | 0.4038 | 0.0483 | 0.1733 | 0.0483 | 0.1628 | 0.0469 |
14 | Wood processing and wood, bamboo, rattan, brown, grass products | 0.0895 | 0.1893 | 0.0529 | 0.1877 | 0.0363 | 0.1894 | 0.0286 | 0.1850 |
15 | Furniture manufacturing | 0.7134 | 0.2760 | 0.4118 | 0.2773 | 0.1983 | 0.2780 | 0.1902 | 0.2692 |
16 | Paper and paper products | 0.0259 | 0.0059 | 0.0475 | 0.0097 | 0.0189 | 0.0057 | 0.0191 | 0.0057 |
17 | Printing and recording media | 0.8083 | 0.4015 | 0.4654 | 0.4015 | 0.2140 | 0.4020 | 0.1504 | 0.4035 |
18 | Cultural and educational sporting goods manufacturing | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
19 | Oil processing, coking and nuclear fuel processing | 0.0034 | 0.0405 | 0.0019 | 0.0408 | 0.0193 | 0.1924 | 0.0186 | 0.2136 |
20 | Chemical raw materials and chemical products manufacturing | 0.0322 | 0.0456 | 0.0252 | 0.0435 | 0.0474 | 0.0739 | 0.0192 | 0.0459 |
21 | Pharmaceutical manufacturing | 0.1149 | 0.0415 | 0.0607 | 0.0398 | 0.1160 | 0.0704 | 0.0294 | 0.0400 |
22 | Chemical fiber manufacturing | 0.0468 | 0.0176 | 0.1084 | 0.0415 | 0.0155 | 0.0175 | 0.0138 | 0.0177 |
23 | Rubber products | 0.0771 | 0.1257 | 0.0434 | 0.1248 | 0.0417 | 0.1249 | 0.0324 | 0.1254 |
24 | Plastic products | 0.2279 | 0.3986 | 0.1274 | 0.3944 | 0.1208 | 0.3947 | 0.0975 | 0.3963 |
25 | Nonmetallic mineral products | 0.0182 | 0.4051 | 0.0186 | 0.4401 | 0.0159 | 0.3825 | 0.0163 | 0.4253 |
26 | Ferrous metal smelting and rolling processing | 0.0316 | 0.2242 | 0.0147 | 0.1324 | 0.0062 | 0.0744 | 0.0076 | 0.0880 |
27 | Nonferrous metal smelting and rolling processing | 0.0274 | 0.1355 | 0.0151 | 0.1318 | 0.0104 | 0.1332 | 0.0105 | 0.1599 |
28 | Metal products | 0.4010 | 0.0918 | 0.1874 | 0.0940 | 0.1000 | 0.0916 | 0.1031 | 0.0919 |
29 | General equipment manufacturing | 0.4783 | 0.3583 | 0.4099 | 0.3582 | 0.2655 | 0.3583 | 0.2620 | 0.3599 |
30 | Special equipment manufacturing | 0.2075 | 0.2944 | 0.1545 | 0.2904 | 0.1686 | 0.2894 | 0.1612 | 0.2975 |
31 | Transportation equipment manufacturing | 0.3265 | 0.2436 | 0.2604 | 0.2436 | 0.2653 | 0.2436 | 0.2649 | 0.2506 |
32 | Electrical machinery and equipment manufacturing | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
33 | Communications equipment, computers and other electronic equipment manufacturing | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
34 | Instrumentation and culture, office machinery manufacturing | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
35 | Handicrafts and other manufacturing | 0.0752 | 0.3283 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 | 1.0000 |
36 | Waste resources and waste materials recycling | 0.4504 | 0.1381 | 0.2425 | 0.1381 | 0.0552 | 0.1381 | 0.0445 | 0.1361 |
37 | Electricity, heat production and supply | 0.0042 | 0.1713 | 0.0049 | 0.1997 | 0.0028 | 0.1246 | 0.0061 | 0.2009 |
38 | Gas production and supply | 0.0423 | 0.3446 | 0.0072 | 0.1717 | 0.0171 | 0.2539 | 0.0077 | 0.1537 |
39 | Water production and supply | 0.3160 | 0.0115 | 0.1253 | 0.0115 | 0.1464 | 0.0117 | 0.1456 | 0.0113 |
© 2018 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 (http://creativecommons.org/licenses/by/4.0/).
Share and Cite
Li, L.; Yang, W. Total Factor Efficiency Study on China’s Industrial Coal Input and Wastewater Control with Dual Target Variables. Sustainability 2018, 10, 2121. https://doi.org/10.3390/su10072121
Li L, Yang W. Total Factor Efficiency Study on China’s Industrial Coal Input and Wastewater Control with Dual Target Variables. Sustainability. 2018; 10(7):2121. https://doi.org/10.3390/su10072121
Chicago/Turabian StyleLi, Lingguang, and Weixin Yang. 2018. "Total Factor Efficiency Study on China’s Industrial Coal Input and Wastewater Control with Dual Target Variables" Sustainability 10, no. 7: 2121. https://doi.org/10.3390/su10072121