First Order solving ODE and simulink
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello, i want to ask regarding this error. It is from solving first order and simulink. May i know where did error i did and how to solve it. Thankyou.
댓글 수: 0
채택된 답변
Divija Aleti
2021년 4월 22일
Hi Hassan,
Firstly, as you are defining all the variables inside the function, you do not need to pass them as the function's arguments.
Secondly, you are getting an error as you did not define the variable 'C' in your code. Have a look at the following code.
function dCdt = F_O()
t = 300;
Ce = 100;
C = 1; % Define the variable 'C' by giving it some value. As an example I gave C=1.
kLa = 0.0285;
dCdt = (kLa*Ce-C)/t;
end
Hope this helps!
Regards,
Divija
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Geometry and Mesh에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!