battery twin in simulink

2 Ansichten (letzte 30 Tage)
Nalla Muthu
Nalla Muthu am 9 Mär. 2023
Beantwortet: Harsh Sanghai am 9 Mär. 2023
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

Antworten (1)

Harsh Sanghai
Harsh Sanghai am 9 Mär. 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.
  1. Drag and drop the "Data Type Conversion" block from the Simulink Library Browser to your Simulink model.
  2. Connect the output of your Arduino block to the input of the "Data Type Conversion" block.
  3. In the "Data Type Conversion" block parameters, set the output data type to double.
  4. Connect the output of the "Data Type Conversion" block to the input port of the simulation block.
After completing these steps, the error should be resolved and your simulation should run without any issues.

Kategorien

Mehr zu Arduino Hardware finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by