Henry Weller
ce0cd35185
Patches contributed by Mattijs Janssens:
...
splitMeshRegions: handle flipping of faces for surface fields
subsetMesh: subset dimensionedFields
decomposePar: use run-time selection of decomposition constraints. Used to
keep cells on particular processors. See the decomposeParDict in
$FOAM_UTILITIES/parallel/decomposePar:
- preserveBaffles: keep baffle faces on same processor
- preserveFaceZones: keep faceZones owner and neighbour on same processor
- preservePatches: keep owner and neighbour on same processor. Note: not
suitable for cyclicAMI since these are not coupled on the patch level
- singleProcessorFaceSets: keep complete faceSet on a single processor
- refinementHistory: keep cells originating from a single cell on the
same processor.
decomposePar: clean up decomposition of refinement data from snappyHexMesh
reconstructPar: reconstruct refinement data (refineHexMesh, snappyHexMesh)
reconstructParMesh: reconstruct refinement data (refineHexMesh, snappyHexMesh)
redistributePar:
- corrected mapping surfaceFields
- adding processor patches in order consistent with decomposePar
argList: check that slaves are running same version as master
fvMeshSubset: move to dynamicMesh library
fvMeshDistribute:
- support for mapping dimensionedFields
- corrected mapping of surfaceFields
parallel routines: allow parallel running on single processor
Field: support for
- distributed mapping
- mapping with flipping
mapDistribute: support for flipping
AMIInterpolation: avoid constructing localPoints
2016-05-15 16:36:48 +01:00
Henry Weller
274d1df8a4
snappyHexMesh: Automatically remove zero-sized patches
...
All patches are preserved if the 'keepPatches' option is set true.
Patch contributed by Mattijs Janssens
2016-05-13 17:47:38 +01:00
Henry Weller
bd52e35f77
checkMesh: Updated the closed-ness test for ACMI to use FV
...
Patch contributed by Mattijs Janssens
Resolves bug-report http://bugs.openfoam.org/view.php?id=2088
2016-05-13 16:23:02 +01:00
Henry Weller
6164c2f262
Standardized the naming of functions which control the writing of fields etc.
...
to have the prefix 'write' rather than 'output'
So outputTime() -> writeTime()
but 'outputTime()' is still supported for backward-compatibility.
Also removed the redundant secondary-writing functionality from Time
which has been superseded by the 'writeRegisteredObject' functionObject.
2016-05-12 17:38:01 +01:00
Henry Weller
81f31acbb3
Updated headers
2016-04-30 21:53:19 +01:00
Henry Weller
3c053c2fe6
GeometricField: Renamed internalField() -> primitiveField() and dimensionedInternalField() -> internalField()
...
These new names are more consistent and logical because:
primitiveField():
primitiveFieldRef():
Provides low-level access to the Field<Type> (primitive field)
without dimension or mesh-consistency checking. This should only be
used in the low-level functions where dimensional consistency is
ensured by careful programming and computational efficiency is
paramount.
internalField():
internalFieldRef():
Provides access to the DimensionedField<Type, GeoMesh> of values on
the internal mesh-type for which the GeometricField is defined and
supports dimension and checking and mesh-consistency checking.
2016-04-30 21:40:09 +01:00
Henry Weller
5df2b96489
GeometricField::internalField() -> GeometricField::internalFieldRef()
...
Non-const access to the internal field now obtained from a specifically
named access function consistent with the new names for non-canst access
to the boundary field boundaryFieldRef() and dimensioned internal field
dimensionedInternalFieldRef().
See also commit 22f4ad32b1
2016-04-30 14:25:21 +01:00
Henry Weller
ea5401c770
GeometricField::GeometricBoundaryField -> GeometricField::Boundary
...
When the GeometricBoundaryField template class was originally written it
was a separate class in the Foam namespace rather than a sub-class of
GeometricField as it is now. Without loss of clarity and simplifying
code which access the boundary field of GeometricFields it is better
that GeometricBoundaryField be renamed Boundary for consistency with the
new naming convention for the type of the dimensioned internal field:
Internal, see commit 4a57b9be2e
This is a very simple text substitution change which can be applied to
any code which compiles with the OpenFOAM-dev libraries.
2016-04-28 07:22:02 +01:00
Henry Weller
4a57b9be2e
GeometricField: Rationalized and simplified access to the dimensioned internal field
...
Given that the type of the dimensioned internal field is encapsulated in
the GeometricField class the name need not include "Field"; the type
name is "Internal" so
volScalarField::DimensionedInternalField -> volScalarField::Internal
In addition to the ".dimensionedInternalField()" access function the
simpler "()" de-reference operator is also provided to greatly simplify
FV equation source term expressions which need not evaluate boundary
conditions. To demonstrate this kEpsilon.C has been updated to use
dimensioned internal field expressions in the k and epsilon equation
source terms.
2016-04-27 21:32:45 +01:00
Henry Weller
450728ea84
Standardized cell, patch, face and processor loop index names
2016-04-25 12:00:53 +01:00
Henry Weller
43beb06018
Standardized cell, patch and face loop index names
2016-04-25 10:28:32 +01:00
Henry Weller
2d5ff31649
boundaryField() -> boundaryFieldRef()
2016-04-24 22:07:37 +01:00
Henry Weller
5f13806591
Updated headers
2016-04-21 21:07:28 +01:00
Henry Weller
0aaf154100
utilities/mesh/manipulation: Rationalized "End" message
2016-04-21 21:06:45 +01:00
Henry Weller
d57464a99d
transformPoints: Added "End" message
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=2059
2016-04-21 21:05:47 +01:00
Henry Weller
8c6fa81eba
vector::zero -> Zero
2016-04-16 18:34:41 +01:00
Henry Weller
a9b8bb13e0
applications/.*/Allwmake: Updated to support "stop on 1st error"
...
Patch contributed by Bruno Santos
Resolved bug-report http://www.openfoam.org/mantisbt/view.php?id=2042
2016-04-04 09:03:40 +01:00
Henry Weller
88bd912374
Pstream: optimisation of data exchange
...
Contributed by Mattijs Janssens.
1. Any non-blocking data exchange needs to know in advance the sizes to
receive so it can size the buffer. For "halo" exchanges this is not
a problem since the sizes are known in advance but or all other data
exchanges these sizes need to be exchanged in advance.
This was previously done by having all processors send the sizes of data to
send to the master and send it back such that all processors
- had the same information
- all could work out who was sending what to where and hence what needed to
be received.
This is now changed such that we only send the size to the
destination processor (instead of to all as previously). This means
that
- the list of sizes to send is now of size nProcs v.s. nProcs*nProcs before
- we cut out the route to the master and back by using a native MPI
call
It causes a small change to the API of exchange and PstreamBuffers -
they now return the sizes of the local buffers only (a labelList) and
not the sizes of the buffers on all processors (labelListList)
2. Reversing the order of the way in which the sending is done when
scattering information from the master processor to the other
processors. This is done in a tree like fashion. Each processor has a
set of processors to receive from/ send to. When receiving it will
first receive from the processors with the least amount of
sub-processors (i.e. the ones which return first). When sending it
needs to do the opposite: start sending to the processor with the
most amount of sub-tree since this is the critical path.
2016-04-02 18:32:11 +01:00
Henry Weller
730f89dc9d
Use Zero rather than pTraits<Type>::zero unless a static typed '0' is required
2016-03-22 17:46:52 +00:00
Henry Weller
cb65ba71d7
Made all template declarations consistent using 'class' rather than 'typename'
2016-03-22 15:02:55 +00:00
Henry Weller
ea6eac35a6
etc/config.sh/CGAL: updated
...
Patch contributed by Bruno Santos:
- "etc/config.sh/CGAL":
- Indented the contents of the recently added if block.
- Added comment about using system versions.
- Library paths are now only added if the respective version is not "boost-system" and "cgal-system".
- "src/renumber/Allwmake":
It now relies on the previous file to get the version for
Boost (the same way as in "makeCGAL"). This is so that it will also
build "SloanRenumber" if "boost_version" is set to "boost-system".
- "applications/utilities/mesh/generation/Allwmake":
It now also relies on the script "config.sh/CGAL" to get the
version for CGAL. If "cgal_version" is set to "cgal-system", it
will now also build "foamy*Mesh" utilities and respective
libraries.
Resolves report http://www.openfoam.org/mantisbt/view.php?id=1232
2016-03-22 07:58:38 +00:00
Henry Weller
fa5867137d
transformPoints, surfaceTransformPoints: Updated quaternion construction from Euler-angles
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=2024
2016-03-14 16:40:35 +00:00
Henry Weller
4bc77e6aff
Sprucing up the tutorials folder and adding -dict to "collapseEdges"
...
Patch provided by Bruno Santos
Resolves patch application request http://www.openfoam.org/mantisbt/view.php?id=2015
2016-03-06 19:06:44 +00:00
Henry Weller
2bbc844ea0
Rationalize the autoMesh library: autoHexMesh -> snappyHexMesh
...
autoRefine -> snappyRefine
autoLayer -> snappyLayer
autoSnap -> snappySnap
2016-03-01 16:21:31 +00:00
Henry Weller
eb5d349242
Rationalize the autoMesh library: autoMesh -> snappyHexMesh
2016-03-01 16:01:42 +00:00
Henry Weller
5db3116a74
src/OpenFOAM: Moved function documentation comments into .H files and removed duplicates
2016-03-01 12:29:01 +00:00
Henry Weller
7ba41e0095
Removed duplicate, inconsistent and spurious comments in .C files
2016-02-29 18:33:54 +00:00
Henry Weller
95d146ecdf
Rationalized the indentation of C-preprocessor directives
2016-02-29 15:42:03 +00:00
Henry Weller
cd852be3da
OpenFOAM: Updated all libraries, solvers and utilities to use the new const-safe tmp
...
The deprecated non-const tmp functionality is now on the compiler switch
NON_CONST_TMP which can be enabled by adding -DNON_CONST_TMP to EXE_INC
in the Make/options file. However, it is recommended to upgrade all
code to the new safer tmp by using the '.ref()' member function rather
than the non-const '()' dereference operator when non-const access to
the temporary object is required.
Please report any problems on Mantis.
Henry G. Weller
CFD Direct.
2016-02-26 17:31:28 +00:00
Henry Weller
5a74397fe4
refineMesh: Added customizable direction fields to multiDirRefinement
...
Contribution provided by Bruno Santos
Resolves feature request http://www.openfoam.org/mantisbt/view.php?id=2004
2016-02-22 17:06:18 +00:00
Andrew Heather
c35bcc05f4
Merge branch 'develop' of develop.openfoam.com:Development/OpenFOAM-plus into develop
2016-06-27 23:22:54 +01:00
Andrew Heather
efb39a8790
ENH: (further) Doxygen documentation updates for module support
2016-06-27 20:34:19 +01:00
Andrew Heather
d13b2aac5d
STYLE: renamed autoRefineMesh->snappyRefineMesh
2016-06-27 19:32:13 +01:00
mattijs
cbc169adba
ENH: insideCells: does not run parallel. Fixes #162 .
2016-06-27 10:14:18 +01:00
Andrew Heather
8ba70962b2
Merge branch '3rdparty-updates' into 'develop'
...
3rdparty updates
See merge request !49
2016-06-24 10:09:19 +01:00
Andrew Heather
a8b0552338
Merge branch 'feature-profiling' into 'develop'
...
high-level profiling/timing functionality
See merge request !47
2016-06-22 14:46:50 +01:00
Mark Olesen
37bf28c249
STYLE: rename Profiling -> profiling
2016-06-20 21:20:31 +02:00
Mark Olesen
e86d3f2e0e
ENH: add preliminary profiling items into snappyHexMesh
...
- needs more refinement, but provides the general idea.
2016-06-18 01:00:55 +02:00
Andrew Heather
9e84deeb09
STYLE: Updated template code
2016-06-17 14:11:59 +01:00
Mark Olesen
97943ed819
COMP: improve robustness and warning messages when building paraview plugins
2016-06-17 09:31:41 +02:00
Mark Olesen
d5d0174b01
CONFIG: adjust for updated ThirdParty
...
- also update settings to include newer compiler versions
2016-06-14 10:46:20 +02:00
mattijs
c4b5880f9c
BUG: cyclicACMI: make conservative. Remove faceAreas0
2016-06-06 14:30:00 +01:00
mattijs
42519734c7
ENH: snappyHexMeshDict: improved comment
2016-06-01 12:52:09 +01:00
Andrew Heather
b9313ef2fe
ENH: Consistency updates after Foundation merge and code tidying
2016-04-25 16:46:56 +01:00
andy
fd9d801e2d
GIT: Initial commit after latest foundation merge
2016-04-25 11:40:48 +01:00
mattijs
142920de9c
ENH: snappyHexMeshDict: added documentation for keepPatches
2016-03-23 15:13:03 +00:00
mattijs
ffa7dc7d6b
ENH: IOWarningIn: use new ..InFunction macros
2016-03-09 14:36:25 +00:00
mattijs
c35544f9cb
Merge remote-tracking branch 'origin/develop' into feature-shared-file
2016-03-02 09:54:15 +00:00
Henry Weller
350d03246e
scripts: Reformat with consistent section separators
2016-02-15 18:30:24 +00:00
Henry Weller
34d2890952
foamyHexMeshBackgroundMesh: Updated to compile
2016-02-03 21:24:38 +00:00
Henry Weller
472fa0674a
Update headers
2016-02-02 20:09:58 +00:00
Henry Weller
8b9698ad43
processorPolyPatch, processorCyclicPolyPatch: Rationalized the construction of the patch name
...
This change ensures that these patches are named consistently so that
they can be looked-up as required in e.g. patchMeanVelocityForce
2016-02-02 20:07:16 +00:00
mattijs
21bc7a0c39
ENH: utilities: small merge of dev functionality
2016-01-28 15:36:42 +00:00
mattijs
9e3ce4ec7f
Merge branch 'master' of develop.openfoam.com:Development/OpenFOAM-plus into feature-shared-file
...
Conflicts:
applications/utilities/mesh/advanced/refinementLevel/refinementLevel.C
applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/initialPointsMethod/pointFile/pointFile.C
applications/utilities/miscellaneous/foamHelp/helpTypes/helpBoundary/helpBoundary.C
applications/utilities/postProcessing/graphics/PV3Readers/PV3FoamReader/vtkPV3Foam/vtkPV3FoamUpdateInfo.C
applications/utilities/postProcessing/graphics/PV4Readers/PV4FoamReader/vtkPV4Foam/vtkPV4FoamUpdateInfo.C
applications/utilities/postProcessing/turbulence/createTurbulenceFields/createTurbulenceFields.C
applications/utilities/postProcessing/velocityField/Co/Co.C
applications/utilities/postProcessing/velocityField/Pe/Pe.C
applications/utilities/preProcessing/applyBoundaryLayer/applyBoundaryLayer.C
applications/utilities/preProcessing/changeDictionary/changeDictionary.C
applications/utilities/preProcessing/setFields/setFields.C
applications/utilities/surface/surfaceMeshConvert/surfaceMeshConvert.C
applications/utilities/surface/surfaceMeshExport/surfaceMeshExport.C
applications/utilities/surface/surfaceMeshImport/surfaceMeshImport.C
applications/utilities/surface/surfaceRedistributePar/surfaceRedistributePar.C
src/OpenFOAM/db/IOobject/IOobject.C
src/OpenFOAM/db/IOobjects/CompactIOList/CompactIOList.C
src/OpenFOAM/db/IOobjects/IOField/IOField.C
src/OpenFOAM/db/IOobjects/IOList/IOList.C
src/OpenFOAM/db/IOobjects/IOPtrList/IOPtrList.C
src/OpenFOAM/db/IOobjects/IOdictionary/IOdictionary.C
src/OpenFOAM/db/Time/findInstance.C
src/OpenFOAM/db/regIOobject/regIOobject.C
src/OpenFOAM/db/regIOobject/regIOobjectI.H
src/OpenFOAM/db/regIOobject/regIOobjectRead.C
src/OpenFOAM/db/regIOobject/regIOobjectWrite.C
src/OpenFOAM/meshes/polyMesh/mapPolyMesh/mapDistribute/IOmapDistribute.C
src/OpenFOAM/meshes/polyMesh/polyBoundaryMesh/polyBoundaryMesh.C
src/OpenFOAM/meshes/polyMesh/zones/ZoneMesh/ZoneMesh.C
src/dynamicMesh/fvMeshDistribute/IOmapDistributePolyMesh.C
src/dynamicMesh/motionSolver/componentDisplacement/componentDisplacementMotionSolver.C
src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8/hexRef8Data.C
src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8/refinementHistory.C
src/dynamicMesh/polyTopoChange/polyTopoChanger/polyTopoChanger.C
src/edgeMesh/edgeMeshFormats/edgeMesh/edgeMeshFormat.C
src/edgeMesh/extendedEdgeMesh/extendedEdgeMeshFormats/extendedEdgeMeshFormat/extendedEdgeMeshFormat.C
src/edgeMesh/extendedEdgeMesh/extendedFeatureEdgeMesh/extendedFeatureEdgeMesh.C
src/fvMotionSolver/fvMotionSolvers/displacement/interpolation/displacementInterpolationMotionSolver.C
src/fvMotionSolver/pointPatchFields/derived/uniformInterpolatedDisplacement/uniformInterpolatedDisplacementPointPatchVectorField.C
src/lagrangian/basic/Cloud/CloudIO.C
src/meshTools/sets/cellSources/fieldToCell/fieldToCell.C
src/postProcessing/foamCalcFunctions/basic/addSubtract/addSubtract.C
src/postProcessing/functionObjects/field/fieldCoordinateSystemTransform/fieldCoordinateSystemTransformTemplates.C
src/postProcessing/functionObjects/field/readFields/readFieldsTemplates.C
src/thermophysicalModels/radiation/radiationModels/fvDOM/radiativeIntensityRay/radiativeIntensityRay.C
src/triSurface/triSurface/surfacePatch/surfacePatchIOList.C
2016-01-25 16:29:04 +00:00
mattijs
e424059208
ENH: glboal file handling: initial commit
...
Moved file path handling to regIOobject and made it type specific so
now every object can have its own rules. Examples:
- faceZones are now processor local (and don't search up anymore)
- timeStampMaster is now no longer hardcoded inside IOdictionary
(e.g. uniformDimensionedFields support it as well)
- the distributedTriSurfaceMesh is properly processor-local; no need
for fileModificationChecking manipulation.
2016-01-25 13:03:15 +00:00
Henry Weller
5728c1f173
Info -> InfoInFunction
2016-01-19 21:58:11 +00:00
Henry Weller
1896599d8b
Add support for flex-2.6
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1974
2016-01-18 19:44:38 +00:00
Henry Weller
59b578f155
Provide consistency in assignment operators
...
Always return void to avoid various bugs associated with automatic
type conversion.
Resolves request http://openfoam.org/mantisbt/view.php?id=1973
2016-01-17 18:56:28 +00:00
Henry Weller
56fa7c0906
Update code to use the simpler C++11 template syntax removing spaces between closing ">"s
2016-01-10 22:41:16 +00:00
Henry Weller
4eba393fe1
Update code to use the simpler C++11 template syntax
2016-01-10 19:20:16 +00:00
Henry Weller
75cf86b769
Correct formatting: "forAll (" -> "forAll("
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1967
2016-01-09 23:10:16 +00:00
Andrew Heather
f0c3e8d599
STYLE: Updated version to 'plus'
2015-12-22 23:14:17 +00:00
Andrew Heather
04752147c8
GIT: Resolved conflict on merge from upstream
2015-12-22 16:49:44 +00:00
Mattijs Janssens
17617d87da
Merge branch 'feature-copyright' into 'develop'
...
ENH: copyright: make consistent with OpenFOAM-history
See merge request !29
2015-12-19 14:25:48 +00:00
mattijs
8864223aed
ENH: copyright: make consistent with OpenFOAM-history
2015-12-19 14:22:30 +00:00
mattijs
b90cd04ce7
END: splitMeshRegions: consistent exit output.
...
Fixes #35
2015-12-18 10:16:50 +00:00
mattijs
4a8abe78f5
Merge branch 'feature_shm_zoning' into develop
...
Conflicts:
src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/refinementParameters/refinementParameters.C
src/mesh/autoMesh/autoHexMesh/meshRefinement/meshRefinement.H
src/mesh/autoMesh/autoHexMesh/meshRefinement/meshRefinementBaffles.C
2015-12-15 20:10:10 +00:00
mattijs
97f58f1ea3
ENH: snappyHexMesh: fix behaviour of allowFreeStandingZoneBaffles
...
See comment in $FOAM_UTILITIES snappyHexMeshDict
2015-12-15 17:36:45 +00:00
mattijs
9d94d2e836
BUG: foamyHexMesh: force construct-from-components for pointField
2015-12-14 17:44:11 +00:00
mattijs
2c6558ec20
ENH: snappyHexMeshDict: added comment for limitRegions
2015-12-14 14:34:32 +00:00
mattijs
ff56809375
ENH: autoHexMesh: allow location-in-mesh to be made into a cellZone
...
Normally the location-in-mesh is equivalent to a cellZone -1. This can
now be overridden by a surface-specified cellZone as before.
2015-12-10 11:50:42 +00:00
Andrew Heather
0e01c44129
GIT: Resolved conflict
2015-12-09 16:19:28 +00:00
Andrew Heather
5c9dff6146
GIT: Resolved conflict
2015-12-09 16:19:28 +00:00
Andrew Heather
8837a89237
STYLE: Updated links from openfoam.org to openfoam.com
2015-12-09 15:03:05 +00:00
Andrew Heather
dc64f53924
GIT: remove remnants of conflict
2015-12-09 10:20:10 +00:00
Andrew Heather
d52b01c806
ENH: Updated output messages
2015-12-09 09:40:23 +00:00
Andrew Heather
8f1d043364
GIT: Resolved conflict
2015-12-09 09:32:38 +00:00
mattijs
acecae7e44
COMP: subsetMesh: Make/options adapted for new location of fvMeshSubset
2015-12-08 14:18:35 +00:00
Andrew Heather
eafd5a3850
ENH: Updated Info, Warning and Error messages
2015-12-08 11:15:39 +00:00
Andrew Heather
3f55f752fc
GIT: Resolve conflict with upstream merge from Foundation
2015-12-07 17:07:20 +00:00
Henry Weller
633e2b1255
Minor updates to aid porting to FreeBSD
...
Based on patches provided by Jason Bacon
2015-12-02 18:18:06 +00:00
Andrew Heather
73dac8c7ee
ENH: Updating utilities based on internal development line
2015-12-02 10:17:28 +00:00
Henry Weller
ba2f46f12a
applications: Added fvOptions library to link
2015-12-01 16:09:19 +00:00
Henry Weller
2c2e8247ef
mirrorFvMesh: Corrected parallel operation
...
Patch provided by Bruno Santos
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1494
2015-11-29 21:40:37 +00:00
Henry Weller
660b54b728
moveDynamicMesh: Iterate over mesh.update() according to the PIMPLE settings
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1926
2015-11-25 16:54:14 +00:00
mattijs
916dcb8685
ENH: parallel: overhaul of parallel mapping
...
- redistributePar to have almost (complete) functionality of decomposePar+reconstructPar
- low-level distributed Field mapping
- support for mapping surfaceFields (including flipping faces)
- support for decomposing/reconstructing refinement data
2015-11-17 15:05:05 +00:00
Henry Weller
7e7c27d09b
moveDynamicMesh: Iterate over mesh.update() according to the PIMPLE settings Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1926
2015-11-25 16:54:14 +00:00
Andrew Heather
e488da366f
Merge branch 'feature-decomposeParDict' into 'develop'
...
Feature decompose par dict
Merging remaining functionality to do with -decomposeParDict parallel argList option.
See merge request !10
2015-11-25 15:35:21 +00:00
mattijs
d5d35cd1e8
BUG: checkMesh: sets written only on master
2015-11-25 10:41:30 +00:00
mattijs
f0bc2d9faa
ENH: parallel: added -decomposeParDict option to
...
- foamyHexMesh
- snappyHexMesh
- decomposePar
2015-11-24 17:35:18 +00:00
mattijs
f3787e5722
ENH: offsetSurface: new extrusion model to extrude inbetween two surfaces
2015-11-24 13:46:48 +00:00
Andrew Heather
6c3f12bfda
Merge branch 'feature-checkMesh' into 'develop'
...
ENH: checkMesh: have -writeSets option
- checkMesh has option to write faceSets or (outside of) cellSets as
sampledSurface format. It automatically reconstructs the set on the master
and writes it to the postProcessing folder (as any sampledSurface). E.g.
mpirun -np 6 checkMesh -allTopology -allGeometry -writeSets vtk -parallel
- fixed order writing of symmTensor in Ensight writers
See merge request !8
2015-11-24 11:12:20 +00:00
mattijs
61dd625227
ENH: checkMesh: have -writeSets option
...
- checkMesh has option to write faceSets or (outside of) cellSets as
sampledSurface format. It automatically reconstructs the set on the master
and writes it to the postProcessing folder (as any sampledSurface). E.g.
mpirun -np 6 checkMesh -allTopology -allGeometry -writeSets vtk -parallel
- fixed order writing of symmTensor in Ensight writers
2015-11-23 15:24:33 +00:00
mattijs
930a87a74e
ENH: fvMotionSolvers: updated comment, renamed function
2015-11-23 11:52:28 +00:00
mattijs
8f5997bb6a
ENH: displacementMotionSolver: additional hierarchy
...
- shm: have displacementMotionSolver as alternative mesh shrinker
(instead of medialAxis).
- updated iglooWithFridges tutorial to use displacementLaplacian
- selectable interpolation from cells to points in the motion solvers
using the 'interpolation' keyword:
interpolation volPointInterpolation; // default
or
interpolation patchCorrected (lowerWall upperWall);
- wrapped up mesh shrinkers (see above) for use as a displacementMotionSolver
(i.e. the opposite of the displacementMotionSolver mesh shrinker)
2015-11-19 09:35:20 +00:00
Henry Weller
e2ef006b91
applications: Update ...ErrorIn -> ...ErrorInFunction
...
Avoids the clutter and maintenance effort associated with providing the
function signature string.
2015-11-10 17:53:31 +00:00
mattijs
4927f97c5d
Merge branch 'feature-snappyHexMesh' into feature-snappyHexMesh-gapRefinement
2015-11-03 12:55:32 +00:00
mattijs
d0a00a6b27
Merge branch 'develop' into feature-snappyHexMesh
2015-11-03 12:37:05 +00:00
Henry Weller
42fb1b9e8e
Updated notImplemented -> NotImplemented
...
The new NotImplemented macro uses __PRETTY_FUNCTION__ for GNU compatible
compilers otherwise __func__ to provide the function name string.
2015-11-01 10:26:37 +00:00
Henry Weller
c84187f7fd
subsetMesh/Make/options: removed unused entries
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1886
2015-10-31 17:55:59 +00:00
Henry Weller
4e483cc98e
Updated docs for Doxygen: '<' -> '\<' and '>' -> '\>'
2015-10-30 21:37:03 +00:00
Henry Weller
8342cdc6ee
Documentation: Use '-' rather than '+' for lists for Doxygen
2015-10-29 22:41:34 +00:00
mattijs
afa6bd5056
ENH: snappyHexMesh: added to automatic gap-refinement capabilities
...
1. multi-ray shooting. It now shoots rays in all the 3 coordinate directions
from the cell centre. Before it would shoot just a single ray from the
nearest point on the surface, going through the cell centre.
There is a cost overhead in that now it shoots 6 rays (+-x, +-y, +-z)
instead of just 1.
2. bleeding of refinement. It marks the cells inside a gap and walks out
the gap-size to neighbouring cells (which are just outside the gap). This
should make for a smoother refinement pattern.
2015-10-28 13:34:51 +00:00
mattijs
9dd6a5b003
ENH: snappyHexMesh: add automatic gap-level detection and refinement
2015-10-28 13:28:32 +00:00
Henry Weller
ed496c2cb1
mergeMeshes: Disable functionObjects
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1756
2015-10-23 12:41:46 +01:00
Henry Weller
765b81853e
renumberMesh: Now supports sets
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1377
2015-10-21 16:49:57 +01:00
Henry Weller
f4202d9ee6
sixDoFSolver: Run-time selectable solver (integrator) for sixDoFRigidBodyMotion
...
The built-in explicit symplectic integrator has been replaced by a
general framework supporting run-time selectable integrators. Currently
the explicit symplectic, implicit Crank-Nicolson and implicit Newmark
methods are provided, all of which are 2nd-order in time:
Symplectic 2nd-order explicit time-integrator for 6DoF solid-body motion:
Reference:
Dullweber, A., Leimkuhler, B., & McLachlan, R. (1997).
Symplectic splitting methods for rigid body molecular dynamics.
The Journal of chemical physics, 107(15), 5840-5851.
Can only be used for explicit integration of the motion of the body,
i.e. may only be called once per time-step, no outer-correctors may be
applied. For implicit integration with outer-correctors choose either
CrankNicolson or Newmark schemes.
Example specification in dynamicMeshDict:
solver
{
type symplectic;
}
Newmark 2nd-order time-integrator for 6DoF solid-body motion:
Reference:
Newmark, N. M. (1959).
A method of computation for structural dynamics.
Journal of the Engineering Mechanics Division, 85(3), 67-94.
Example specification in dynamicMeshDict:
solver
{
type Newmark;
gamma 0.5; // Velocity integration coefficient
beta 0.25; // Position integration coefficient
}
Crank-Nicolson 2nd-order time-integrator for 6DoF solid-body motion:
The off-centering coefficients for acceleration (velocity integration) and
velocity (position/orientation integration) may be specified but default
values of 0.5 for each are used if they are not specified. With the default
off-centering this scheme is equivalent to the Newmark scheme with default
coefficients.
Example specification in dynamicMeshDict:
solver
{
type CrankNicolson;
aoc 0.5; // Acceleration off-centering coefficient
voc 0.5; // Velocity off-centering coefficient
}
Both the Newmark and Crank-Nicolson are proving more robust and reliable
than the symplectic method for solving complex coupled problems and the
tutorial cases have been updated to utilize this.
In this new framework it would be straight forward to add other methods
should the need arise.
Henry G. Weller
CFD Direct
2015-10-19 14:03:46 +01:00
Henry Weller
eb1080c933
checkMesh: Provide the number of geometric and solution directions.
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1872
2015-10-17 13:56:34 +01:00
mattijs
7b7967de76
ENH: snappyHexMesh: various improvements. See below or the default snappyHexMeshDict.
...
Refinement:
-----------
// Optionally avoid patch merging - keeps hexahedral cells
// (to be used with automatic refinement/unrefinement)
//mergePatchFaces off;
// Optional multiple locationsInMesh with corresponding optional cellZone
// (automatically generates faceZones inbetween)
locationsInMesh
(
((-0.09 -0.039 -0.049) bottomAir) // cellZone bottomAir
((-0.09 0.009 -0.049) topAir) // cellZone topAir
);
// Optional faceType and patchType specification for these faceZones
faceZoneControls
{
bottomAir_to_topAir
{
faceType baffle;
}
}
/ Optional checking of 'bleeding' of mesh through a specifying a locations
// outside the mesh
locationsOutsideMesh ((0 0 0)(12.3 101.17 3.98));
// Improved refinement: refine all cells with all (or all but one) sides refined
// Improved refinement: refine all cells with opposing faces with different
// refinement level. These cells can happen on multiply curved surfaces.
// Default on, can be switched off with
//interfaceRefine false;
Snapping
--------
// Optional smoothing of points at refinement interfaces. This will reduce
// the non-orthogonality at refinement interfaces.
//nSmoothInternal $nSmoothPatch;
Layering
--------
// Layers can be added to patches or to any side of a faceZone.
// (Any faceZone internally gets represented as two patches)
// The angle to merge patch faces can be set independently of the
// featureAngle. This is especially useful for large feature angles
// Default is the same as the featureAngle.
//mergePatchFacesAngle 45;
// Optional mesh shrinking type 'displacementMotionSolver'. It uses any
// displacementMotionSolver, e.g. displacementSBRStress
// (default is the medial-axis algorithm, 'displacementMedialAxis')
//meshShrinker displacementMotionSolver;
2015-10-14 14:49:37 +01:00
Henry Weller
34f060cfbb
stitchMesh: Improved docs
...
Provided by Bruno Santos
Resolves report http://www.openfoam.org/mantisbt/view.php?id=1767
2015-09-09 19:56:07 +01:00
Henry Weller
5e4bf8c9f9
Added applications/utilities/mesh/manipulation/stitchMesh/toleranceDict
...
Provided by Bruno Santos
Resolves report http://www.openfoam.org/mantisbt/view.php?id=1848
2015-09-09 19:53:10 +01:00
Henry Weller
430d894e37
Added ROOTSMALL
2015-09-02 15:29:54 +01:00
Henry Weller
047883da98
fluent3DMeshToFoam: Updated to handle ',' and '|' characters in headers
...
Patch provided by Bruno Santos
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1826
2015-08-24 17:53:50 +01:00
Henry Weller
913103ec0a
Rename circulators to be consistent with the standard OpenFOAM class naming convention
2015-08-06 16:54:47 +01:00
Henry Weller
91e04d69c1
Resolve various unimportant warning messages from Gcc, Clang and Icpc
2015-07-19 11:31:49 +01:00
Henry Weller
98685bd6b3
Remove unnecessary use of keyword "explicit"
2015-07-17 18:26:58 +01:00
Henry Weller
94401af010
Resolved issues with virtual function inheritance and warning from clang
...
Also removed __GNUC__ conditional compilation statements which are no
longer needed.
2015-07-17 12:11:37 +01:00
Henry Weller
bcee47d5ed
blockMesh: Correct handling of the -case option
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1773
2015-07-04 23:35:16 +01:00
Henry Weller
72300041df
Removed use of the deprecated "register" keyword
...
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4340.html
2015-06-30 10:26:44 +01:00
Henry Weller
b7cfd08fcb
Update headers
2015-06-23 11:27:05 +01:00
Henry Weller
87f6977bcb
Removed support for the legacy SiCortex64 architecture
2015-06-23 11:26:45 +01:00
Henry
9f89faaa69
extrudeMesh: Add wedge patches after edge collapse
2015-05-18 11:54:03 +01:00
Henry
c1b53fda48
planeExtrusion.[HC]: Renamed from plane.[HC] to avoid name clash
2015-05-04 21:16:44 +01:00
Henry
d7e1d5c24d
extrudeMesh: Add sector extrusion type and specialize wedge and plane
...
to create single layer extrusions with wedge and empty front and back
patches respectively.
2015-05-04 20:54:39 +01:00
Henry
5f7d4e4502
refineMesh: Improved command-line argument handling to be more consistent with other OpenFOAM utilities
...
Command-line option handling:
+ If -all specified or no refineMeshDict exists or, refine all cells
+ If -dict <file> specified refine according to <file>
+ If refineMeshDict exists refine according to refineMeshDict
When the refinement or all cells is selected apply 3D refinement for 3D
cases and 2D refinement for 2D cases.
2015-05-04 16:38:03 +01:00
Henry
50ada7c994
blockMesh: Change default location of blockMeshDict from constant/polyMesh to system
...
For multi-region cases the default location of blockMeshDict is now system/<region name>
If the blockMeshDict is not found in system then the constant directory
is also checked providing backward-compatibility
2015-04-24 22:29:57 +01:00
Henry
a99f9f0378
foamyHexMesh/Make/options: Added ${CGAL_LIBS}
2015-04-21 16:13:52 +01:00
Henry
2b74a6e3b3
refineMesh: Correct and simplify check for 2D mesh
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1112
2015-03-29 22:19:55 +01:00
Henry
9cd9a9f364
ddtScheme::fvcDdtPhiCoeff: Zero ddtCorr on AMIs
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1421
2015-03-24 15:23:01 +00:00
Henry
8cd3023439
Rationalize position searching and add cell->tet decomposition as the default cell-search algorithm
...
Resolves issues with probes and findRefCell for meshes in which all cell face-pyramids are positive.
2015-02-25 10:57:06 +00:00
Henry
945c4c3d18
fluidThermo: Add compressibleTransportModel as base-class
...
Needed to create generic compressible turbulence model library
2015-02-17 17:25:26 +00:00
Henry
04af7672af
refineWallLayer: Rationalize and add support for operating on a list of patch name regular expressions
...
Resolves bug-report http://openfoam.org/mantisbt/view.php?id=1525
2015-02-14 22:50:59 +00:00
Henry
8628ef2fea
Corrected capitalization of Doxygen documentation comments
2015-02-14 13:10:15 +00:00
Henry
1edf292c00
Correct Doxygen multiline comments
2015-02-14 10:59:29 +00:00
Henry
0bf2543df6
utilities: Correct "End" statement to be consistent with all other applications
2015-02-12 22:14:02 +00:00
Henry
50268fb910
conformalVoronoiMesh: Name extendedFeatureEdgeMesh correctly
2015-02-12 21:58:19 +00:00
Henry
7a25d8978c
Avoid registration of variables which may generate name conflicts
2015-02-12 13:20:20 +00:00
Henry
c778346c96
Formatting: Rationalized the indentation of #include
2015-02-10 20:35:50 +00:00
Henry
66cb99e696
Updated headers to ensure the class name declared to Doxygen is in the appropriate namespace
...
Also moved global classes which should be in the Foam namespace into it.
2015-02-09 14:43:11 +00:00
Henry
98bcdb04d8
transform: Handle codirectional and contradirectional transformation vectors
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=416
2015-02-02 09:44:59 +00:00
Henry
2aec249647
Updated the whole of OpenFOAM to use the new templated TurbulenceModels library
...
The old separate incompressible and compressible libraries have been removed.
Most of the commonly used RANS and LES models have been upgraded to the
new framework but there are a few missing which will be added over the
next few days, in particular the realizable k-epsilon model. Some of
the less common incompressible RANS models have been introduced into the
new library instantiated for incompressible flow only. If they prove to
be generally useful they can be templated for compressible and
multiphase application.
The Spalart-Allmaras DDES and IDDES models have been thoroughly
debugged, removing serious errors concerning the use of S rather than
Omega.
The compressible instances of the models have been augmented by a simple
backward-compatible eddyDiffusivity model for thermal transport based on
alphat and alphaEff. This will be replaced with a separate run-time
selectable thermal transport model framework in a few weeks.
For simplicity and ease of maintenance and further development the
turbulent transport and wall modeling is based on nut/nuEff rather than
mut/muEff for compressible models so that all forms of turbulence models
can use the same wall-functions and other BCs.
All turbulence model selection made in the constant/turbulenceProperties
dictionary with RAS and LES as sub-dictionaries rather than in separate
files which added huge complexity for multiphase.
All tutorials have been updated so study the changes and update your own
cases by comparison with similar cases provided.
Sorry for the inconvenience in the break in backward-compatibility but
this update to the turbulence modeling is an essential step in the
future of OpenFOAM to allow more models to be added and maintained for a
wider range of cases and physics. Over the next weeks and months more
turbulence models will be added of single and multiphase flow, more
additional sub-models and further development and testing of existing
models. I hope this brings benefits to all OpenFOAM users.
Henry G. Weller
2015-01-21 19:21:39 +00:00
Henry
543c0e33e0
applications/utilities/mesh/generation/Allwmake: Updated for changes to foamyHexMesh organization
2015-01-19 09:02:49 +00:00
Henry
8a055c989c
Updated headers
2015-01-18 21:16:37 +00:00
Henry
ee3dea5fda
Rationalized foamyHexMesh directory structure and build scripts
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1186
2015-01-18 21:13:45 +00:00
Henry
444dbda097
Ensure __STDC_LIMIT_MACROS is defined before the CGAL headers are included
...
Additional resolution of bug-report http://www.openfoam.org/mantisbt/view.php?id=1474
2015-01-04 23:43:25 +00:00
Henry
ded2f25726
Updated headers
2014-12-31 19:08:15 +00:00
Henry
325b003b6e
Added and verified support for 64bit labels
...
To compile with 64bit labels set
WM_LABEL_SIZE=64
in ~/OpenFOAM/dev/prefs.sh
source ~/.bashrc
then Allwmake in OpenFOAM-dev.
This will build into for example OpenFOAM-dev/platforms/linux64ClangDPInt64Opt
If WM_LABEL_SIZE is unset or set to 32:
WM_LABEL_SIZE=32
the build would be placed into OpenFOAM-dev/platforms/linux64ClangDPInt32Opt
Thus both 32bit and 64bit label builds can coexist without problem.
2014-12-31 19:02:52 +00:00
Henry
38998d5e1f
Updated header
2014-12-31 19:02:04 +00:00
Henry
1bddcdaaec
orientFaceZone: convert 0 to label
2014-12-31 19:01:13 +00:00
Henry
296a302867
Renamed -frounded-math option
2014-12-16 08:37:25 +00:00
Henry
95dcfa46aa
Move gcc-specific options to the appropriate wmake rules files
2014-12-15 22:39:21 +00:00
Henry
844b283030
New version of wmake supporting out-of-tree object and dependency files
2014-12-14 21:42:18 +00:00
OpenFOAM-admin
9fb26d59d3
GIT: Repo update
2014-12-11 08:35:10 +00:00
mattijs
2bbddf9cb5
ENH: snappyHexMeshDict: added note
2014-09-30 17:14:16 +01:00
william
2fdeb139dc
BUG: mantis #1389 : foamyHexMesh: point insertion was not correctly setting the vertex count
2014-09-08 12:33:32 +01:00
mattijs
1083044bc2
ENH: refineHexMesh: add -region option
2014-08-06 17:00:25 +01:00
mattijs
be27bb8641
BUG: extrudeToRegionMesh: memory leak
2014-07-24 17:29:07 +01:00
mattijs
ee3eb6e370
BUG: createPatch: cleanup
2014-07-23 20:30:22 +01:00
mattijs
c98456cda3
STYLE: faceZoneSelection: corrected comment
2014-07-11 10:59:08 +01:00
andy
bb039fc250
ENH: extrudeMesh - migrating new functionlity from internal development line
2014-07-02 16:09:46 +01:00
mattijs
01972cf5bc
BUG: splitMeshRegions: #1282
2014-06-09 12:51:01 +01:00
andy
709b92d907
ENH: mesh motion updates
2014-06-03 14:42:39 +01:00
mattijs
6c1f95cc5f
BUG: fluentMeshToFoam: correct sets addressing
2014-04-22 14:46:27 +01:00
mattijs
994dee99df
ENH: createBafflesDict: added comment
2014-04-03 12:35:10 +01:00
mattijs
c67779b221
ENH: refineHexMesh: add option to keep to 2:1 ratio outside cellSet
2014-03-11 10:51:57 +00:00
OpenFOAM-admin
fbb3ddf2c4
Updated for release 2.3.0
2014-02-17 10:21:46 +00:00
Henry
ee4e19ef85
Renamed folder -> directory for consistency with POSIX and the rest of OpenFOAM
2014-01-30 13:01:04 +00:00
william
699b7d2517
BUG: removed executable permissions on flameSpreadWaterSuppressionPanel case files and foamy make/options
2014-01-30 10:17:32 +00:00
william
571359e4b9
COMP: foamyHexMesh: added system include paths for CGAL
2014-01-28 15:22:18 +00:00
william
75612fd019
Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev
2014-01-28 14:58:50 +00:00
william
412317575d
COMP: foamyHexMesh: move CGAL dependencies into rules
2014-01-28 14:58:29 +00:00
mattijs
5ae141856a
ENH: etc: added CGAL setup
2014-01-28 12:54:14 +00:00
mattijs
1f192f8b73
ENH: snappyHexMesh: have single region surface named as <surface> instead of <surface>_<region>
2014-01-27 12:44:45 +00:00
mattijs
489475d137
ENH: snappyHexMesh: separate meshing steps same as run through
2014-01-24 09:19:46 +00:00
mattijs
98cabc2efb
ENH: snappyHexMesh: added debug switch
2014-01-21 16:25:15 +00:00
mattijs
b3de4399f9
ENH: moveDynamicMesh: put AMI weights files into postProcessing directory
2014-01-21 16:24:01 +00:00
andy
2aba2c995b
STYLE: minor code formatting
2014-01-10 16:02:37 +00:00
mattijs
22e40fe39a
STYLE: snappyHexMeshDict: tyop
2013-12-20 15:59:58 +00:00
mattijs
a9dc6715ba
ENH: snappyHexMeshDict: document new options
2013-12-17 12:04:57 +00:00
mattijs
6f46553895
ENH: createPatchDict: renamed dictionary entry
2013-12-11 17:16:40 +00:00
mattijs
06e3f4fad1
STYLE: splitMeshRegions: removed comment out code
2013-12-11 16:08:00 +00:00
mattijs
6dca9b0961
BUG: createBaffles: preserve faceZone orientation
2013-12-09 17:20:55 +00:00
Henry
46bd2fe64e
Merge branch 'master' of ssh://opencfd:8007/home/dm4/OpenFOAM/repositories/OpenFOAM-dev
2013-12-06 15:49:50 +00:00
Henry
56bfb3cb42
Update headers
2013-12-06 15:49:31 +00:00
Henry
3f5eda25f0
symmetryPlane: add symmetryPlane as a special type of symmetry condition applied to a single plane
...
The standard/previous general symmetry type is now named symmetry
both in class and lookup name for consistency. The rigorous
symmetryPlane type is needed for moving-mesh cases in which the
motion it constrained by one or two planes.
2013-12-06 15:45:11 +00:00
mattijs
101aa4e6f4
ENH: objToVTK: output lines
2013-12-05 16:41:39 +00:00
mattijs
86f0655052
Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev
2013-12-04 16:06:01 +00:00
mattijs
4d7402862c
COMP: checkMesh,combinePatchFaces: move of pointConstraints
2013-12-04 15:59:35 +00:00
mattijs
a7799adeb8
ENH: snappyHexMeshDict: added new settings
2013-12-04 15:47:42 +00:00
Sergio Ferraris
c56d376bae
ENH: Adding 'baseGroup' option to createBaffle.C to add a pair patches but in
...
different groups. This is used in 3D baffle where the generated patches are not
coupled.
The tutorial circuitBoardCooling has been updated.
2013-12-04 15:30:35 +00:00
mattijs
fe31693e30
ENH: createBafflesDict: more comment
2013-11-18 15:03:46 +00:00
mattijs
8222120fef
ENH: mapped: allow coupling specification through coupleGroup
2013-11-12 15:12:56 +00:00
mattijs
202d7c1ad3
ENH: snappyHexMesh: fix growing of attraction. Split off debug/writing/output
2013-11-12 09:00:04 +00:00
mattijs
f9f08091ba
ENH: orientFaceZone: add -region option
2013-11-11 09:22:05 +00:00
mattijs
cca229f785
ENH: snappyHexMesh: layer coverage volfields
2013-10-30 15:17:57 +00:00
mattijs
41650787b1
ENH: mesh tools: max write precision
2013-10-29 09:59:21 +00:00
mattijs
7a2269eccb
ENH: setsToFaceZone: allow flipping
2013-10-17 14:04:22 +01:00
mattijs
cfcd1ab30b
GIT: orientFaceZone: remove embedded testcase
2013-10-17 12:42:58 +01:00
mattijs
1f63b86824
ENH: snappyHexMeshDict: added comment
2013-10-17 11:49:14 +01:00
andy
79d8403f8f
ENH: checkMesh - updated writing of disconnected regions
2013-10-11 09:17:53 +01:00
andy
a787c35c48
ENH: checkMesh - write split regions to cellSets
2013-10-10 11:01:13 +01:00
mattijs
97ad9eab4c
ENH: collapseEdges: avoid double registration of indirectPatchFaces
2013-10-03 10:42:23 +01:00
mattijs
f02cc06c55
BUG: conformalVoronoiMesh: wrong sync
2013-10-03 10:41:40 +01:00
mattijs
ca8b37a4c8
ENH: snappyHexMeshDict: improved comment
2013-10-03 10:41:27 +01:00
mattijs
cbebe58245
ENH: foamyHexMeshDict: added comment
2013-09-27 16:14:12 +01:00
mattijs
51b4035dbe
COMP: foamyQuadMesh: build order
2013-09-27 09:15:44 +01:00
laurence
f663d40545
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-09-26 15:46:37 +01:00
laurence
8024b53c97
ENH: foamyHexMesh: Split boundary point priority into separate function
2013-09-26 15:46:04 +01:00
laurence
6f6fdd635d
BUG: foamyHexMesh: Correct feature point pair indexing
2013-09-26 15:25:57 +01:00
mattijs
6a0ffc2548
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-09-26 12:32:20 +01:00
laurence
aebfc3c75f
ENH: foamyHexMesh: Do not insert surface points near edge points
2013-09-26 12:08:28 +01:00
laurence
afa5658713
BUG: foamyHexMesh: Do not insert points between internal and surface points
2013-09-26 11:45:49 +01:00
mattijs
f9a20c9da0
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-09-26 11:36:42 +01:00
mattijs
00128075bb
COMP: foamy: suppress cgal generated warnings
2013-09-26 11:36:13 +01:00
mattijs
9cebba4c16
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-09-26 10:56:57 +01:00
mattijs
fe470ba3a8
GIT: patchFaceOrientation: moved files
2013-09-26 10:43:07 +01:00
Henry
3aa7de87c8
Merge branch 'master' of ssh://dm/home/dm4/OpenFOAM/OpenFOAM-dev
2013-09-25 13:07:32 +01:00
Henry
c8717838f4
foamyQuadMesh/Allwmake: ensure foamyHexMesh/conformalVoronoiMesh is
...
build before foamyQuadMesh
2013-09-25 13:05:44 +01:00
laurence
615a74626e
ENH: foamyHexMesh: Include baffle handling
2013-09-25 12:37:19 +01:00
laurence
c060166e7a
BUG: foamyHexMesh: Remove overwrite option.
2013-09-25 10:39:04 +01:00
mattijs
feb7335481
ENH: uniformInletOutlet: new bc with uniform inletValue
2013-09-24 17:51:48 +01:00
mattijs
2a3c54ba8f
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-09-20 17:36:11 +01:00
mattijs
4ca945f49b
ENH: fvMesh: map fields using old volume
2013-09-20 17:35:49 +01:00
laurence
e24e08bba3
STYLE: line endings
2013-09-19 16:25:11 +01:00
laurence
4486773fc0
COMP: foamyHexMesh: Remove unused code
2013-09-18 16:01:19 +01:00
laurence
a0196d4f0e
BUG: foamyHexMesh: Make enum public
2013-09-18 15:59:09 +01:00
laurence
b4a742fc89
ENH: collapseEdges: Points now get a priority. The higher the number, the more likely the
...
collapse will be towards that point
2013-09-18 15:31:58 +01:00
laurence
e8d651060d
ENH: foamyHexMesh: Insert referred points that are outside convex hull
2013-09-18 14:58:28 +01:00
laurence
95256688e5
ENH: foamyHexMesh: Move zoning to separate .C file
2013-09-18 14:37:43 +01:00
mattijs
70a25b9c84
ENH: orientFaceZone: new app for orienting faceZones
2013-09-17 15:35:40 +01:00
mattijs
12d87fcacc
ENH: snappyHexMesh: detect small distance snapping
2013-09-13 16:20:03 +01:00
Sergio Ferraris
c7d1a4b023
ENH:
...
1) Modification to extrudeToRegionMesh to use extrudeModel point distribution function
2) Addition of firstCellThickness option to linearNormal extrude model
2013-09-12 17:39:32 +01:00
laurence
be937b65dd
BUG: foamyQuadMesh: Track and update all region edges
2013-09-11 15:20:41 +01:00
mattijs
f6673d4bb5
BUG: subsetMesh: consistent instance setting
2013-09-11 12:57:42 +01:00
mattijs
969af752ad
ENH: patchToPoly2DMesh: added some checking
2013-09-10 08:53:15 +01:00
mattijs
a4909c94bc
BUG: extrude2DMesh: upper-triangular reordering
2013-09-09 17:37:01 +01:00
mattijs
3aacc8eb48
BUG: foamyQuadMesh: in case of 90 degrees exactly alignment dirs not set
2013-09-09 15:32:18 +01:00
laurence
f430a501f6
Merge branch 'feature/foamyHexMesh-baffles'
2013-09-06 17:11:45 +01:00
laurence
42b9779bea
STYLE: Line lengths
2013-09-06 17:11:33 +01:00
laurence
fa748aad69
Merge branch 'feature/foamyHexMesh-baffles'
2013-09-06 17:04:12 +01:00
laurence
6ffcc03de1
BUG: foamyHexMesh: Missing include and find all intersections function
2013-09-06 17:03:41 +01:00
laurence
19df5f6928
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-09-06 16:31:12 +01:00
laurence
0df0edf359
ENH: foamyHexMesh: cell/face zone in parallel
2013-09-06 16:30:17 +01:00
mattijs
c40460644f
ENH: snappyHexMesh: move writeLevel into snappyHexMeshDict
2013-09-05 09:52:34 +01:00
laurence
040e6d9159
ENH: foamyHexMesh: add face/cell zoning
2013-09-03 21:00:57 +01:00
laurence
57d929497c
Merge branch 'feature/foamyHexMesh-baffles'
2013-09-03 11:25:14 +01:00
laurence
eaad256f31
face/cell zoning: Create new class surfaceZonesInfo
2013-09-03 11:09:16 +01:00
laurence
298724b078
REVERT: foamyHexMesh: correct function argument list
2013-09-02 16:09:32 +01:00
laurence
505fef5112
REVERT: foamyHexMesh: correct function argument list
2013-09-02 16:08:14 +01:00
laurence
baad5a48d9
REVERT: foamyHexMesh: do not check inside/outside for surface points
2013-09-02 16:06:14 +01:00
laurence
25d81b1f71
ENH: foamyHexMesh: add hasBoundaryPoint() to indexedCell
2013-09-02 15:29:54 +01:00
laurence
2545d88205
ENH: foamyHexMesh: Insert surface points if internal points are exposed
2013-09-02 15:28:13 +01:00
laurence
bf68378389
BUG: foamyHexMesh: write to own processor file in parallel
2013-09-02 14:16:46 +01:00
laurence
c60419e850
ENH: foamyHexMesh: insert surface points on close parallel surfaces
2013-09-02 12:49:24 +01:00
laurence
d2d6514245
BUG: foamyHexMesh: With surfaces of same priority do not overwrite cell size
2013-09-02 10:54:39 +01:00
laurence
6d224df76a
ENH: foamyHexMesh: change inside/outside test to check for nearest intersection
2013-08-30 12:50:02 +01:00
laurence
5e3a057965
ENH: foamyHexMesh: do not allow perturbation to cross surface
2013-08-30 12:19:48 +01:00
laurence
e9cdbdef5e
ENH: foamyHexMesh: Allow surface point insertion on close surfaces
...
ENH: foamyHexMesh: do not point motion to cross surfaces
ENH: foamyHexMesh: do not allow perturbation to cross surface
ENH: foamyHexMesh: change inside/outside test to check for nearest intersection
BUG: foamyHexMesh: With surfaces of same priority do not overwrite cell size
ENH: foamyHexMesh: insert surface points on close parallel surfaces
BUG: foamyHexMesh: write to own processor file in parallel
ENH: foamyHexMesh: Insert surface points if internal points are exposed
ENH: foamyHexMesh: add hasBoundaryPoint() to indexedCell
REVERT: foamyHexMesh: do not check inside/outside for surface points
REVERT: foamyHexMesh: correct function argument list
REVERT: foamyHexMesh: correct function argument list
2013-08-30 12:18:15 +01:00
mattijs
e34f2c8da1
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-09-02 11:12:34 +01:00
laurence
6f4202c08c
ENH: foamyHexMesh: do not point motion to cross surfaces
2013-08-30 12:18:15 +01:00
laurence
067c80b0d7
ENH: foamyHexMesh: correct proc boundary intersection in ray shooting
2013-08-29 16:34:39 +01:00
laurence
20a8649a00
ENH: foamyHexMesh: calc maxRayLength from bounds of surface
2013-08-29 16:04:24 +01:00
laurence
8dda57ddbf
ENH: foamyHexMesh: correct rayShooting point addition on intersection
2013-08-29 16:00:04 +01:00
laurence
7531ccba9b
ENH: foamyHexMesh: add rayShooting initial points method
2013-08-29 15:32:43 +01:00
laurence
94c4d37f63
ENH: foamyHexMesh: check for intersection in inside/outside test
2013-08-28 12:55:22 +01:00
mattijs
77d47e9125
ENH: surfaceToCell: use surface orientation
2013-08-20 16:01:18 +01:00
mattijs
205e1e77bc
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-08-15 15:36:29 +01:00
mattijs
0860c370b5
STYLE: snappyHexMesh: fancy printing
2013-08-15 15:36:17 +01:00
laurence
9883825eed
STYLE: correct line widths
2013-08-15 15:01:36 +01:00
andy
04be292f0a
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-08-12 15:52:59 +01:00
mattijs
2f9111a50a
BUG: renumberMesh: conversion scalar*label -> label
2013-08-12 12:02:56 +01:00
andy
e67805422f
ENH: moveDynamicMesh - output AMI patch names
2013-08-09 12:26:56 +01:00
andy
eef8df7b6a
BUG: extrudeToRegionMesh - corrected parallel behaviour
2013-08-07 12:55:34 +01:00
mattijs
560df1929b
ENH: snappyHexMesh: extra comment
2013-08-06 17:19:38 +01:00
laurence
0a4b72ee3e
ENH: foamyHexMesh: Flip order of evaluation in if statement
2013-08-15 11:55:24 +01:00
laurence
f2dbdd66bf
ENH: foamyHexMesh: surface conformation and initial point insertion
...
autoDensity: Change to reference and correct typo
surfaceConformation: Include Delaunay cells that are entirely made
up of boundary points. Also increase the length of the line to intersect.
2013-08-14 12:40:52 +01:00
laurence
d8aced9070
BUG: foamyHexMesh: Read in non uniform sizing fields correctly
2013-08-13 16:58:04 +01:00
laurence
9dcb920861
ENH: foamyHexMesh: enable point randomisation for point file insertion
2013-08-12 16:40:22 +01:00
laurence
8d3508f78a
STYLE: foamyHexMesh printouts
2013-08-12 15:40:16 +01:00
laurence
e7388fefb8
REVERT: surfaceSimplify: Use background mesh to start surfaceSimplify
2013-08-12 11:12:16 +01:00
laurence
967b042197
ENH: Read Delaunay Mesh
2013-08-09 12:24:55 +01:00
laurence
2b0e835583
ENH: foamyHexMesh: Better reading of Delaunay meshes
2013-08-08 17:01:41 +01:00
laurence
0415e5689c
ENH: Write out cell centres when running surfaceSimplify in snappyHexMesh.
...
Also provide option to not do inside outside test when reading points into
foamyHexMesh from file
2013-08-08 12:59:40 +01:00
laurence
700215cab3
BUG: foamyHexMesh: Correct max depth of recursion
2013-08-01 14:23:31 +01:00
laurence
ee8b1f4332
BUG: foamyHexMesh: Incorrect logic for serial mesh motion
2013-08-01 10:42:33 +01:00
laurence
fe25191f45
ENH: foamyHexMesh: Remove some unused functions. Change initialPointMethod constructors
2013-07-30 15:52:09 +01:00
laurence
d0be901c63
BUG: foamyHexMesh: Reference to temporary. Some code cleanup.
2013-07-30 14:21:15 +01:00
laurence
1269eb2e97
STYLE: foamyHexMesh: Do not output point insertion failure to screen by default.
...
- Write some comments
2013-07-30 12:55:55 +01:00
laurence
056246c95f
BUG: foamyHexMesh: Correct calc for number of external points
2013-07-30 12:23:01 +01:00
laurence
09a44ad606
ENH: foamyHexMesh: Check moved internal points are inside the geometry before inserting them
2013-07-30 12:12:18 +01:00
laurence
1e420e02e7
ENH: foamyHexMesh: Move feature point conformation to separate class.
...
- Update point conversion routines
- Slightly more efficient point redistribution
2013-07-30 11:03:19 +01:00
laurence
2a1c26131e
ENH: foamyHexMesh: Combine inside and outside functions in conformationSurfaces
2013-07-29 15:56:59 +01:00
laurence
e7aeee33d7
ENH: foamyHexMesh: Construct backgroundMeshDecomposition in initialisation list
2013-07-29 15:55:11 +01:00
laurence
d68c31eb23
ENH: foamyHexMesh: Move variable construction outside of loop
2013-07-29 15:51:46 +01:00
laurence
8b12dcfdb3
ENH: foamyHexMesh: Remove reconformation enum.
2013-07-29 15:40:39 +01:00
laurence
56421096d1
ENH: foamyHexMesh: Shift calculateLoadBalance to DistributedDelaunayMesh
2013-07-29 15:38:30 +01:00
laurence
60764c3941
ENH: foamyHexMesh: Move some functions to new namespaces
...
- Added indexedVertexOps namespace
- Added indexedCellOps namespace
2013-07-29 15:35:12 +01:00
laurence
2bfe5c8864
ENH: foamyHexMesh: Move writing functions to a new namespace
2013-07-29 15:16:37 +01:00
laurence
c1a77b102e
COMP: foamyHexMesh: Add missing includes
2013-07-29 15:02:59 +01:00
laurence
e4cd1b949d
ENH: plane: Add member function that mirrors a point in a plane
2013-07-22 16:20:29 +01:00
laurence
1a9329ed48
STYLE: foamyHexMesh: Remove old code related mainly to the deprecated cell sizing methods
2013-07-19 16:46:24 +01:00
laurence
f008250b03
ENH: foamyHexMesh: Normalise the aspect ratio direction
2013-07-19 16:43:07 +01:00
laurence
1c55166d36
BUG: DelaunayMesh: Do not allow vertexCount to be externally updated
2013-07-19 16:42:16 +01:00
mattijs
102805befe
ENH: snappyHexMesh: improved table printing
2013-07-18 13:09:43 +01:00
laurence
86c5a3a228
ENH: foamyHexMesh: Do not allow default patch types when reading patchInfo from dictionary
2013-07-11 12:31:43 +01:00
mattijs
8fdce7f8cf
ENH: snappyHexMesh: writing pointLevel,cellLevel under switch
2013-07-09 11:06:46 +01:00
mattijs
d35926b0eb
BUG: snappyHexMesh: refinementSurfaces fix
2013-07-05 15:19:53 +01:00
mattijs
daf9a6c64d
ENH: Allwmake: remove so compilation happens in parallel
2013-07-05 12:52:10 +01:00
mattijs
4cb0abfc38
COMP: CGAL: get rid of Allwmake
2013-07-05 12:43:19 +01:00
mattijs
a5e88f3e03
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-07-04 16:15:37 +01:00
laurence
7546c1529a
BUG: searchableSurfaceControl: Correct resizing of region controls
2013-07-04 13:12:11 +01:00
laurence
5e4c161100
BUG: foamyHexMesh surface region names: Do not use global patch names
2013-07-04 12:34:25 +01:00
mattijs
a5dae2480f
ENH: snappyHexMeshDict: added comment
2013-07-04 12:29:55 +01:00
mattijs
ed1ecd5f7a
BUG: snappyHexMesh: outFile is fileName, not word
2013-07-03 12:49:59 +01:00
mattijs
f2397e7f41
ENH: snappyHexMesh: clean up mesh quality settings
2013-07-02 15:01:32 +01:00
laurence
e2f62ee317
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-06-26 15:56:59 +01:00
laurence
da5b88eef7
BUG: searchableBoxFeatures: Correct extendedFeatureEdgeMesh constructor call
2013-06-26 15:56:30 +01:00
Henry
d0d32e5fa5
conformalVoronoiMesh: update for clang complication
2013-06-20 16:33:36 +01:00
laurence
cea555f49b
ENH: foamyHexMesh: meshableSide
2013-06-20 11:35:25 +01:00
laurence
8e04e92f74
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev into feature/cvMesh
2013-06-20 11:30:36 +01:00
laurence
1320397db9
BUG: foamyHexMesh: Check for hit
2013-06-20 11:28:20 +01:00
Sergio Ferraris
b482e3e45f
BUG: Bad indexing on shadowFaceZones
2013-06-20 11:02:36 +01:00
laurence
13e44eee24
STYLE: foamyHexMesh: print out starting time name
2013-06-19 16:05:13 +01:00
laurence
29cadae2ca
BUG: foamyHexMesh: Explicitly update the backgroundMeshDecomposition instance on
...
write.
2013-06-17 11:28:48 +01:00
laurence
8803896d37
BUG: foamyHexMesh: Write control for backgroundMeshDecomposition
2013-06-14 17:17:54 +01:00
laurence
dd502d1e05
ENH: foamyHexMesh: Enable reading and writing of the background meshes
2013-06-14 16:41:14 +01:00
laurence
5d33f36a2f
ENH: foamyHexMesh: Allow feature edge point insertion on close features edges
...
If two feature edges are close, allow points to be inserted on both edges if
the angle is large enough
2013-06-14 09:31:09 +01:00
laurence
11d22dbf47
REVERT: Change parallel referral algorithm back to original
2013-06-13 09:30:05 +01:00
laurence
6cf69b1644
ENH: foamyHexMesh: Enable only the conformation step to be run if internal points are all fixed
2013-06-12 13:16:04 +01:00
laurence
838639cd5d
ENH: Snapping to surfaces if point is far outside
2013-06-12 13:08:15 +01:00
laurence
3d2a4ece30
ENH: foamyHexMesh: Split location of infinite cells and processor boundary cells
2013-06-11 14:30:20 +01:00
laurence
c574abb243
ENH: foamyHexMesh: Edge conformation improvements
2013-06-06 13:42:55 +01:00
laurence
a6c7389f0b
ENH: foamyHexMesh: Disable reporting of point insertion failure
2013-06-05 16:35:09 +01:00
laurence
59ba920721
BUG: foamyHexMesh: Remove internal points that are outside the surface.
2013-06-05 14:00:18 +01:00
laurence
a40168675c
STYLE: Change name of foamyHex2DMesh to foamyQuadMesh
2013-06-04 16:21:16 +01:00
laurence
af9e7cc72c
ENH: foamyHexMesh: clean up ostream operator of indexedVertex
2013-06-04 14:40:45 +01:00
laurence
7e99cd26c1
ENH: Add enhanced edge conformation method
2013-06-04 14:39:59 +01:00
laurence
419fe75da5
COMP: Remove unused variables
2013-06-04 14:39:10 +01:00
laurence
a0a162948f
COMP: Add surfMesh dependency to snappyHexMesh
2013-06-04 09:58:59 +01:00
laurence
9995429f9b
COMP: Remove cellSizeAndAlignmentGrid from compilation
2013-06-03 17:12:56 +01:00
laurence
c644cb680b
Merge branch 'master' into feature/cvMesh
...
Conflicts:
applications/utilities/mesh/generation/snappyHexMesh/snappyHexMesh.C
2013-06-03 16:27:14 +01:00
laurence
ae7a7bc1da
BUG: do not iterate over referred edges
2013-06-03 16:16:47 +01:00
laurence
5d26732b7e
ENH: snappyHexMesh: update outfile location for surfaceSimplify
2013-06-03 14:59:05 +01:00
mattijs
cc8a232756
ENH: subsetMesh: added -resultTime option
2013-06-03 13:34:21 +01:00
mattijs
b965b9e783
ENH: snappyHexMesh: added gapLevelIncrement to outer dictionary
2013-06-03 13:29:22 +01:00
laurence
28868e97bb
ENH: Add a surfaceSimplify option to snappyHexMesh
2013-06-03 12:40:26 +01:00
mattijs
487ef5ac0b
ENH: snappyHexMeshDict: improved setting in comment
2013-05-31 16:49:18 +01:00
laurence
f6109782a1
BUG: Fix merge issues
2013-05-31 12:05:06 +01:00
laurence
2579c83bc6
COMP: Add missing include
2013-05-31 12:03:48 +01:00
laurence
5d0433327c
COMP: Add Header include
2013-05-31 12:03:08 +01:00
laurence
b2a58f109d
ENH: code cleanup
2013-05-31 10:55:25 +01:00
laurence
ecda1f7665
ENH: Add options to feature point handling
2013-05-31 10:49:03 +01:00
laurence
482957e718
STYLE: Update base foamyHexMeshDict
2013-05-31 10:40:04 +01:00
laurence
fb52acf4be
ENH: Update collapesEdges to work with any supplied face zone
2013-05-31 09:42:09 +01:00
mattijs
55fd1ac9fd
ENH: snappyHexMeshDict: commented new options
2013-05-30 10:39:33 +01:00
laurence
399c65f963
Merge branch 'master' into feature/cvMesh
2013-05-30 10:34:49 +01:00
mattijs
975602a937
ENH: createBafflesDict: added comment
2013-05-21 15:31:07 +01:00
mattijs
5f034c9235
ENH: processorPolyPatch: remove unused argument
2013-05-21 14:24:44 +01:00
laurence
e6e477432f
BUG: Do not check for close feature points when synchronising trees
...
+ Firstly, it has already been done
+ Secondly, the 'nearest' criteria is a different distance on different
processors
2013-05-20 10:57:08 +01:00
laurence
7db31447c9
BUG: Check for NULL vertex on cell
2013-05-17 14:33:48 +01:00
laurence
ef2adac0b9
BUG: Test for infinite vertex
2013-05-17 11:44:37 +01:00
laurence
f925f93eab
BUG: When distributing mesh vertices check return values for locate
2013-05-17 09:56:12 +01:00
laurence
6d12b2d4f0
BUG: Returned reference to a tmp
2013-05-17 09:22:05 +01:00
mattijs
25a373bd39
ENH: snappyHexMesh: enable free-standing baffle merging
2013-05-16 12:49:16 +01:00
laurence
9c115398ba
BUG: Missing function declaration
2013-05-16 11:38:54 +01:00
laurence
c7366549fc
Merge branch 'feature/cvMesh' of /home/dm4/OpenFOAM/OpenFOAM-dev into feature/cvMesh
2013-05-16 11:24:49 +01:00
laurence
64a6994a62
ENH: Update cellSizeCalculation to return tmp
2013-05-16 11:22:56 +01:00
laurence
3a845d5192
ENH: Fix initial point insertion
2013-05-16 11:20:28 +01:00
laurence
379d8ac070
STYLE: Set location of foamyHexMeshDict
2013-05-16 10:44:30 +01:00
laurence
c0eb9d678f
STYLE: Change cv2DMesh to foamyHex2DMesh
2013-05-16 10:29:36 +01:00
laurence
04804030f7
Merge branch 'feature/cvMesh' of /home/dm4/OpenFOAM/OpenFOAM-dev into feature/cvMesh
2013-05-13 12:41:54 +01:00
laurence
c537f1cf9f
COMP: Compile searchableSurfaceFeatures
2013-05-13 12:41:38 +01:00
laurence
d6c043e055
Merge branch 'feature/cvMesh' of /home/dm4/OpenFOAM/OpenFOAM-dev into feature/cvMesh
2013-05-13 12:39:45 +01:00
laurence
cd548a96ed
ENH: Add readFeatures method to header file
2013-05-13 12:39:22 +01:00
laurence
4180768499
Merge branch 'feature/cvMesh' of /home/dm4/OpenFOAM/OpenFOAM-dev into feature/cvMesh
2013-05-13 12:38:36 +01:00
laurence
0a56f7a7f2
ENH: Use new searchableSurfaceFeatures
2013-05-13 12:38:14 +01:00
laurence
2c77f55d1d
Merge branch 'master' into feature/cvMesh
2013-05-13 10:54:26 +01:00
laurence
9a5b9e6ba2
ENH: Add automatic feature extraction to foamyHexMesh
2013-05-13 10:24:03 +01:00
laurence
f9372806da
BUG: Update processorPolyPatch constructor call to match recent changes
2013-05-10 01:04:31 +01:00
laurence
850474d273
STYLE: Change name from cvMesh to foamyHexMesh
2013-05-10 01:00:52 +01:00
mattijs
34cc904b9d
BUG: snappyHexMeshDict: incorrect variable
2013-05-08 12:58:09 +01:00
laurence
6f9823d0de
Merge branch 'master' into feature/cvMesh
...
Conflicts:
src/OpenFOAM/algorithms/indexedOctree/indexedOctree.C
src/OpenFOAM/algorithms/indexedOctree/indexedOctree.H
src/dynamicMesh/polyMeshFilter/polyMeshFilter.C
src/meshTools/indexedOctree/treeDataPrimitivePatch.C
src/meshTools/indexedOctree/treeDataTriSurface.C
src/meshTools/triSurface/triSurfaceSearch/triSurfaceSearch.C
2013-05-08 12:20:52 +01:00
mattijs
aea1fbff8b
ENH: mergeMeshes: preserve additional patch data
2013-05-08 09:47:00 +01:00
andy
9ebd8a851a
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-05-03 17:33:37 +01:00
mattijs
5bc4cc3b7c
Merge remote-tracking branch 'origin/master' into feature/procAgglom
2013-05-01 16:57:36 +01:00
mattijs
d9afcb75d3
ENH: snappyHexMesh: update with code
2013-04-29 15:21:56 +01:00
mattijs
487103fa60
ENH: checkMesh: volume ratio too tight
2013-04-29 15:21:20 +01:00
laurence
893a4364c0
Merge branch 'feature/cvMesh' of ssh://opencfd-laurence.no-ip.org:8004/home/dm4/OpenFOAM/OpenFOAM-dev into feature/cvMesh
2013-04-29 13:38:23 +01:00
laurence
a90f917f70
ENH: cvMesh: Faster point rejection in parallel
2013-04-29 13:37:52 +01:00
laurence
65197885d8
BUG: cvMesh: assign points before sizes
2013-04-29 11:50:44 +01:00
laurence
f63b6935f8
BUG: cvMesh: Add brackets to function call
2013-04-29 11:00:47 +01:00
laurence
5bac60aa33
Merge branch 'feature/cvMesh' of ssh://opencfd-laurence.no-ip.org:8004/home/dm4/OpenFOAM/OpenFOAM-dev into feature/cvMesh
2013-04-29 10:55:51 +01:00
laurence
1d67c14cc4
ENH: Add maxPriority to requests to cellSize
2013-04-29 10:52:13 +01:00
mattijs
d7cadf4937
Merge remote-tracking branch 'origin/master' into feature/procAgglom
...
Conflicts:
src/OpenFOAM/db/IOstreams/Pstreams/Pstream.H
src/OpenFOAM/db/IOstreams/Pstreams/UPstream.C
src/OpenFOAM/db/IOstreams/Pstreams/UPstream.H
src/OpenFOAM/db/IOstreams/Pstreams/combineGatherScatter.C
src/OpenFOAM/db/IOstreams/Pstreams/gatherScatter.C
src/OpenFOAM/db/IOstreams/Pstreams/gatherScatterList.C
src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaceFields/processorGAMGInterfaceField/processorGAMGInterfaceField.C
src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaceFields/processorGAMGInterfaceField/processorGAMGInterfaceField.H
src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/GAMGInterface/GAMGInterface.H
src/finiteVolume/fvMesh/fvMesh.H
2013-04-23 09:41:15 +01:00
laurence
5574bc333d
BUG: shape locations for outside points incorrect
2013-04-20 21:46:56 +01:00
andy
4435d64047
STYLE: Corrected spelling mistakes
2013-04-16 17:01:23 +01:00
laurence
963e659666
Merge branch 'master' into feature/cvMesh
2013-04-16 16:39:24 +01:00
laurence
d00c9f0fe9
Merge branch 'master' into feature/cvMesh
...
Conflicts:
src/edgeMesh/extendedFeatureEdgeMesh/extendedFeatureEdgeMeshTemplates.C
src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C
2013-04-16 16:00:59 +01:00
laurence
aa467d4cd9
ENH: Check for infinite vertex in cell
2013-04-16 11:02:57 +01:00
laurence
ee2910a089
ENH: Insert background cell size mesh using the cell size functions
2013-04-16 10:56:57 +01:00
laurence
60806cd645
ENH: Initialise vertices to have unset alignment
2013-04-15 17:23:49 +01:00
laurence
9422ad8835
BUG: Correct order of constructor initialisation list
2013-04-15 17:09:49 +01:00
laurence
5bb8b8c31e
ENH: New cell size function point insertion algorithm
2013-04-15 16:59:59 +01:00
mattijs
415cdb6a63
ENH: checkMesh: check volume ratio and face interpolation weights
2013-04-15 16:55:59 +01:00
laurence
c4b8448d53
BUG: collapseDict: Give entry a valid value
2013-04-12 14:16:09 +01:00
laurence
c171765a31
ENH: Remove requiredSize and requiredAlignment functions and their dictionary inputs
2013-04-12 11:29:02 +01:00
laurence
46ae867b7f
BUG: Remove unused code in linearDistance.C
2013-04-11 21:01:53 +01:00
laurence
4af889f860
ENH: Add forcePointInsertion option to controlMeshRefinement
2013-04-11 20:28:08 +01:00
laurence
26a42b37a0
ENH: Move boundary applying to a separate function in the alignment solver
2013-04-11 20:24:57 +01:00
laurence
2b8bbb94b1
ENH: Update cell size functions to use the regionIndices findNearest
...
functions
2013-04-11 20:24:06 +01:00
laurence
73bb893067
ENH: Remove unused functions
2013-04-11 20:20:41 +01:00
laurence
7df9897c82
ENH: update calls to mesh redistribution
2013-04-11 20:20:09 +01:00
laurence
8ae926c472
ENH: Check if surface conformation point is inside the surface geometry
2013-04-11 20:18:50 +01:00
laurence
1804fb2813
ENH: Count number of reordered faces
2013-04-11 20:16:47 +01:00
laurence
9356f9c669
ENH: Snap points to feature points
2013-04-11 20:15:29 +01:00
laurence
c1cb0c4f17
BUG: Correct regionOffset indexing
2013-04-11 20:10:53 +01:00
laurence
21163c9591
BUG: Prevent overflow on integer multiplication
2013-04-11 20:07:26 +01:00
laurence
33221dc8d7
STYLE: Update default cvMeshDict
2013-04-11 19:59:09 +01:00
laurence
e2482a4e8b
ENH: Merge searchableSurface and indexedOctree volumeType
2013-04-11 19:52:03 +01:00
mattijs
1cf850f164
ENH: snappyHexMesh: print final mesh check
2013-04-11 15:16:06 +01:00
mattijs
bbb2077160
ENH: searhcableSurfacetoFaceZone: allow triSurfaceMesh specification
2013-04-11 15:04:39 +01:00
laurence
72c3da08b2
Merge branch 'master' into feature/cvMesh
...
Conflicts:
applications/test/Matrix/Test-Matrix.C
applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/extrude2DMesh/extrude2DMesh.C
applications/utilities/mesh/generation/extrude2DMesh/extrude2DMesh/extrude2DMesh/extrude2DMesh.H
src/OpenFOAM/algorithms/indexedOctree/indexedOctree.C
src/OpenFOAM/primitives/Tensor2D/Tensor2DI.H
2013-04-05 16:09:24 +01:00
mattijs
634d643090
ENH: snappyHexMeshDict: improved comment
2013-04-02 18:13:31 +01:00
mattijs
9511eb27f7
ENH: splitMeshRegions: allow -region option
2013-04-02 18:12:58 +01:00
mattijs
1f1188120c
BUG: createBaffles: handle cellcentres as positions
2013-04-02 13:53:27 +01:00
mattijs
179085af97
ENH: renumberMesh: sort face/cellZones
2013-03-28 10:26:25 +00:00
laurence
3afcc234d5
BUG: Store default cell size instead of a reference
2013-03-15 15:32:47 +00:00
mattijs
729d53b862
BUG: ideasUnvToFoam: handling faceZones
2013-03-14 09:15:02 +00:00
andy
b45a4486b1
STYLE: Updates to erroneous copyright dates - applications
2013-03-13 09:45:16 +00:00
andy
53df4289df
ENH: Consistency updates - license text abnd code formatting
2013-03-12 15:40:03 +00:00
andy
6ba20b0f78
BUG: Updated ccm26ToFoam converter
2013-03-11 13:01:49 +00:00
andy
e637dc30d1
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
2013-02-21 16:11:47 +00:00
Henry
74e16d7729
Reformat "template <..." to template<"
...
Add support for constructing VectorSpaces from forms with lower component type,
e.g. Vector<scalar> from Vector<label>
2013-02-21 15:07:50 +00:00
Henry
944b8d438b
Reformat "template <..." to template<"
...
Add support for constructing VectorSpaces from forms with lower component type,
e.g. Vector<scalar> from Vector<label>
2013-02-21 15:07:09 +00:00
andy
951c8436aa
ENH: Applying Gijs' patch: Update header documentation for utilities
2013-02-21 10:54:34 +00:00
andy
fe38fc8575
ENH: Updated gmshToFoam - mantis #690
2013-02-18 17:09:53 +00:00
laurence
15ba9ec7c5
ENH: cvMesh: speed up edge refinement
2013-02-12 15:45:21 +00:00
laurence
10042d2a0a
ENH: cvMesh: Add option to print vertex info
2013-02-08 15:45:24 +00:00
laurence
ec313f856c
ENH: cvMesh: DelaunayMesh: Switch to using dictionary to construct patches
2013-02-08 15:42:29 +00:00
laurence
528b3e8caf
ENH: cvMesh: Default alignment to identity tensor if it is bad
2013-02-07 15:56:35 +00:00
laurence
777e73d74b
ENH: cvMesh: Try to fix alignment
2013-02-07 15:07:47 +00:00
laurence
6799d66605
ENH: cvMesh: Orthogonalize triads
2013-02-07 14:32:51 +00:00
laurence
6628a12d19
ENH: cvMesh: Add method for finding discontinuities on the cell size mesh
2013-02-06 15:30:42 +00:00
laurence
84ad150b88
ENH: cvMesh: Use dictionary constructor for polyPatch
2013-02-06 12:10:25 +00:00
laurence
58c11b121f
BUG: cvMesh: Remove debugging output
2013-02-05 15:07:54 +00:00
laurence
b125db9ecb
ENH: cvMesh: Enable use of regions in conformationSurfaces. Make cell sizing relative to default.
2013-02-05 14:47:50 +00:00
mattijs
ea8d290191
ENH: communicators: initial version - extended Pstream API
2013-02-04 10:17:37 +00:00
laurence
2bfe3cefd0
ENH: Do not add empty patches to the patch list
2013-02-01 11:43:13 +00:00
laurence
a153b8ef17
BUG: cvMesh: feature point types wrong way around.
2013-01-30 16:26:09 +00:00
laurence
6a13810770
BUG: add bounding boxes to cell size mesh
2013-01-29 17:38:27 +00:00