WenOOF
WenOOF copied to clipboard
WENO interpolation Object Oriented Fortran library
I naively cloned WenOOF and FOODIE on my laptop and saw that it requires around 100 GB of storage, because they include each other, as well as other packages that...
In the present version of WenOOF, the WENO reconstruction process can be realized only on the two cell interfaces (i-1/2, i+1/2); following the work done with WENO interpolation, this process...
In case of WENO interpolation, linear weights (kappa objects in WenOOF) can assume negative values: this behaviour can lead to unstable schemes and therefore a suitable strategy to avoid this...
Just a list of schemes that we would like to be implemented into the library: - [x] _Efficient Implementation of Weighted ENO Schemes_, Guang-Shan Jiang, Chi-Wang Shu, JCP, 1996, vol....
Currently, all tableau of coefficients are *hard-coded* in the sources. This has at least 2 cons: 1. really error-prone with very bad visualization due to the 132 characters limit; 2....
Improve `sin_reconstruction` test for test accuracy (and test the other interpolators).
The functions [weno_exp](https://github.com/Fortran-FOSS-Programmers/WenOOF/blob/master/src/lib/wenoof_alpha_coefficients_z.f90#L97-#L103) and [tau](https://github.com/Fortran-FOSS-Programmers/WenOOF/blob/master/src/lib/wenoof_alpha_coefficients_z.f90#L88-#L95) maybe have to be changed in something new according to the following papers: *High Order Weighted Essentially Non-Oscillatory WENO-Z schemes for Hyperbolic Conservation Laws*, Castro,...
A lot of the sources are not covered, **improve coverage** by new tests.
Exploit the wiki for hosting the main documentation, create some starting contents.
Hi all, I am planning to insert some external libraries: - a module for kinds parametrization and portability and _numbers auxiliary/helper procedures_ (essentially for casting numbers to strings and viceversa);...