Event function with multiple events

47 次查看(过去 30 天)
Hi,
I'm calling a events function as below for ode45:
option2 = odeset('Events', @comp);
[time, Y] = ode45(dYdt, tspan, y0, option2);
The function looks as follow:
function [position, isterminal, direction] = comp(t, Y)
x = Y(1); %x-coordinate
y = Y(2); %y-coordinate
xL = x*cos(Par.theta) + y*sin(Par.theta);
xL1 = Par.x1*cos(Par.theta); %[m]
xL2 = Par.x2*cos(Par.theta); %[m]
position = [xL1-xL; xL2-xL; Par.S-Y(end,1)];
isterminal = [0; 0; 1];
direction = [1; 1; -1];
end
I keep getting the error "Undefined variable "Par" or class "Par.theta"." When I substitute the variables with other variables not in a structure I then get the error "Not enough input arguments", but I've checked each variable is accounted for.
Anyone one with a suggestion on how to correctly call a structure variables' values in a function would be appreciated.
Thanks
  1 个评论
Christo van Rensburg
So when I call the structure as such,
function [position, isterminal, direction] = comp(t, Y, Par)
it still gives the error of not enough input arguments. I cannot understand what input argument is missing?

请先登录,再进行评论。

采纳的回答

Steven Lord
Steven Lord 2019-9-16
When you define your options structure with:
option2 = odeset('Events', @comp);
the ODE solver will call your Events function comp with two input arguments. Changing the definition of comp to accept a third input argument is one of the steps you need to follow to call your Events function comp with three inputs. The easiest way to complete the next step is to change your odeset call. Assuming Par is defined before you call odeset and does not change during the ODE solution process, specify your Events function as an anonymous function.
% Par is defined at this point
option2 = odeset('Events', @(t, y) comp(t, y, Par));
Ther are other techniques for passing additional parameters into one of the function (the ODE function, Events functions, etc.) that you pass into the ODE solvers. See this documentation page for more information.
  4 个评论
Steven Lord
Steven Lord 2019-11-21
There's enough differences from the original question (and enough potential complications, like how to handle the ODE solver trying a step that it chooses to reject) that you may want to break this off into a separate question. When you do, I recommend not only showing your code but the underlying differential equations and the problem that you're trying to solve.
Subhadeep Kumar
Subhadeep Kumar 2019-12-10
@oski89 define Par as a global variable. Initialize Par in the main script. That will do the job unless you are using parallel computing for solving your problem. Global variable have its own demerits.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by