-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into pp/#1012-chpmodelspec-and-cylindricalthermals…
…toragespec-also-need-adaptions-for-storage-without-storagevolumelvlmin
- Loading branch information
Showing
24 changed files
with
531 additions
and
324 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
cff-version: 1.2.0 | ||
title: SIMONA | ||
message: "If you use this software, please cite it as below." | ||
type: software | ||
authors: | ||
- family-names: Hiry | ||
given-names: Johannes | ||
orcid: https://orcid.org/0000-0002-1447-0607 | ||
- family-names: Kittl | ||
given-names: Chris | ||
orcid: https://orcid.org/0000-0002-1187-0568 | ||
- family-names: Sen Sarma | ||
given-names: Debopama | ||
orcid: https://orcid.org/0000-0003-3311-3020 | ||
- family-names: Oberließen | ||
given-names: Thomas | ||
orcid: https://orcid.org/0000-0001-5805-5408 | ||
- family-names: Peter | ||
given-names: Sebastian | ||
orcid: https://orcid.org/0000-0001-6311-6113 | ||
- family-names: Feismann | ||
given-names: Daniel | ||
orcid: https://orcid.org/0000-0002-3531-9025 | ||
- family-names: Bao | ||
given-names: Johannes | ||
orcid: https://orcid.org/0009-0008-3641-6469 | ||
- family-names: Hohmann | ||
given-names: Julian | ||
- family-names: Staudt | ||
given-names: Marius | ||
repository-code: https://github.com/ie3-institute/simona | ||
url: https://simona.ie3.e-technik.tu-dortmund.de | ||
repository-artifact: https://central.sonatype.com/artifact/com.github.ie3-institute/simona | ||
keywords: | ||
- agent-based | ||
- discrete-event simulation | ||
- powerflow | ||
- electricity distribution grid | ||
license: BSD-3-Clause | ||
version: 3.0.0 | ||
date-released: 2023-08-07 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
tasks.register('checkBranchName') { | ||
doLast { | ||
if (!project.hasProperty('branchName')) { | ||
throw new GradleException("Error: Missing required property 'branchName'.") | ||
} | ||
|
||
def branchName = project.property('branchName') | ||
|
||
def patterns = [ | ||
~/^(developer|develop|dev)$/, | ||
~/.*rel\/.*/, | ||
~/^dependabot\/.*$/, | ||
~/.*hotfix\/\pL{2}\/#\d+.*/, | ||
~/.*main/, | ||
~/^[a-z]{2}\/#[0-9]+(?:-.+)?$/ | ||
] | ||
|
||
def isValid = patterns.any { pattern -> branchName ==~ pattern } | ||
|
||
if (!isValid) { | ||
throw new GradleException("Error: Check Branch name format (e.g., ps/#1337-FeatureName).") | ||
} | ||
|
||
println "Branch name is $branchName" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.