Skip to content

Commit 1b5c6ef

Browse files
authored
Merge branch 'main' into topo_sort_cycles
2 parents e5bd791 + 1c696c0 commit 1b5c6ef

36 files changed

Lines changed: 130 additions & 69 deletions

.github/workflows/cargo-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
cargo test --verbose --no-fail-fast
3131
3232
# Upload regression test results for analysis
33-
- uses: actions/upload-artifact@v4
33+
- uses: actions/upload-artifact@v5
3434
if: "!cancelled()"
3535
with:
3636
name: muse2_test_results_${{ matrix.os }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
cp target/release/muse2${{ matrix.exe_suffix }} muse2
4949
cp LICENSE muse2/LICENCE.txt
5050
cp assets/readme/readme_${{ matrix.osname }}.txt muse2/README.txt
51-
- uses: actions/upload-artifact@v4
51+
- uses: actions/upload-artifact@v5
5252
if: ${{ github.event_name != 'release' }}
5353
with:
5454
name: muse2_${{ matrix.osname }}

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ toml = "0.9.8"
2424
unicase = "2.8.1"
2525
fern = {version = "0.7.1", features = ["chrono", "colored"]}
2626
chrono = "0.4"
27-
clap = {version = "4.5.49", features = ["cargo", "derive"]}
27+
clap = {version = "4.5.50", features = ["cargo", "derive"]}
2828
include_dir = "0.7.4"
2929
highs = "1.12.0"
3030
indexmap = "2.12.0"

docs/glossary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ becomes an *Asset* that they own and operate. An *Asset* is an instance of a *Pr
1616
specific capacity, and a decommissioning year. A set of *Assets* must exist in the base year
1717
sufficient to serve base year demands (i.e. a calibrated base year, based on user input data).
1818

19-
**Availability:** The maximum, minimum or fixed percentage of maximum output (or input) that an
19+
**Availability:** The maximum, minimum or fixed percentage of maximum output (or input) that a
2020
*Process* delivers over a period. The time period could be a single time slice, a season, or a year.
2121

2222
**Base Year:** The starting year of a model run. The base year is typically calibrated to known

docs/templates/input_files.md.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<!-- markdownlint-disable MD033 -->
77

88
This file contains information about the file formats for MUSE2 input files.
9+
It is not required to supply every input file - empty files can be omitted.
910

1011
{{ toml_info }}
1112

examples/missing_commodity/agent_search_space.csv

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/missing_commodity/process_availabilities.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
process_id,regions,years,time_slice,limit_type,value
1+
process_id,regions,commission_years,time_slice,limit_type,value
22
GASDRV,all,all,annual,up,0.9
33
GASPRC,all,all,annual,up,0.9
44
BIOPRO,all,all,annual,up,1.0

examples/missing_commodity/process_flows.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
process_id,commodity_id,regions,years,coeff,type,cost
1+
process_id,commodity_id,regions,commission_years,coeff,type,cost
22
GASDRV,GASPRD,all,all,1.0,fixed,
33
GASPRC,GASPRD,all,all,-1.05,fixed,
44
GASPRC,GASNAT,all,all,1.0,fixed,

examples/missing_commodity/process_parameters.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
process_id,regions,years,capital_cost,fixed_operating_cost,variable_operating_cost,lifetime,discount_rate
1+
process_id,regions,commission_years,capital_cost,fixed_operating_cost,variable_operating_cost,lifetime,discount_rate
22
GASDRV,all,all,10.0,0.3,2.0,25,0.1
33
GASPRC,all,all,7.0,0.21,0.5,25,0.1
44
BIOPRO,all,all,1.0,0.2,0.25,20,0.09

0 commit comments

Comments
 (0)