Problem in Data Type Conversion - ti C2000 DC/DC Buck Converter example

조회 수: 36 (최근 30일)
Hello everyone,
I have problem figuring out somthing in the example model named "DC/DC Buck Converter" from "Support Package for Texas Instrument c2000 Processors".
In this model, inside the subsystem "PI_Controller_ISR", the output of ADC block is gone to two successive Data Type Conversion blocks. The ADC output is 12bit and therefore is a Integer from 0 to 4095. But the first conversion block is set to output a fixdt(0,16,12) number, which can be between 0 and 15.999755859375, with precision of 0.000244140625 (According to the Data Type Assistant in the block), and the second Conversion block is set to output a fixdt(1,32,24) (between -128 and 127.99999994039536 with precision of 5.960464477539063e-08.
Why these two conversion blocks are configured this way? I mean their input comes from the ADC and is an INTEGER between 0 and 4095. Why their output range is this way? they can not have output greater than 15.999 !!
Secondly, Why is the high fraction precision required while the input is integer?
And there is another thing: why two blocks are used? (the first one is set to Stored Integer (SI), and the second one is set on Real World Value (RWV). I don't know the difference and why it should be this way.
I really appreciate it if someone can help me in this regard. Thanks in advance for your answers.
  댓글 수: 1
Mohammad Tauquir Iqbal
Mohammad Tauquir Iqbal 2019년 6월 21일
it would be much convenient for everyone who is using MATLAB to interface C2000 .
Many of the block doesnot have any detailed document.
cam you explain litlle bit about ti C2000 DC/DC Buck Converter example each block.
it does not need to be detailed. but it can be used at refrence to any other converter used .

댓글을 달려면 로그인하십시오.

채택된 답변

Antonin
Antonin 2019년 1월 21일
Hi Saeed Heshmatian,
Welcome to the world of Fixed-Point!
In many of our examples, we like to keep our units between -1 and 1 in a fixed point format. So voltages, currents, speed, position signals are all normailzed in signals that move from -1 to 1 in a high precision fixed-point format (24 bits (Q24) for the decimal part). 1 represents the max value, i.e. max voltage, or max current, -1 the minimum value. For currents, the max value is defined by the max value the ADC can measure. For voltages, the max is defined by 100% PWM duty cycle on the output.
Why do we do this? Fixed point math is more efficient than float, even on microcontrollers that have an FPU. The control loop in the example that you mention runs at 200kHz (5µs), you can't waste CPU cycles at that rate.
Why -1 to 1? When you multiply 2 signlas ranging from -1 to 1, you get a signal ranging from... -1 to 1. Therefore you can keep the same fixed-point format (Q24) throughout the model and skip expensive and complicated fixed-point conversions. The algorithm also becomes agnostic to engineering units and can be ported from one hardware platform ot another.
How does that appy to the DC/DC buck converter example? The ADC gives you a signal from 0 to 4095, where 0 is 0 Amperes and 4095 the max current, I don't care how much it is at this point, I will just call it 1. That's a 12-bit signal, so the conversion to fixed-point Q12 is trivial, you just have to take the bits the way they are and treat the signal as an unsigned fixed-point signal in Q12. That's what the first conversion block does, SI (Stored Integer) means "Take the bits the way they are and treat this signal as ufix Q12". Now we have a signlal that moves from 0 to 1 in Q12, but like I said above we like to use a better fixed-point precision for the rest of the model, so I convert this signal to Q24, which is the format that we use for the rest of the model. That's what the second conversion block does. In this case, the bits need to change (it's actually a shift by 12 to the left), the RWW (Real Worl Value) tells Simulink to do the conversion on the signal, so the bits needs to be shifted by 12 to reach the Q24 format. I now have my current moving from 0 to 1 (negative values are not possible here) in Q24 format and all you will see in the generated code is a shift by 12 to do the scaling from the ADC value, which is very efficient.
While sending the signals to the host, you can convert back the normalized signals into engineering units that are easier to read. I would do this on the host so you don't waste time on the target.
I hope it helps,
Cheers,
Antonin.
  댓글 수: 2
Mohammad Tauquir Iqbal
Mohammad Tauquir Iqbal 2019년 6월 21일
very nice explanation.
if i am right the first block change data to 0 to 1 fromat in Q12
while other shift 12 bit in -1 to 1 fromat (Q24)
Burak Caykenari
Burak Caykenari 2020년 9월 17일
Hi Antonin
I want to ask the same question.
first block 0 to 1 --- > Q12
Second block (shift block) -1 to 1 ? (Q24)
But you said :
I now have my current moving from 0 to 1 (negative values are not possible here) in Q24 format ?
In Q24 format , The value between -1 to 1 ? Because according to data type asistant
fixdt(1,32,24) between -128 127.99999994039536 with precision of 5.960464477539063e-08.
Can you explain briefly ? I'm looking for your response .
Manythanks.
Burak

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Saeed Heshmatian
Saeed Heshmatian 2019년 1월 21일
Oh, it helped a lot! Thanks very much for your time and the detailed explanation

커뮤니티

더 많은 답변 보기:  Power Electronics Community

Community Treasure Hunt

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

Start Hunting!

Translated by