handy-diffusion 1.0.0 → 1.0.1
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.js +11 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// Import and re-export ADI functions
|
|
2
|
+
export { ADI, setADIProperties } from './ADI.js';
|
|
3
|
+
|
|
4
|
+
// Import and re-export Crank-Nicolson functions
|
|
5
|
+
export { CrankNicolson, setCNProperties } from './CrankNicolson.js';
|
|
6
|
+
|
|
7
|
+
// Import and re-export analytic solution
|
|
8
|
+
export { analyticSteadyState } from './analyticSolution.js';
|
|
9
|
+
|
|
10
|
+
// Import and re-export effective influence
|
|
11
|
+
export { efectiveInfluence } from './effective.js';
|