Skip to content

Commit 8cc0454

Browse files
authored
Merge pull request #896 from EnergySystemsModellingLab/rename-to-muse2
Rename from MUSE 2.0 to MUSE2 everywhere
2 parents 04fa4eb + 838805a commit 8cc0454

38 files changed

Lines changed: 102 additions & 102 deletions

.all-contributorsrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"projectName": "MUSE_2.0",
2+
"projectName": "MUSE2",
33
"projectOwner": "EnergySystemsModellingLab",
44
"repoType": "github",
55
"repoHost": "https://github.com",

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
33
{
4-
"name": "MUSE 2.0",
4+
"name": "MUSE2",
55
"build": {
66
"context": "..",
77
"dockerfile": "../Dockerfile"

.lycheeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# For some reason these spurious links appear in some cargo doc-generated files
2-
^file://.+/MUSE_2.0/book/api/index\.html$
2+
^file://.+/MUSE2/book/api/index\.html$
33

44
# Times out on GitHub runner
55
^http://www.adobe.com

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This section guides you through submitting a bug report for MUSE. Following thes
4444
maintainers and the community understand your report :pencil:, reproduce the behavior :computer:
4545
:computer:, and find related reports :mag_right:.
4646

47-
Before creating bug reports, please check [this list](https://github.com/EnergySystemsModellingLab/MUSE_2.0/issues)
47+
Before creating bug reports, please check [this list](https://github.com/EnergySystemsModellingLab/MUSE2/issues)
4848
(including the closed issues) as you might find out that you don't need to create one. When you are
4949
creating a bug report, please [include as many details as possible](#how-do-i-submit-a-good-bug-report).
5050

@@ -73,7 +73,7 @@ Provide more context by answering these questions:
7373
this always a problem?
7474
- If the problem started happening recently, **can you reproduce the problem in an older version of
7575
MUSE?** What's the most recent version in which the problem doesn't happen? You can download older
76-
versions of MUSE from [the releases page](https://github.com/EnergySystemsModellingLab/MUSE_2.0/releases).
76+
versions of MUSE from [the releases page](https://github.com/EnergySystemsModellingLab/MUSE2/releases).
7777
- **Can you reliably reproduce the issue?** If not, provide details about how often the problem
7878
happens and under which conditions it normally happens.
7979

@@ -90,7 +90,7 @@ This section guides you through submitting an enhancement suggestion for MUSE, i
9090
new features and minor improvements to existing functionality. Following these guidelines helps
9191
maintainers and the community understand your suggestion :pencil: and find related suggestions :mag_right:.
9292

93-
Before creating enhancement suggestions, please check [this list](https://github.com/EnergySystemsModellingLab/MUSE_2.0/issues)
93+
Before creating enhancement suggestions, please check [this list](https://github.com/EnergySystemsModellingLab/MUSE2/issues)
9494
(including closed issues) as you might find out that you don't need to create one. When you are
9595
creating an enhancement suggestion, please [include as many details as possible](#how-do-i-submit-a-good-enhancement-suggestion).
9696

@@ -112,10 +112,10 @@ Create an issue on that repository and provide the following information:
112112
Unsure where to begin contributing to MUSE? You can start by looking through these `beginner` and
113113
`help-wanted` issues:
114114

115-
- [Beginner issues](https://github.com/EnergySystemsModellingLab/MUSE_2.0/labels/good%20first%20issue),
115+
- [Beginner issues](https://github.com/EnergySystemsModellingLab/MUSE2/labels/good%20first%20issue),
116116
issues which should only require a few lines
117117
of code, and a test or two.
118-
- [Help wanted issues](https://github.com/EnergySystemsModellingLab/MUSE_2.0/labels/help%20wanted),
118+
- [Help wanted issues](https://github.com/EnergySystemsModellingLab/MUSE2/labels/help%20wanted),
119119
issues which should be a bit more involved than `beginner` issues.
120120

121121
### Pull Requests

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ version = "2.0.0-dev1"
44
authors = ["Hawkes Research Group @ Chemical Engineering, Imperial College London <a.hawkes@imperial.ac.uk>", "Imperial College London RSE Team <ict-rse-team@imperial.ac.uk>"]
55
edition = "2024"
66
description = "A tool for running simulations of energy systems"
7-
documentation = "https://energysystemsmodellinglab.github.io/MUSE_2.0"
7+
documentation = "https://energysystemsmodellinglab.github.io/MUSE2"
88
readme = "README.md"
9-
repository = "https://github.com/EnergySystemsModellingLab/MUSE_2.0"
9+
repository = "https://github.com/EnergySystemsModellingLab/MUSE2"
1010
license = "GPL-3.0-only"
1111
keywords = ["energy", "modelling"]
1212
categories = ["science", "simulation", "command-line-utilities"]

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
33
[![All Contributors](https://img.shields.io/badge/all_contributors-9-orange.svg?style=flat-square)](#contributors-)
44
<!-- ALL-CONTRIBUTORS-BADGE:END -->
5-
[![Build and test](https://github.com/EnergySystemsModellingLab/MUSE_2.0/actions/workflows/cargo-test.yml/badge.svg)](https://github.com/EnergySystemsModellingLab/MUSE_2.0/actions/workflows/cargo-test.yml)
6-
[![codecov](https://codecov.io/github/EnergySystemsModellingLab/MUSE_2.0/graph/badge.svg?token=nV8gp1NCh8)](https://codecov.io/github/EnergySystemsModellingLab/MUSE_2.0)
7-
[![GitHub](https://img.shields.io/github/license/EnergySystemsModellingLab/MUSE_2.0)](https://raw.githubusercontent.com/EnergySystemsModellingLab/MUSE_2.0/main/LICENSE)
5+
[![Build and test](https://github.com/EnergySystemsModellingLab/MUSE2/actions/workflows/cargo-test.yml/badge.svg)](https://github.com/EnergySystemsModellingLab/MUSE2/actions/workflows/cargo-test.yml)
6+
[![codecov](https://codecov.io/github/EnergySystemsModellingLab/MUSE2/graph/badge.svg?token=nV8gp1NCh8)](https://codecov.io/github/EnergySystemsModellingLab/MUSE2)
7+
[![GitHub](https://img.shields.io/github/license/EnergySystemsModellingLab/MUSE2)](https://raw.githubusercontent.com/EnergySystemsModellingLab/MUSE2/main/LICENSE)
88

9-
# MUSE 2.0
9+
# MUSE2
1010

11-
MUSE 2.0 (**M**od**U**lar energy systems **S**imulation **E**nvironment) is a tool for running
11+
MUSE2 (**M**od**U**lar energy systems **S**imulation **E**nvironment) is a tool for running
1212
simulations of energy systems, written in Rust. Its purpose is to provide users with a framework to
1313
simulate pathways of energy system transition, usually in the context of climate change mitigation.
1414

@@ -41,11 +41,11 @@ foresight over the whole modelled time horizon.
4141

4242
## Getting started
4343

44-
To start using MUSE 2.0, please refer to [the documentation]. If you wish to develop MUSE 2.0 or
44+
To start using MUSE2, please refer to [the documentation]. If you wish to develop MUSE2 or
4545
build it from source, please see [the developer guide].
4646

47-
[the documentation]: https://energysystemsmodellinglab.github.io/MUSE_2.0/introduction.html
48-
[the developer guide]: https://energysystemsmodellinglab.github.io/MUSE_2.0/developer_guide.html
47+
[the documentation]: https://energysystemsmodellinglab.github.io/MUSE2/introduction.html
48+
[the developer guide]: https://energysystemsmodellinglab.github.io/MUSE2/developer_guide.html
4949

5050
## Contributors ✨
5151

@@ -57,17 +57,17 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
5757
<table>
5858
<tbody>
5959
<tr>
60-
<td align="center" valign="top" width="14.28%"><a href="https://www.imperial.ac.uk/admin-services/ict/self-service/research-support/rcs/service-offering/research-software-engineering/"><img src="https://avatars.githubusercontent.com/u/23149834?v=4?s=100" width="100px;" alt="Alex Dewar"/><br /><sub><b>Alex Dewar</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE_2.0/commits?author=alexdewar" title="Code">💻</a></td>
61-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tsmbland"><img src="https://avatars.githubusercontent.com/u/23723407?v=4?s=100" width="100px;" alt="Tom Bland"/><br /><sub><b>Tom Bland</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE_2.0/commits?author=tsmbland" title="Code">💻</a></td>
62-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Sahil590"><img src="https://avatars.githubusercontent.com/u/56438860?v=4?s=100" width="100px;" alt="Sahil Raja"/><br /><sub><b>Sahil Raja</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE_2.0/commits?author=Sahil590" title="Code">💻</a></td>
63-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Ashmit8583"><img src="https://avatars.githubusercontent.com/u/137117727?v=4?s=100" width="100px;" alt="Ashmit Sikdar"/><br /><sub><b>Ashmit Sikdar</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE_2.0/commits?author=Ashmit8583" title="Code">💻</a></td>
64-
<td align="center" valign="top" width="14.28%"><a href="https://www.imperial.ac.uk/admin-services/ict/self-service/research-support/rcs/service-offering/research-software-engineering/"><img src="https://avatars.githubusercontent.com/u/6095790?v=4?s=100" width="100px;" alt="Diego Alonso Álvarez"/><br /><sub><b>Diego Alonso Álvarez</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE_2.0/commits?author=dalonsoa" title="Code">💻</a></td>
65-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/AdrianDAlessandro"><img src="https://avatars.githubusercontent.com/u/40875798?v=4?s=100" width="100px;" alt="Adrian D'Alessandro"/><br /><sub><b>Adrian D'Alessandro</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE_2.0/commits?author=AdrianDAlessandro" title="Code">💻</a></td>
66-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TinyMarsh"><img src="https://avatars.githubusercontent.com/u/13540127?v=4?s=100" width="100px;" alt="Ryan Smith"/><br /><sub><b>Ryan Smith</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE_2.0/commits?author=TinyMarsh" title="Code">💻</a></td>
60+
<td align="center" valign="top" width="14.28%"><a href="https://www.imperial.ac.uk/admin-services/ict/self-service/research-support/rcs/service-offering/research-software-engineering/"><img src="https://avatars.githubusercontent.com/u/23149834?v=4?s=100" width="100px;" alt="Alex Dewar"/><br /><sub><b>Alex Dewar</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE2/commits?author=alexdewar" title="Code">💻</a></td>
61+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tsmbland"><img src="https://avatars.githubusercontent.com/u/23723407?v=4?s=100" width="100px;" alt="Tom Bland"/><br /><sub><b>Tom Bland</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE2/commits?author=tsmbland" title="Code">💻</a></td>
62+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Sahil590"><img src="https://avatars.githubusercontent.com/u/56438860?v=4?s=100" width="100px;" alt="Sahil Raja"/><br /><sub><b>Sahil Raja</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE2/commits?author=Sahil590" title="Code">💻</a></td>
63+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Ashmit8583"><img src="https://avatars.githubusercontent.com/u/137117727?v=4?s=100" width="100px;" alt="Ashmit Sikdar"/><br /><sub><b>Ashmit Sikdar</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE2/commits?author=Ashmit8583" title="Code">💻</a></td>
64+
<td align="center" valign="top" width="14.28%"><a href="https://www.imperial.ac.uk/admin-services/ict/self-service/research-support/rcs/service-offering/research-software-engineering/"><img src="https://avatars.githubusercontent.com/u/6095790?v=4?s=100" width="100px;" alt="Diego Alonso Álvarez"/><br /><sub><b>Diego Alonso Álvarez</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE2/commits?author=dalonsoa" title="Code">💻</a></td>
65+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/AdrianDAlessandro"><img src="https://avatars.githubusercontent.com/u/40875798?v=4?s=100" width="100px;" alt="Adrian D'Alessandro"/><br /><sub><b>Adrian D'Alessandro</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE2/commits?author=AdrianDAlessandro" title="Code">💻</a></td>
66+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/TinyMarsh"><img src="https://avatars.githubusercontent.com/u/13540127?v=4?s=100" width="100px;" alt="Ryan Smith"/><br /><sub><b>Ryan Smith</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE2/commits?author=TinyMarsh" title="Code">💻</a></td>
6767
</tr>
6868
<tr>
69-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/HarmonicReflux"><img src="https://avatars.githubusercontent.com/u/16504600?v=4?s=100" width="100px;" alt="Benjamin Scharpf"/><br /><sub><b>Benjamin Scharpf</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE_2.0/commits?author=HarmonicReflux" title="Code">💻</a></td>
70-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ahawkes"><img src="https://avatars.githubusercontent.com/u/12055725?v=4?s=100" width="100px;" alt="Adam Hawkes"/><br /><sub><b>Adam Hawkes</b></sub></a><br /><a href="#ideas-ahawkes" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/EnergySystemsModellingLab/MUSE_2.0/commits?author=ahawkes" title="Documentation">📖</a></td>
69+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/HarmonicReflux"><img src="https://avatars.githubusercontent.com/u/16504600?v=4?s=100" width="100px;" alt="Benjamin Scharpf"/><br /><sub><b>Benjamin Scharpf</b></sub></a><br /><a href="https://github.com/EnergySystemsModellingLab/MUSE2/commits?author=HarmonicReflux" title="Code">💻</a></td>
70+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ahawkes"><img src="https://avatars.githubusercontent.com/u/12055725?v=4?s=100" width="100px;" alt="Adam Hawkes"/><br /><sub><b>Adam Hawkes</b></sub></a><br /><a href="#ideas-ahawkes" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/EnergySystemsModellingLab/MUSE2/commits?author=ahawkes" title="Documentation">📖</a></td>
7171
</tr>
7272
</tbody>
7373
<tfoot>

assets/readme/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Readme files for MUSE 2.0
1+
# Readme files for MUSE2
22

3-
This folder contains readme files to be included with MUSE 2.0 releases.
3+
This folder contains readme files to be included with MUSE2 releases.

assets/readme/readme_linux.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
This folder contains the MUSE 2.0 executable for Linux, called `muse2`.
1+
This folder contains the MUSE2 executable for Linux, called `muse2`.
22

33
The only pre-requisite is libstdc++.so, which is likely installed on your system already. If not,
44
you can install with your package manager, e.g. for Ubuntu:
55

66
sudo apt install libstdc++6
77

8-
For more information on how to use MUSE 2.0, you can consult the program help:
8+
For more information on how to use MUSE2, you can consult the program help:
99

1010
./muse2 help
1111

1212
Documentation is also available on the web:
13-
https://energysystemsmodellinglab.github.io/MUSE_2.0/
13+
https://energysystemsmodellinglab.github.io/MUSE2/
1414

1515
Please report bugs on our GitHub issue tracker:
16-
https://github.com/EnergySystemsModellingLab/MUSE_2.0/issues
16+
https://github.com/EnergySystemsModellingLab/MUSE2/issues

assets/readme/readme_macos_arm.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
This folder contains the MUSE 2.0 executable for macOS (Apple Silicon), called `muse2`.
1+
This folder contains the MUSE2 executable for macOS (Apple Silicon), called `muse2`.
22

33
When trying to run the `muse2` program, you may see an error message saying "muse2 can't be opened
44
because Apple cannot check it for malicious software." To fix this, you should open `muse2` by
55
right-clicking on it in your file explorer and clicking "Open". You will be prompted to give
66
permission for the program to run. Once you have completed this step, you should be able to run the
77
program as normal.
88

9-
For more information on how to use MUSE 2.0, you can consult the program help:
9+
For more information on how to use MUSE2, you can consult the program help:
1010

1111
./muse2 help
1212

1313
Documentation is also available on the web:
14-
https://energysystemsmodellinglab.github.io/MUSE_2.0/
14+
https://energysystemsmodellinglab.github.io/MUSE2/
1515

1616
Please report bugs on our GitHub issue tracker:
17-
https://github.com/EnergySystemsModellingLab/MUSE_2.0/issues
17+
https://github.com/EnergySystemsModellingLab/MUSE2/issues

assets/readme/readme_windows.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
This folder contains the MUSE 2.0 executable for Windows, called `muse2`.
1+
This folder contains the MUSE2 executable for Windows, called `muse2`.
22

3-
For more information on how to use MUSE 2.0, you can consult the program help:
3+
For more information on how to use MUSE2, you can consult the program help:
44

55
./muse2 help
66

77
Documentation is also available on the web:
8-
https://energysystemsmodellinglab.github.io/MUSE_2.0/
8+
https://energysystemsmodellinglab.github.io/MUSE2/
99

1010
Please report bugs on our GitHub issue tracker:
11-
https://github.com/EnergySystemsModellingLab/MUSE_2.0/issues
11+
https://github.com/EnergySystemsModellingLab/MUSE2/issues

0 commit comments

Comments
 (0)