battery twin in simulink

조회 수: 2 (최근 30일)
Nalla Muthu
Nalla Muthu 2023년 3월 9일
답변: Harsh Sanghai 2023년 3월 9일
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

답변 (1개)

Harsh Sanghai
Harsh Sanghai 2023년 3월 9일
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.

카테고리

Help CenterFile Exchange에서 Arduino Hardware에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by