mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
sv: updated example config
This commit is contained in:
parent
368fbfc9cd
commit
f1959c7ab3
2 changed files with 58 additions and 52 deletions
|
@ -1,52 +0,0 @@
|
|||
{
|
||||
"logging" : {
|
||||
"level" : 1
|
||||
},
|
||||
"nodes" : {
|
||||
"node1" : {
|
||||
"type" : "iec61850-9-2",
|
||||
|
||||
"interface" : "lo",
|
||||
"dst_address" : "01:0c:cd:01:00:01",
|
||||
|
||||
"publish" : {
|
||||
"fields" : [
|
||||
"float32",
|
||||
"float64",
|
||||
"int8",
|
||||
"int32"
|
||||
],
|
||||
|
||||
"svid" : "test1234",
|
||||
"datset" : "test",
|
||||
"smpmod" : "samples_per_second",
|
||||
"confrev" : 55
|
||||
},
|
||||
"subscribe" : {
|
||||
"fields" : [
|
||||
"float32",
|
||||
"float64",
|
||||
"int8",
|
||||
"int32"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
"node2" : {
|
||||
"type" : "iec61850-9-2",
|
||||
|
||||
"interface" : "lo",
|
||||
|
||||
"publish" : {
|
||||
"svid" : "testSV",
|
||||
"datset" : "abc",
|
||||
"fields" : [ "float32", "float64", "int8", "int32" ]
|
||||
},
|
||||
"subscribe" : {
|
||||
"fields" : [ "float32", "float64", "int8", "int32" ]
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
58
etc/sampled_values.json
Normal file
58
etc/sampled_values.json
Normal file
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"nodes" : {
|
||||
"node1" : {
|
||||
"type" : "iec61850-9-2",
|
||||
|
||||
"interface" : "lo",
|
||||
"dst_address" : "01:0c:cd:01:00:01",
|
||||
|
||||
"out" : {
|
||||
"signals" : [
|
||||
{ "name" : "sig1", "type" : "float", "iec_type" : "float32" },
|
||||
{ "name" : "sig1", "type" : "float", "iec_type" : "float64" },
|
||||
{ "name" : "sig1", "type" : "integer", "iec_type" : "int8" },
|
||||
{ "name" : "sig1", "type" : "integer", "iec_type" : "int32" }
|
||||
],
|
||||
|
||||
"svid" : "test1234",
|
||||
"datset" : "test",
|
||||
"smpmod" : "samples_per_second",
|
||||
"confrev" : 55
|
||||
},
|
||||
"int" : {
|
||||
"signals" : [
|
||||
{ "name" : "sig1", "type" : "float", "iec_type" : "float32" },
|
||||
{ "name" : "sig1", "type" : "float", "iec_type" : "float64" },
|
||||
{ "name" : "sig1", "type" : "integer", "iec_type" : "int8" },
|
||||
{ "name" : "sig1", "type" : "integer", "iec_type" : "int32" }
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
"node2" : {
|
||||
"type" : "iec61850-9-2",
|
||||
|
||||
"interface" : "lo",
|
||||
|
||||
"out" : {
|
||||
"svid" : "testSV",
|
||||
"datset" : "abc",
|
||||
"signals" : [
|
||||
{ "name" : "sig1", "type" : "float", "iec_type" : "float32" },
|
||||
{ "name" : "sig1", "type" : "float", "iec_type" : "float64" },
|
||||
{ "name" : "sig1", "type" : "integer", "iec_type" : "int8" },
|
||||
{ "name" : "sig1", "type" : "integer", "iec_type" : "int32" }
|
||||
]
|
||||
},
|
||||
"in" : {
|
||||
"signals" : [
|
||||
{ "name" : "sig1", "type" : "float", "iec_type" : "float32" },
|
||||
{ "name" : "sig1", "type" : "float", "iec_type" : "float64" },
|
||||
{ "name" : "sig1", "type" : "integer", "iec_type" : "int8" },
|
||||
{ "name" : "sig1", "type" : "integer", "iec_type" : "int32" }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue