spis.Circ.CircField
Class CircField

java.lang.Object
  extended byspis.Circ.CircField.CircField
Direct Known Subclasses:
DirCircField

public abstract class CircField
extends java.lang.Object

Class Name : CircField (generic spacecraft Circuit Field class)
Project ref : SPIS project
File name : CircField.java
File type : class
Copyright : ONERA, 2 Av. E. Belin, 31055 Toulouse cedex, France http://www.onecert.fr
Status : under development
Creation : 25/08/2003
Modification :

Description : general abstract spacecraft Circuit Field class.
Stores values at each circuit field node.
All spacecraft circuit field classes must be derived from this class.

Versions and anomalies correction :

Version numberAuthor (name, e-mail) Corrections/Modifications
0.1 JF Roussel, roussel@onecert.frCreation


Version:
0.1
Author:
JF Roussel

Constructor Summary
CircField(Circ circuit)
          Default constructor
 
Method Summary
 Circ getCirc()
          Returns the pointer to the circuit this field belongs to
abstract  FloatScalTable getTable()
          Returns the field values on the circuit nodes in table val
abstract  void increment(CircField c)
          Increments the current CircField by the passed CircField.
abstract  void linComb(float a1, CircField c, float a2)
          performs the following linear comination o nthis circuit field: this = a1 this + a2 c.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CircField

public CircField(Circ circuit)
Default constructor

Method Detail

getTable

public abstract FloatScalTable getTable()
Returns the field values on the circuit nodes in table val


linComb

public abstract void linComb(float a1,
                             CircField c,
                             float a2)
performs the following linear comination o nthis circuit field: this = a1 this + a2 c.


increment

public abstract void increment(CircField c)
Increments the current CircField by the passed CircField.


getCirc

public Circ getCirc()
Returns the pointer to the circuit this field belongs to