Rheolef  7.2
an efficient C++ finite element environment
 
Loading...
Searching...
No Matches
vector_projection.h
Go to the documentation of this file.
1
25#include "phi.h"
27 Float operator() (const Float& x) const {
28 if (x <= a) return 0;
29 return _phi(x-a)/x;
30 }
32 : a(a1), _phi(n,c,r) {}
35};
see the Float page for the full documentation
The Mossolov problem – the phi function.
Definition phi.h:25
vector_projection(Float a1, Float n=1, Float c=1, Float r=0)
Float operator()(const Float &x) const