Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Nektar
Nektar
Commits
bebdcdd2
Commit
bebdcdd2
authored
Nov 22, 2012
by
Chris Cantwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compile errors after merge.
parent
7d098f4b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
library/MultiRegions/ContField2D.cpp
library/MultiRegions/ContField2D.cpp
+4
-3
No files found.
library/MultiRegions/ContField2D.cpp
View file @
bebdcdd2
...
...
@@ -522,7 +522,7 @@ namespace Nektar
v_ImposeDirichletConditions
(
inout
);
// STEP 2: CALCULATE THE HOMOGENEOUS COEFFICIENTS
if
(
contNcoeffs
-
nDir
>
0
)
if
(
contNcoeffs
-
NumDirBcs
>
0
)
{
GlobalLinSysSharedPtr
LinSys
=
GetGlobalLinSys
(
key
);
LinSys
->
Solve
(
rhs
,
inout
,
m_locToGloMap
,
dirForcing
);
...
...
@@ -612,7 +612,8 @@ namespace Nektar
{
int
i
,
j
;
int
bndcnt
=
0
;
int
nDir
=
m_locToGloMap
->
GetNumGlobalDirBndCoeffs
();
// STEP 1: SET THE DIRICHLET DOFS TO THE RIGHT VALUE IN THE SOLUTION
// ARRAY
NekDouble
sign
;
...
...
@@ -659,7 +660,7 @@ namespace Nektar
}
}
Vmath
::
Vcopy
(
nDir
,
tmp
,
1
,
in
out
,
1
);
Vmath
::
Vcopy
(
nDir
,
tmp
,
1
,
out
array
,
1
);
}
...
...
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