#include "interpol.h"
#include "laplacian.h"
#include "mixedbc.h"
#include "robinbc.h"
Go to the source code of this file.
◆ operator*() [1/5]
Definition at line 22 of file operators.h.
22 {
23 return (sp_mat)div * (sp_mat)grad;
24}
◆ operator*() [2/5]
vec operator* |
( |
const Divergence & | div, |
|
|
const vec & | v ) |
|
inline |
Definition at line 34 of file operators.h.
34 {
35 return (sp_mat)div * v;
36}
◆ operator*() [3/5]
vec operator* |
( |
const Gradient & | grad, |
|
|
const vec & | v ) |
|
inline |
Definition at line 38 of file operators.h.
38 {
39 return (sp_mat)grad * v;
40}
◆ operator*() [4/5]
vec operator* |
( |
const Interpol & | I, |
|
|
const vec & | v ) |
|
inline |
Definition at line 46 of file operators.h.
46 {
47 return (sp_mat)I * v;
48}
◆ operator*() [5/5]
vec operator* |
( |
const Laplacian & | lap, |
|
|
const vec & | v ) |
|
inline |
Definition at line 42 of file operators.h.
42 {
43 return (sp_mat)lap * v;
44}
◆ operator+() [1/2]
Definition at line 30 of file operators.h.
30 {
31 return (sp_mat)lap + (sp_mat)bc;
32}
◆ operator+() [2/2]
Definition at line 26 of file operators.h.
26 {
27 return (sp_mat)lap + (sp_mat)bc;
28}