Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
8cadf0de
Commit
8cadf0de
authored
Apr 05, 2013
by
andy
Browse files
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
parents
c812b274
b07e4f55
Changes
2
Hide whitespace changes
Inline
Side-by-side
applications/solvers/multiphase/multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.C
View file @
8cadf0de
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-201
2
OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-201
3
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -418,6 +418,47 @@ Foam::multiphaseSystem::multiphaseSystem
).
ptr
()
);
}
forAllConstIter
(
PtrDictionary
<
phaseModel
>
,
phases_
,
iter1
)
{
const
phaseModel
&
phase1
=
iter1
();
forAllConstIter
(
PtrDictionary
<
phaseModel
>
,
phases_
,
iter2
)
{
const
phaseModel
&
phase2
=
iter2
();
if
(
&
phase2
!=
&
phase1
)
{
scalarCoeffSymmTable
::
const_iterator
sigma
(
sigmas_
.
find
(
interfacePair
(
phase1
,
phase2
))
);
if
(
sigma
!=
sigmas_
.
end
())
{
scalarCoeffSymmTable
::
const_iterator
cAlpha
(
cAlphas_
.
find
(
interfacePair
(
phase1
,
phase2
))
);
if
(
cAlpha
==
cAlphas_
.
end
())
{
WarningIn
(
"multiphaseSystem::multiphaseSystem"
"(const volVectorField& U,"
"const surfaceScalarField& phi)"
)
<<
"Compression coefficient not specified for "
"phase pair ("
<<
phase1
.
name
()
<<
' '
<<
phase2
.
name
()
<<
") for which a surface tension "
"coefficient is specified"
<<
endl
;
}
}
}
}
}
}
...
...
src/OpenFOAM/fields/GeometricFields/GeometricField/GeometricField.C
View file @
8cadf0de
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-201
2
OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-201
3
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
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