Skip to content
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

WIP: Pubsub #36

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions Organization.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,3 @@ All participants received a marketing package which will be updated as the trade
- If you publish information or are mentioning umati partnership in other places, please **keep us informed by either sending a copy or a URL to [[email protected]](mailto:[email protected])** for online material.
- For fairs with a central **umati booth**, there will be a logo wall with all umati partners. Please **provide a logo to us**.
- For picturing your machine on the umati dashboard, please **send us a picture of the specific machine** to [[email protected]](mailto:[email protected]) (Image will be compressed to 1100x800 if it's larger) together with the Namespace URI of the machine in the datahub. If you do not provide a picture, we will instead display a dummy machine icon.

## Documentation, timeline and notes on implementation details for umati showcase

### Provided documents and files

We have provided reference documents for the umati showcase information model as follows:

- Specification of [OPC UA server](Server.md) and parameter set for umati demonstrators, offers an extensive description of the umati showcase demonstrator story, organizational and technical requirements for all participants, specification of the umati showcase [OPC UA Server](Server.md) as well as documentation, timeline and notes for the umati showcase [OPC UA Server](Server.md) and client implementations
- [Memorandum of understanding](TODO:LINK) regulates the use of the brand, services offered by VDW and obligations of the participant in context to the umati showcase demonstrations, if you have registered as a umati partner already, there is no need to sign the MoU again.
- for marketing materials and the umati ambassador/booth personnel documentation see [https://umati.org/Partners/partner-material/](https://umati.org/Partners/partner-material/) for current versions and details.
1,976 changes: 1,976 additions & 0 deletions PubSub.md

Large diffs are not rendered by default.

141 changes: 141 additions & 0 deletions PubSub/MRMachineTool-metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
{
"MessageId": null,
"MessageType": "ua-metadata",
"PublisherId": "MoreRealisticMachineTool",
"DataSetWriterId": 0,
"DataSetWriterName": "MoreRealisticMachineTool_.MachineTool_Writer",
"MetaData": {
"Namespaces": [],
"StructureDataTypes": [],
"EnumDataTypes": [],
"SimpleDataTypes": [],
"Name": "MoreRealisticMachineTool_.MachineTool",
"Description": {
"Locale": "",
"Text": ""
},
"Fields": [
{
"Name": "FeedOverride",
"Description": {
"Locale": "",
"Text": ""
},
"FieldFlags": 0,
"BuiltInType": 10,
"DataType": {
"Id": 11
},
"ValueRank": -2,
"ArrayDimensions": [],
"MaxStringLength": 0,
"DataSetFieldId": "492B8BBC-1FA8-0F09-EBBE-AB3A7DD77DF7",
"Properties": [
{
"Key": {
"Name": "EngineeringUnits"
},
"Value": {
"Type": 22,
"Body": {
"TypeId": {
"Id": 887
},
"Body": {
"NamespaceUri": "",
"UnitId": 0,
"DisplayName": {
"Locale": "",
"Text": "%"
},
"Description": {
"Locale": "",
"Text": ""
}
}
}
}
},
{
"Key": {
"Name": "EURange"
},
"Value": {
"Type": 22,
"Body": {
"TypeId": {
"Id": 884
},
"Body": {
"Low": 0,
"High": 100
}
}
}
}
]
},
{
"Name": "IsWarmUp",
"Description": {
"Locale": "",
"Text": ""
},
"FieldFlags": 0,
"BuiltInType": 0,
"DataType": {
"Id": 1
},
"ValueRank": -2,
"ArrayDimensions": [],
"MaxStringLength": 0,
"DataSetFieldId": "594D502B-2A7F-255E-4224-6216CD8CE81E",
"Properties": []
},
{
"Name": "CurrentState",
"Description": {
"Locale": "",
"Text": ""
},
"FieldFlags": 0,
"BuiltInType": 20,
"DataType": {
"Id": 21
},
"ValueRank": -2,
"ArrayDimensions": [],
"MaxStringLength": 0,
"DataSetFieldId": "DEBE6591-7B4A-7223-9759-E5DE61B63B53",
"Properties": [
{
"Key": {
"Name": "Number"
},
"Value": {
"Type": 7,
"Body": 1
}
},
{
"Key": {
"Name": "Id"
},
"Value": {
"Type": 17,
"Body": {
"Id": 138,
"Namespace": 5
}
}
}
]
}
],
"DataSetClassId": "00000000-0000-0000-0000-000000000000",
"ConfigurationVersion": {
"MajorVersion": 3215192808,
"MinorVersion": 184991996
}
}
}
33 changes: 33 additions & 0 deletions PubSub/MRMachineTool.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"MessageId": null,
"MessageType": "ua-data",
"Messages": [
{
"DataSetWriterId": 0,
"DataSetWriterName": "MoreRealisticMachineTool_.MachineTool_Writer",
"SequenceNumber": 358,
"MetaDataVersion": {
"MajorVersion": 3215192808,
"MinorVersion": 1585130426
},
"Timestamp": "2022-07-07T08:50:11.226388Z",
"Payload": {
"FeedOverride": {
"Type": 11,
"Body": 0
},
"IsWarmUp": {
"Type": 1,
"Body": true
},
"CurrentState": {
"Type": 21,
"Body": {
"Locale": "en",
"Text": "Initializing"
}
}
}
}
]
}
Loading