24小时热门版块排行榜    

北京石油化工学院2026年研究生招生接收调剂公告
查看: 3606  |  回复: 1

huobaozi

新虫 (小有名气)

[求助] dde23求解延迟微分方程的问题

dde23求解延迟微分方程的问题
想求解这样一个延迟微分方程。
假定函数f(t)在小于TAO0的时候为0,等于tao0的时候为0.1(随意假定的一个常数)。
先实现了一个ddefun函数如下:
----------------------------------------
function v = ddefun(t,y,Z)
a=1e-4;
b=-1e-10;
ylag1 =Z;
v=a*y+b*ylag1;
---------------------------------------
然后,主函数中相关代码这样写:
tao0=100;
tspan=tao0:tao0*1000;
fm=@(x) ((x==tao0)*0.1);
sol=dde23('ddefun', tao0,fm,tspan);
——————————————————
运行没有问题,但是因为我也不知道延迟微分方程的解应该什么,所以没办法验证。求问达人,上述代码的求解过程对吗?谢谢。
回复此楼

» 猜你喜欢

» 本主题相关价值贴推荐,对您同样有帮助:

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

月只蓝

主管区长 (职业作家)

以下是MATLAB的帮助文档,你程序的格式应该没问题。
>> help dde23
DDE23  Solve delay differential equations (DDEs) with constant delays.
    SOL = DDE23(DDEFUN,LAGS,HISTORY,TSPAN) integrates a system of DDEs
    y'(t) = f(t,y(t),y(t - tau_1),...,y(t - tau_k)). The constant, positive
    delays tau_1,...,tau_k are input as the vector LAGS. DDEFUN is a function
    handle. DDEFUN(T,Y,Z) must return a column vector corresponding to
    f(t,y(t),y(t - tau_1),...,y(t - tau_k)). In the call to DDEFUN, a scalar T
    is the current t, a column vector Y approximates y(t), and a column Z(:,j)
    approximates y(t - tau_j) for delay tau_j = LAGS(J).  The DDEs are
    integrated from T0=TSPAN(1) to TF=TSPAN(end) where T0 < TF. The solution
    at t <= T0 is specified by HISTORY in one of three ways: HISTORY can be
    a function handle, where for a scalar T, HISTORY(T) returns a column
    vector y(t). If y(t) is constant, HISTORY can be this column vector.
    If this call to DDE23 continues a previous integration to T0, HISTORY
    can be the solution SOL from that call.

    DDE23 produces a solution that is continuous on [T0,TF]. The solution is
    evaluated at points TINT using the output SOL of DDE23 and the function
    DEVAL: YINT = DEVAL(SOL,TINT). The output SOL is a structure with
        SOL.x  -- mesh selected by DDE23
        SOL.y  -- approximation to y(t) at the mesh points of SOL.x
        SOL.yp -- approximation to y'(t) at the mesh points of SOL.x
        SOL.solver -- 'dde23'

    SOL = DDE23(DDEFUN,LAGS,HISTORY,TSPAN,OPTIONS) solves as above with default
    parameters replaced by values in OPTIONS, a structure created with the
    DDESET function. See DDESET for details. Commonly used options are
    scalar relative error tolerance 'RelTol' (1e-3 by default) and vector of
    absolute error tolerances 'AbsTol' (all components 1e-6 by default).

    DDE23 can solve problems with discontinuities in the solution prior to T0
    (the history) or discontinuities in coefficients of the equations at known
    values of t after T0 if the locations of these discontinuities are
    provided in a vector as the value of the 'Jumps' option.

    By default the initial value of the solution is the value returned by
    HISTORY at T0. A different initial value can be supplied as the value of
    the 'InitialY' property.

    With the 'Events' property in OPTIONS set to a function handle EVENTS,
    DDE23 solves as above while also finding where event functions
    g(t,y(t),y(t - tau_1),...,y(t - tau_k)) are zero. For each function
    you specify whether the integration is to terminate at a zero and whether
    the direction of the zero crossing matters. These are the three column
    vectors returned by EVENTS: [VALUE,ISTERMINAL,DIRECTION] = EVENTS(T,Y,Z).
    For the I-th event function: VALUE(I) is the value of the function,
    ISTERMINAL(I) = 1 if the integration is to terminate at a zero of this
    event function and 0 otherwise. DIRECTION(I) = 0 if all zeros are to
    be computed (the default), +1 if only zeros where the event function is
    increasing, and -1 if only zeros where the event function is decreasing.
    The field SOL.xe is a row vector of times at which events occur. Columns
    of SOL.ye are the corresponding solutions, and indices in vector SOL.ie
    specify which event occurred.   
   
    Example   
          sol = dde23(@ddex1de,[1, 0.2],@ddex1hist,[0, 5]);
      solves a DDE on the interval [0, 5] with lags 1 and 0.2 and delay
      differential equations computed by the function ddex1de. The history
      is evaluated for t <= 0 by the function ddex1hist. The solution is
      evaluated at 100 equally spaced points in [0 5]  
          tint = linspace(0,5);
          yint = deval(sol,tint);
      and plotted with
          plot(tint,yint);
      DDEX1 shows how this problem can be coded using subfunctions. For
      another example see DDEX2.
MATLAB、MS小问题、普通问题请发帖求助!时间精力有限,恕不接受无偿私信求助。
2楼2013-10-12 08:50:03
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 huobaozi 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 求材料调剂,一志愿郑州大学289分 +15 硕星赴 2026-04-03 15/750 2026-04-04 01:01 by userper
[考研] 一志愿郑州大学材料与化工085600,求调剂 +17 吃的不少 2026-04-02 17/850 2026-04-03 21:48 by qlm5820
[考研] 295求调剂 +3 尚偌呀 2026-04-03 4/200 2026-04-03 21:23 by zhq0425
[考研] 294求调剂 +6 Grey_Ey 2026-04-03 6/300 2026-04-03 20:46 by 欣喜777
[考研] 0835学硕299求调剂 08大类可接受 +3 useryy 2026-04-03 3/150 2026-04-03 20:23 by zhq0425
[考研] 334求调剂 +7 曾仰之 2026-04-03 7/350 2026-04-03 18:21 by ls刘帅
[考研] 324求调剂 +4 想上学求调 2026-04-03 4/200 2026-04-03 14:41 by rongligao
[考研] 085600专硕材料与化工348分求调剂 +10 上学啦! 2026-04-01 11/550 2026-04-03 14:13 by 百灵童888
[考研] 321求调剂 +17 y-yh 2026-04-01 20/1000 2026-04-03 12:57 by y-yh
[考研] 279求调剂 +6 qazplm0852 2026-04-02 6/300 2026-04-03 10:03 by 蓝云思雨
[考研] 化学070300-总分378-求调剂 +5 挪椅子的泡泡糖 2026-04-02 5/250 2026-04-02 22:20 by ZXlzxl0425
[考研] 322求调剂:一志愿湖南大学 材料与化工(085600),已过六级。 +12 XX小邓 2026-03-29 13/650 2026-04-02 21:39 by 百灵童888
[考研] 一志愿山东大学,085600,344 +7 魏子per 2026-04-02 8/400 2026-04-02 21:12 by 百灵童888
[考研] 301求调剂 +4 细胞相关蛋白 2026-04-02 8/400 2026-04-02 16:30 by 271179835
[考博] 材料工程专业硕士申博 +3 麟正宇 2026-03-30 3/150 2026-04-02 15:04 by greychen00
[考研] 085600 一志愿9 总分351 求调剂学校 +7 czhcz 2026-03-31 9/450 2026-04-01 19:24 by 无际的草原
[硕博家园] 博一被送出联培感觉不适应怎么办 +3 全村的狗 2026-03-31 3/150 2026-04-01 10:44 by 328838485
[考研] 0710生物学求调剂! +6 叙述文 2026-03-31 6/300 2026-04-01 09:39 by JourneyLucky
[考研] 调剂申请 +8 张张张张zy 2026-03-31 9/450 2026-04-01 08:29 by zjbkx
[考研] 生物考研337分求调剂 +4 cgxin 2026-03-30 6/300 2026-03-31 14:18 by 记事本2026
信息提示
请填处理意见