Skip to content
Snippets Groups Projects
Commit ceb6c6dc authored by Tim Übelhör's avatar Tim Übelhör
Browse files

Step size is stored as double (like fmi standard). Guid renamed

parent 397bd375
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ message ProtoChannelLink { ...@@ -14,7 +14,7 @@ message ProtoChannelLink {
// Instance of a fmu model. In the frontend a DataSource represents a FmuInstance. // Instance of a fmu model. In the frontend a DataSource represents a FmuInstance.
message ProtoFmuInstance { message ProtoFmuInstance {
string instance_name = 1; // Name of one concrete instance (from fmi2Instantiate) string instance_name = 1; // Name of one concrete instance (from fmi2Instantiate)
string model_guid = 2; // The guid of the model (from modelDescription.xml) string guid = 2; // The guid of the model (from modelDescription.xml)
repeated ProtoChannel channels = 3; repeated ProtoChannel channels = 3;
} }
...@@ -29,5 +29,5 @@ message ProtoSimulationSettings { ...@@ -29,5 +29,5 @@ message ProtoSimulationSettings {
repeated ProtoChannelLink channel_links = 1; repeated ProtoChannelLink channel_links = 1;
repeated ProtoFmuInstance fmu_instances = 2; repeated ProtoFmuInstance fmu_instances = 2;
ProtoRemoteSettings remote_settings = 3; ProtoRemoteSettings remote_settings = 3;
int64 step_size_nanoseconds = 4; // High precision, max ~ 100000 days ;) double step_size = 4; // In seconds
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment