-
Notifications
You must be signed in to change notification settings - Fork 2
Kefei/dev #11
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
Open
singha42
wants to merge
10
commits into
GRIDAPPSD:cleaned_up_version
Choose a base branch
from
singha42:kefei/dev
base: cleaned_up_version
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Kefei/dev #11
Changes from 2 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
3631f8e
tried dnp3-python pacakge
AAndersn 903fd4f
format cim-message to publish data from dnp3 outstation, commited by …
AAndersn d53831a
attempted to connect to gridapss-d server
singha42 c66c45e
cleaned up start_service_new
singha42 612c525
Finished send outstation control through on_message
singha42 9654fc8
Modified to receive a cim-message for the on_receive call back message.
singha42 7722b08
put mrid from a received cim-difference-message to config
singha42 9288515
Updated to cim-difference-message example to match Alex's example
singha42 59fd1ef
cim-message input and output topicc confirmed
singha42 7c5f23d
updated the workflow for mrid
singha42 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,12 +1,12 @@ | ||
| { | ||
| "RTU1": { | ||
| "RTU1": { | ||
| "name": "RTU1", | ||
| "conversion_type": "RTU1", | ||
| "CIM object": "l50", | ||
| "port": "20000", | ||
| "ip": "172.20.128.199", | ||
| "port": "30000", | ||
| "ip": "127.0.0.1", | ||
| "desc": "RTU1", | ||
| "link_local_addr": "101", | ||
| "link_remote_addr": "43" | ||
| "link_local_addr": "2", | ||
| "link_remote_addr": "1" | ||
| } | ||
| } | ||
| } |
62 changes: 62 additions & 0 deletions
62
dnp3-master/service/config/new_conversion_dict_master.json
This file contains hidden or 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,62 @@ | ||
| { | ||
| "RTU1": { | ||
| "Binary input": { | ||
| "0": { | ||
| "index": 0, | ||
| "original_name": "ufls_59.1", | ||
| "Type of Object": "Protection Relay", | ||
| "CIM attribute": "FunctionBlock.enabled", | ||
| "CIM name": "ufls_59.1", | ||
| "CIM phase": "ABC", | ||
| "CIM Variable": "Pos", | ||
| "CIM units": "", | ||
| "CIM type": "Pos", | ||
| "Multiplier": 1, | ||
| "CIM Var type": "magnitude" | ||
| }, | ||
| "1": { | ||
| "index": 1, | ||
| "original_name": "ufls_59.5", | ||
| "Type of Object": "Protection Relay", | ||
| "CIM attribute": "FunctionBlock.enabled", | ||
| "CIM name": "ufls_59.5", | ||
| "CIM phase": "ABC", | ||
| "CIM Variable": "Pos", | ||
| "CIM units": "", | ||
| "CIM type": "Pos", | ||
| "Multiplier": 1, | ||
| "CIM Var type": "magnitude" | ||
| } | ||
| }, | ||
| "Binary output": { | ||
| "0": { | ||
| "index": 0, | ||
| "original_name": "ufls_59.1", | ||
| "Type of Object": "Protection Relay", | ||
| "CIM attribute": "FunctionBlock.enabled", | ||
| "CIM name": "ufls_59.1", | ||
| "CIM phase": "ABC", | ||
| "CIM Variable": "pos", | ||
| "CIM units": "", | ||
| "CIM type": "Pos", | ||
| "Multiplier": 1, | ||
| "CIM Value Type": "magnitude", | ||
| "CIM mRID": "1d88371e-3db5-4b23-b8cd-fc0f2f3569fb" | ||
| }, | ||
| "1": { | ||
| "index": 1, | ||
| "original_name": "ufls_59.5", | ||
| "Type of Object": "Protection Relay", | ||
| "CIM attribute": "FunctionBlock.enabled", | ||
| "CIM name": "ufls_59.5", | ||
| "CIM phase": "ABC", | ||
| "CIM Variable": "pos", | ||
| "CIM units": "", | ||
| "CIM type": "Pos", | ||
| "Multiplier": 1, | ||
| "CIM Value Type": "magnitude", | ||
| "CIM mRID": "a9eb2b35-c340-4d31-9a0a-4ff2d4463361" | ||
| } | ||
| } | ||
| } | ||
| } |
22 changes: 22 additions & 0 deletions
22
dnp3-master/service/config/new_measurement_dict_master.json
This file contains hidden or 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,22 @@ | ||
| { | ||
| "ufls_59.1": { | ||
| "Pos": { | ||
| "ABC": [ | ||
| { | ||
| "mrid": "1d88371e-3db5-4b23-b8cd-fc0f2f3569fb", | ||
| "type": "value" | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| "ufls_59.5": { | ||
| "Pos": { | ||
| "ABC": [ | ||
| { | ||
| "mrid": "a9eb2b35-c340-4d31-9a0a-4ff2d4463361", | ||
| "type": "value" | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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,23 @@ | ||
| { | ||
| "ufls_59.1": { | ||
| "Pos": { | ||
| "ABC": [ | ||
| { | ||
| "mrid": "1d88371e-3db5-4b23-b8cd-fc0f2f3569fb", | ||
| "type": "value" | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| "ufls_59.5": { | ||
| "Pos": { | ||
| "ABC": [ | ||
| { | ||
| "mrid": "a9eb2b35-c340-4d31-9a0a-4ff2d4463361", | ||
| "type": "value" | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| } | ||
|
|
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be better if python files do not have a specific model dependent dictionaries. Make that configurable based on input.