Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update getting-started.md #208

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 19 additions & 15 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,10 @@ and **N**epal)

```yaml
geographic_scope:
- 'IND'
- 'BGD'
- 'BTN'
- 'NPL'
- 'IND'
- 'BGD'
- 'BTN'
- 'NPL'
```

4. Change the model horizon to be from 2020 to 2040. Both numbers are inclusive.
Expand All @@ -216,22 +216,22 @@ day. The start number is inclusive, while the end number is exclusive.

```yaml
dayparts:
D1: [0, 8]
D2: [8, 16]
D3: [16, 24]
D1: [0, 8]
D2: [8, 16]
D3: [16, 24]
```

6. Change the number of seasons to represent 6 equally spaced days. Both numbers
are inclusive.

```yaml
seasons:
S1: [1, 2]
S2: [3, 4]
S3: [5, 6]
S4: [7, 8]
S5: [9, 10]
S6: [11, 12]
S1: [1, 2]
S2: [3, 4]
S3: [5, 6]
S4: [7, 8]
S5: [9, 10]
S6: [11, 12]
```

:::{tip}
Expand All @@ -251,7 +251,11 @@ are inclusive.
7. Change the emission penalty to `50` $/T

```yaml
emission_penalty: 50
emission_penalty:
- ["CO2", "IND", 2020, 2040, 50]
- ["CO2", "BGD", 2020, 2040, 50]
- ["CO2", "BTN", 2020, 2040, 50]
- ["CO2", "NPL", 2020, 2040, 50]
```

8. Run the command `snakemake -j6`
Expand Down Expand Up @@ -457,4 +461,4 @@ If you are experiencing issues running any of the examples, please submit a
[new issue](https://github.com/OSeMOSYS/osemosys_global/issues/new/choose).
Our GitHub
[discussion forum](https://github.com/OSeMOSYS/osemosys_global/discussions) is
also a great place to ask general OSeMOSYS Global questions.
also a great place to ask general OSeMOSYS Global questions.
Loading