Uses of Interface
org.episteme.core.mathematics.analysis.VectorField
Packages that use VectorField
Package
Description
-
Uses of VectorField in org.episteme.core.mathematics.analysis
Methods in org.episteme.core.mathematics.analysis that return VectorFieldModifier and TypeMethodDescriptionstatic <V> VectorField<V> Creates a vector field from a lambda expression.static <V> VectorField<V> Creates a vector field with known dimension. -
Uses of VectorField in org.episteme.core.mathematics.analysis.vectorcalculus
Methods in org.episteme.core.mathematics.analysis.vectorcalculus that return VectorFieldModifier and TypeMethodDescriptionstatic VectorField<PointND> Curl.asField(VectorField<PointND> field, Real h) Returns a vector field representing the curl of the input field.static VectorField<PointND> Gradient.asField(ScalarField<PointND> field, Real h) Returns a vector field representing the gradient of the scalar field.Methods in org.episteme.core.mathematics.analysis.vectorcalculus with parameters of type VectorFieldModifier and TypeMethodDescriptionstatic VectorField<PointND> Curl.asField(VectorField<PointND> field, Real h) Returns a vector field representing the curl of the input field.static ScalarField<PointND> Divergence.asField(VectorField<PointND> field, Real h) Returns a scalar field representing the divergence of the vector field.Curl.compute(VectorField<PointND> field, PointND point, Real h) Computes the curl of a 3D vector field at a point.static RealDivergence.compute(VectorField<PointND> field, PointND point, Real h) Computes the divergence of a vector field at a point using finite differences.Laplacian.computeVector(VectorField<PointND> field, PointND point, Real h) Computes the vector Laplacian of a vector field.