Table of Contents

Interface IPDEResidualGradient<T>

Namespace
AiDotNet.PhysicsInformed.Interfaces
Assembly
AiDotNet.dll

Provides gradients of the PDE residual with respect to outputs and derivatives.

public interface IPDEResidualGradient<T>

Type Parameters

T

The numeric type.

Methods

ComputeResidualGradient(T[], T[], PDEDerivatives<T>)

Computes gradients of the PDE residual with respect to outputs and derivatives.

PDEResidualGradient<T> ComputeResidualGradient(T[] inputs, T[] outputs, PDEDerivatives<T> derivatives)

Parameters

inputs T[]

The spatial and temporal coordinates.

outputs T[]

The predicted solution values.

derivatives PDEDerivatives<T>

The derivatives of the solution.

Returns

PDEResidualGradient<T>

Residual gradients for outputs and derivatives.