Interface IBoundaryConditionGradient<T>
- Namespace
- AiDotNet.PhysicsInformed.Interfaces
- Assembly
- AiDotNet.dll
Provides gradients for boundary residuals with respect to outputs and derivatives.
public interface IBoundaryConditionGradient<T>
Type Parameters
TThe numeric type.
Methods
ComputeBoundaryResidualGradient(T[], T[], PDEDerivatives<T>)
Computes gradients of the boundary residual with respect to outputs and derivatives.
PDEResidualGradient<T> ComputeBoundaryResidualGradient(T[] inputs, T[] outputs, PDEDerivatives<T> derivatives)
Parameters
inputsT[]The boundary point coordinates.
outputsT[]The predicted solution values.
derivativesPDEDerivatives<T>The derivatives of the solution.
Returns
- PDEResidualGradient<T>
Residual gradients for outputs and derivatives.