- Drag and drop the "Data Type Conversion" block from the Simulink Library Browser to your Simulink model.
- Connect the output of your Arduino block to the input of the "Data Type Conversion" block.
- In the "Data Type Conversion" block parameters, set the output data type to double.
- Connect the output of the "Data Type Conversion" block to the input port of the simulation block.
battery twin in simulink
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am trying to do battery twin model for Lithuim ion battery in simulink. In simulation I required to give discharge current from hardware device (arduino). But I am getting error as Data type mismatch. 'Input Port 1' of 'Batteryhardwaresimulation/powergui/EquivalentModel1/Sources/u' expects a signal of data type 'double'. However, it is driven by a signal of data type 'uint16'.
Let me know how to clear error
0 commentaires
Réponses (1)
Harsh Sanghai
le 9 Mar 2023
Hi,
The error message indicates that the data type of the signal coming from your Arduino is uint16, but the input port of the simulation expects a double data type. To resolve this error, you need to convert the uint16 data type to double data type before sending it to the input port.
You can use the "Data Type Conversion" block in Simulink to convert the data type of the signal.
After completing these steps, the error should be resolved and your simulation should run without any issues.
0 commentaires
Voir également
Catégories
En savoir plus sur Arduino Hardware dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!