필터 지우기
필터 지우기

how to call m-file in block simulink model???

조회 수: 1 (최근 30일)
Muhmmed
Muhmmed 2013년 5월 10일
i have written the m-file to solve numerically a system of 4 partial differential equations which represent the infrared food dryer, and i have gotten result from that. the m-file that i wrote for this system has 4 function, one is for initial conditions of the equations, one is for the boundary conditions of the equations , one function is for main factors of the equations and last function gather all these functions and sole the equations. now , i want to connect a controller to this dryer in order to control the temperature of the emitter, so i need to put the m-file solution of the PDEs in the block simulink in order to connect with the controller block. i used s-function and matlab function to do that, but i got errors and i couldn't get result from that.

채택된 답변

David Sanchez
David Sanchez 2013년 5월 10일
I think you are doing something wrong. I've been using m-files in Simulink to avoid the extra work of block-building what I have in a m-file, and some times it gets tricky, but if done with care, it should work. Since you do not give more info on how you are doing what you are doing, I can not help you out more. Check that your functions are in the proper directory and rightly linked.
  댓글 수: 1
Muhmmed
Muhmmed 2013년 5월 10일
Mr.David thank u very much for ur help actually i have 4 functions that show good results the functions are
function pdex2 clc clear m1=0;
ux0=8.52;
uy0=0.5;
utg0=313.575;
uts0=303.575; . . .
function [pl,ql,pr,qr] = pdex2bc(xl,ul,xr,ur,t)
a=0.5; b=8.52; c=313.15; d=303.15;
pl = [ul(1); ul(2); ul(3)-c; ul(4)-d]; ql = [a; 0; c; d]; . . .
function u0 = pdex2ic(x) u0 = [1; 1; 1; 1; 1];
function [c,f,s] = pdex2pde(x,t,u,DuDx) c = [1; 1; 1; 1]; f = [(k1*k4*u(5))* DuDx; (k1*k2*u(5)-k3*u(2))* DuDx; -(k6*u(3))* DuDx; (-k7/(1+u(1))*k1*k8*u(5))]; . . .
so i just simply paste all these functions in matlab block function but i got many errors !

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 PDE Solvers에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by