JaRMoS  1.1
Java Reduced Model Simulations
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
InputConvCoeffs.java
Go to the documentation of this file.
1 package models.beam.dynlintimo;
2 
4 
11 public class InputConvCoeffs implements IAffineCoefficients {
12 
13  /*
14  * (non-Javadoc)
15  *
16  * @see jarmos.affine.IAffineCoefficients#getNumCoeffFcns()
17  */
18  @Override
19  public int getNumCoeffFcns() {
20  return 2;
21  }
22 
23  /*
24  * (non-Javadoc)
25  *
26  * @see jarmos.affine.IAffineCoefficients#evaluateCoefficients(double,
27  * double[])
28  */
29  @Override
30  public double[] evaluateCoefficients(double t, double[] mu) {
31  return new double[] { 1, mu[2] };
32  }
33 
34  /*
35  * (non-Javadoc)
36  *
37  * @see jarmos.affine.IAffineCoefficients#isTimeDependent()
38  */
39  @Override
40  public boolean isTimeDependent() {
41  return false;
42  }
43 
44 }
double[] evaluateCoefficients(double t, double[] mu)
Evaluates all coefficient functions and returns a vector of the size of getNumCoeffFcns() ...
Base class for implementation of a series of time/parameter-dependent affine coefficients.
Affine input mapping coefficient function implementation.