Mimetic Operators Library Enhanced 4.0
Loading...
Searching...
No Matches
laplacian.h
Go to the documentation of this file.
1#ifndef LAPLACIAN_H
2#define LAPLACIAN_H
3
4#include "divergence.h"
5#include "gradient.h"
6
7class Laplacian : public sp_mat
8{
9
10public:
11 using sp_mat::operator=;
12
13 // 1-D Constructor
14 Laplacian(u16 k, u32 m, Real dx);
15 // 2-D Constructor
16 Laplacian(u16 k, u32 m, u32 n, Real dx, Real dy);
17 // 3-D Constructor
18 Laplacian(u16 k, u32 m, u32 n, u32 o, Real dx, Real dy, Real dz);
19};
20
21#endif // LAPLACIAN_H
Laplacian(u16 k, u32 m, Real dx)
Definition laplacian.cpp:4
double Real
Definition utils.h:8