Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Nektar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
88
Issues
88
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
50
Merge Requests
50
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nektar
Nektar
Commits
ca67e008
Commit
ca67e008
authored
Apr 04, 2013
by
Chris Cantwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/warnings' of localhost:nektar
parents
7158dc32
536ed99c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
19 deletions
+17
-19
library/StdRegions/StdHexExp.cpp
library/StdRegions/StdHexExp.cpp
+3
-3
library/StdRegions/StdPrismExp.cpp
library/StdRegions/StdPrismExp.cpp
+5
-8
library/StdRegions/StdPyrExp.cpp
library/StdRegions/StdPyrExp.cpp
+9
-8
No files found.
library/StdRegions/StdHexExp.cpp
View file @
ca67e008
...
...
@@ -1535,7 +1535,7 @@ namespace Nektar
bool
reverseOrdering
=
false
;
bool
signChange
=
false
;
int
IdxRange
[
3
][
2
];
int
IdxRange
[
3
][
2
]
=
{{
0
,
0
},{
0
,
0
},{
0
,
0
}}
;
switch
(
eid
)
{
...
...
@@ -1830,8 +1830,8 @@ namespace Nektar
GetBasisType
(
1
),
GetBasisType
(
2
)};
int
nummodesA
;
int
nummodesB
;
int
nummodesA
=
0
;
int
nummodesB
=
0
;
// Determine the number of modes in face directions A & B based
// on the face index given.
...
...
library/StdRegions/StdPrismExp.cpp
View file @
ca67e008
...
...
@@ -1244,17 +1244,14 @@ namespace Nektar
int
nummodesA
,
int
nummodesB
)
{
const
LibUtilities
::
BasisType
bType0
=
GetEdgeBasisType
(
0
);
const
LibUtilities
::
BasisType
bType1
=
GetEdgeBasisType
(
1
);
const
LibUtilities
::
BasisType
bType2
=
GetEdgeBasisType
(
4
);
ASSERTL1
(
bType0
==
bType1
,
ASSERTL1
(
GetEdgeBasisType
(
0
)
==
GetEdgeBasisType
(
1
),
"Method only implemented if BasisType is identical"
"in x and y directions"
);
ASSERTL1
(
bType0
==
LibUtilities
::
eModified_A
&&
bType2
==
LibUtilities
::
eModified_B
,
ASSERTL1
(
GetEdgeBasisType
(
0
)
==
LibUtilities
::
eModified_A
&&
GetEdgeBasisType
(
4
)
==
LibUtilities
::
eModified_B
,
"Method only implemented for Modified_A BasisType"
"(x and y direction) and Modified_B BasisType (z direction)"
);
"(x and y direction) and Modified_B BasisType (z "
"direction)"
);
int
i
,
j
,
p
,
q
,
r
,
nFaceCoeffs
,
idx
=
0
;
...
...
library/StdRegions/StdPyrExp.cpp
View file @
ca67e008
...
...
@@ -920,14 +920,15 @@ namespace Nektar
const
int
nummodes2
=
m_base
[
2
]
->
GetNumModes
();
//int nummodesA, nummodesB, P, Q;
const
LibUtilities
::
BasisType
bType0
=
GetEdgeBasisType
(
0
);
const
LibUtilities
::
BasisType
bType1
=
GetEdgeBasisType
(
1
);
const
LibUtilities
::
BasisType
bType2
=
GetEdgeBasisType
(
4
);
ASSERTL1
(
(
bType0
==
bType1
),
"Method only implemented if BasisType is indentical in x and y directions"
);
ASSERTL1
(
(
bType0
==
LibUtilities
::
eModified_A
)
&&
(
bType1
==
LibUtilities
::
eModified_A
)
&&
(
bType2
==
LibUtilities
::
eModified_C
),
"Method only implemented for Modified_A BasisType (x and y direction) and Modified_C BasisType (z direction)"
);
ASSERTL1
(
GetEdgeBasisType
(
0
)
==
GetEdgeBasisType
(
1
),
"Method only implemented if BasisType is indentical in "
"x and y directions"
);
ASSERTL1
(
GetEdgeBasisType
(
0
)
==
LibUtilities
::
eModified_A
&&
GetEdgeBasisType
(
1
)
==
LibUtilities
::
eModified_A
&&
GetEdgeBasisType
(
4
)
==
LibUtilities
::
eModified_C
,
"Method only implemented for Modified_A BasisType (x "
"and y direction) and Modified_C BasisType (z "
"direction)"
);
bool
isQuad
=
true
;
...
...
Write
Preview
Markdown
is supported
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