Commit Graph

873 Commits

Author SHA1 Message Date
Henry Weller
0e7de1b8df tutorials/incompressible/simpleFoam/pitzDaily: Change to use SIMPLEC
With the SIMPLE "consistent" option and optimized relaxation factors
this tutorial now converges in 210 iterations, previously with SIMPLE it
took 950.  Despite the increase in cost per time-step due to the
increase in relaxation factors and number of solver iterations the
speed-up is 3.5x.
2015-06-23 20:33:48 +01:00
Henry
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
Henry
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
Henry
ec6ad11cbd tutorials/incompressible/simpleFoam/pitzDaily/0/omega: Correct value to be consistent with epsilon
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1720
2015-05-29 21:26:49 +01:00
Henry
38177526ff simpleFoam/SRFSimpleFoam: Added support for SIMPLEC
SIMPLEC (SIMPLE-consistent) is selected by setting "consistent" option true/yes:

SIMPLE
{
    nNonOrthogonalCorrectors 0;
    consistent yes;
}

which relaxes the pressure in a "consistent" manner and additional
relaxation of the pressure is not generally necessary.  In addition
convergence of the p-U system is better and reliable with less
aggressive relaxation of the momentum equation, e.g. for the motorbike
tutorial:

relaxationFactors
{
    equations
    {
        U               0.9;
        k               0.7;
        omega           0.7;
    }
}

The cost per iteration is marginally higher but the convergence rate is
better so the number of iterations can be reduced.

The SIMPLEC algorithm also provides benefit for cases with large
body-forces, e.g. SRF, see tutorials/incompressible/SRFSimpleFoam/mixer
and feature request http://www.openfoam.org/mantisbt/view.php?id=1714
2015-05-29 11:30:40 +01:00
Chris Greenshields
a28ac315ff windAroundBuildings: example case of wind flow around buildings 2015-05-19 17:12:33 +01:00
Henry
75282f9b11 Minor cleanup 2015-05-03 18:11:53 +01:00
Henry
dc5ed4cc1b MRFZone: Add regex and group support to the specification of nonRotatingPatches 2015-04-26 16:38:07 +01:00
Henry
5b1edc73b1 SRFModel: Changes origin to be user-input rather than hard-coded to (0 0 0)
Updated tutorials
2015-04-26 11:28:14 +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
c28036665d potentialFoam: No longer executes functionObjects by default
Use the new -withFunctionObjects command-line option to execute functionObjects
2015-04-25 21:56:14 +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
e68c5f666b Scripts: Add {} following -I option to xargs
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1573
2015-03-15 22:14:44 +00:00
Henry
67e8bd8bf9 shallowWaterFoam: Read hU rather than U to support complex e.g. time-varying BCs
Disadvantage is that the BC values have to be specified in terms of hU
rather than U.  The alternative would be to add complex code to map h
and U BCs into the equivalent for hU.
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1566
2015-03-13 22:14:08 +00:00
Henry
bbc223d28d Replace xargs -i with xargs -I as the -i option is deprecated 2015-03-13 17:56:52 +00:00
Henry
a124bbaa0c TurbulenceModels: Update non-linear models to use the new innerSqr function 2015-02-28 16:11:24 +00:00
Henry
c350b22cd5 Turbulence models: minor clean-up 2015-02-27 19:23:39 +00:00
Henry
d05b8e6dd2 ShihQuadraticKE: Rewritten and tested on the boundaryWallFunctions and pitzDaily cases 2015-02-27 18:13:30 +00:00
Henry
f6e868e1f7 tutorials/compressible/sonicDyMFoam/movingCone: sonic version of the pimpleDyMFoam/movingCone tutorial 2015-02-22 16:53:33 +00: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
eb266e2add turbulenceModels/LES/dynamicKEqn/dynamicKEqn: Added dynamic version of the one-equation SGS model 2015-02-14 13:08:08 +00:00
Henry
4129560601 potentialFoam: Solve for velocity potential named Phi rather than using the pressure field for this purpose
The Phi field is read if available otherwise created automatically with
boundary conditions obtained automatically from the pressure field if
available (with optional name) otherwise inferred from the velocity
field.  Phi Laplacian scheme and solver specification are required.  See
tutorials for examples.
2015-02-14 11:03:37 +00:00
Henry
1edf292c00 Correct Doxygen multiline comments 2015-02-14 10:59:29 +00:00
Henry
332c3cc37f Tutorials: change topoSetDicts to avoid duplicate names 2015-02-12 10:01:31 +00:00
Henry
acbd73cb5b tutorials/incompressible/simpleFoam/pitzDaily: Setup to run with range of turbulence models 2015-01-28 18:36:03 +00:00
Henry
fb30659b25 tutorials/incompressible/pimpleFoam/elipsekkLOmega: added non-orthogonal correctors to improve stability when running longer 2015-01-28 09:19:20 +00:00
Henry
d815440f52 tutorials/incompressible/pimpleFoam/elipsekkLOmega: Updated 2015-01-27 15:09:03 +00:00
Henry
4f048a8d9c TurbulenceModels: Added LRR model with Daly-Harlow generalized gradient diffusion 2015-01-24 22:10:17 +00:00
Henry
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
Henry
78ca0ce02c Add simulationType entry even for simpleFoam cases
so that generic utilities like yPlus select the appropriate turbulence model
2015-01-21 21:08:19 +00:00
Henry
fbdc5f119a Added updated nut.gz file 2015-01-21 19:38:40 +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
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
Henry
4e4928054a atmBoundaryLayer: rationalized U and epsilon BCs and added the corresponding k BC 2014-12-31 23:03:26 +00:00
Henry
fcd4213fad atmBoundaryLayer: Attempt to rationalize the inputs and documentation to make these BCs more usable
Resolves bug report http://www.openfoam.org/mantisbt/view.php?id=860
2014-12-29 17:39:20 +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
Henry
f197f9545f tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D: Use PIMPLE rather than PISO to ensure updated fluxes are used in momentum equation 2014-07-17 11:30:02 +01:00
andy
d22da01ef5 ENH: tutorial update: movingCone - updated blockMeshDict 2014-07-15 15:59:34 +01:00
Henry
0412aaf40b Removed spurious $1 2014-07-15 11:34:58 +01:00
Henry
7d5e8c2a6f Updated motorBike tutorial to correspond to the training course 2014-07-11 15:48:54 +01:00
Henry
d49889402f sixDoFRigidBodyMotion: Add support to specify the centre for rotation independent of the centre of mass
via the point, line or plane constraints.
2014-05-16 15:35:11 +01:00
OpenFOAM-admin
fbb3ddf2c4 Updated for release 2.3.0 2014-02-17 10:21:46 +00:00
william
8acf2daaba BUG: tutorial fixes for 32 bit ubuntu packs 2014-02-11 10:15:00 +00:00
william
333818408f STYLE: sh instead of bash for tutorial scripts 2014-02-05 16:53:44 +00:00
william
11416d066d BUG: removed bash-dependent test for the existence of gnuplot 2014-02-05 16:20:53 +00:00
andy
e976c1d8dd ENH: cavity tutorial updates 2014-02-03 12:49:42 +00:00
Henry
ee4e19ef85 Renamed folder -> directory for consistency with POSIX and the rest of OpenFOAM 2014-01-30 13:01:04 +00:00
andy
c380695ead ENH: tutorial update 2014-01-27 15:41:54 +00:00
mattijs
8acfa4692a STYLE: snappyHexMeshDict: removed optional parameter 2014-01-27 12:25:56 +00:00
mattijs
292da7605e Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev 2014-01-24 16:29:30 +00:00
mattijs
7b60265f3c BUG: propeller: create inlet and outlet from wrong faceZone 2014-01-24 16:28:04 +00:00
andy
d7be8d9d43 Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev 2014-01-24 16:01:26 +00:00
mattijs
827456621d ENH: propeller: meshed to outerCylinder 2014-01-24 15:29:18 +00:00
andy
73e876c7fb ENH: tutorial update - incompressible 2014-01-24 15:21:10 +00:00
mattijs
3341e7c7c1 ENH: GAMG: use cacheAgglomeration unless moving case 2014-01-23 17:40:47 +00:00
Henry
c392b0748a tutorials: deprecate filteredLinear.* in favour of LUST for LES cases 2014-01-23 17:13:58 +00:00
Henry
71aa1c53a0 Merge branch 'master' of ssh://dm/home/dm4/OpenFOAM/repositories/OpenFOAM-dev 2014-01-23 11:29:09 +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
mattijs
cb01bcec31 ENH: propeller: use functionObjects 2014-01-23 10:53:24 +00:00
mattijs
81670ff8e0 ENH: propeller: added renumbering and vorticity 2014-01-23 09:51:57 +00:00
mattijs
a0a13075c0 ENH: propeller: updated for new snappyHexMesh faceType capability 2014-01-22 17:35:45 +00:00
mattijs
1dc9207000 ENH: propeller: use smoothSolver on transported quantities 2014-01-22 11:27:17 +00:00
andy
e7201c0326 ENH: tutorial updates 2014-01-20 16:25:13 +00:00
andy
8f776987df ENH: tutorial updtaes 2014-01-17 14:11:55 +00:00
andy
e5a5b89509 ENH: mapFields - deprecated old utility in favour of mapFieldsNew and renamed 2014-01-14 10:41:50 +00:00
mattijs
63db7ce221 STYLE: snappyHexMeshDict: remove unused entries 2014-01-09 11:00:28 +00:00
mattijs
64b6f921e8 ENH: icoFoam tutorials: clean up script 2013-12-19 11:21:31 +00:00
mattijs
2a4b7df8fc ENH: pitzDailyExptInlet: do not supply initial value 2013-12-18 11:34:48 +00:00
Henry
2612f6beac sixDoFRigidBodyMotion: Renamed constraints 2013-12-16 21:19:18 +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
d57f983401 Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev 2013-12-13 15:57:35 +00:00
mattijs
5552d5500b ENH: angledDuct: renamed wall to walls 2013-12-13 14:34:08 +00:00
andy
eee22d19b1 Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev 2013-12-12 13:01:23 +00:00
andy
a97070c303 ENH: Added pimpleam pitzDaily test case 2013-12-12 12:57:19 +00:00
mattijs
b713bc7124 Merge branch 'master' of /home/dm4/OpenFOAM/repositories/OpenFOAM-dev 2013-12-11 14:24:51 +00:00
Henry
3ec31ba3f7 pimpleDyMFoam/movingCone: change axis to empty 2013-12-10 14:10:28 +00:00
mattijs
e9485ae968 GIT: boundary: generated file 2013-12-06 18:05:33 +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
andy
636215a0ea ENH: functionObjects - updated writing to file 2013-11-25 10:52:20 +00:00
andy
9c7263fee3 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2013-11-20 16:23:22 +00:00
andy
80a191e7dd BUG: Reinstated missing tutorial files 2013-11-20 16:23:12 +00:00
mattijs
69ee5fa8dd ENH: snappyHExMeshDict: shifted locationInMesh 2013-11-20 15:36:44 +00:00
andy
cc8e6e0f7b ENH: Removed deleted files on tutorial clean-up 2013-11-20 11:52:04 +00:00
mattijs
1d679022bb ENH: TJunctionFan: new createBaffles syntax 2013-11-14 09:56:43 +00:00
andy
67a49d125d ENH: Tutorial Allclean script updates 2013-10-11 12:41:11 +01:00
mattijs
257e822099 ENH: angledDuct: renamed to straightDuctImplicit 2013-10-09 09:42:53 +01:00
mattijs
72c05d9ee1 ENH: angledDuct: removed bend 2013-10-09 09:42:22 +01:00
mattijs
8bec2af406 ENH: angledDuct: wrong version 2013-10-03 12:43:31 +01:00
mattijs
94a3cf9a79 ENH: angledDuct: foamy version of angledDuctImplicit 2013-10-03 12:41:12 +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
mattijs
22cf7ca39b BUG: TJunctionFan: incorrect createBafflesDict 2013-09-06 16:13:06 +01:00
andy
d9805740c7 ENH: Tutorial update 2013-09-02 14:25:29 +01:00
andy
35aba04b2a Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2013-08-23 10:56:44 +01:00
Henry
64ba9b56a6 tutorials/incompressible/pisoFoam/les/motorBike: In test mode do not run LES 2013-08-22 16:53:24 +01:00
andy
00e73a488b BUG: CSV data entry - corrected writing - mantis #971 2013-08-20 09:50:05 +01:00
Henry
febbc29a90 tutorials: ensure the creation of the 0-directory as necessary 2013-08-13 23:22:50 +01:00
mattijs
c4a65259ad GIT: boundary: remove usued file 2013-08-07 11:27:34 +01:00
mattijs
9aa77356b6 GIT: boundary: unused 2013-08-07 11:09:26 +01:00
andy
4d3b3e7a9f Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2013-07-30 12:34:41 +01:00
Henry
f75138d1f6 solidBodyMotionFunctions: Changed CofG to origin where appropriate and support run-time selectable omega specification in rotatingMotion 2013-07-30 09:41:27 +01:00
andy
ff5ed9541b ENH: Tutorial update 2013-07-30 09:40:20 +01:00
mattijs
9ad0015d95 STYLE: boundary: remove regenerated files 2013-07-16 09:54:02 +01:00
mattijs
520d1021ea ENH: meshQualityDict: revert to 22x settings 2013-07-08 09:10:16 +01:00
mattijs
f2397e7f41 ENH: snappyHexMesh: clean up mesh quality settings 2013-07-02 15:01:32 +01:00
Henry
6e92fb181d pisoFoam/les/motorBike tutorial: correct schemes and settings 2013-06-27 16:35:37 +01:00
Henry
8fa54b1903 pisoFoam/les/motorBike tutorial: corrected endTime for simpleFoam run 2013-06-27 16:14:12 +01:00
mattijs
20726d5371 STYLE: boundary: generated file 2013-06-20 16:51:07 +01:00
Henry
14c3689fec epsilon/omega: ensure non-0 values are set on all boundaries 2013-06-20 16:33:15 +01:00
Henry
f1f344b812 Merge branch 'master' of ssh://dm/home/dm4/OpenFOAM/OpenFOAM-dev 2013-06-20 10:45:19 +01:00
Henry
2d124e8e8b Removed blank-line 2013-06-20 10:40:01 +01:00
mattijs
c7f57ed107 ENH: pipeCyclic: startup value for epsilon on wall 2013-06-20 10:18:10 +01:00
mattijs
c666c27078 ENH: boundary: generated file 2013-06-20 10:07:42 +01:00
mattijs
89cca84446 ENH: motorBike: cleanup 2013-06-18 09:44:14 +01:00
mattijs
1639a16bb7 ENH: motorBike: moved meshQuality into separate dictionary 2013-06-05 10:13:52 +01:00
mattijs
3c1893a8d8 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2013-06-04 11:33:22 +01:00
mattijs
38f74de728 ENH: ACMI: more notes in README 2013-06-04 11:33:00 +01:00
andy
173549c88a ENH: Tutorial updates 2013-06-03 18:27:18 +01:00
andy
4dd19e8025 ENH: Updated cavity tutorials to use new mapFields 2013-06-03 17:33:46 +01:00
andy
96de893e0b ENH: Updated ACMI tutorial notes 2013-06-03 10:09:34 +01:00
andy
dfb91b491a ENH: Tutorial update 2013-05-31 16:09:19 +01:00
andy
712cb7f086 STYLE: Updated tutorial file header 2013-05-28 16:15:31 +01:00
andy
bd110e12c8 Merge branch 'ACMI' 2013-05-28 15:56:26 +01:00
andy
27fdf34f03 ENH: Added ACMI tutorial case 2013-05-28 15:55:16 +01:00
Sergio Ferraris
91994d4775 BUG: Deleting redundant entried in RASProperties and adding
reference paper
2013-05-23 17:46:53 +01:00
Henry
042354a88e rhoPimpleDyMFoam: New version of rhoPimpleFoam for moving-mesh cases 2013-04-29 14:34:15 +01:00
Henry
48272dc5ab alphatWallFunctions: add "compressible::" qualifier to compressible alphat wall-functions 2013-04-10 17:04:49 +01:00
mattijs
fcf165f8f2 ENH: motorBike: disable secondary purge; have drag,lift every timestep 2013-04-03 10:35:44 +01:00
andy
b59ca3fc1c ENH: Removed unused entries in tutorial topoSetDict 2013-03-21 09:33:12 +00:00
mattijs
48d8fa9e5c STYLE: cuttingPlane: correct version number 2013-03-14 11:47:46 +00:00
mattijs
41aa6d637c ENH: movingCone: add cuttingPlane to show off moving mesh sampling 2013-03-14 10:01:05 +00:00
mattijs
65533b3e99 ENH: motorBike tutorial: have hourly restart files 2013-02-27 10:54:06 +00:00
andy
fd8380eebe ENH: Tutorial update 2013-02-18 17:12:27 +00:00
andy
11593b2e48 ENH: Tutorial update 2013-02-18 14:25:59 +00:00
andy
0ed07eadcf ENH: Tutorial update 2013-02-15 12:39:06 +00:00
mattijs
7bc63894a5 BUG: createPatchDict: new syntax 2013-02-12 14:21:59 +00:00
andy
2ee940af19 ENH: removed unused file 2013-01-21 17:40:52 +00:00
andy
03ee3a5046 GIT: merge conflict resolution 2013-01-21 16:48:22 +00:00
sergio
9692a52e3a ENH: Update tutorials using coordinate systems for porosity models 2013-01-21 12:37:54 +00:00
andy
fd7bcb62e9 ENH: Updated tutorial 2013-01-18 08:32:19 +00:00
andy
985219c0ff ENH: Tutorial file updates 2013-01-09 14:05:53 +00:00
andy
d1bd734059 ENH: Updated tutorial files 2013-01-08 09:50:59 +00:00
andy
cbbc796bb2 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2013-01-04 11:16:27 +00:00
mattijs
ab4ade1b1f ENH: caseDicts: add constraintTypes to pipeCyclic 2013-01-02 11:38:17 +00:00
mattijs
59c1c382e4 BUG: Allrun: old subsetMesh syntax 2012-12-19 10:43:15 +00:00
andy
b3eac73a74 BUG: Updated application name for tutorial 2012-12-18 09:31:12 +00:00
andy
e2955dd6f7 ENH: Tutorial updates for run-time selectable sources 2012-12-18 09:30:47 +00:00
Henry
db89978ade Updated headers for Laurence and Andy 2012-12-17 11:42:00 +00:00
andy
b501c169e5 BUG: Updated solver for coupled-solve case 2012-12-10 17:19:59 +00:00
andy
a0eeb3f09d ENH: Removed unused entry from tutorial input dictionary 2012-12-10 10:16:49 +00:00
andy
87e9832689 ENH: Tutorial update for channel case using pressure gradient source 2012-12-10 10:15:07 +00:00
andy
7769292a33 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-12-05 17:43:19 +00:00
mattijs
c0e14130dc ENH: createBafflesDict: improved dictionary variable syntax 2012-12-05 16:27:04 +00:00
andy
c62d3a7a40 ENH: Updated MRFSimpleFoam mixerVessel2D case to use simpleFoam 2012-12-05 15:56:05 +00:00
mattijs
c8a0ea85cc Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-12-05 15:53:26 +00:00
mattijs
026ce6aad4 ENH: TJunctionFan: new dictionary variable syntax 2012-12-05 15:28:38 +00:00
Henry
acbbaf3f4d tutorials: Updated "limited" snGrad schemes 2012-12-05 14:58:42 +00:00
mattijs
5560076fac STYLE: Allrun: extraneous space 2012-12-05 14:53:28 +00:00
andy
b1f90c8360 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-12-04 18:08:50 +00:00
andy
34840f3a28 ENH: Removed unused file 2012-12-04 18:08:03 +00:00
mattijs
888fb9377a ENH: motorBike: disable feature line snapping 2012-12-04 15:05:35 +00:00
mattijs
1c37be480a ENH: propeller: convert to createBafflesDict 2012-12-04 15:02:35 +00:00
mattijs
401a11895a STYLE: controlDict: add libraries for patch fields 2012-12-04 15:01:53 +00:00
mattijs
38539cc27c ENH: TJunctionFan: rewrite to createBafflesDict 2012-12-04 12:12:51 +00:00
Henry
f34970eb87 tutorials/incompressible/pisoFoam/ras/cavityCoupledU: Simple demonstration of the vector-coupled solver 2012-11-28 15:10:41 +00:00
andy
d32702c233 ENH: Tutorial update 2012-11-27 17:28:59 +00:00
mattijs
b4bb215a8c ENH: subsetMesh: have -cellSet and -dict argument 2012-11-23 11:27:46 +00:00
mattijs
c76869eb71 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-11-20 16:02:46 +00:00
andy
b32ba6fbde Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-11-19 17:43:15 +00:00
andy
7888a0d8bb ENH: Updated comment/description 2012-11-19 09:37:41 +00:00
Henry
f7f2897fc6 Merge branch 'master' of ssh://opencfd:8007/home/dm4/OpenFOAM/OpenFOAM-dev 2012-11-18 22:44:09 +00:00
Henry
6cf770cbee CrankNicholsonDdtScheme: renamed CrankNicolsonDdtScheme 2012-11-18 22:43:56 +00:00
mattijs
5e7ef409f6 ENH: motorBike: demonstrate secondary time controls 2012-11-16 14:53:52 +00:00
mattijs
2a686dc44c ENH: channel395: run in parallel. Tests processorCyclic. 2012-11-08 12:00:40 +00:00
mattijs
7d2db67383 ENH: motorBike: enable feature snapping. add patchSummary 2012-11-07 09:00:11 +00:00
andy
302a997cb0 ENH: tutorial file updates 2012-11-02 16:19:33 +00:00
andy
143450b480 ENH: Re-added missing tutorial files 2012-10-30 12:27:06 +00:00
andy
dec670d2f3 ENH: Updated MRF tutorials 2012-10-30 08:22:11 +00:00
andy
182f660634 ENH: Updates to tutorial Allrun scripts 2012-10-26 10:27:30 +01:00
andy
d7881f08a6 ENH: Tutorial file update 2012-10-25 16:33:41 +01:00
andy
577c478ae8 ENH: Tutorial input file update 2012-10-19 16:31:43 +01:00
andy
97ac66ad9e ENH: Updated porosity-based tutorials 2012-10-18 17:31:11 +01:00
andy
c497dd4ae2 ENH: Updated tutorial file 2012-10-16 10:01:38 +01:00
mattijs
674990765a ENH: surfaceFeatureExtract: new syntax for non-manifold edges 2012-10-11 11:04:24 +01:00
andy
fd677b9f14 ENH: Tutorial file updates 2012-10-01 11:40:11 +01:00
andy
f1deb4445e GIT: conflict resolution 2012-09-26 12:13:44 +01:00
andy
36b19521f3 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-09-26 10:05:44 +01:00
andy
66eac7a20b ENH: Added example of using data bins to motorbike tutorial 2012-09-24 12:40:06 +01:00
Henry
a114345eab Thermodynamics and sub-models: Removed "Sp" boundedness corrections on transport, replaced with "bounded Gauss" scheme 2012-09-21 14:34:42 +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
andy
8489de277d GIT: conflict resolution 2012-09-17 12:03:11 +01:00
mattijs
d1cdf12be4 ENH: motorBike tutorial: use patchGroups 2012-09-10 14:24:31 +01:00
mattijs
f8268c433e STYLE: controlDict: removed tab 2012-08-31 17:02:10 +01:00
mattijs
bfbfa8f4a5 ENH: motionSolvers: dynamicMeshDict new syntax 2012-08-31 16:51:26 +01:00
andy
b63f0a7451 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-08-10 18:19:33 +01:00
sergio
4113feb869 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-08-03 14:49:25 +01:00
sergio
2d7f780e9a ENH: changing tolerances for p and U and diskDir 2012-08-03 14:48:13 +01:00
andy
a3870d65df GIT: Merge/resolve conflict 2012-08-03 12:28:20 +01:00
Henry
03fa349157 Merge branch 'master' of ssh://dm/home/dm4/OpenFOAM/OpenFOAM-dev 2012-08-02 15:30:17 +01:00
Henry
6db2e55ab0 tutorials: Removed unmaintained files and unused dictionary entries 2012-08-02 15:30:10 +01:00
andy
79a4326b25 ENH: Clean-up tutorial geometries if copied from resources folder 2012-08-02 14:56:33 +01:00
Henry
30eba3882a Tutorials: Removed unmaintained files 2012-08-02 13:37:15 +01:00
Henry
ccba34694d Updated headers 2012-07-25 17:05:46 +01:00
Henry
3ff15d1e2e pisoFoam/les/motorBike: Corrected 2012-07-25 16:54:33 +01:00
Henry
39b12cd9ab simpleFoam/turbineSiting: Simplified case to mesh in parallel but avoid the need for redistribution 2012-07-25 16:54:10 +01:00
andy
d99100cee2 GIT: resolve merge conflict 2012-07-25 09:27:24 +01:00
Henry
6a5711af69 Removed unused file 2012-07-24 15:24:22 +01:00
Henry
1df540b4f5 simpleFoam/turbineSiting: corrected fvSchemes 2012-07-24 15:04:40 +01:00
andy
8cfaa5c223 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-07-12 11:14:48 +01:00
andy
b38fa5cb22 BUG: Corrected typo in tutorial fvSolution 2012-07-09 17:19:29 +01:00
mattijs
2587c7d641 GIT: boundary: not needed 2012-07-09 09:24:23 +01:00
mattijs
a40ebc83ea ENH: motorBike: correct application 2012-07-06 15:15:00 +01:00
mattijs
84ff26263b Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-07-03 13:07:01 +01:00
Henry
ef2bc10d11 nutWallFunctions: Generalised for RAS and LES
nuSgsUSpaldingWallFunction removed, now use nutUSpaldingWallFunction
2012-07-03 10:34:20 +01:00
mattijs
cc1d0d27e4 ENH: mixerAMI: use reconstructPar as well 2012-07-02 13:55:57 +01:00
mattijs
971e5fe30f ENH: movingCone: show usage of uniformFixedValue 2012-06-29 15:38:25 +01:00
mattijs
c8017cb44d BUG: turbineSiting: removed extranous 'value' field of uniformFixedValue 2012-06-29 15:17:06 +01:00
andy
1e0a9c5ec8 ENH: Updated tutorial dictionary 2012-06-12 13:16:40 +01:00
Henry
b402c87b22 pipeCyclic/0.org/U: Updated constructor for Clang 2012-06-06 21:13:42 +01:00
andy
afdd7db8b7 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-05-25 13:50:57 +01:00
andy
5da9ae8f2b ENH: Simplified tutorial changeDictionaryDict 2012-05-25 13:50:41 +01:00
mattijs
5fe2004059 BUG: turbineSiting: remove *ProcAddressing files after parallel snappyHexMesh 2012-05-24 11:51:21 +01:00
mattijs
0136deb88e ENH: extrudeMesh: make edge collape optional 2012-05-22 17:34:03 +01:00
sergio
13ef974eff ENH: Adding -overwrite option to mirrorMesh and update tutorial 2012-04-20 12:16:50 +01:00
mattijs
7dc2f6980d Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2012-04-19 16:17:17 +01:00
mattijs
ccf1499eef ENH: elipsekkLOmega: Allrun script cleanup 2012-04-19 16:16:57 +01:00
laurence
dfac320401 BUG: Add surfaceFeatureExtract dictionary defaults 2012-04-19 15:04:51 +01:00
laurence
9ed9e9327e Merge branch 'surfaceFeatureExtract-Tutorials' 2012-04-19 15:04:14 +01:00
laurence
12d560aa03 BUG: Add surfaceFeatureExtract dictionaries to the tutorials 2012-04-19 14:37:31 +01:00
Henry
28762dc468 Removed trailing whitespace 2012-04-19 14:17:30 +01:00
sergio
48c70a91df ENH: Adding dimensioSet to DataEntry and modify MRFZone entry types 2012-04-13 16:31:07 +01:00
andy
7f4a32a5d7 BUG: Corrected turbineSiting tutorial nut initial condition 2012-03-07 11:07:46 +00:00
mattijs
91c73098fa ENH: streamLines: updated syntax for functionObject 2012-03-02 12:12:36 +00:00
andy
6694baf96f ENH: tutorial script: rm was producing an error if folder was not presnt 2012-02-27 10:24:22 +00:00
mattijs
24bb1e34e2 ENH: TJunction: sensible initial values 2012-02-24 13:01:28 +00:00
mattijs
d9f336dad2 GIT: TJunctionFan: remove unused boundary file 2012-02-21 13:02:21 +00:00
mattijs
703954e483 ENH: propeller tutorial: no need for boundary file 2012-02-20 13:03:44 +00:00
mattijs
812aee3fe6 ENH: system/controlDict: added used libraries so run with disallowGenericxxx 2012-02-17 17:30:26 +00:00
mattijs
2c973f081d ENH: propeller: simplify setup (remove changeDictionary to add patches) 2012-02-17 17:24:37 +00:00
sergio
e061c08434 Tutorial for kklOmega turb model 2012-02-15 16:58:44 +00:00
mattijs
5e7d5dbc03 ENH: motorBike/controlDict: add necessary dictionaries 2012-02-14 18:20:14 +00:00
mattijs
f615ba2ab6 STYLE: wallBoundedStreamLines: added comment 2012-02-07 09:38:11 +00:00
mattijs
54b5b66023 ENH: wallBoundedStreamLine: updated motorBike tutorial. 2012-02-07 08:47:50 +00:00
mattijs
81f626c536 BUG: channel395: asymmetric expansion ratio 2012-02-06 09:08:48 +00:00
sergio
78c6ac6133 ENH: Changes to the turbine site tutorial 2012-02-02 15:32:35 +00:00
andy
75bd44d7fd ENH: Updated channelFoam tutorial to use pimpleFoam with sourcesProperties 2012-01-30 17:59:53 +00:00
Henry
eecd71f380 pisoFoam motorBike tutorial: correct relaxation factors 2012-01-19 16:28:01 +00:00
mattijs
72520e6c95 ENH: snappyHexMeshDict: fixed (unused) setting 2011-12-23 12:12:50 +00:00
mattijs
0504c7a4f6 STYLE: system/streamLines: documented new tracking option 2011-12-21 11:22:02 +00:00
andy
2dc13eb942 ENH: tutorialse: use orthogonal scheme on orthogonal meshes 2011-12-16 15:30:58 +00:00
mattijs
657e68ed78 ENH: ensightWriter: added ensight format to sampledSets 2011-12-15 10:16:59 +00:00
mattijs
72ef3d26e4 ENH: renumberMesh: backwards compatibility: use default if no system/renumberMeshDict 2011-12-09 11:27:11 +00:00
mattijs
cb15093222 ENH: renumberMeshDict: added to tutorials 2011-12-08 16:39:51 +00:00
mattijs
523f8d6915 BUG: GeometricBoundaryField: handle patch groups 2011-12-06 21:16:12 +00:00
Sergio Ferraris
4351cb49ea ENh: Change schemes for oppositeBurningPanles 2011-12-02 12:36:13 +00:00
andy
2b86924231 STYLE: Minor code formatting 2011-12-01 17:15:42 +00:00
andy
13d6a66f3b BUG: Re-instated BCs in TJunctionFace tutorial 2011-12-01 17:14:06 +00:00
Henry
70592ba210 Tutorials: updates to run with the latest developments 2011-11-28 16:15:42 +00:00
andy
6818acac51 STYLE: tutorial version 2011-11-28 09:56:23 +00:00
andy
d01a8bc9df ENH: Updated total pressure BC for TJunction tutorials 2011-11-28 09:54:45 +00:00
andy
c5c5e0b3eb Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2011-11-25 16:14:10 +00:00
andy
e3b395ae20 ENH: Restructed CAD geometries in tutorials 2011-11-25 16:06:48 +00:00
mattijs
f0a68c0098 STYLE: tutorials: removed etraneous execute bit (chmod -x) 2011-11-25 15:59:59 +00:00
mattijs
c95300a083 STYLE: tutorials: topoSet instead of setSet 2011-11-25 12:18:45 +00:00
mattijs
6c4afb89db ENH: propeller: clear feature lines 2011-11-25 11:53:42 +00:00
mattijs
0043cf6d3a STYLE: tutorials: use topoSet 2011-11-24 16:11:05 +00:00
Henry
dc810ea88d Thermodynamics: Completed most of the conversion of the enthalpy source 2011-11-23 16:56:13 +00:00
andy
b38f6be7b4 ENH: Updated turbineSiting tutorial input files 2011-11-23 10:25:32 +00:00
andy
fbd4abd21c BUG: Corrected turbine siting tutorial case initial conditions 2011-11-22 17:01:17 +00:00
andy
6286b2e679 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2011-11-22 16:02:01 +00:00
andy
fdee1a2786 STYLE: minor formatting 2011-11-22 15:00:51 +00:00
mattijs
0e11b5090e ENH: redistributePar: renamed redistributeMeshPar 2011-11-22 12:56:28 +00:00
andy
6b71297665 ENH: tutorial input file updates related to DataEntry changes 2011-11-21 18:38:47 +00:00
andy
9086a97204 ENH: Added propeller AMI test case for pimpleDyMFoam solver 2011-11-18 12:06:27 +00:00
andy
b9975ffbac STYLE: Updated web-link for tutorial files 2011-11-18 10:16:55 +00:00
andy
43936be96b ENH: Added oscillatingBox tutorial case for potentialFreeSurfaceFoam solver 2011-11-18 10:10:39 +00:00
mattijs
a05f38db94 ENH: TJunction: changed to run piso mode (1 outer, 2 inner correctors) 2011-11-15 10:59:34 +00:00
mattijs
568917214c ENH: pipeCyclic/Allrun: enable dynamic code 2011-11-15 10:30:34 +00:00
mattijs
fb1783ab29 ENH: pipeCyclic: pipe using AMI 2011-11-14 15:10:11 +00:00
mattijs
6f84a643eb ENH: mixerVesselAMI: change relative solvers to smoothers. 2011-11-11 15:08:04 +00:00
mattijs
6bedf22896 ENH: mixerVesselAMI2D: set-up to use GAMG and optional parallel running 2011-11-09 12:36:05 +00:00
mattijs
b4c2787919 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2011-11-07 13:44:16 +00:00
andy
86666c3f5f ENH: Updates to AMI 2-D mixer tutorial 2011-11-07 12:20:40 +00:00
mattijs
4156c354c3 STYLE: controlDict: remove unused entries 2011-11-04 10:28:49 +00:00
andy
63e57ff041 STYLE: corrected typo 2011-11-03 10:24:20 +00:00
andy
140ece3b5e ENH: deprecated windSimpleFoam and moved turbineSiting tutorial to simpleFoam 2011-11-02 17:03:38 +00:00
andy
76504a6984 ENH: Updated windSimpleFoam turbineSiting tutorial field sources 2011-11-02 15:33:53 +00:00
Henry
a0459cb253 Minor reformatting 2011-10-27 17:19:57 +01:00
Henry
6340aa6145 Corrected web-site 2011-10-21 14:42:51 +01:00
Henry
a05d810b15 Merge branch 'master' of ssh://dm/home/dm4/OpenFOAM/OpenFOAM-dev 2011-10-21 14:37:26 +01:00
Henry
7b03bdefd8 Update version 2011-10-21 14:37:17 +01:00
Henry
ff4d99f439 Added motorBike LES from Gijs 2011-10-21 14:31:45 +01:00
mattijs
a10f84ac07 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev 2011-10-19 18:27:18 +01:00
mattijs
9914c941da ENH: streamLine: 'UName' instead of 'U' 2011-10-19 18:26:37 +01:00
Sergio Ferraris
1f42aad419 BUG: Changing min(z0, 0.001) to max(zo, 0.001) 2011-10-19 10:04:31 +01:00
mattijs
99c860d2e2 ENH: Time: secondary write controls, signal handling 2011-10-05 17:31:12 +01:00
mattijs
01e3850eda STYLE: snappyHexMeshDict: adapted comment on maxLocalCells. 2011-09-16 18:23:47 +01:00
mattijs
67d17dcb12 STYLE: maxerVesselAMI2D: remove unused file 2011-09-16 14:43:43 +01:00
mattijs
906acdcdef Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
Conflicts:
	src/postProcessing/functionObjects/field/nearWallFields/nearWallFields.C
2011-09-13 10:14:15 +01:00
andy
f4f078b979 ENH: Updated tutorial fvSolution files to employ updated solution ctrl params 2011-09-09 14:36:28 +01:00
andy
8ae9569085 ENH: Multiple commits - lumped due to git index file corruption
- Re-located mapped point patches
- Updated mapped patch write
- deprecated directMapped in favour of mapped
- updated resulting dependancies - apps/libs/tuts
2011-09-09 12:05:12 +01:00
andy
7b431d720f ENH: Updated AMI tutorial case 2011-09-08 16:05:50 +01:00
andy
32be9b48de STYLE: corrected tutorial file header 2011-09-07 14:52:34 +01:00
andy
f790c24c6b Merge branch 'AMI' 2011-09-07 14:50:57 +01:00
andy
6b12073a6b ENH: Updated AMI tutorial case 2011-09-07 14:41:13 +01:00
andy
f8256175eb ENH: Removed unnecessary libs entry from tutorial file 2011-09-07 13:12:31 +01:00
andy
3a2b4dca63 ENH: Updated AMI functionality - re: projection surface 2011-09-01 15:45:20 +01:00
Henry
b1feecf7c3 SRFVelocityFvPatchVectorField: Updated the definition of "relative" so that it refers to relative to the absolute frame. 2011-08-26 14:30:27 +01:00
andy
53ff66996e BUG: Removed spurious entries in transport dictionary 2011-08-25 12:08:42 +01:00
andy
43f56cfaf6 BUG: Removed spurious entries in transport dictionary 2011-08-25 12:06:40 +01:00
andy
ad77741dec ENH: Updates to AMI and tutorial 2011-08-25 10:53:52 +01:00
andy
c82b075b64 ENH: Minor AMI code update 2011-08-24 10:44:09 +01:00
andy
fe2633b094 ENH: Added AMI mixed tutorial case 2011-08-24 09:46:39 +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
334f5bf2d9 Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2011-08-06 21:29:58 +01:00
Henry
a412bb43ce motorBike tutorial: Added "value" entries to allow post-processing of 0 2011-08-06 21:29:53 +01:00
andy
3922f8a0e5 BUG: Tutorial file with incorrect object name 2011-08-04 17:30:21 +01:00
mattijs
d7429428a2 ENH: TJunction: increase endTime to converge 2011-07-28 15:45:28 +01:00
mattijs
79f76ae634 STYLE: date and version 2011-07-26 13:51:02 +01:00
mattijs
48bf137f86 ENH: TJunction: updated cases to use topoSet. Changed to relative pressure level 2011-07-22 17:39:19 +01:00
mattijs
74e71fe1d7 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2011-07-19 22:09:26 +01:00
mattijs
7c8e7fd228 ENH: Allrun: unset foam_setnan so redistributeMeshPar does not crash.
redistributeMeshPar creates patch fields 'out of nothing'. These get
initialised later by changeDictionary but up till then make sure code continues
2011-07-18 15:38:37 +01:00
Henry
bc524d9489 twoLiquidMixingFoam/lockExchange: new tutorial 2011-07-15 11:14:28 +01:00
Henry
576805a3f2 Corrected header 2011-07-06 12:42:43 +01:00
Henry
64ec1bab07 simpleFoam/motorBike tutorial: Changed loaded libraries to avoid error on completion 2011-07-06 12:40:26 +01:00
Henry
0ce485edaa SRFPimpleFoam/rotor2D tutorial: corrected headers 2011-06-24 13:55:30 +01:00
Henry
f225ff9de5 SRFPimpleFoam/rotor2D tutorial: corrected headers 2011-06-24 13:54:38 +01:00
Henry
9da17e04ee SRFPimpleFoam: upgraded from OpenFOAM-1.7.x for OpenFOAM-dev 2011-06-24 13:40:20 +01:00
OpenFOAM-admin
c720299876 ENH: Reverted back to version dev 2011-06-17 10:08:20 +01:00
mattijs
7517f6f9b2 BUG: explicitSource: work on matrix, not matrix.source() level 2011-06-15 11:06:13 +01:00
andy
050bcfafb3 GIT: Conflict resolution 2011-06-08 16:34:27 +01:00
andy
29c485361a STYLE: renamed version 2.0 -> 2.0.0 2011-06-08 16:31:07 +01:00
Henry
6038d5b02b tutorials: Updated run and clean scripts and corresponding 0 directories 2011-06-08 16:28:18 +01:00
Henry
b746e7cd5b simpleFoam/motorBike tutorial: run potentialFoam without functionObjects 2011-06-08 12:10:55 +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
Henry
59eb1f4dac Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2011-05-26 12:43:21 +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
mattijs
9b184b4838 ENH: snappyHexMeshDict: updated comment 2011-05-23 16:09:20 +01:00
graham
3868902d80 STYLE: Using $internalField for lowerWall as per training notes. 2011-05-16 10:26:40 +01:00
andy
a81bfbfa09 ENH: Tutorial updates 2011-05-12 12:17:39 +01:00
andy
2b4679d67b STYLE: Updated tutorial case names 2011-05-12 10:30:29 +01:00
Henry
e3eae71014 Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2011-04-28 21:14:18 +01:00
Henry
24adaa0e1d Updated tutorials 2011-04-28 21:14:13 +01:00
mattijs
eaa2a9f1b5 COMP: tutorial scripts: add #!/bin/sh, chmod +x etc. 2011-04-28 17:47:11 +01:00
mattijs
0f0dd35413 STYLE: createPatchDict: updated comment 2011-04-28 10:40:26 +01:00