Table of Contents

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

T

The 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

inputs T[]

The boundary point coordinates.

outputs T[]

The predicted solution values.

derivatives PDEDerivatives<T>

The derivatives of the solution.

Returns

PDEResidualGradient<T>

Residual gradients for outputs and derivatives.