osi-sensor-model-packaging
osi-sensor-model-packaging copied to clipboard
This document specifies the ways in which sensor models are to be packaged for use in simulation environments with FMI 2.0
#### Describe the problem As a first test, I want to run the DummySource and the dummySensor FMUs in an FMI co-simulator. In order to be able to validate the...
Based on review feedback, clarify that FMI 3.0 binary variable `mimeType` attribute and annotation `mime-type` attribute must match.
#### Describe the problem In the [model types](https://opensimulationinterface.github.io/osi-antora-generator/asamosi/latest/sensor-model/spec/model_types.html) documentation, multiple inputs and outputs for traffic participant models are defined. Can the ego vehicle also be modeled as a traffic participant?...
#### Describe the feature Currently, it is unclear, where in a co-simulation the mounting position of a sensor is defined. By talking to different people of OEMs, Tier1s and tool...
As discussed in CCB 2023-06-22, the OSMP definitions for models using the newly introduced MotionRequest message in OSI 3.6.0 have not been added yet. This should be implemented for the...
#### Describe the problem It's a bit hard to trigger, but were able to reproduce this with a custom OSMP sensor based on the `OSMPDummySensor` example: 1. FMI/OSMP setup including...
#### Reference to a related issue in the repository Closes https://github.com/OpenSimulationInterface/osi-sensor-model-packaging/issues/116 #### Add a description Simply adds a `project()` call to the CMakeLists.txt #### Check the checklist - [x] I...
#### Reference to a related issue in the repository Fixes https://github.com/OpenSimulationInterface/osi-sensor-model-packaging/issues/114 #### Add a description Remove `using namespace std` and add full qualifier where needed #### Check the checklist -...
#### Describe the bug Running the cmake configuration give ```bash CMake Warning (dev) in CMakeLists.txt: No project() command is present. The top-level CMakeLists.txt file must contain a literal, direct call...
The use of `using namespace xyz` in header files is generally discouraged. In this project, it is currently present in the example files: - https://github.com/OpenSimulationInterface/osi-sensor-model-packaging/blob/961f01a352b8b7448bf198b659516bd623db3c4f/examples/OSMPDummySource/OSMPDummySource.h#L13 - https://github.com/OpenSimulationInterface/osi-sensor-model-packaging/blob/961f01a352b8b7448bf198b659516bd623db3c4f/examples/OSMPDummySource/OSMPDummySource.h#L13 Including using namespace...