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
Julia
Nektar
Commits
1842e652
Commit
1842e652
authored
Mar 05, 2014
by
Gianmarco Mengaldo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated calls to EvaluateBoundaryConditions in some solvers.
parent
08bd8a22
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
solvers/APESolver/EquationSystems/APE.cpp
solvers/APESolver/EquationSystems/APE.cpp
+1
-1
solvers/IncNavierStokesSolver/EquationSystems/IncNavierStokes.cpp
...IncNavierStokesSolver/EquationSystems/IncNavierStokes.cpp
+1
-1
solvers/PulseWaveSolver/EquationSystems/PulseWaveSystem.cpp
solvers/PulseWaveSolver/EquationSystems/PulseWaveSystem.cpp
+1
-1
solvers/ShallowWaterSolver/EquationSystems/LinearSWE.cpp
solvers/ShallowWaterSolver/EquationSystems/LinearSWE.cpp
+1
-1
solvers/ShallowWaterSolver/EquationSystems/NonlinearSWE.cpp
solvers/ShallowWaterSolver/EquationSystems/NonlinearSWE.cpp
+1
-1
No files found.
solvers/APESolver/EquationSystems/APE.cpp
View file @
1842e652
...
...
@@ -259,7 +259,7 @@ namespace Nektar
for
(
int
i
=
0
;
i
<
nvariables
;
++
i
)
{
varName
=
m_session
->
GetVariable
(
i
);
m_fields
[
i
]
->
EvaluateBoundaryConditions
(
time
,
i
,
varName
);
m_fields
[
i
]
->
EvaluateBoundaryConditions
(
time
,
varName
);
}
}
cnt
+=
m_fields
[
0
]
->
GetBndCondExpansions
()[
n
]
->
GetExpSize
();
...
...
solvers/IncNavierStokesSolver/EquationSystems/IncNavierStokes.cpp
View file @
1842e652
...
...
@@ -381,7 +381,7 @@ namespace Nektar
SpatialDomains
::
eTimeDependent
)
{
varName
=
m_session
->
GetVariable
(
i
);
m_fields
[
i
]
->
EvaluateBoundaryConditions
(
time
,
i
,
varName
);
m_fields
[
i
]
->
EvaluateBoundaryConditions
(
time
,
varName
);
}
}
...
...
solvers/PulseWaveSolver/EquationSystems/PulseWaveSystem.cpp
View file @
1842e652
...
...
@@ -739,7 +739,7 @@ namespace Nektar
std
::
string
varName
=
m_session
->
GetVariable
(
i
);
for
(
int
k
=
0
;
k
<
m_vessels
.
num_elements
();
k
++
)
{
m_vessels
[
k
]
->
EvaluateBoundaryConditions
(
m_time
,
i
,
varName
);
m_vessels
[
k
]
->
EvaluateBoundaryConditions
(
m_time
,
varName
);
}
// Detect special network boundary conditions
...
...
solvers/ShallowWaterSolver/EquationSystems/LinearSWE.cpp
View file @
1842e652
...
...
@@ -392,7 +392,7 @@ namespace Nektar
for
(
int
i
=
0
;
i
<
nvariables
;
++
i
)
{
varName
=
m_session
->
GetVariable
(
i
);
m_fields
[
i
]
->
EvaluateBoundaryConditions
(
time
,
i
,
varName
);
m_fields
[
i
]
->
EvaluateBoundaryConditions
(
time
,
varName
);
}
}
cnt
+=
m_fields
[
0
]
->
GetBndCondExpansions
()[
n
]
->
GetExpSize
();
...
...
solvers/ShallowWaterSolver/EquationSystems/NonlinearSWE.cpp
View file @
1842e652
...
...
@@ -437,7 +437,7 @@ namespace Nektar
for
(
int
i
=
0
;
i
<
nvariables
;
++
i
)
{
varName
=
m_session
->
GetVariable
(
i
);
m_fields
[
i
]
->
EvaluateBoundaryConditions
(
time
,
i
,
varName
);
m_fields
[
i
]
->
EvaluateBoundaryConditions
(
time
,
varName
);
}
}
cnt
+=
m_fields
[
0
]
->
GetBndCondExpansions
()[
n
]
->
GetExpSize
();
...
...
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