-
Notifications
You must be signed in to change notification settings - Fork 0
wderiv library
Gabriel Wlazłowski edited this page Feb 17, 2021
·
4 revisions
UNDER CONSTRUCTION !
This library provides a set of functions for computation derivatives using spectral methods. The lib depends on FFTW library. The library is compatible with W-SLDA Toolkit however, it can be used as standalone lib. It is written in C99 standard.
Generic name of a function is wderiv_operation_xd_t, where:
-
wderiv: fixed, function belongs to wderiv lib, -
operation:- dfdx
- dfdy
- d2fdx2
- laplace
- grad
- ...
-
x:-
1for 1D problems -
2for 2D problems -
3for 3D problems
-
-
t:-
rfor real problems -
cfor complex problems
-
Example: wderiv_dfdx_3d_r, wderiv_laplace_2d_c, ...