Commit Graph

99 Commits

Author SHA1 Message Date
37cfc3ab46 tutorials: Removed unnecessary spaces between parentheses and values in vectors 2015-07-21 20:55:44 +01:00
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
15198a34bd fluxRequired: Added setFluxRequired function to fvSchemes class
Added calls to setFluxRequired for p in all incompressible solvers which
avoids the need to add fluxRequired entries in fvSchemes dictionary.

Will add calls to setFluxRequired to the rest of the solvers.
2015-07-15 15:04:51 +01:00
256be2641f Renamed pressureGradientExplicitSource to meanVelocityForce
as it is the applied the force necessary to maintain the specified mean velocity
2015-06-30 19:13:16 +01:00
3a004fda10 fvOptions: Separate options for all cells, cellSets and inter-region coupling
by introducing rational base-classes rather than using the hideous
'switch' statement.  Further rationalization of the cell-selection
mechanism will be implemented via an appropriate class hierarchy to
replace the remaining 'switch' statement.

Mesh-motion is currently handled very inefficiently for cellSets and not
at all for inter-region coupling.  The former will be improved when the
cell-selection classes are written and the latter by making the
meshToMesh class a MeshObject after it has been corrected for mapFields.
2015-05-31 16:38:01 +01:00
c3ee2348a6 MRF: Separate MRF from fvOptions
fvOptions does not have the appropriate structure to support MRF as it
is based on option selection by user-specified fields whereas MRF MUST
be applied to all velocity fields in the particular solver.  A
consequence of the particular design choices in fvOptions made it
difficult to support MRF for multiphase and it is easier to support
frame-related and field related options separately.

Currently the MRF functionality provided supports only rotations but
the structure will be generalized to support other frame motions
including linear acceleration, SRF rotation and 6DoF which will be
run-time selectable.
2015-05-29 23:35:43 +01:00
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
5ecfb06398 tutorials: remove unnecessary under-relax fields entry 2015-02-22 16:52:21 +00:00
332c3cc37f Tutorials: change topoSetDicts to avoid duplicate names 2015-02-12 10:01:31 +00:00
fb30659b25 tutorials/incompressible/pimpleFoam/elipsekkLOmega: added non-orthogonal correctors to improve stability when running longer 2015-01-28 09:19:20 +00:00
d815440f52 tutorials/incompressible/pimpleFoam/elipsekkLOmega: Updated 2015-01-27 15:09:03 +00:00
04eb2428ff turbulenceModels/LES: Added WALE model
Changed the tutorials/incompressible/pimpleFoam/channel395 to demonstrate the WALE model
2015-01-23 09:17:33 +00:00
fbdc5f119a Added updated nut.gz file 2015-01-21 19:38:40 +00:00
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
69ff8aa4d2 wallDist: now a MeshObject cached and updated automatically with a run-time selected algorithm
When using models which require the wallDist e.g. kOmegaSST it will
request the method to be used from the wallDist sub-dictionary in
fvSchemes e.g.

wallDist
{
    method meshWave;
}

specifies the mesh-wave method as hard-coded in previous OpenFOAM versions.
2015-01-08 10:40:23 +00:00
41368addc9 Minor change to comment 2014-12-14 21:50:14 +00:00
9fb26d59d3 GIT: Repo update 2014-12-11 08:35:10 +00:00
fbb3ddf2c4 Updated for release 2.3.0 2014-02-17 10:21:46 +00:00
73e876c7fb ENH: tutorial update - incompressible 2014-01-24 15:21:10 +00:00
a97070c303 ENH: Added pimpleam pitzDaily test case 2013-12-12 12:57:19 +00:00
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
80a191e7dd BUG: Reinstated missing tutorial files 2013-11-20 16:23:12 +00:00
cc8e6e0f7b ENH: Removed deleted files on tutorial clean-up 2013-11-20 11:52:04 +00:00
1d679022bb ENH: TJunctionFan: new createBaffles syntax 2013-11-14 09:56:43 +00:00
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
22cf7ca39b BUG: TJunctionFan: incorrect createBafflesDict 2013-09-06 16:13:06 +01:00
c4a65259ad GIT: boundary: remove usued file 2013-08-07 11:27:34 +01:00
14c3689fec epsilon/omega: ensure non-0 values are set on all boundaries 2013-06-20 16:33:15 +01:00
b59ca3fc1c ENH: Removed unused entries in tutorial topoSetDict 2013-03-21 09:33:12 +00:00
7bc63894a5 BUG: createPatchDict: new syntax 2013-02-12 14:21:59 +00:00
985219c0ff ENH: Tutorial file updates 2013-01-09 14:05:53 +00:00
d1bd734059 ENH: Updated tutorial files 2013-01-08 09:50:59 +00:00
e2955dd6f7 ENH: Tutorial updates for run-time selectable sources 2012-12-18 09:30:47 +00:00
a0eeb3f09d ENH: Removed unused entry from tutorial input dictionary 2012-12-10 10:16:49 +00:00
87e9832689 ENH: Tutorial update for channel case using pressure gradient source 2012-12-10 10:15:07 +00:00
c0e14130dc ENH: createBafflesDict: improved dictionary variable syntax 2012-12-05 16:27:04 +00:00
026ce6aad4 ENH: TJunctionFan: new dictionary variable syntax 2012-12-05 15:28:38 +00:00
5560076fac STYLE: Allrun: extraneous space 2012-12-05 14:53:28 +00:00
38539cc27c ENH: TJunctionFan: rewrite to createBafflesDict 2012-12-04 12:12:51 +00:00
2a686dc44c ENH: channel395: run in parallel. Tests processorCyclic. 2012-11-08 12:00:40 +00:00
182f660634 ENH: Updates to tutorial Allrun scripts 2012-10-26 10:27:30 +01:00
d7881f08a6 ENH: Tutorial file update 2012-10-25 16:33:41 +01:00
30eba3882a Tutorials: Removed unmaintained files 2012-08-02 13:37:15 +01:00
13ef974eff ENH: Adding -overwrite option to mirrorMesh and update tutorial 2012-04-20 12:16:50 +01:00
7dc2f6980d Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-04-19 16:17:17 +01:00
ccf1499eef ENH: elipsekkLOmega: Allrun script cleanup 2012-04-19 16:16:57 +01:00
28762dc468 Removed trailing whitespace 2012-04-19 14:17:30 +01:00
24bb1e34e2 ENH: TJunction: sensible initial values 2012-02-24 13:01:28 +00:00
d9f336dad2 GIT: TJunctionFan: remove unused boundary file 2012-02-21 13:02:21 +00:00
812aee3fe6 ENH: system/controlDict: added used libraries so run with disallowGenericxxx 2012-02-17 17:30:26 +00:00