China Huadian Corporation
China Huadian Corporation (Huadian Group, 华电集团) is one of the five largest state-owned power generation enterprises in China, administrated by SASAC for the State Council of the People's Republic of China, engaging in production and supply of electricity and heat, and the development of power-related primary energy. It produces about 10% of China's power along with Huaneng Group, Datang Group, Guodian Group and CPI Group.
![]() | |
State-owned enterprise | |
Industry | Power generation |
Founded | 2002 |
Headquarters | , People's Republic of China |
Area served | People's Republic of China |
Key people | Chairman: Mr. Zhao Jianguo |
Products | Electric power |
Subsidiaries | Huadian Power International |
Website | www |
Subsidiaries
- Huadian Power International (华电国际电力股份有限公司) (SEHK: 1071, SSE: 600027, A share), which is listed on the Hong Kong Stock Exchange and Shanghai Stock Exchange, is the Group's major subsidiary company. It operates thermal powers stations in China.
- Huadian Energy is an electric power subsidiary based in Harbin, Heilongjiang province.
- Huadian New Energy Development Company Limited (华电新能源发展有限公司) is the Group's main renewables subsidiary.[1]
- China Fortune International Trust (100%)
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
gollark: Coming in about 3 minutes.
gollark: Use osmarksbuildsystem™.
References
- "Archived copy". Archived from the original on 2012-07-28. Retrieved 2011-01-30.CS1 maint: archived copy as title (link)
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.