ChE 436: Simulink and MATLAB Programming Help
Main.ProjectProgramming History
Hide minor edits - Show changes to markup
(:html:)
<div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = 'apmonitor'; // required: replace example with your forum shortname /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
(:htmlend:)
- [[https://www.enthought.com/services/training/python-training-on-demand|Python at Enthough (Free for Academics)
- Python at Enthought (Free for Academics)
- BYU ChE263: Computational Tools
- MATLAB Tutorials and Learning Resources
- Python at CodeAcademy
- Univ of Edinburgh: MATLAB Intro
- MATLAB
- BYU ChE263: Computational Tools
- MATLAB Tutorials and Learning Resources
- Univ of Edinburgh: MATLAB Intro
- Python
- BYU ChE263: Computational Tools
- Python at CodeAcademy
- [[https://www.enthought.com/services/training/python-training-on-demand|Python at Enthough (Free for Academics)
There are several online courses and materials that can help students gain basic programming experience in MATLAB or Python. Below are some online resources:
- BYU ChE263: Computational Tools
- MATLAB Tutorials and Learning Resources
- Python at CodeAcademy
- Univ of Edinburgh: MATLAB Intro
Embedding Custom Functions (MATLAB scripts)
Simulink Source Signals
<iframe width="560" height="315" src="//www.youtube.com/embed/XfG9fO4bcNk?rel=0" frameborder="0" allowfullscreen></iframe>
<iframe width="560" height="315" src="//www.youtube.com/embed/ypz_wzVwdII?rel=0" frameborder="0" allowfullscreen></iframe>
Embedding Custom Functions (MATLAB scripts)
(:html:) <iframe width="560" height="315" src="//www.youtube.com/embed/XfG9fO4bcNk?rel=0" frameborder="0" allowfullscreen></iframe> (:htmlend:)
Example MIMO System
Example Multiple-Input, Multiple-Output (MIMO) System
(:html:) <iframe width="560" height="315" src="//www.youtube.com/embed/T220082pTLw?rel=0" frameborder="0" allowfullscreen></iframe> (:htmlend:)
Linear and Nonlinear Simulation
- CSTR Simulink Linear vs. Nonlinear Comparison
- Model in State Space Form
- Model in Transfer Function Form
- Model in Nonlinear Form (S-Function)
- See CSTR Case Study for Additional Examples
(:title ChE 436: Simulink and MATLAB Programming Help:) (:keywords MATLAB, Simulink, tutorial, process control:) (:description Simulation help with the Process Control and Dynamics Lab in Chemical Engineering at Brigham Young University:)
Simulation Lab Programming Help
Below are a few examples of Simulink and MATLAB programs that can help with projects. Common questions for the simulation labs include how to import data, export results, and configuring more complex systems.
Import Data File into Simulink
Data such as any custom time series can be imported into Simulink. In this example, an Interpreted MATLAB Function block is used to read a data file (data.txt) and interpolate with a linear approximation between the two nearest points.
Embedding Custom Functions (MATLAB scripts)
(:html:) <iframe width="560" height="315" src="//www.youtube.com/embed/XfG9fO4bcNk?rel=0" frameborder="0" allowfullscreen></iframe> (:htmlend:)
Example MIMO System
The following Simulink model is an example of a Multiple-Input Multiple-Output system. The first block is an example of two decoupled PID controllers (non-interacting) while the second block is an example of interacting PID controllers with feedforward gains.
Download Interacting Control Example (Simulink)

Exporting Data from MATLAB / Simulink
You may want to export data from MATLAB or Simulink to combine plots or for further manipulation in another program like Excel. One way is shown below:
Step 1: Drop the "to Workspace" blocks into Simulink and re-run the simulation. The requested variables will be exported to the MATLAB workspace.

Step 2: From the MATLAB command prompt, view the "input" and "output" data that was generated from the Simulink simulation. Type "input" or "output" to inspect the information that is contained in the variable structure.

Step 3: Save the data to a text file. One way is to construct all of the data that will be saved into a data matrix and then export as an ASCII text file (tab delimited). Make sure your current directory allows you to save a file (is not write-restricted) or it will return an error.

(:html:)
<div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = 'apmonitor'; // required: replace example with your forum shortname /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
(:htmlend:)