Nested functions procedure error

2 ビュー (過去 30 日間)
Nikola
Nikola 2013 年 9 月 9 日
Hi,
I created some nested function but it reports the error. In the first function, I calculated values for temperatures x1 and x2. Then, I defined function result that represents thermostat which should determine should thermostat be on or off in each iteration. In case that thermostat does not work in each iteration, temperature raise. Here are the functions:
function xprime = heat_sys(t,x);
params...
xprime = (system of diff equat)
function result = thermostat(x);
on = true;
off = false;
for i=1:n(end)
if(x(i,1)>=18 && x(i,1)<=20)
result(i)=on;
else if(x(i,1)<18)
result(i)=on;
else if(x(i,1)>20)
result(i,1)=off;
end;
end;
end;
end;
By the way, is this right approach to do this or I could use something different also?
Thanks in advance!
  8 件のコメント
Walter Roberson
Walter Roberson 2013 年 9 月 9 日
The xprime you are returning does not look to involve values calculated by thermostat(). If it actually does, then you would have the calls in the way you defined your system of equations... e.g.,
xprime = [ .... t^5+thermostat(x), ....]
If, though, the differential equation matrix is not calculated in terms of thermostat calls, then some other layer needs to receive the result of the thermostat calls. What layer is that?
Nikola
Nikola 2013 年 9 月 9 日
I think that I also thought about the same thing today but I couldn't figure a way how to solve the system of equations separately and then relate to the thermostat function.
Thermostat input should be xprime output, correct? Is that answer to your question?

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2013 年 9 月 9 日
I am going to guess that you have missed out on telling us that your heat_sys function is being invoked by ode45 or similar. I am going to further guess that heat_sys is your main function, and that your thermostat function is needed to calculate non-linear constraints. If I am correct, then a handle to your thermostat function would need to be passed as an additional parameter to the ode call, and it would also have to be modified to return information for both equality constraints and inequality constraints (I cannot tell which you intend in your existing code.)
If I am correct so far, please have another look at the documentation for the ode function you are using.
  3 件のコメント
Walter Roberson
Walter Roberson 2013 年 9 月 9 日
Okay so how do the thermostat values actually get used? What takes them as inputs ? Or are they purely constraints (which it doesn't quite sound to me that they are) ?
Nikola
Nikola 2013 年 9 月 10 日
Output thermostat values are on and off. It means if temperature is below 18, then is on. Also, I want to keep temperature between 18 and 20 but if goes above 20, then thermostat should be switched off. Therefore, inputs of thermostat function are output values of xprime because in every another iteration, we have new value of xprime, or x1 and x2.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by