Uses of Class
spis.Util.List.PointList

Packages that use PointList
spis.Solver.Poisson   
spis.Surf.SurfMesh   
spis.Util.List   
spis.Vol.VolField   
spis.Vol.VolMesh   
 

Uses of PointList in spis.Solver.Poisson
 

Methods in spis.Solver.Poisson with parameters of type PointList
abstract  void PoissonSolver.interpolatePotGradient(PointList pl, ScalVolField pot, VectTable val)
          Computes the potential gradient (minus the electric field) at each particle position.
abstract  void PoissonSolver.interpolatePotential(PointList pl, ScalVolField pot, FloatScalTable val)
          Interpolates the potential at each particle position: The interpolation should be specific to the solver and better than the generic linear interpolation provided by the VolMesh for a VolField.
 void ConjGrad3DUnstructPoissonSolver.interpolatePotGradient(PointList pl, ScalVolField pot, VectTable val)
          Computes the potential gradient (minus the electric field) at each particle position: linear in regular tetrahedra, specific in tetrahedra next to a wire (contrarily to VolMesh computeGradient(...) routine.)
 void ConjGrad3DUnstructPoissonSolver.interpolatePotential(PointList pl, ScalVolField pot, FloatScalTable val)
          Interpolates the potential at each particle position: linear in regular tetrahedra, specific in tetrahedra next to a wire (contrarily to VolMesh interpolatePotential routine).
 

Uses of PointList in spis.Surf.SurfMesh
 

Methods in spis.Surf.SurfMesh with parameters of type PointList
 void ThreeDUnstructSurfMesh.interpolate(PointList pl, SurfField sf, Table val)
          Interpolates the surface field sf (defined on the mesh nodes/cells/...)
abstract  void SurfMesh.interpolate(PointList pl, SurfField sf, Table val)
          Interpolates the surface field sf (defined on the mesh nodes/cells/...)
 

Uses of PointList in spis.Util.List
 

Subclasses of PointList in spis.Util.List
 class PartList
          Class Name : PartList
Project ref : SPIS project
File name : PartList.java
File type : class
Copyright : ONERA, 2 Av.
 class RichPartList
          Class Name : RichPartList
Project ref : SPIS project
File name : RichPartList.java
File type : class
Copyright : ONERA, 2 Av.
 

Constructors in spis.Util.List with parameters of type PointList
PointList(PointList pl)
          copy constructor (variable arrays are copied, whereas for meshes and particle type pointers only are copied)
 

Uses of PointList in spis.Vol.VolField
 

Methods in spis.Vol.VolField with parameters of type PointList
abstract  void VolField.computeField(PointList pl, Table val)
          Provides the values of the field at a list of arbitrary locations PointList (particle positions).
abstract  void VectVolField.computePot(PointList pl, FloatScalTable val)
          Provides the potential at a list of arbitrary locations PointList (particle positions).
 void ScalVolField.computeField(PointList pl, Table values)
          Provides the values of the field at a list of arbitrary locations PointList (particle positions).
 void PotVectVolField.computeField(PointList pl, Table val)
          Provides the values of the field at a list of arbitrary locations PointList (particle positions).
 void PotVectVolField.computePot(PointList pl, FloatScalTable val)
          Provides the potential at a list of arbitrary locations PointList (particle positions).
 void PotEField.computeElectricField(PointList pl, VectTable val)
          Provides the values of the field at a list of arbitrary locations PointList (particle positions).
 void PotEField.computePotential(PointList pl, FloatScalTable val)
          Provides the values of the field at a list of arbitrary locations PointList (particle positions).
abstract  void EField.computeElectricField(PointList pl, VectTable val)
          Provides the values of the electric field at a list of arbitrary locations PointList (particle positions).
 void DirVectVolField.computeField(PointList pl, Table values)
          Provides the values of the field at a list of arbitrary locations PointList (particle positions).
 void DirVectVolField.computePot(PointList pl, FloatScalTable val)
          Provides the potential at a list of arbitrary locations PointList (particle positions).
 

Uses of PointList in spis.Vol.VolMesh
 

Methods in spis.Vol.VolMesh with parameters of type PointList
abstract  void VolMesh.interpolate(PointList pl, VolField vf, Table val)
          Interpolates the volume field vf (defined on the mesh nodes/cells/...)
abstract  void VolMesh.computeGradient(PointList pl, ScalVolField vf, VectTable val)
          Similar to Interpolate, but the gradient of a volume field is computed.
 void ThreeDUnstructVolMesh.interpolate(PointList pl, VolField vf, Table val)
          Interpolates the volume field vf (defined on the mesh nodes/cells/...)
 void ThreeDUnstructVolMesh.computeGradient(PointList pl, ScalVolField vf, VectTable val)
          Similar to Interpolate, but the gradient of a volume field is computed.