Chombo + EB + MF
3.2
Main Page
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
b
c
e
f
g
i
m
n
p
r
s
u
+
Functions
b
c
f
g
i
m
p
r
s
Typedefs
Enumerations
Enumerator
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
+
Typedefs
b
c
d
e
f
i
l
n
o
p
r
s
v
Enumerations
+
Enumerator
a
b
c
d
e
f
h
i
l
m
n
o
p
r
s
t
u
+
Related Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
+
Variables
a
b
c
d
f
g
h
i
k
l
m
n
p
s
t
u
+
Typedefs
a
b
c
d
i
k
l
m
n
p
r
s
Enumerations
+
Enumerator
a
b
c
d
e
f
g
i
n
p
t
u
v
w
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
x
src
AMRTools
TensorCFIVS.H
Go to the documentation of this file.
1
#ifdef CH_LANG_CC
2
/*
3
* _______ __
4
* / ___/ / ___ __ _ / / ___
5
* / /__/ _ \/ _ \/ V \/ _ \/ _ \
6
* \___/_//_/\___/_/_/_/_.__/\___/
7
* Please refer to Copyright.txt, in Chombo's root directory.
8
*/
9
#endif
10
11
#ifndef _TENSORCFIVS_H_
12
#define _TENSORCFIVS_H_
13
14
#include <iostream>
15
#include <cmath>
16
#include "
SPACE.H
"
17
#include <cstdlib>
18
#include "
REAL.H
"
19
#include "
IntVect.H
"
20
#include "
Box.H
"
21
#include "
LoHiSide.H
"
22
#include "
DisjointBoxLayout.H
"
23
#include "
IntVectSet.H
"
24
#include "
ProblemDomain.H
"
25
#include "NamespaceHeader.H"
26
27
///Class to get fine intvectset at CF interface
28
/**
29
Class to get fine intvectset at cf interface.
30
This class should be considered internal to AMRSolver and should
31
not be considered part of the Chombo API.
32
*/
33
class
TensorCFIVS
34
{
35
36
private
:
37
38
protected
:
39
//for internal use
40
void
setDefaultValues
();
41
42
//the following variables are mainly for self-identification
43
44
/* fine intvects which need to be interpolated */
45
IntVectSet
fiinterp_ivs
;
46
47
bool
isdefined
;
48
49
public
:
50
51
///
52
bool
isDefined
()
const
;
53
54
///
55
/** Get fine intvects which need to be interpolated.
56
This will be empty if isEmpty() returns true*/
57
const
IntVectSet
&
getFineIVS
()
const
;
58
59
///
60
TensorCFIVS
();
61
62
///
63
~TensorCFIVS
();
64
65
///
66
TensorCFIVS
(
67
const
Box
& Domain,
68
const
Box
& box_in,
69
const
DisjointBoxLayout
& Levboxes,
70
int
Direction,
71
Side::LoHiSide
hiorlo);
72
73
74
///
75
TensorCFIVS
(
76
const
ProblemDomain
& Domain,
77
const
Box
& box_in,
78
const
DisjointBoxLayout
& Levboxes,
79
int
Direction,
80
Side::LoHiSide
hiorlo);
81
82
///
83
void
define
(
84
const
Box
& Domain,
85
const
Box
& box_in,
86
const
DisjointBoxLayout
& fine_boxes,
87
int
Direction,
88
Side::LoHiSide
hiorlo);
89
90
///
91
void
define
(
92
const
ProblemDomain
& Domain,
93
const
Box
& box_in,
94
const
DisjointBoxLayout
& fine_boxes,
95
int
Direction,
96
Side::LoHiSide
hiorlo);
97
98
private
:
99
void
operator=
(
const
TensorCFIVS
& levcfs_in)
100
{
101
}
102
103
TensorCFIVS
(
const
TensorCFIVS
& levcfs_in)
104
{
105
}
106
};
107
#include "NamespaceFooter.H"
108
#endif
TensorCFIVS::isDefined
bool isDefined() const
IntVect.H
IntVectSet
An irregular domain on an integer lattice.
Definition:
IntVectSet.H:44
ProblemDomain
A class to facilitate interaction with physical boundary conditions.
Definition:
ProblemDomain.H:141
TensorCFIVS::fiinterp_ivs
IntVectSet fiinterp_ivs
Definition:
TensorCFIVS.H:45
DisjointBoxLayout.H
TensorCFIVS::getFineIVS
const IntVectSet & getFineIVS() const
SPACE.H
TensorCFIVS::TensorCFIVS
TensorCFIVS(const TensorCFIVS &levcfs_in)
Definition:
TensorCFIVS.H:103
TensorCFIVS::TensorCFIVS
TensorCFIVS()
ProblemDomain.H
DisjointBoxLayout
A BoxLayout that has a concept of disjointedness.
Definition:
DisjointBoxLayout.H:30
Side::LoHiSide
LoHiSide
Definition:
LoHiSide.H:27
TensorCFIVS
Class to get fine intvectset at CF interface.
Definition:
TensorCFIVS.H:33
TensorCFIVS::~TensorCFIVS
~TensorCFIVS()
TensorCFIVS::operator=
void operator=(const TensorCFIVS &levcfs_in)
Definition:
TensorCFIVS.H:99
Box
A Rectangular Domain on an Integer Lattice.
Definition:
Box.H:469
TensorCFIVS::setDefaultValues
void setDefaultValues()
LoHiSide.H
Box.H
REAL.H
TensorCFIVS::isdefined
bool isdefined
Definition:
TensorCFIVS.H:47
IntVectSet.H
TensorCFIVS::define
void define(const Box &Domain, const Box &box_in, const DisjointBoxLayout &fine_boxes, int Direction, Side::LoHiSide hiorlo)
Generated by
1.8.13