integratortype¶
- class pyvale.integratortype.EIntSpatialType(value)[source]¶
Bases:
Enum
Enumeration specifying the type of spatial integrator to build. Used for spatial averaging for sensors.
- RECT1PT
Rectangular 2D integrator splitting the area into 1 part.
- RECT4PT
Rectangular 2D integrator splitting the area into 4 equal parts.
- RECT9PT
Rectangular 2D integrator splitting the area into 9 equal parts.
- QUAD4PT
Gaussian quadrature 2D integrator over 4 points.
- QUAD9PT
Gaussian quadrature 2D integrator over 9 points.
- QUAD4PT = 4¶
Gaussian quadrature 2D integrator over 4 points.
- QUAD9PT = 5¶
Gaussia quadrature 2D integrator over 9 points.
- RECT1PT = 1¶
Rectangular 2D integrator splitting the area into 1 part.
- RECT4PT = 2¶
Rectangular 2D integrator splitting the area into 4 equal parts.
- RECT9PT = 3¶
Rectangular 2D integrator splitting the area into 9 equal parts.