Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
DynamicSystems[ImpulseResponse] - システムのインパルス応答の計算
使い方
ImpulseResponse( sys, opts )
パラメータ
sys
-
System; 線形システム
opts
(optional) option = value の形式の方程式; ImpulseResponse コマンドのオプション値
説明
ImpulseResponse コマンドはシステムオブジェクト sys のインパルス応答を計算します。
「オプション」の項で説明されているように、format=piecewise オプションが選択されているために出力が行列の区分的表現でない限り、ImpulseResponse コマンドは代数行列を返します。
システムのインパルス応答を計算する方法は 2 つあります。
function method では sys の伝達関数モデルを生成し、連続システムであればそのモデルに対して逆ラプラス変換を計算し、離散システムであればそのモデルに対して逆 z 変換を計算します。
matrix method では sys の状態空間モデルを生成し、次に状態遷移行列からのインパルス応答を計算します。
連続システムのインパルス応答は C . exp(A*t) . B + D*Dirac(t) になります。
離散システムのインパルス応答は (C . A^(q-1) . B)(1 - charfcn[0](q)) + D*charfcn[0](q) になります。
オプション
opts 引数は option = value 形式で指定する任意の引数で、option には以下に説明されている名前のいずれかを指定できます。これらの引数はキーワードパラメータで、方程式の左辺がキーワード、右辺がその値です。各キーワードパラメータにはパラメータが渡されない場合に使用する初期値が割り当てられています。
以下は各キーワードパラメータの説明です。各説明の 1 行目は左辺にキーワード、右辺に値の型で引数の形式を示しています。真偽 (truefalse) 型の場合、キーワードのみを渡すことは真 (keyword = true) を渡すことに相当します。
format = charfcn または piecewise
離散システムで matrix method を使用する場合の出力形式を選択します。charfcn の場合は charfcn プロシージャでインパルスを表現する必要があります。piecewise の場合、戻り値は (必要に応じて) piecewise (区分) 表現になります。デフォルトは charfcn です。
method = function または matrix
インパルス応答を計算するための method を選択します。function の場合、インパルス応答は逆変換を使用してシステムの伝達関数モデルから計算されます。matrix の場合、インパルス応答はシステムの状態空間モデルから計算されます。周波数領域のモデル (TF, Coeff, および ZPK) の場合は function method がデフォルトで、時間領域モデル (DE および SS) の場合は matrix method がデフォルトです。
例
inttrans[laplace] を使用してインパルス応答から伝達関数を計算します。
離散システムのインパルス応答は離散時間変数 (通常は q) の式で構成されます。
ztrans を使用してインパルス応答から伝達関数を計算します。
matrix method で piecewise 形式を使用します。
参照
charfcn, Dirac, DynamicSystems, DynamicSystems[ImpulseResponsePlot], inttrans[laplace], LinearAlgebra[MatrixExponential], piecewise, ztrans
Download Help Document