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
Julia
Nektar
Commits
96fd0500
Commit
96fd0500
authored
Apr 12, 2017
by
Dave Moxey
Browse files
Fix interpolation for hexes
parent
e8381d5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/LocalRegions/HexExp.cpp
View file @
96fd0500
...
@@ -710,6 +710,26 @@ namespace Nektar
...
@@ -710,6 +710,26 @@ namespace Nektar
}
}
break
;
break
;
}
}
case
LibUtilities
::
eGLL_Lagrange
:
{
LibUtilities
::
PointsKey
p0
(
nummodes
[
0
],
LibUtilities
::
eGaussLobattoLegendre
);
LibUtilities
::
PointsKey
p1
(
nummodes
[
1
],
LibUtilities
::
eGaussLobattoLegendre
);
LibUtilities
::
PointsKey
p2
(
nummodes
[
2
],
LibUtilities
::
eGaussLobattoLegendre
);
LibUtilities
::
PointsKey
t0
(
m_base
[
0
]
->
GetNumModes
(),
LibUtilities
::
eGaussLobattoLegendre
);
LibUtilities
::
PointsKey
t1
(
m_base
[
1
]
->
GetNumModes
(),
LibUtilities
::
eGaussLobattoLegendre
);
LibUtilities
::
PointsKey
t2
(
m_base
[
2
]
->
GetNumModes
(),
LibUtilities
::
eGaussLobattoLegendre
);
LibUtilities
::
Interp3D
(
p0
,
p1
,
p2
,
data
,
t0
,
t1
,
t2
,
coeffs
);
}
break
;
default:
default:
ASSERTL0
(
false
,
"basis is either not set up or not "
ASSERTL0
(
false
,
"basis is either not set up or not "
"hierarchicial"
);
"hierarchicial"
);
...
...
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