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
334f5bf2
Commit
334f5bf2
authored
Aug 06, 2011
by
Henry
Browse files
Merge branch 'master' of
ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
parents
a412bb43
3922f8a0
Changes
10
Hide whitespace changes
Inline
Side-by-side
applications/solvers/basic/potentialFoam/createFields.H
View file @
334f5bf2
...
...
@@ -44,6 +44,12 @@
fvc
::
interpolate
(
U
)
&
mesh
.
Sf
()
);
if
(
args
.
optionFound
(
"initialiseUBCs"
))
{
U
.
correctBoundaryConditions
();
phi
=
fvc
::
interpolate
(
U
)
&
mesh
.
Sf
();
}
label
pRefCell
=
0
;
scalar
pRefValue
=
0
.
0
;
...
...
applications/solvers/basic/potentialFoam/potentialFoam.C
View file @
334f5bf2
...
...
@@ -38,6 +38,11 @@ Description
int
main
(
int
argc
,
char
*
argv
[])
{
argList
::
addBoolOption
(
"writep"
,
"write the final pressure field"
);
argList
::
addBoolOption
(
"initialiseUBCs"
,
"initialise U boundary conditions"
);
#include "setRootCase.H"
#include "createTime.H"
...
...
applications/utilities/mesh/conversion/ideasUnvToFoam/ideasUnvToFoam.C
View file @
334f5bf2
...
...
@@ -844,16 +844,16 @@ int main(int argc, char *argv[])
List
<
faceList
>
patchFaceVerts
;
labelList
nrFaceCells
(
boundaryFaces
.
size
(),
0
);
HashTable
<
label
,
label
>
faceToCell
[
2
];
labelList
own
(
boundaryFaces
.
size
(),
-
1
);
labelList
nei
(
boundaryFaces
.
size
(),
-
1
);
HashTable
<
label
,
label
>
faceToCell
[
2
];
{
HashTable
<
label
,
face
,
Hash
<
face
>
>
faceToFaceID
(
boundaryFaces
.
size
());
forAll
(
boundaryFaces
,
faceI
)
{
SortableList
<
label
>
foo
(
boundaryFaces
[
faceI
]);
face
theFace
(
foo
);
faceToFaceID
.
insert
(
theFace
,
faceI
);
SortableList
<
label
>
sortedVerts
(
boundaryFaces
[
faceI
]);
faceToFaceID
.
insert
(
face
(
sortedVerts
),
faceI
);
}
forAll
(
cellVerts
,
cellI
)
...
...
@@ -861,31 +861,57 @@ int main(int argc, char *argv[])
faceList
faces
=
cellVerts
[
cellI
].
faces
();
forAll
(
faces
,
i
)
{
SortableList
<
label
>
foo
(
faces
[
i
]);
face
theFace
(
foo
);
if
(
faceToFaceID
.
found
(
theFace
))
SortableList
<
label
>
sortedVerts
(
faces
[
i
]);
HashTable
<
label
,
face
,
Hash
<
face
>
>::
const_iterator
fnd
=
faceToFaceID
.
find
(
face
(
sortedVerts
));
if
(
fnd
!=
faceToFaceID
.
end
())
{
label
faceI
=
faceToFaceID
[
theFace
];
if
(
nrFaceCells
[
faceI
]
<
2
)
label
faceI
=
fnd
();
int
stat
=
face
::
compare
(
faces
[
i
],
boundaryFaces
[
faceI
]);
if
(
stat
==
1
)
{
// Same orientation. Cell is owner.
own
[
faceI
]
=
cellI
;
}
else
if
(
stat
==
-
1
)
{
faceToCell
[
nrFaceCells
[
faceI
]].
insert
(
faceI
,
cellI
);
// Opposite orientation. Cell is neighbour.
nei
[
faceI
]
=
cellI
;
}
nrFaceCells
[
faceI
]
++
;
}
}
}
label
nReverse
=
0
;
forAll
(
own
,
faceI
)
{
if
(
own
[
faceI
]
==
-
1
&&
nei
[
faceI
]
!=
-
1
)
{
// Boundary face with incorrect orientation
boundaryFaces
[
faceI
]
=
boundaryFaces
[
faceI
].
reverseFace
();
Swap
(
own
[
faceI
],
nei
[
faceI
]);
nReverse
++
;
}
}
if
(
nReverse
>
0
)
{
Info
<<
"Found "
<<
nReverse
<<
" reversed boundary faces out of "
<<
boundaryFaces
.
size
()
<<
endl
;
}
label
cnt
=
0
;
forAll
(
nrFaceCells
,
faceI
)
forAll
(
own
,
faceI
)
{
assert
(
nrFaceCells
[
faceI
]
==
1
||
nrFaceCells
[
faceI
]
==
2
);
if
(
nrFaceCells
[
faceI
]
>
1
)
if
(
own
[
faceI
]
!=
-
1
&&
nei
[
faceI
]
!=
-
1
)
{
cnt
++
;
}
}
if
(
cnt
>
0
)
if
(
cnt
>
0
)
{
Info
<<
"Of "
<<
boundaryFaces
.
size
()
<<
" so-called"
<<
" boundary faces "
<<
cnt
<<
" belong to two cells "
...
...
@@ -994,7 +1020,8 @@ int main(int argc, char *argv[])
if
(
boundaryFaceToIndex
.
found
(
faceIndices
[
i
]))
{
label
bFaceI
=
boundaryFaceToIndex
[
faceIndices
[
i
]];
if
(
nrFaceCells
[
bFaceI
]
==
1
)
if
(
own
[
bFaceI
]
!=
-
1
&&
nei
[
bFaceI
]
==
-
1
)
{
patchFaces
[
cnt
]
=
boundaryFaces
[
bFaceI
];
cnt
++
;
...
...
etc/controlDict
View file @
334f5bf2
...
...
@@ -912,7 +912,7 @@ DimensionedConstants
}
electromagnetic
{
e e [ 0 0
-
1 0 0 1 0 ] 1.60218e-19;
e e [ 0 0 1 0 0 1 0 ] 1.60218e-19;
}
atomic
{
...
...
@@ -942,7 +942,7 @@ DimensionedConstants
}
electromagnetic
{
e e [ 0 0
-
1 0 0 1 0 ] 1.60218e-19;
e e [ 0 0 1 0 0 1 0 ] 1.60218e-19;
}
atomic
{
...
...
src/OpenFOAM/db/dynamicLibrary/dlLibraryTable/dlLibraryTable.C
View file @
334f5bf2
...
...
@@ -35,8 +35,6 @@ defineTypeNameAndDebug(Foam::dlLibraryTable, 0);
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam
::
dlLibraryTable
::
dlLibraryTable
()
:
HashTable
<
fileName
,
void
*
,
Hash
<
void
*>
>
()
{}
...
...
@@ -45,8 +43,6 @@ Foam::dlLibraryTable::dlLibraryTable
const
dictionary
&
dict
,
const
word
&
libsEntry
)
:
HashTable
<
fileName
,
void
*
,
Hash
<
void
*>
>
()
{
open
(
dict
,
libsEntry
);
}
...
...
@@ -56,17 +52,18 @@ Foam::dlLibraryTable::dlLibraryTable
Foam
::
dlLibraryTable
::~
dlLibraryTable
()
{
forAll
ConstIter
(
dlLibraryTable
,
*
this
,
iter
)
forAll
Reverse
(
libPtrs_
,
i
)
{
// bug in dlclose - does not call static destructors of
// loaded library when actually unloading the library.
// See https://bugzilla.novell.com/show_bug.cgi?id=680125 and 657627.
if
(
debug
)
if
(
libPtrs_
[
i
])
{
Info
<<
"dlLibraryTable::~dlLibraryTable() : closing "
<<
iter
()
<<
" with handle "
<<
long
(
iter
.
key
())
<<
endl
;
if
(
debug
)
{
Info
<<
"dlLibraryTable::~dlLibraryTable() : closing "
<<
libNames_
[
i
]
<<
" with handle "
<<
long
(
libPtrs_
[
i
])
<<
endl
;
}
dlClose
(
libPtrs_
[
i
]);
}
dlClose
(
iter
.
key
());
}
}
...
...
@@ -95,7 +92,7 @@ bool Foam::dlLibraryTable::open
{
WarningIn
(
"dlLibraryTable::open(const fileName&)"
"dlLibraryTable::open(const fileName&
, const bool
)"
)
<<
"could not load "
<<
functionLibName
<<
endl
;
}
...
...
@@ -104,7 +101,9 @@ bool Foam::dlLibraryTable::open
}
else
{
return
insert
(
functionLibPtr
,
functionLibName
);
libPtrs_
.
append
(
functionLibPtr
);
libNames_
.
append
(
functionLibName
);
return
true
;
}
}
else
...
...
@@ -120,18 +119,30 @@ bool Foam::dlLibraryTable::close
const
bool
verbose
)
{
void
*
libPtr
=
findLibrary
(
functionLibName
);
if
(
libPtr
)
label
index
=
-
1
;
forAllReverse
(
libNames_
,
i
)
{
if
(
libNames_
[
i
]
==
functionLibName
)
{
index
=
i
;
break
;
}
}
if
(
index
!=
-
1
)
{
if
(
debug
)
{
Info
<<
"dlLibraryTable::close : closing "
<<
functionLibName
<<
" with handle "
<<
long
(
libPtr
)
<<
endl
;
<<
" with handle "
<<
long
(
libPtr
s_
[
index
]
)
<<
endl
;
}
erase
(
libPtr
);
bool
ok
=
dlClose
(
libPtrs_
[
index
]);
libPtrs_
[
index
]
=
NULL
;
libNames_
[
index
]
=
fileName
::
null
;
if
(
!
dlClose
(
libPtr
)
)
if
(
!
ok
)
{
if
(
verbose
)
{
...
...
@@ -153,13 +164,20 @@ bool Foam::dlLibraryTable::close
void
*
Foam
::
dlLibraryTable
::
findLibrary
(
const
fileName
&
functionLibName
)
{
forAllConstIter
(
dlLibraryTable
,
*
this
,
iter
)
label
index
=
-
1
;
forAllReverse
(
libNames_
,
i
)
{
if
(
iter
()
==
functionLibName
)
if
(
libNames_
[
i
]
==
functionLibName
)
{
return
iter
.
key
();
index
=
i
;
break
;
}
}
if
(
index
!=
-
1
)
{
return
libPtrs_
[
index
];
}
return
NULL
;
}
...
...
src/OpenFOAM/db/dynamicLibrary/dlLibraryTable/dlLibraryTable.H
View file @
334f5bf2
...
...
@@ -36,8 +36,7 @@ SourceFiles
#define dlLibraryTable_H
#include "label.H"
#include "Hash.H"
#include "HashTable.H"
#include "DynamicList.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
@@ -49,11 +48,14 @@ namespace Foam
\*---------------------------------------------------------------------------*/
class
dlLibraryTable
:
public
HashTable
<
fileName
,
void
*
,
Hash
<
void
*>
>
{
// Private Member Functions
DynamicList
<
void
*>
libPtrs_
;
DynamicList
<
fileName
>
libNames_
;
//- Disallow default bitwise copy construct
dlLibraryTable
(
const
dlLibraryTable
&
);
...
...
src/OpenFOAM/global/constants/electromagnetic/electromagneticConstants.C
View file @
334f5bf2
...
...
@@ -44,7 +44,7 @@ const Foam::dimensionedScalar Foam::constant::electromagnetic::mu0
dimensionedScalar
(
"mu0"
,
dimensionSet
(
1
,
2
,
-
1
,
0
,
0
,
-
2
,
0
),
dimensionSet
(
1
,
1
,
-
2
,
0
,
0
,
-
2
,
0
),
4
.
0
*
constant
::
mathematical
::
pi
*
1e-07
)
)
...
...
src/postProcessing/functionObjects/field/fieldAverage/controlDict
View file @
334f5bf2
...
...
@@ -52,7 +52,7 @@ functions
type fieldAverage;
// Where to load it from (if not already in solver)
functionObjectLibs ("libfield
Average
.so");
functionObjectLibs ("libfield
FunctionObjects
.so");
// Function object enabled flag
enabled true;
...
...
src/postProcessing/functionObjects/field/fieldAverage/fieldAverage/fieldAverage.H
View file @
334f5bf2
...
...
@@ -34,7 +34,7 @@ Description
type fieldAverage;
// Where to load it from (if not already in solver)
functionObjectLibs ("libfield
Average
.so");
functionObjectLibs ("libfield
FunctionObjects
.so");
// Whether to perform a clean restart, or start from previous
// averaging info if available
...
...
tutorials/incompressible/simpleFoam/motorBike/0.org/omega
View file @
334f5bf2
...
...
@@ -10,7 +10,7 @@ FoamFile
version 2.0;
format ascii;
class volScalarField;
object
epsilon
;
object
omega
;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
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