이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
This example demonstrates the numerical integration of simple Differtial Algebraic Equations (DAEs). Similar to ODE integrators in MATLAB, it can handle ODE stiff systems as well as high index (Index 2+) DAE systems. See the following YouTube video for a step-by-step tutorial.
The directory contains a folder (apm) that contains the library of functions for working with APM. The model file (demo.apm) contains the following text:
Model
Parameters
tau = 5
K = 3
u
End Parameters
Variables
x = 0
y = 0
End Variables
Equations
tau * $x + x = K * u
y = 2 * x
End Equations
End Model
The data file (demo.csv) specifies the time points and any inputs to the model. In this case, the input 'u' is specified at the following time intervals:
time, u
0, 0
0.5, 0
1, 1
2, 1
3, 1
5, 1
8, 1
12, 1
15, 1
18, 1
21, 1
22, 1
25, 1
28, 1
30, 1
The function 'apm_solve' receives an input of the application name (in this case 'demo') and returns a structure with the results of the simulation. In this case, the solution is returned into a structure named 'z'.
z = apm_solve('demo');
The structure contains all of the parameters and variables defined in the model file as well as the time points. A plot of 'time' and 'x' is provided with the demo and these are referenced as 'z.time' and 'z.x'.
The APMonitor Modeling Language (http://apmonitor.com) is optimization software for ODEs and DAEs. It is a full-featured modeling language with interfaces to MATLAB and Python. It is coupled with large-scale nonlinear programming solvers (including APOPT and IPOPT) for parameter estimation, nonlinear optimization, simulation, and model predictive control. There is a discussion group as well as regular webinars for those interested in dynamic modeling and simulation.
인용 양식
John Hedengren (2026). New ODE and DAE Solver (https://kr.mathworks.com/matlabcentral/fileexchange/39030-new-ode-and-dae-solver), MATLAB Central File Exchange. 검색 날짜: .
도움
도움 받은 파일: Optimization, Nonlinear Control, and Estimation Toolbox, MINLP: Mixed Integer Nonlinear Programming, Model Predictive Control
카테고리
Help Center 및 MATLAB Answers에서 Linear Programming and Mixed-Integer Linear Programming에 대해 자세히 알아보기
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.0.0.0 |
