I have a question concerning a simulink model I am building. I am trying to find out with values of P and I are needed for a closed loop controler. That is for a PFC controled by a dspic. I know that the sample time in Simulink determine the rate at which a given block updates his value. Now, back to the microcontroller. I am implementing the control loop inside an ISR which is triggered every 160 uS, making the calculation and giving the results(dutycyle) to the PWM-Module register. Am I right to think that by setting the Simulation sample time at 160uS, I should get a similar behavior as the Microcontroller? I would also like to know how the Sample time on Simulink affects the behavior and/or the stability of a closed loop controller. can anyone link me to a paper exploring the sujet. I can´t find anything on the topic. sorry for the english, thank you guys
How does Simulink sample time relate to Interrupt Service Routine sample time?
249 Views Asked by Adrien At
1
There are 1 best solutions below
Related Questions in SIMULINK
- Using Simulink Coder - atomic change of multidimensional parameters (matrix, vector)
- More blocks in Simulink
- level 2 c-mex function input return wrong value
- function matlab: array initialization for more entity
- Simulink: Controlling model from external process
- Sending vector data in the bus
- How to index an array value in a MATLAB-Function in Simulink?
- Matlab simulink Unable to locate a C-compiler required by Stateflow and MATLAB Function blocks. Use 'mex -setup' to select a supported C-compiler
- Simulink - Algebraic Loops errors
- Link to external m file from Simulink
- How to get parameter name of "Target hardware"-Field in "Run on target hardware" in Matlab Simulink?
- How to remove samples not fulfilling a certain predicate in Simulink / DSP Matlab?
- Tuning parameters in simulink
- How to access variables in the properties block of a Matlab System Object?
- PID working with sine wave as reference in simulink
Related Questions in SAMPLING
- Using camera shutter to trigger MPU6050 on raspberry pi
- Sample a random number following a distribution between two values
- Ignoring samples in Gibbs sampling
- Matlab Distribution Sampling
- Choosing a sample rate for GBM models
- How to sample/partition panel data by individuals( preferably with caret library)?
- How to sample a SARIMA model with given parameters in R
- Sampling a matrix with conditions (no zeros or repeated columns)
- Number of sensors and number of pixels
- Obtaining IFFT from frequency domain analytic formula
- How to sample data based off the distribution of another dataset in R
- How to run the Kennard-Stone algorithm with a multilayer raster?
- Randomly selected data matrics and linear mixture in R
- How to compress/archive a temperature curve effectively?
- Pandas TimeSeries With duration of event
Related Questions in DSPIC
- HM-10: maybe some AT commands are not implemented?
- Microchip dsPIC33 Start all PWMs at same time
- How to upload a hex file to dsPIC33 from linux command line?
- Detect peak value from real time data in an array
- XC16 Disassembly for (uint32) & (uint32) operation
- Microchip C inline asm does not generate prefix for immediates in inline asm
- How to setup the ADC & DMA on a dsPIC33?
- dsPIC33 Flash Erase broken
- dspic33ev256gm002 UART
- dsPIC33EP512MU810 analogue comparator not working
- Copying every nth element from one array to another
- Communicating dsPIC with PC application through UART. Receiver interrupt handling
- Compare and Swap/Exchange on an dsPIC33F with CPSNE instruction
- dspic33ev Doesn't work after changing pin number
- CDC USB on dspic33EP
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes you should set your sample time in the model identical to what your hardware is doing if you want the same results.
Longer sample times directly translate into phase lag in the control loop. Specifically it translates to 180 degrees of phase lag at 360° / 160us / 180° = 12.5KHz. So if your loop gain is not < 1.0 for frequencies > 12.5Khz you can't guarantee stability. And if you have any other phase lag at other points in the loop then you would have to add that to the sample related lag.
Generally you would want to use higher sample rates if your control loop needs more bandwidth.