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?
251 Views Asked by Adrien At
1
There are 1 best solutions below
Related Questions in SIMULINK
- "Error in port widths or dimensions" while producting 27
- Simulink: Cant Build Model due to Reason: "Code generation information file does not exist"
- Running batch script generated from embedded coder (in Matlab) on command line gives error
- Strange "Compare To Constant" behavior
- Simulink: How to programmatically move all items connected to a Subsystem
- The problem with running the Simulink model on arduino uno
- Simulink only reading first row of matrix from workspace
- Simulink integrate for a set duration of time
- Simulink elastic collision of 2DoF suspension model (tire + car)
- What commands are needed to get the distance from the car to the traffic light in MATLAB and SUMO
- Issue Converting C2000 F28379D Sample to F28335 - ADC Block Error
- CMake Eorror When Building Simulink DDS Blockset Example Model shapesdemo
- Can I adjust knobs in Simulink more accurately?
- How do you design a feedforward sigmoidal neural network in simulink in order to find a universal approximator
- TCP/IP Simulink not receiving data
Related Questions in SAMPLING
- create random sample conditionally using a file
- using mstage() in R to draw stratified samples
- Monte Carlo Example using Accept Reject Method
- How to weight samples with sklearns's cross_validate for scoring only?
- Get specific number of samples from audio
- How to use balanced sampler for torch Dataset/Dataloader
- Is it efficient to pass model into a custom dataset to run model inference during training for sampling strategy?
- In statistical modeling: sampling with replacement or without replacement?
- Sampling with Replacement/Bootstrap in Oracle SQL
- Efficient Equidistant Point Sampling on Closed Contours in OpenCV
- Latin Hypercube sampling with constraints
- Sampling transformation - rexp vs rweibull
- Implementing Latin Hypercube sampling from skewed distributions in Java
- Plot of the two dataset having different sampling rate with proper alignment
- Ploting of the two dataset having different sampling rate
Related Questions in DSPIC
- I can't generate a PWM signal DSPIC33CK32MC102
- dsPIC33 Inconsistent ADC behavior
- is it possible to get a 24 hour timer interrupt using timer5 in dspic30f4011?
- dsPIC33EP256MC506 Uart TRMT not empty on interrupt
- PWM triggering ADC incorrectly
- dsPIC: Reading timer registers and get wrong value
- Checksum result destination overlaps with checksum range
- PWM only works when I do a reset on dsPIC33EV256GM102
- dsPIC33 Flash Erase broken
- How to setup the ADC & DMA on a dsPIC33?
- converting int into float dsPIC33
- dsPIC33 ADC1 gives incorrect converted values
- FFT with dsPIC33E returns no frequency
- writing to flash memory dspic33e
- Int value not incrementing during button click
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 # Hahtags
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.