Class QuadraturePoint

java.lang.Object
org.episteme.core.mathematics.analysis.fem.QuadraturePoint

public class QuadraturePoint extends Object
Represents a quadrature point for numerical integration.
Since:
1.0
Author:
Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
  • Constructor Details

    • QuadraturePoint

      public QuadraturePoint(Vector<Real> coordinates, Real weight)
      Creates a new quadrature point.
      Parameters:
      coordinates - the local coordinates of the point
      weight - the weight associated with the point
  • Method Details

    • getCoordinates

      public Vector<Real> getCoordinates()
      Returns the local coordinates of the quadrature point.
      Returns:
      the coordinates
    • getWeight

      public Real getWeight()
      Returns the weight of the quadrature point.
      Returns:
      the weight