RampSource.java
/*
* $Id: RampSource.java,v 1.5 2008/07/15 15:27:15 koga Exp $
*
* Copyright (C) 2004 Koga Laboratory. All rights reserved.
*
*/
package org.mklab.tool.control.system.source;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.mklab.nfc.matrix.ComplexNumericalMatrix;
import org.mklab.nfc.matrix.RealNumericalMatrix;
import org.mklab.nfc.ode.PiecewiseContinuousAlgebraicSystem;
import org.mklab.nfc.scalar.ComplexNumericalScalar;
import org.mklab.nfc.scalar.RealNumericalScalar;
import org.mklab.tool.control.system.parameter.Parameter;
import org.mklab.tool.control.system.parameter.ParameterUpdator;
import org.mklab.tool.control.system.parameter.StringExternalizable;
/**
* ランプを発生するシステムを表すクラスです。
*
* @author Koga Laboratory
* @version $Revision: 1.5 $, 2005/06/15
* @param <RS> type of real scalar
* @param <RM> type of real matrix
* @param <CS> type of complex scalar
* @param <CM> type of complex matrix
*/
public class RampSource<RS extends RealNumericalScalar<RS,RM,CS,CM>, RM extends RealNumericalMatrix<RS,RM,CS,CM>, CS extends ComplexNumericalScalar<RS,RM,CS,CM>, CM extends ComplexNumericalMatrix<RS,RM,CS,CM>> extends ContinuousSource<RS,RM,CS,CM> implements ParameterUpdator, PiecewiseContinuousAlgebraicSystem<RS,RM,CS,CM>, StringExternalizable {
/** オフセット */
@Parameter(name = "offset", description = "RampSource.1", internationalization = true)
private RS offset;
/** 傾き */
@Parameter(name = "slope", description = "RampSource.3", internationalization = true)
private RS slope;
/** 遅れ時間 */
@Parameter(name = "delayTime", description = "RampSource.5", internationalization = true)
private RS delayTime;
/**
* 新しく生成された<code>RampSource</code>オブジェクトを初期化します。
*
* @param offset オフセット
* @param slope 傾き
* @param delayTime 遅れ時間
* @param sunit unit of scalar
*/
public RampSource(final RS offset, final RS slope, final RS delayTime, RS sunit) {
super(1, sunit);
this.offset = offset;
this.slope = slope;
this.delayTime = delayTime;
}
/**
* 新しく生成された<code>RampSource</code>オブジェクトを初期化します。
*
* @param slope 傾き
* @param sunit unit of scalar
*/
public RampSource(final RS slope, RS sunit) {
this(sunit.create(0), slope, sunit.create(0), sunit);
}
/**
* 新しく生成された<code>RampSource</code>オブジェクトを初期化します。
* @param sunit unit of scalar
*/
public RampSource(RS sunit) {
this(sunit.create(1), sunit);
}
/**
* {@inheritDoc}
*/
@Override
public RM outputEquation(final RS t) {
if (t.isGreaterThanOrEquals(this.delayTime)) {
RS[] oo = this.sunit.createArray(1);
oo[0] = this.offset.add(t.subtract(this.delayTime).multiply(this.slope));
return this.sunit.createGrid(oo);
}
RS[] oo = this.sunit.createArray(1);
oo[0]= this.offset;
return this.sunit.createGrid(oo);
}
/**
* オフセットを設定します。
*
* @param offset オフセット
*/
public void setOffset(final RS offset) {
this.slope = offset;
}
/**
* オフセットを返します。
*
* @return オフセット
*/
public RS getOffset() {
return this.offset;
}
/**
* 傾きを設定します。
*
* @param slope 傾き
*/
public void setSlope(final RS slope) {
this.slope = slope;
}
/**
* 傾きを返します。
*
* @return 傾き
*/
public RS getSlope() {
return this.slope;
}
/**
* 遅れ時間を設定します。
*
* @param delayTime 遅れ時間
*/
public void setDelayTime(final RS delayTime) {
this.delayTime = delayTime;
}
/**
* 遅れ時間を返します。
*
* @return 遅れ時間
*/
public RS getDelayTime() {
return this.delayTime;
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("boxing")
public List<Integer> getPiece(final RS t, final RM u) {
if (t.isGreaterThanOrEquals(this.delayTime)) {
return new ArrayList<>(Arrays.asList(new Integer[] {1}));
}
return new ArrayList<>(Arrays.asList(new Integer[] {0}));
}
/**
* {@inheritDoc}
*/
public RS getDiscontinuousPoint(final RS t1, final RM u1, final RS t2, final RM u2) {
final List<Integer> piece1 = getPiece(t1, u1);
final List<Integer> piece2 = getPiece(t2, u2);
if (piece1.equals(piece2)) {
return this.sunit.getNaN();
}
return this.delayTime;
}
/**
* @see org.mklab.tool.control.system.parameter.StringExternalizable#getString(java.lang.String)
*/
public String getString(String key) {
return Messages.getString(key);
}
/**
* @see org.mklab.tool.control.system.SystemOperator#equals(java.lang.Object)
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!super.equals(o)) {
return false;
}
if (o == null) {
return false;
}
if (o.getClass() != getClass()) {
return false;
}
RampSource<RS,RM,CS,CM> castedObj = (RampSource<RS,RM,CS,CM>)o;
return ((this.offset == castedObj.offset) && (this.slope == castedObj.slope) && (this.delayTime == castedObj.delayTime));
}
/**
* @see org.mklab.tool.control.system.SystemOperator#hashCode()
*/
@Override
public int hashCode() {
int hashCode = super.hashCode();
hashCode = 31 * hashCode + (this.offset.hashCode() ^ (this.offset.hashCode() >>> 32));
hashCode = 31 * hashCode + (this.slope.hashCode() ^ (this.slope.hashCode() >>> 32));
hashCode = 31 * hashCode + (this.delayTime.hashCode() ^ (this.delayTime.hashCode() >>> 32));
return hashCode;
}
/**
* @see org.mklab.tool.control.system.parameter.ParameterUpdator#updateWith(java.lang.String)
*/
public boolean updateWith(String parameter) {
if (parameter.equals("delayTime")) { //$NON-NLS-1$
setDelayTime(this.delayTime);
return true;
}
if (parameter.equals("offset")) { //$NON-NLS-1$
setOffset(this.offset);
return true;
}
if (parameter.equals("slope")) { //$NON-NLS-1$
setSlope(this.slope);
return true;
}
return false;
}
}