|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||
java.lang.Objectorg.mklab.tool.control.system.SystemOperator
org.mklab.tool.control.system.discrete.BaseDiscreteDynamicSystem
org.mklab.tool.control.system.discrete.UserDefinedDiscreteDynamicSystem
public class UserDefinedDiscreteDynamicSystem
ユーザ定義離散時間動的システムを表わすクラスです。
| コンストラクタの概要 | |
|---|---|
UserDefinedDiscreteDynamicSystem()
新しく生成された UserDefinedDiscreteDynamicSystemオブジェクトを初期化します。 |
|
UserDefinedDiscreteDynamicSystem(Object obj)
新しく生成された UserDefinedDiscreteDynamicSystemオブジェクトを初期化します。 |
|
| メソッドの概要 | |
|---|---|
boolean |
containParameter(String name)
指定した名前のパラメータをもつか判定します。 |
Set<String> |
getParameterNames()
システムパラメータの名前の集合を返します。 |
Object |
getParameterValue(String name)
パラメータの値を返します。 |
Class<?> |
getSystemClass()
システムを定義したクラスを返します。 |
void |
initialize()
状態などの初期化を行います。 |
Matrix |
outputEquation(int k,
Matrix x)
直達項をもたないシステムの出力を返します。 |
Matrix |
outputEquation(int k,
Matrix x,
Matrix u)
直達項をもつシステムの出力を返します。 |
void |
setDirectFeedthrough(boolean hasDirectFeedthrough)
直達項があるか(出力が入力に直接依存するか)設定します。 |
void |
setInitializeFunction(Method method)
システムの初期化処理を定義したメソッドを設定します。 |
void |
setOutputFunction(Method method)
システムの出力方程式を定義したメソッドを設定します。 |
void |
setParameterValue(String name,
Object value)
パラメータの値を設定します。 |
void |
setStateFunction(Method method)
システムの状態方程式を定義したメソッドを設定します。 |
void |
setSystemClass(Class<?> klass)
システムを定義したクラスを設定します。 |
void |
setUpdateFunction(Method method)
システムの更新処理を定義したメソッドを設定します。 |
Matrix |
stateEquation(int k,
Matrix x,
Matrix u)
(k+1)ステップの状態を返します。 |
void |
update()
パラメータを更新します。 |
| クラス org.mklab.tool.control.system.discrete.BaseDiscreteDynamicSystem から継承されたメソッド |
|---|
differenceEquation, differenceEquation, equals, getInitialState, getNextSamplingTime, getSamplingInterval, getState, getStateNumber, hashCode, inputOutputEquation, inputOutputEquation, isAtSamplingPoint, outputEquation, outputEquation, setAtSamplingPoint, setInitialState, setSamplingInterval, setState, setStateNumber, stateEquation |
| クラス org.mklab.tool.control.system.SystemOperator から継承されたメソッド |
|---|
clone, compare, createArray, createArray, createGrid, createGrid, createZero, getInputSize, getLinearSystem, getOutputSize, getParameter, getParameters, getStateSize, hasDirectFeedthrough, isAutoSize, isDynamic, isForecdSystem, isInlet, isLinear, isOutlet, isSISO, isSizeDefined, isStatic, isTransformableFrom, isTransformableTo, isZero, resetAutoSize, setAutoSize, setDynamic, setForcedSystem, setHasDirectFeedthrough, setInlet, setInputSize, setLinear, setOutlet, setOutputSize, setParameter, setStateSize, setupParameters, toString, toString, transformFrom, transformTo |
| クラス java.lang.Object から継承されたメソッド |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| コンストラクタの詳細 |
|---|
public UserDefinedDiscreteDynamicSystem()
UserDefinedDiscreteDynamicSystemオブジェクトを初期化します。
public UserDefinedDiscreteDynamicSystem(Object obj)
UserDefinedDiscreteDynamicSystemオブジェクトを初期化します。
obj - インスタンスメソッドによる定義の場合の、メソッドを所持するインスタンス。静的メソッドの場合はnull| メソッドの詳細 |
|---|
public Matrix outputEquation(int k,
Matrix x,
Matrix u)
throws SolverStopException
DiscreteDynamicSystem の記述:出力方程式を表します。
DiscreteDynamicSystem 内の outputEquationBaseDiscreteDynamicSystem 内の outputEquationk - ステップx - 状態u - 入力
SolverStopException - ソルバーが停止された場合BaseDiscreteDynamicSystem.outputEquation(int,
org.mklab.nfc.matrix.Matrix, org.mklab.nfc.matrix.Matrix)
public Matrix outputEquation(int k,
Matrix x)
throws SolverStopException
DiscreteDynamicSystem の記述:出力方程式を表します。
DiscreteDynamicSystem 内の outputEquationBaseDiscreteDynamicSystem 内の outputEquationk - ステップx - 状態
SolverStopException - ソルバーが停止された場合BaseDiscreteDynamicSystem.outputEquation(int,
org.mklab.nfc.matrix.Matrix)
public Matrix stateEquation(int k,
Matrix x,
Matrix u)
throws SolverStopException
DiscreteDynamicSystem の記述:(k+1)ステップの状態を返します。
状態方程式を表します。
DiscreteDynamicSystem 内の stateEquationk - ステップx - 状態u - 入力
SolverStopException - ソルバーが停止された場合DiscreteDynamicSystem.stateEquation(int,
org.mklab.nfc.matrix.Matrix, org.mklab.nfc.matrix.Matrix)public void setSystemClass(Class<?> klass)
UserDefinedSystem の記述:
UserDefinedSystem 内の setSystemClassklass - システムを定義したクラスUserDefinedSystem.setSystemClass(java.lang.Class)public Class<?> getSystemClass()
UserDefinedSystem の記述:
UserDefinedSystem 内の getSystemClassUserDefinedSystem.getSystemClass()
public void setStateFunction(Method method)
throws SecurityException
method - システムの状態方程式を定義したメソッド
SecurityException - メソッドにアクセスする権利が無い場合
public void setOutputFunction(Method method)
throws SecurityException
method - システムの出力方程式を定義したメソッド
SecurityException - メソッドにアクセスする権利が無い場合
public void setInitializeFunction(Method method)
throws SecurityException
UserDefinedSystem の記述:
UserDefinedSystem 内の setInitializeFunctionmethod - システムの初期化処理を定義したメソッド
SecurityException - メソッドにアクセスする権利が無い場合UserDefinedSystem.setInitializeFunction(java.lang.reflect.Method)
public void setUpdateFunction(Method method)
throws SecurityException
UserDefinedSystem の記述:
UserDefinedSystem 内の setUpdateFunctionmethod - システムの更新処理を定義したメソッド
SecurityException - メソッドにアクセスする権利が無い場合UserDefinedSystem.setUpdateFunction(java.lang.reflect.Method)
public Object getParameterValue(String name)
throws NoSuchParameterException
UserDefinedSystem の記述:
UserDefinedSystem 内の getParameterValuename - パラメータの名前
NoSuchParameterException - パラメータが存在しない場合、パラメータにアクセスできない場合UserDefinedSystem.getParameterValue(java.lang.String)
public Set<String> getParameterNames()
throws NoSuchParameterException
UserDefinedSystem の記述:
UserDefinedSystem 内の getParameterNamesNoSuchParameterException - パラメータにアクセスできない場合UserDefinedSystem.getParameterNames()
public void setParameterValue(String name,
Object value)
throws NoSuchParameterException
UserDefinedSystem の記述:
UserDefinedSystem 内の setParameterValuename - パラメータの名前value - パラメータの値
NoSuchParameterException - パラメータが存在しない場合、パラメータにアクセスできない場合UserDefinedSystem.setParameterValue(java.lang.String,
java.lang.Object)public boolean containParameter(String name)
UserDefinedSystem の記述:
UserDefinedSystem 内の containParametername - パラメータの名前
UserDefinedSystem.containParameter(java.lang.String)
public void update()
throws ParameterException
UserDefinedSystem の記述:
UserDefinedSystem 内の updateParameterException - パラメータに関する問題がある場合UserDefinedSystem.update()public void initialize()
SystemOperator の記述:
BaseDiscreteDynamicSystem 内の initializeBaseDiscreteStaticSystem.initialize()public void setDirectFeedthrough(boolean hasDirectFeedthrough)
hasDirectFeedthrough - 直達項があれば(出力が入力に直接依存すれば)true、そうでなければfalse
|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||