Rheolef
7.2
an efficient C++ finite element environment
Loading...
Searching...
No Matches
diffusion_isotropic.h
Go to the documentation of this file.
1
25
struct
A
{
26
tensor
operator()
(
const
point
& x)
const
{
return
tensor::eye(
d
); }
27
A
(
size_t
d1) :
d
(d1) {}
28
size_t
d
;
29
};
point
see the point page for the full documentation
tensor
see the tensor page for the full documentation
A
Definition
diffusion_isotropic.h:25
A::d
size_t d
Definition
diffusion_isotropic.h:28
A::operator()
tensor operator()(const point &x) const
Definition
diffusion_isotropic.h:26
A::A
A(size_t d1)
Definition
diffusion_isotropic.h:27