DoubleLqrStateFeedback.java
/*
* $Id: LqrStateFeedback.java,v 1.4 2008/07/16 04:58:04 koga Exp $
*
* Copyright (C) 2004 Koga Laboratory. All rights reserved.
*
*/
package org.mklab.tool.control.system.controller;
import org.mklab.nfc.matrix.DoubleMatrix;
import org.mklab.tool.control.system.DoubleSystemOperator;
import org.mklab.tool.control.system.math.DoubleConstantSystem;
import org.mklab.tool.control.system.parameter.Parameter;
import org.mklab.tool.control.system.parameter.ParameterUpdator;
/**
* LQ最適制御(安定化)のための状態フィードバックコントローラ(定数行列)を表すクラスです。
*
* @author koga
* @version $Revision: 1.4 $, 2004/05/31
*/
public class DoubleLqrStateFeedback extends DoubleConstantSystem implements ParameterUpdator {
/** 状態に関する重み行列 */
@Parameter(name = "Q", description = "状態に関する重み行列", update = true)
private DoubleMatrix Q = new DoubleMatrix(new double[] {1}).vectorToDiagonal();
/** 入力に関する重み行列 */
@Parameter(name = "R", description = "入力に関する重み行列", update = true)
private DoubleMatrix R = new DoubleMatrix(new double[] {1});
/** LQ最適制御(安定化)のための状態フィードバックの設計器 */
private DoubleLqrDesigner designer;
/**
* コンストラクター
*
* @param plant 制御対象(線形システム)
*/
public DoubleLqrStateFeedback(final DoubleSystemOperator plant) {
super(plant.getStateSize(), plant.getInputSize());
this.designer = new DoubleLqrDesigner(plant);
}
/**
* 重み行列QとRを設定します。
*
* @param Q 状態に関する重み行列
* @param R 入力に関する重み行列
*/
public void setWeightingMatrices(final DoubleMatrix Q, final DoubleMatrix R) {
this.Q = Q.createClone();
this.R = R.createClone();
this.designer.setWeightingMatrices(Q, R);
//this.designer.showClosedLoopPoles();
setGain(this.designer.getStateFeedback());
}
/**
* @see org.mklab.tool.control.system.parameter.ParameterUpdator#updateWith(java.lang.String)
*/
public boolean updateWith(final String parameter) {
if (parameter.equals("Q") || parameter.equals("R")) { //$NON-NLS-1$ //$NON-NLS-2$
setWeightingMatrices(this.Q, this.R);
return true;
}
return false;
}
}