You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
27
- Global Energy Monitor data integration
28
28
- Technology configuration system
29
29
- Network plotting with customizable styles
30
+
- Policies (subsidies) and differentiated fuel costs
30
31
31
32
### Changed
32
33
- Improved documentation structure with tutorials and reference guides
@@ -67,7 +68,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
67
68
68
69
## Version History Notes
69
70
70
-
PyPSA-China (PIK) is adapted from the Zhou et al. version, which was originally developed by Hailiang Liu et al. This changelog tracks changes from version 1.0.0 onwards in the PIK implementation.
71
+
PyPSA-China (PIK) is based on the paper by Zhou et al, which extends a version original developed by Hailiang Liu et al. This changelog tracks changes from version 1.0.0 onwards in the PIK implementation.
71
72
72
73
For detailed information about specific changes, see the [commit history](https://github.com/pik-piam/PyPSA-China-PIK/commits/main) on GitHub.
Copy file name to clipboardExpand all lines: docs/configuration.md
+36-22Lines changed: 36 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This is documentation for the PyPSA-China configuration (`config/default_config.yaml` & `config/technology_config.yaml`). The configuration file controls various aspects of the PyPSA-China energy system modeling workflow.
4
4
5
-
## Table of Contents
5
+
## Table of Contents
6
6
7
7
-[Run Configuration](#run-configuration)
8
8
-[File Paths](#file-paths)
@@ -45,7 +45,7 @@ This is documentation for the PyPSA-China configuration (`config/default_config.
45
45
46
46
2.**Customization**: Do not edit `default_config.yaml`. Overwrite the variables you need in `my_config.yaml`. See [running section](../running). Then run `snakemake --configfile config/my_config.yaml`
47
47
48
-
3.**Technology Configuration**: Additional technology parameters are defined in separate files in `config/technology_config.yaml`
48
+
3.**Technology Configuration**: Additional technology parameters are defined in separate files in `config/technology_config.yaml`
49
49
50
50
4.**Solver Selection**: Remember to select a solver that is installed.
- **`base_year`**: Reference year for capacity calculations (should be ≤ first planning year)
351
351
- **`base_capacity`**: (Optional) Base year total capacity in MW. If not set, auto-detected from base_year network
352
352
353
-
## Sector and component Switches
353
+
## Sector and component Switches
354
354
355
355
```yaml
356
356
heat_coupling: false
@@ -542,18 +542,33 @@ nodes:
542
542
- **`splits`**: Custom groupings of admin level 2 regions within provinces
543
543
544
544
## Fuel Subsidies
545
-
546
-
```yaml
547
-
subsidies:
548
-
enabled: false
549
-
gas:
550
-
Guangdong: -10
551
-
Jiangsu: -10
552
-
Zhejiang: -10
553
-
Beijing: -11
554
-
Tianjin: -11
555
-
Shanghai: -11
556
-
```
545
+
Fuel subsidies can be speficied for all years or per year
546
+
547
+
=== "All years"
548
+
```yaml
549
+
subsidies:
550
+
enabled: false
551
+
gas:
552
+
Guangdong: -10
553
+
Jiangsu: -10
554
+
Zhejiang: -10
555
+
Beijing: -11
556
+
Tianjin: -11
557
+
Shanghai: -11
558
+
```
559
+
=== "Year by year"
560
+
```yaml
561
+
subsidies:
562
+
enabled: false
563
+
gas:
564
+
2020:
565
+
Guangdong: -10
566
+
Jiangsu: -10
567
+
Zhejiang: -10
568
+
Beijing: -11
569
+
Tianjin: -11
570
+
Shanghai: -11
571
+
```
557
572
558
573
Provincial fuel subsidies configuration:
559
574
- **`enabled`**: Enable/disable fuel subsidy system
@@ -708,7 +723,7 @@ hydro:
708
723
## Fossil Fuel Ramping Constraints
709
724
710
725
Operational ramping constraints for fossil fuel power plants:
711
-
726
+
712
727
```yaml
713
728
fossil_ramps:
714
729
tech:
@@ -760,4 +775,3 @@ Also tech costs are now in Euro2015 from DK EA
760
775
- **`pv_utility_fraction`**: Fraction of solar PV that is utility-scale (100%)
761
776
762
777
This parameter distinguishes between utility-scale and residential/distributed solar installations, affecting cost assumptions and grid integration characteristics.
0 commit comments