handy-diffusion 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +0 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -21,13 +21,11 @@ export function setADIProperties(
|
|
|
21
21
|
/**
|
|
22
22
|
* Solve 2D diffusion equation using ADI method
|
|
23
23
|
* @param concentrationData - Concentration array (width * height)
|
|
24
|
-
* @param sources - Source terms array
|
|
25
24
|
* @param totalNumberOfIterations - Number of time steps
|
|
26
25
|
* @param allowNegativeValues - Whether to allow negative concentrations (default: false)
|
|
27
26
|
*/
|
|
28
27
|
export function ADI(
|
|
29
28
|
concentrationData: Float64Array | number[],
|
|
30
|
-
sources: Float64Array | number[],
|
|
31
29
|
totalNumberOfIterations: number,
|
|
32
30
|
allowNegativeValues?: boolean
|
|
33
31
|
): void;
|