Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nektar
Nektar
Commits
fdc08e3e
Commit
fdc08e3e
authored
Mar 01, 2013
by
Spencer Sherwin
Browse files
Updated some missing virtual functions from previous merge
parent
24bea5c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/StdRegions/StdExpansion.cpp
View file @
fdc08e3e
...
...
@@ -1696,18 +1696,57 @@ namespace Nektar
HelmholtzMatrixOp_MatFree
(
inarray
,
outarray
,
mkey
);
}
void
StdExpansion
::
v_LaplacianMatrixOp_MatFree
(
const
Array
<
OneD
,
const
NekDouble
>
&
inarray
,
Array
<
OneD
,
NekDouble
>
&
outarray
,
const
StdMatrixKey
&
mkey
)
{
// If this function is not reimplemented on shape level, the function
// below will be called
LaplacianMatrixOp_MatFree_GenericImpl
(
inarray
,
outarray
,
mkey
);
}
void
StdExpansion
::
v_HelmholtzMatrixOp_MatFree
(
const
Array
<
OneD
,
const
NekDouble
>
&
inarray
,
Array
<
OneD
,
NekDouble
>
&
outarray
,
const
StdMatrixKey
&
mkey
)
{
// If this function is not reimplemented on shape level, the function
// below will be called
HelmholtzMatrixOp_MatFree_GenericImpl
(
inarray
,
outarray
,
mkey
);
}
const
NormalVector
&
StdExpansion
::
v_GetEdgeNormal
(
const
int
edge
)
const
{
ASSERTL0
(
false
,
"Cannot get edge normals for this expansion."
);
static
NormalVector
result
;
return
result
;
}
void
StdExpansion
::
v_ComputeEdgeNormal
(
const
int
edge
)
{
ASSERTL0
(
false
,
"Cannot compute edge normal for this expansion."
);
}
void
StdExpansion
::
v_NegateEdgeNormal
(
const
int
edge
)
{
ASSERTL0
(
false
,
"Not implemented."
);
}
bool
StdExpansion
::
v_EdgeNormalNegated
(
const
int
edge
)
{
ASSERTL0
(
false
,
"Not implemented."
);
return
false
;
}
void
StdExpansion
::
v_ComputeFaceNormal
(
const
int
face
)
{
ASSERTL0
(
false
,
"Cannot compute face normal for this expansion."
);
}
void
StdExpansion
::
v_NegateFaceNormal
(
const
int
face
)
{
ASSERTL0
(
false
,
"Not implemented."
);
}
void
StdExpansion
::
v_ComputeVertexNormal
(
const
int
vertex
)
{
ASSERTL0
(
false
,
"Cannot compute vertex normal for this expansion."
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment