-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
59 changed files
with
3,724 additions
and
209 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
{ | ||
"extends": "./node_modules/gts/" | ||
"extends": "./node_modules/gts/", | ||
"rules": { | ||
"@typescript-eslint/no-explicit-any": [ | ||
"off" | ||
] | ||
} | ||
} |
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,63 @@ | ||
--- | ||
name: Model Plugin | ||
about: Submiting a request to create a model plugin | ||
title: "Model Plugin - " | ||
labels: model | ||
assignees: '' | ||
--- | ||
|
||
- **What**: | ||
- **Why**: | ||
- **DoD**: | ||
- [ ] Does the model meet the specification? | ||
- [ ] Does the model have complete test coverage, including edge cases, happy path and error cases? | ||
- [ ] Is the code documented? | ||
|
||
## Config | ||
- `variable`: If this variable is present in the top level config what behaviour does it trigger? What is the default value if none is provided? | ||
|
||
## Observation | ||
_List the variables this model expects in an input observation_ | ||
- `variable`: Description | ||
|
||
## Impacts | ||
_List the variables this model exports out as an impact_ | ||
- `variable`: Description | ||
|
||
## Behavior | ||
What does the model do to turn the observations into impacts? List any important equations or references. | ||
|
||
## Assumptions | ||
What are the core assumptions this model makes? | ||
|
||
## Limitations | ||
In what situations is this model limited in it's function, behaviour, accuracy etc... | ||
|
||
## Example | ||
Provide at least one example of some input config and observations. This is in pimpl format not rimpl format, so the config is the global config and all parameters must be present on the observation. | ||
|
||
### Input | ||
|
||
```yaml | ||
config: | ||
key: value | ||
observations: | ||
- timestamp: 2023-07-06T00:00 | ||
duration: 3600 | ||
``` | ||
### Output | ||
```yaml | ||
config: | ||
key: value | ||
observations: | ||
- timestamp: 2023-07-06T00:00 | ||
duration: 3600 | ||
yyyy: zzzz | ||
impacts: | ||
- timestamp: 2023-07-06T00:00 | ||
duration: 3600 | ||
yyyy: zzzz | ||
aaaa: bbbb | ||
``` |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
src/**/*.js | ||
src/**/*.d.ts | ||
lib/**/*.js | ||
|
@@ -11,3 +10,4 @@ tsconfig.json | |
.jsii | ||
yarn-error.log | ||
build | ||
examples/ompls |
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.