Commit Graph

480 Commits

Author SHA1 Message Date
Henry Weller
dccee2bae7 tutorials/mesh/blockMesh/sphere7: New 7-block sphere mesh example
Contributed by Georg Skillas
2016-10-16 15:14:26 +01:00
Henry Weller
009203188f blockMesh: New experimental support for projecting block face point to geometric surfaces
For example, to mesh a sphere with a single block the geometry is defined in the
blockMeshDict as a searchableSurface:

    geometry
    {
        sphere
        {
            type searchableSphere;
            centre (0 0 0);
            radius 1;
        }
    }

The vertices, block topology and curved edges are defined in the usual
way, for example

    v 0.5773502;
    mv -0.5773502;

    a 0.7071067;
    ma -0.7071067;

    vertices
    (
        ($mv $mv $mv)
        ( $v $mv $mv)
        ( $v  $v $mv)
        ($mv  $v $mv)
        ($mv $mv  $v)
        ( $v $mv  $v)
        ( $v  $v  $v)
        ($mv  $v  $v)
    );

    blocks
    (
        hex (0 1 2 3 4 5 6 7) (10 10 10) simpleGrading (1 1 1)
    );

    edges
    (
        arc 0 1 (0 $ma $ma)
        arc 2 3 (0 $a $ma)
        arc 6 7 (0 $a $a)
        arc 4 5 (0 $ma $a)

        arc 0 3 ($ma 0 $ma)
        arc 1 2 ($a 0 $ma)
        arc 5 6 ($a 0 $a)
        arc 4 7 ($ma 0 $a)

        arc 0 4 ($ma $ma 0)
        arc 1 5 ($a $ma 0)
        arc 2 6 ($a $a 0)
        arc 3 7 ($ma $a 0)
    );

which will produce a mesh in which the block edges conform to the sphere
but the faces of the block lie somewhere between the original cube and
the spherical surface which is a consequence of the edge-based
transfinite interpolation.

Now the projection of the block faces to the geometry specified above
can also be specified:

    faces
    (
        project (0 4 7 3) sphere
        project (2 6 5 1) sphere
        project (1 5 4 0) sphere
        project (3 7 6 2) sphere
        project (0 3 2 1) sphere
        project (4 5 6 7) sphere
    );

which produces a mesh that actually conforms to the sphere.

See OpenFOAM-dev/tutorials/mesh/blockMesh/sphere

This functionality is experimental and will undergo further development
and generalization in the future to support more complex surfaces,
feature edge specification and extraction etc.  Please get involved if
you would like to see blockMesh become a more flexible block-structured
mesher.

Henry G. Weller, CFD Direct.
2016-10-13 15:05:24 +01:00
Andrew Heather
3dbd39146c STYLE: consistency updates 2016-09-27 15:17:55 +01:00
Andrew Heather
1fbcb686ff STYLE: Consistency updates 2016-09-23 16:52:46 +01:00
Andrew Heather
9fbd612672 GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
Henry Weller
0857f479a8 PBiCGStab: New preconditioned bi-conjugate gradient stabilized solver for asymmetric lduMatrices
using a run-time selectable preconditioner

References:
    Van der Vorst, H. A. (1992).
    Bi-CGSTAB: A fast and smoothly converging variant of Bi-CG
    for the solution of nonsymmetric linear systems.
    SIAM Journal on scientific and Statistical Computing, 13(2), 631-644.

    Barrett, R., Berry, M. W., Chan, T. F., Demmel, J., Donato, J.,
    Dongarra, J., Eijkhout, V., Pozo, R., Romine, C. & Van der Vorst, H.
    (1994).
    Templates for the solution of linear systems:
    building blocks for iterative methods
    (Vol. 43). Siam.

See also: https://en.wikipedia.org/wiki/Biconjugate_gradient_stabilized_method

Tests have shown that PBiCGStab with the DILU preconditioner is more
robust, reliable and shows faster convergence (~2x) than PBiCG with
DILU, in particular in parallel where PBiCG occasionally diverges.

This remarkable improvement over PBiCG prompted the update of all
tutorial cases currently using PBiCG to use PBiCGStab instead.  If any
issues arise with this update please report on Mantis: http://bugs.openfoam.org
2016-09-05 11:46:42 +01:00
Andrew Heather
ac42dd2494 BUG: mesh/filter case - corrected Allrun script. Fixes #219 2016-08-25 13:32:45 +01:00
Henry Weller
6d330d3d12 tutorials: Updated formatting of dictionaries and specification of 'plane' and 'samplePlane' 2016-06-29 18:02:57 +01:00
Mark Olesen
820f809bd5 STYLE: cleanup handling of 0.org directories (in parallel)
- remove duplicate 0/ files from the repository
2016-06-29 13:34:36 +02:00
Mark Olesen
dd60cfcd06 FIX: provide restore0Dir function to fix issue #159
- makes it easier to ensure the correct behaviour, consistently
2016-06-27 16:33:55 +02:00
Henry Weller
b646237d1d Corrected headers 2016-06-21 16:17:37 +01:00
Chris Greenshields
344f435f54 Tutorials fvSolution files: removed solver entries which use default
values; formatted Switch entries consistently across all cases
2016-06-15 07:39:12 +01:00
Chris Greenshields
3d810c11dc Tutorials: made laplacianSchemes consistent and correct 2016-06-13 23:38:03 +01:00
Henry Weller
3eec5854be Standardized the selection of required and optional fields in BCs, fvOptions, functionObjects etc.
In most boundary conditions, fvOptions etc. required and optional fields
to be looked-up from the objectRegistry are selected by setting the
keyword corresponding to the standard field name in the BC etc. to the
appropriate name in the objectRegistry.  Usually a default is provided
with sets the field name to the keyword name, e.g. in the
totalPressureFvPatchScalarField the velocity is selected by setting the
keyword 'U' to the appropriate name which defaults to 'U':

        Property     | Description             | Required    | Default value
        U            | velocity field name     | no          | U
        phi          | flux field name         | no          | phi
        .
        .
        .

However, in some BCs and functionObjects and many fvOptions another
convention is used in which the field name keyword is appended by 'Name'
e.g.

        Property     | Description             | Required    | Default value
        pName        | pressure field name     | no          | p
        UName        | velocity field name     | no          | U

This difference in convention is unnecessary and confusing, hinders code
and dictionary reuse and complicates code maintenance.  In this commit
the appended 'Name' is removed from the field selection keywords
standardizing OpenFOAM on the first convention above.
2016-05-21 20:28:20 +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
cf4b35693c tutorials: Remove the unnecessary "\"s on "cp", "rm" and "mv"
Resolves bug-report http://bugs.openfoam.org/view.php?id=2077
2016-05-05 15:17:55 +01:00
Henry Weller
1b34231340 tutorials: Renamed .org -> .orig
See http://www.openfoam.org/mantisbt/view.php?id=2076
  - .org is the file extension for emacs org-mode as well
  - .orig is more to the point (.org isn't always recognized as "original")
  - .original is too long, although more consistent with the convention
    of source code file naming

Update script contributed by Bruno Santos
2016-04-30 21:53:50 +01: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
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
mattijs
4aafaf9bb8 BUG: surfaceBooleanFeatures: uses triSurfaceMesh so does not need path
Fixes the simpleShapes failure in #141
2016-06-13 13:14:48 +01:00
mattijs
b6472f3f7c BUG: cavity: fixes the running of the cavity case #141 2016-06-07 12:44:34 +01:00
Andrew Heather
f0b404748d ENH: Further tutorial update 2016-04-27 09:41:27 +01:00
Andrew Heather
16dfd33db8 ENH: Tutorials - updates 2016-04-26 14:32:19 +01:00
Andrew Heather
a7dcf8fc61 ENH: Tutorials - updated use of -log to use -s 2016-04-26 09:31:44 +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
Henry Weller
350d03246e scripts: Reformat with consistent section separators 2016-02-15 18:30:24 +00:00
Henry Weller
cfa7678ba8 foamRunTutorials: Rationalized support for the "-test" option
RunFunctions: Added "isTest()" argument parsing function
tutorials: Updated Allrun scripts to propagate the "-test" option
tutorials: Removed the lower Alltest scripts and updated the Allrun to
    use the "isTest()" function to handle test-specific operation
2016-02-15 15:49:05 +00:00
Henry Weller
daf44fda3d tutorials and templates: Updated wall BC for velocity to noSlip 2016-02-09 20:08:34 +00:00
Henry Weller
b3d47f0423 bin/tools/RunFunctions: runParallel now obtains the number of processors from numberOfSubdomains
in decomposeParDict.

This default number of processors may be overridden by the new "-np"
option to runParallel which must be specified before the application
name e.g.:

runParallel -np 4 pisoFoam
2016-01-27 14:19:25 +00:00
Andrew Heather
f0c3e8d599 STYLE: Updated version to 'plus' 2015-12-22 23:14:17 +00:00
mattijs
79da5b5a52 BUG: mixerVessel: fix mesh time pickup 2015-12-16 11:48:11 +00:00
mattijs
bd8fcbe8bf BUG: mixerVessel: surfaceBooleanFeatures syntax 2015-12-16 10:38:38 +00:00
mattijs
c076fd8d67 BUG: simpleShapes: Allrun adapted for surfaceBooleanFeatures change.
Fixes part of #34
2015-12-15 20:50:59 +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
8f1d043364 GIT: Resolved conflict 2015-12-09 09:32:38 +00:00
mattijs
2e7d7d1609 BUG: RunFunctions: missing fi. Renamed variable. Updated Allrun scripts 2015-12-08 14:35:02 +00:00
Andrew Heather
dbea5806ce ENH: Tutorials - removing fluxRequired from fvSchemes 2015-12-08 12:14:13 +00:00
Andrew Heather
3f55f752fc GIT: Resolve conflict with upstream merge from Foundation 2015-12-07 17:07:20 +00:00
mattijs
591c5b602c ENH: decomposeParDict: default value is system/decomposeParDict 2015-12-07 16:04:17 +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
Henry Weller
58127cae71 tutorials/mesh/foamyHexMesh: Update location of blockMeshDict 2015-11-13 15:48:39 +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
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
mattijs
86ea4a074b ENH: tutorial: chmod +x of run scripts 2015-11-03 10:23:11 +00:00
mattijs
71db93570a BUG: gap_detection: added to Allrun 2015-10-28 13:31:18 +00:00
mattijs
9c0a715ac3 ENH: snappyHexMesh: added tutorial for testing automatic gap refinement 2015-10-28 13:30:39 +00:00
mattijs
4d1159e685 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
mattijs
0b54e1cc33 ENH: surfaceIntersection: cleanup 2015-10-14 08:52:32 +01:00
Henry Weller
37cfc3ab46 tutorials: Removed unnecessary spaces between parentheses and values in vectors 2015-07-21 20:55:44 +01:00
Henry Weller
4c21f24a8c Input of dimensionedScalars: update read-construction of dimensionedScalar in applications
so that the specification of the name and dimensions are optional in property dictionaries.

Update tutorials so that the name of the dimensionedScalar property is
no longer duplicated but optional dimensions are still provided and are
checked on read.
2015-07-20 22:52:53 +01:00
Henry Weller
0fb6a01280 fluxRequired: Added setFluxRequired function to fvSchemes class
Added calls to setFluxRequired for p, p_rgh etc. in all solvers which
avoids the need to add fluxRequired entries in fvSchemes dictionaries.
2015-07-15 21:57:16 +01:00
Henry
d93063e238 foamyQuadMesh/square: Updated extrude2DMeshDict 2015-05-18 13:58:33 +01:00
Henry
0a6ca7ae45 includeEtcEntry: New dictionary include directive: #includeEtc "etcFile"
Description
    Specify an etc file to include when reading dictionaries, expects a
    single string to follow.

    Searches for files from user/group/shipped directories.
    The search scheme allows for version-specific and
    version-independent files using the following hierarchy:
    - \b user settings:
      - ~/.OpenFOAM/\<VERSION\>
      - ~/.OpenFOAM/
    - \b group (site) settings (when $WM_PROJECT_SITE is set):
      - $WM_PROJECT_SITE/\<VERSION\>
      - $WM_PROJECT_SITE
    - \b group (site) settings (when $WM_PROJECT_SITE is not set):
      - $WM_PROJECT_INST_DIR/site/\<VERSION\>
      - $WM_PROJECT_INST_DIR/site/
    - \b other (shipped) settings:
      - $WM_PROJECT_DIR/etc/

    An example of the \c \#includeEtc directive:
    \verbatim
        #includeEtc "etcFile"
    \endverbatim

    The usual expansion of environment variables and other constructs is
    retained.
2015-04-26 10:44:11 +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
5ecfb06398 tutorials: remove unnecessary under-relax fields entry 2015-02-22 16:52:21 +00:00
Henry
7be1393fef tutorials: corrected comments in snappyHexMeshDict
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1541
2015-02-17 23:59: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
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
89f826419a Remove cyclic link in foamyHexMesh/mixerVessel tutorial
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1191
2015-01-18 21:11:54 +00:00
Henry
41368addc9 Minor change to comment 2014-12-14 21:50:14 +00:00
OpenFOAM-admin
9fb26d59d3 GIT: Repo update 2014-12-11 08:35:10 +00:00
OpenFOAM-admin
fbb3ddf2c4 Updated for release 2.3.0 2014-02-17 10:21:46 +00:00
william
333818408f STYLE: sh instead of bash for tutorial scripts 2014-02-05 16:53:44 +00:00
mattijs
b620938829 ENH: mixerVessel: dummy Alltest 2014-02-05 12:24:11 +00:00
Henry
ee4e19ef85 Renamed folder -> directory for consistency with POSIX and the rest of OpenFOAM 2014-01-30 13:01:04 +00:00
mattijs
340accf46d ENH: OpenCFD: naming regions 2014-01-28 10:13:05 +00:00
mattijs
a643ad71eb ENH: simpleShapes: no need for naming of patches 2014-01-27 15:24:25 +00:00
mattijs
8acfa4692a STYLE: snappyHexMeshDict: removed optional parameter 2014-01-27 12:25:56 +00:00
mattijs
e3a3e78f07 Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev 2014-01-23 16:50:46 +00:00
mattijs
de78cf6901 GIT: OpenCFD: removed boundary file 2014-01-23 14:53:28 +00:00
mattijs
3e414187fc ENH: simpleShapes: add additional collapsing 2014-01-23 13:00:00 +00:00
mattijs
7899cd77b7 BUG: blob: clean up correctly 2014-01-23 12:19:09 +00:00
Henry
a7ad50ce7d VoF tutorials: changed interfaceCompression to linear
This provided greater accuracy and stability while MULES guarantees boundedness
2014-01-23 11:30:45 +00:00
Henry
36f3e513ea sixDoFRigidBodyMotion: Update code and tutorial cases to use new explicit motion
simpleHarmonicMotion case removed temporarily pending the introduction of a suitable motion solver
2014-01-23 11:24:50 +00:00
andy
e7201c0326 ENH: tutorial updates 2014-01-20 16:25:13 +00:00
mattijs
a271e98077 ENH: mixerVessel: use smoothSolver for transported quantities 2014-01-20 12:15:53 +00:00
mattijs
9bfa86e3fb ENH: mixerVessel: undo rotation of decomposition 2014-01-20 12:14:33 +00:00
mattijs
d950be041b ENH: mixerVessel: reverted AMI specification 2014-01-20 12:08:32 +00:00
mattijs
2f220e103d STYLE: Allrun: comment 2014-01-16 12:36:25 +00:00
mattijs
e86d044b7a ENH: mixerVessel: original geometry 2014-01-16 12:35:29 +00:00
andy
6c7879f300 ENH: mixerVessel turorial update 2014-01-16 09:47:06 +00:00
andy
e18b42c881 ENH - mixer vessel - Allrun should run complete tutorial 2014-01-14 17:55:34 +00:00
andy
ae114cd9de ENH: tutorial update 2014-01-14 17:51:38 +00:00
andy
14119caa97 ENH: script update 2014-01-14 17:50:31 +00:00
mattijs
7336826eab ENH: mixerVessel: adjust deomposition to avoid baffles on processor boundaries 2014-01-13 16:23:51 +00:00
mattijs
aca704b2c1 ENH: mixerVessel: shrunk rotating surface to avoid dimples. Switch on AMI surface projection mode 2014-01-13 15:34:26 +00:00
mattijs
131a6c8c6b Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev 2014-01-13 15:09:47 +00:00
Henry
05a55b6c9f tutorials/mesh/foamyHexMesh/mixerVessel/Allrun-pre: remove directory 102 when not needed 2014-01-13 10:00:42 +00:00
mattijs
d73a0c6a6e ENH: foamyHexMesh: add straightDuctImplicit to foamyHexMesh tutorials 2014-01-10 15:36:19 +00:00
mattijs
9fda4249f0 ENH: snappyHexMeshDict: remove debug flag 2013-12-20 12:15:32 +00:00
Henry
2612f6beac sixDoFRigidBodyMotion: Renamed constraints 2013-12-16 21:19:18 +00:00
Henry
a66979bd20 tutorials/mesh/moveDynamicMesh/simpleHarmonicMotion: update constraints 2013-12-16 10:53:55 +00:00
Henry
8af82f02bf sixDoFRigidBodyMotion: remove the constraint and restraint "Coeffs"
sub-dict and put the coefficients in the containing dictionary.
2013-12-15 22:30:52 +00:00
mattijs
5ffd600baa Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev
Conflicts:
	tutorials/mesh/foamyHexMesh/mixerVessel/system/fvSchemes
2013-12-06 17:52:34 +00:00
mattijs
bed3074127 ENH: mixerVessel: disable running; mesh only 2013-12-06 16:29:00 +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
Henry
182f46b357 foamyHexMesh/mixerVessel: correct links to be local 2013-09-27 22:46:46 +01:00
laurence
74d43602f7 ENH: foamyHexMesh: Update mixer vessel tutorial 2013-09-27 15:23:33 +01:00
laurence
fab029fb5f ENH: foamyHexMesh: Add new mixerVessel tutorial with baffles 2013-09-27 13:00:17 +01:00
laurence
686e520611 TUT: foamyHexMesh flange tutorial update 2013-09-26 14:16:18 +01:00
laurence
974e509eb4 ENH: surfaceIntersection: Change error to warning 2013-09-26 14:15:19 +01:00
laurence
615a74626e ENH: foamyHexMesh: Include baffle handling 2013-09-25 12:37:19 +01:00
mattijs
5063ff7e1c ENH: flange: include foamyHxMeshDict 2013-09-17 09:36:44 +01:00
mattijs
7a0d73e94e ENH: Allrun: added comment 2013-09-10 12:09:58 +01:00
Henry
51f085faa5 Rewrite of ddtPhiCorr - ddtCorr and density-weight HbyA on compressible solvers.
For DyM solvers phiAbs is replaced by Uf but this conversion is currently not complete
2013-09-09 12:41:20 +01:00
Henry
442a30e529 foamyHexMesh/flange/Allclean: Remove 0 directory 2013-08-20 11:34:13 +01:00
laurence
adf1fb11e0 TUT: Update flange test in tutorial and remove flange.obj 2013-08-20 10:39:13 +01:00
Henry
03c07e8689 tutorials/mesh/foamyHexMesh/mixerVessel: Reconstruct mesh after parallel generation 2013-08-19 14:14:38 +01:00
Henry
12539b23c5 Merge branch 'master' of ssh://dm/home/dm4/OpenFOAM/OpenFOAM-dev 2013-08-15 17:03:57 +01:00
laurence
77b7a4d88b STYLE: foamyHexMesh: Update Allclean tutorial scripts 2013-08-15 12:02:17 +01:00
Henry
b9f9598725 tutorials/mesh/foamyHexMesh/flange: Add flange.obj as required by the mesher 2013-08-15 10:34:57 +01:00
Henry
cd8c83ca93 Merge branch 'master' of ssh://dm/home/dm4/OpenFOAM/OpenFOAM-dev 2013-08-15 10:31:41 +01:00
Henry
d986830a24 tutorials/mesh/foamyHexMesh/mixerVessel: use hierarchical rather than scotch for decomposition due to bugs in scotch 2013-08-15 10:31:31 +01:00
laurence
31c5a8ebeb BUG: foamyHexMesh flange tutorial reads wrong file 2013-08-14 14:43:27 +01:00
mattijs
9ad0015d95 STYLE: boundary: remove regenerated files 2013-07-16 09:54:02 +01:00
laurence
4b750266d3 STYLE: Remove old .obj file 2013-07-11 12:38:48 +01:00
mattijs
7c081ac3e7 ENH: snappyHexMeshDict: fix header 2013-07-11 12:03:01 +01:00
mattijs
9dce138da4 ENH: foamyHexMesh: add patch type so we can run with snappyHexMesh 2013-07-11 11:48:55 +01:00
laurence
b65f2a9ee8 BUG: flange foamyHexMesh tutorial missing meshDict.geometry 2013-07-04 16:33:55 +01:00
laurence
7546c1529a BUG: searchableSurfaceControl: Correct resizing of region controls 2013-07-04 13:12:11 +01:00
mattijs
ae9d794649 BUG: flange: wrong application name 2013-07-03 12:50:53 +01:00
mattijs
f2397e7f41 ENH: snappyHexMesh: clean up mesh quality settings 2013-07-02 15:01:32 +01:00
Henry
1e81657da1 Reformat 2013-06-20 10:49:41 +01:00
laurence
805e8ead0d ENH: foamyHexMesh: Update tutorials 2013-06-14 17:03:03 +01:00
laurence
f0b562e6f3 ENH: foamyHexMesh: Update tutorials 2013-06-14 16:55:59 +01:00
laurence
7c00bbe7fa ENH: foamyHexMesh: Add mixerVessel tutorial 2013-06-05 12:19:07 +01:00
laurence
a40168675c STYLE: Change name of foamyHex2DMesh to foamyQuadMesh 2013-06-04 16:21:16 +01:00
laurence
a31cb80862 ENH: foamyHexMesh: Update simpleShapes tutorial 2013-06-04 15:50:47 +01:00
laurence
00dcfb2282 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2013-06-04 14:58:41 +01:00
laurence
7e9e8d3bd8 ENH: foamyHexMesh: Update blob and simpleShapes tutorials 2013-06-04 14:57:32 +01:00
laurence
96aba9e8ea ENH: foamyHexMesh: Update flange tutorial 2013-06-04 14:53:37 +01:00
laurence
9d2a0b25db ENH: Update foamyHexMesh tutorials 2013-05-31 10:36:32 +01:00
laurence
c0eb9d678f STYLE: Change cv2DMesh to foamyHex2DMesh 2013-05-16 10:29:36 +01:00
laurence
9a5b9e6ba2 ENH: Add automatic feature extraction to foamyHexMesh 2013-05-13 10:24:03 +01:00
laurence
850474d273 STYLE: Change name from cvMesh to foamyHexMesh 2013-05-10 01:00:52 +01:00
laurence
84022b6ad0 STYLE: Remove unnecessary cvMesh dictionary entries 2013-04-15 10:58:14 +01:00
laurence
15ff97d947 ENH: Update cv2DMesh tutorials 2013-03-15 15:45:00 +00:00
laurence
986532b18a ENH: cvMesh: Update tutorials 2013-02-05 16:51:37 +00:00
laurence
c0a417355d Revert "COMP: cvMesh and cv2DMesh removed"
This reverts commit e4c1409679.
2013-01-08 10:48:45 +00:00
laurence
e4c1409679 COMP: cvMesh and cv2DMesh removed 2013-01-07 16:08:56 +00:00
laurence
45ce8ab68d ENH: Update cellShapeControl to work with 2D mesher and remove dependency on the Triangulation 2013-01-04 14:30:07 +00:00
laurence
5879a730fc cv2DMesh: Initial Commit with tutorials 2013-01-03 17:07:25 +00:00
mattijs
59c1c382e4 BUG: Allrun: old subsetMesh syntax 2012-12-19 10:43:15 +00:00
laurence
33bc5f596c BUG: simpleShapes Allrun script error corrected 2012-12-13 17:25:10 +00:00
laurence
16ef46f6d7 ENH: foamRunTutorials: Enable Alltest files to be read as well as Allrun
foamRunTutorials now accepts two arguments:
-test : Preferentially execute Alltest, if present, over Allrun.
-skipFirst : Skip Alltest/Allrun at the top level to prevent recursion

Added because some tutorials are not dependent on controlDict and take
a long time.
2012-12-13 16:07:15 +00:00
laurence
b56d84db79 ENH: cvMesh: Update tutorials 2012-12-12 16:05:03 +00:00
laurence
ec634a897c STYLE: Correct headers 2012-12-12 09:43:04 +00:00
laurence
f306994d20 STYLE: Remove flange.eMesh 2012-12-12 09:04:29 +00:00
laurence
6fcb21987d ENH: Update cvMesh tutorials. 2012-12-11 17:22:49 +00:00
mattijs
b4bb215a8c ENH: subsetMesh: have -cellSet and -dict argument 2012-11-23 11:27:46 +00:00
andy
7888a0d8bb ENH: Updated comment/description 2012-11-19 09:37:41 +00:00
andy
926b30e70d ENH: tutorial file update 2012-10-29 12:22:18 +00:00
mattijs
233436f4f7 ENH: snappyHexMesh: switch on multipatch snapping 2012-10-26 14:28:18 +01:00
mattijs
f2f752a033 GIT: blockMeshDict: revert to original mesh 2012-10-10 17:02:55 +01:00
mattijs
1d83996c0f STYLE: dynamicMeshDict: extraneous entry 2012-09-20 16:54:57 +01:00
mattijs
cbdba6b471 GIT: revert: revert bad commit b6c4e144c4 2012-09-20 15:19:25 +01:00
mattijs
dfa74d978c ENH: flowRateInletVelocity: different keywords for volumetric and mass 2012-09-20 14:21:40 +01:00
mattijs
96a5814b08 ENH: flange: rename to meshQualityDict 2012-09-13 15:04:58 +01:00
Henry
97acc11a4c moveDynamicMesh/SnakeRiverCanyon: Updated dynamicMeshDict 2012-09-11 14:05:06 +01:00
mattijs
bfbfa8f4a5 ENH: motionSolvers: dynamicMeshDict new syntax 2012-08-31 16:51:26 +01:00
mattijs
831bcdc6b9 STYLE: scripts: removed trailing spaces 2012-08-17 12:30:55 +01:00
mattijs
c0882aef0c ENH: flange: tighten min-tet volume since has little effect 2012-07-06 17:42:22 +01:00
mattijs
255b1c4ab4 ENH: blob: updated tutorial 2012-05-17 12:58:47 +01:00
mattijs
142c28d4f9 GIT: meshQualityDict: put under git 2012-05-17 12:30:48 +01:00
laurence
12d560aa03 BUG: Add surfaceFeatureExtract dictionaries to the tutorials 2012-04-19 14:37:31 +01:00
mattijs
69569cc45e STYLE: surfaceFeatureExtract: get info from Coeffs dictionary. Added comment 2012-04-03 10:36:23 +01:00
mattijs
8e4af30958 ENH: flange: add snappyHexMesh 2012-03-30 16:11:26 +01:00
mattijs
ccbc6b03f9 ENH: surfaceFeatureExtract: extract features 2012-03-30 16:09:19 +01:00
mattijs
143b4b7039 ENH: flange: run snappyHexMesh to add layers 2012-03-30 16:02:47 +01:00
laurence
04bacc14d5 ENH: cvMesh blob tutorial updated 2012-03-28 08:43:27 +01:00
mattijs
ce3fdbece7 ENH: blob: demonstrate adding extrusion through snappyHexMesh 2012-03-22 10:39:57 +00:00
laurence
acb475ee90 ENH: cvMesh blob tutorial: update settings 2012-03-05 12:08:02 +00:00
laurence
b46c481b32 ENH: cvMesh flange tutorial: update settings 2012-03-05 12:03:56 +00:00
laurence
860b1bf1eb BUG: cvMesh: Update tutorial dictionaries 2012-02-07 12:42:23 +00:00
Henry
5733122746 Merge branch 'master' of ssh://dm/home/dm4/OpenFOAM/OpenFOAM-dev 2011-11-28 16:15:44 +00:00
Henry
70592ba210 Tutorials: updates to run with the latest developments 2011-11-28 16:15:42 +00:00
andy
d855045445 ENH: Moved STL surface to tutorial resources and updated scripts 2011-11-28 14:57:14 +00:00
mattijs
01e3850eda STYLE: snappyHexMeshDict: adapted comment on maxLocalCells. 2011-09-16 18:23:47 +01:00
andy
4f40cdb7d7 GIT: Resolve conflict 2011-08-16 16:09:56 +01:00
Henry
c2dd153a14 Copyright transfered to the OpenFOAM Foundation 2011-08-14 12:17:30 +01:00
Henry
3f2d0519eb Corrected headers 2011-08-09 10:45:12 +01:00
Henry
391d788a29 Corrected headers 2011-08-09 10:42:37 +01:00
Henry
2f00aecea2 cvMesh: updated tutorials 2011-08-09 10:40:44 +01:00
Henry
9e02bcc070 Corrected copyright 2011-08-06 23:38:12 +01:00
mattijs
9f577ed721 STYLE: controlDict: header 2011-07-21 14:47:04 +01:00
mattijs
b62314425c STYLE: topoSetDict: version 2011-07-21 14:45:56 +01:00
mattijs
68973728a1 ENH: conformalVoronoiMesh: renamed writeTetMesh to writeTetDualMesh 2011-07-19 17:30:25 +01:00
mattijs
dfeadff218 ENH: tutorials settings 2011-07-11 15:43:41 +01:00
mattijs
d337da2f79 ENH: carWheel: single wheel from car 2011-06-27 14:25:51 +01:00
graham
b15e01f315 ENH: car meshing - merge close points on surface, use closedTriSurface.
Wheels are baffle surface.
2011-06-23 16:05:01 +01:00
mattijs
d04e2a2cdc ENH: car: tutorial initial commit 2011-06-23 13:35:41 +01:00
mattijs
e5f921e765 ENH: simpleShapes: avoid runApplication because of quote parsing. 2011-06-21 22:31:54 +01:00
mattijs
c4795a754a ENH: simpleShapes testcase update 2011-06-21 19:15:08 +01:00
mattijs
5d031f3800 Merge branch 'cvm' of /home/noisy3/OpenFOAM/OpenFOAM-dev into cvm
Conflicts:
	tutorials/mesh/cvMesh/simpleShapes/system/cvMeshDict
2011-06-21 18:45:09 +01:00
mattijs
5d9d728128 ENH: tutorial cvMeshDict: updated with comment 2011-06-21 18:33:20 +01:00
graham
3c59b696ee STYLE: Change Details -> Coeffs. 2011-06-21 16:58:00 +01:00
graham
cce4d312da ENH: Rename initialPointsMethod autoDensity. Other tidying. 2011-06-17 16:46:01 +01:00
graham
caea0aec03 Merge branch 'master' into cvm 2011-06-17 10:57:23 +01:00
OpenFOAM-admin
c720299876 ENH: Reverted back to version dev 2011-06-17 10:08:20 +01:00
mattijs
c851cbc2a6 ENH: simpleShapes: tutorial 2011-06-16 21:51:26 +01:00
graham
fcefc8fe6e ENH: Larger feature angle, more features. 2011-06-16 15:45:31 +01:00
mattijs
6b1b25c0ee STYLE:headers 2011-06-16 15:04:13 +01:00
mattijs
10afc887b4 STYLE: topoSetDict: version 2011-06-16 15:02:18 +01:00
mattijs
db02cb4eca STYLE: topoSetDict: version 2011-06-16 15:01:10 +01:00
mattijs
8754e1e206 ENH: simpleShapes 2011-06-16 14:57:39 +01:00
mattijs
16b2a741d3 ENH: simpleShapes: simple testcase 2011-06-16 14:56:48 +01:00
mattijs
7a512ad69b ENH: simpleShapes: simple testcase 2011-06-16 14:54:25 +01:00
graham
ddf76e1a38 ENH: Updated flange tutorial. 2011-06-15 14:23:07 +01:00
graham
e1ead74461 Merge branch 'master' into cvm 2011-06-08 17:28:03 +01:00
andy
29c485361a STYLE: renamed version 2.0 -> 2.0.0 2011-06-08 16:31:07 +01:00
mattijs
b09038cd1a BUG: Allrun: flange case not run 2011-06-07 15:46:21 +01:00
andy
d2d91bb84f STYLE: Updated tutorial headers to version 2.0 2011-06-07 11:18:46 +01:00
graham
6a3a33f422 ENH: Using 1e-30 for min tet quality in tuts. 2011-06-03 11:22:43 +01:00
graham
1be43f88ae Merge branch 'master' into cvm 2011-05-31 16:18:03 +01:00
Henry
b6f8897268 tutorials: Upgraded all of the blockMeshDict files to the new format
Upgraded other files as necessary for consistency with the blockMeshDict, in
particular cases with cyclic patches.
2011-05-26 12:43:16 +01:00
graham
97ffb21887 Merge branch 'master' into cvm 2011-05-20 10:19:18 +01:00
Henry
50660fcca5 snappyHexMesh/flange tutorial: remove the generated "flange" file. 2011-05-16 10:13:25 +01:00
graham
fe0f6a487a Merge branch 'master' into cvm
Conflicts:
	applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C
2011-04-07 14:17:08 +01:00
Henry
afc69b2010 snappyHexMesh/flange tutorial: Removed refinement of boss and increased overall resolution 2011-04-06 22:04:47 +01:00
mattijs
9021e777e0 ENH: flange feature edge tutorial:
- slightly bigger display so re-patching does not pick up original outside
- additional refinement at inlet since 2 cells across is too few occasionally
- changed feature angle to pick up more edges
2011-04-06 19:04:17 +01:00
Henry
4fc6e230cc snappyHexMesh flange tutorial: contracted the initial blockMesh to the bounding-box
Updated headers
2011-04-06 15:03:05 +01:00
Henry
5a8429582e snappyHexMesh flange tutorial: redirect all output to log files 2011-04-06 12:17:02 +01:00
Henry
ead978f08b snappyHexMeshDict flange tutorial: changed to mesh the inside of the flange 2011-04-06 12:16:36 +01:00
mattijs
f203f4a835 ENH: flange: clean 0 directory. 2011-04-05 20:53:09 +01:00
mattijs
459889e304 ENH: snappyHexMeshDict: refinement to get centre hole 2011-04-05 15:54:01 +01:00
mattijs
22ed66c9ff ENH: flange/allClean: clean script 2011-04-05 15:53:31 +01:00
mattijs
50157f8943 ENH: flange: snappyHexMesh case with featurelines 2011-04-05 12:08:20 +01:00
graham
5fcd183b8b Merge branch 'master' into cvm 2011-04-04 10:10:56 +01:00
Henry
19c08b9e5a tutorials: Set the file type to ascii for ascii files 2011-03-31 15:32:07 +01:00
graham
f81c0abef7 Merge branch 'master' into cvm 2011-03-28 12:06:56 +01:00
Henry
e1c9f43c08 tutorials: Use getApplication to set the application rather than hard-coding it 2011-03-24 21:42:09 +00:00
Henry
a7db086522 tutorials: Rationalised headers 2011-03-23 17:36:57 +00:00
mattijs
0fc4e4f164 ENH: cvMesh : new tutorial 2011-01-25 19:20:22 +00:00
graham
89619c5015 Revert "ENH: Copyright dates to allow a push."
This reverts commit c5bea5242b.
2011-01-19 10:26:24 +00:00
graham
c5bea5242b ENH: Copyright dates to allow a push. 2011-01-07 15:09:52 +00:00
Henry
0a6c711664 Tutorials: removed all references to metis to protect the innocent from persecution. 2011-01-07 12:01:08 +00:00
andy
14d1300a36 Revert "STyLE: More 2011 copyright dates (non-code)."
This reverts commit 2e1e671d96.
2011-01-05 18:25:32 +00:00
graham
2e1e671d96 STyLE: More 2011 copyright dates (non-code). 2011-01-05 11:48:24 +00:00
Henry
ca8f5aee75 Tutorials: Added libOpenFOAM.so to libs when used to avoid paraFoam failing 2010-10-11 14:16:57 +01:00
Henry
9ad02ff740 fireFoam: Updated solver and tutorials from OpenFOAM-1.7.x 2010-10-08 22:50:58 +01:00
graham
ebb9a9e1ac ENH: tet decomposed particle tracking.
Squashed merge of particleInteractions up to
commit e7cb5bcf0315c359539ef1e715e1d51991343391
2010-09-17 16:59:17 +01:00
mattijs
58e969c376 ENH: structuredDecomp : new decomposition method. fixedNormalSlip : variant of slip point bc with user-specified normal. 2010-08-24 12:39:32 +01:00
graham
28345247a7 STYLE: Fixing code style requirements for more files - those not
picked up by a copyright change.
2010-07-29 11:28:44 +01:00
henry
ccfb6e32a6 Corrected headers. 2010-06-23 16:54:54 +01:00
Mark Olesen
895a077cb1 STYLE: fixup some dictionary headers 2010-05-18 11:38:07 +02:00
Mark Olesen
3fef72510e STYLE: use switch value for 'writeCompression' in controlDict's
- simpler/clearer to use "on/off" instead of "compressed/uncompressed"
2010-04-09 13:12:35 +02:00
Mark Olesen
6b6dd51a27 STYLE: more consistent shell style in tutorial run/clean scripts 2010-03-10 10:55:42 +01:00