Henry Weller
d98136e122
tutorials: Removed unnecessary "boundary" files
2015-11-13 20:05:37 +00:00
Chris Greenshields
ad24568623
Redundant boundary.org files removed from tutorial cases
2015-11-13 16:59:58 +00:00
mattijs
4ef54948f7
ENH: oscillatingInletPeriodicAMI2D: changed interfaces on either side to be same size
...
Added description of case.
2015-11-09 10:41:02 +00:00
william
29e1c6e77b
message=BUG: cyclicPeriodicAMI: corrected logic so that it correctly excludes
...
patches which do not overlap an integer number of times.
2015-11-09 09:12:21 +00:00
william
341f2e0b99
ENH: Added support for periodic AMI patches. When these patches do not
...
fully overlap, the geometry will be replicated according to the
transfomation of another coupled patch until full-overlap is achieved.
2015-11-06 16:40:51 +00:00
Henry Weller
d073e483b8
tutorials/incompressible/simpleFoam/pitzDaily: Change default model to kEpsilon
...
and reduce relaxation factors to improve stability over a range of
models and systems.
2015-11-01 12:24:25 +00: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
81e083fc59
wingMotion tutorials: added missing ';'
2015-10-01 14:07:29 +01:00
Henry Weller
7be9bb61e6
tutorials/incompressible/SRFSimpleFoam/mixer: Improved case setup and schemes
2015-07-24 17:01:27 +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
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
Henry Weller
59f17355cf
rotorDiskSource: Debugged the duplicated interpolation functions
...
Needs rewriting to avoid unnecessary code duplication, preferably using
standard OpenFOAM interpolation functionality.
2015-07-03 12:41:25 +01:00
Henry Weller
8c8a3a162f
tutorials/incompressible/simpleFoam/rotorDisk: Tutorial for the rotorDiskSource functionObject
...
Provided by Richard Jones
2015-07-01 12:37:21 +01:00
Henry Weller
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
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
graham
cd083dc832
ENH: Smaller, shorter, faster wingMotion tut.
2011-04-21 16:09:44 +01:00
Henry
3c8f34df63
Removed unnecessary file
2011-04-19 23:27:38 +01:00
Henry
f70593a8ff
Renamed simpleSRFFoam -> SRFSimpleFoam and simpleWindFoam -> windSimpleFoam
2011-04-19 23:23:49 +01:00
Henry
c555c23729
Renamed simpleSRFFoam -> SRFSimpleFoam and simpleWindFoam -> windSimpleFoam
2011-04-19 23:22:32 +01:00
andy
8369a8d78b
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2011-04-15 17:16:00 +01:00
andy
154761a3a1
ENH: Updated tutorials
2011-04-15 16:46:35 +01:00
Henry
a86be7faa6
Tutorials: Corrected the name of the gradient used for the linearUpwind scheme
2011-04-15 16:36:58 +01:00
andy
656bbf5308
ENH: Updated solvers to use simpleControl and pimpleControl
2011-04-14 17:45:20 +01:00
mattijs
2b24e28e78
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2011-04-13 17:23:14 +01:00
mattijs
a70045f38b
BUG: Allrun: uses bash construct
2011-04-13 12:35:23 +01:00
andy
e5a319d6d6
ENH: Film tutorial updates
2011-04-12 17:35:25 +01:00
andy
64648e8b3e
ENH: Updated motorbike tutorial (Chris' updates)
2011-04-12 10:11:08 +01:00
Henry
293398cea5
tutorials: updatded header
2011-04-06 16:16:33 +01:00
mattijs
b09a19e026
ENH: sampledPatch: patchSet instead of single patch
2011-04-05 20:54:18 +01:00
mattijs
4d1e047ea1
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2011-04-05 15:56:48 +01:00
Henry
2975fee756
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2011-04-05 14:54:21 +01:00
Henry
a54afe65c3
potentialFoam: Changed the sub-dict in fvSolution from SIMPLE to potentialFlow
2011-04-05 14:54:14 +01:00
mattijs
314c15b341
ENH: snappyHexMesh: restore old behaviour (no mesh smoothing)
2011-04-05 11:59:46 +01:00
mattijs
2099600454
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2011-04-01 03:45:25 +01:00
mattijs
7d728f5c77
ENH: snappyHexMeshDict: added comment. Changed wrt 17x
2011-04-01 03:33:49 +01:00
Henry
19c08b9e5a
tutorials: Set the file type to ascii for ascii files
2011-03-31 15:32:07 +01:00
Henry
a93e63e7b7
tutorials: use getApplication
rather than hard-coded application name
2011-03-25 12:06:18 +00:00
Henry
e1c9f43c08
tutorials: Use getApplication to set the application rather than hard-coding it
2011-03-24 21:42:09 +00:00
sergio
27b5e17fc8
TUTORIAL: Reinstanting simpleFoam tutorials
2011-03-24 11:44:33 +00:00
sergio
2816819e4f
STY: application name in control dict
2011-03-23 18:32:22 +00:00
sergio
9c493a8940
BUG: change Allrun app name
2011-03-23 18:30:15 +00:00
graham
945354830c
ENH: More sensible, less restrictive minTetQuality restriction.
2011-03-23 10:58:02 +00:00
sergio
41121ee8f4
ENH: Uptodate to dev for several tutorials
2011-03-21 14:24:48 +00:00
graham
5d0d752d26
BUG: Tutorial setup correction.
2011-03-18 12:19:47 +00:00
sergio
31dc5c5c9f
STY: Deleting processors folders
2011-03-17 18:59:12 +00:00
sergio
a9129cc0be
STY: delete Allclean in wrong place
2011-03-17 18:55:58 +00:00
sergio
96c76b9a5b
STY: Change of simpleWindFoam tutorial
2011-03-17 18:54:17 +00:00
andy
67a819bcab
ENH: Moved example of systemCall function object from cavity tutorial
2011-03-07 10:31:31 +00:00
mattijs
cb38e02622
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2011-03-01 18:04:55 +00:00
mattijs
e4f00d6b83
Revert "STYLE: surfaceCoarsen: remove orhpaned files"
...
This reverts commit 98f269edaf
.
2011-03-01 15:00:38 +00:00
mattijs
b130e62cca
ENH: simpleSRFSimpleFoam: blockMeshDict new syntax
2011-02-24 12:04:23 +00:00
mattijs
4fa00951e1
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2011-02-24 10:45:09 +00:00
mattijs
98f269edaf
STYLE: surfaceCoarsen: remove orhpaned files
2011-02-24 10:45:01 +00:00
Mark Olesen
4aafea74a9
COMP: removed calcEntry bits missed in b4dae1a5ab
2011-02-24 11:35:24 +01:00
andy
b4dae1a5ab
ENH: removed calcEntry
2011-02-23 16:49:26 +00:00
Henry
9c9e092f52
simpleFoam/motorBike tutorial: Upgraded to 1.7.x
2011-02-07 22:44:05 +00:00
andy
6ffbe0553c
ENH: Updated tutorial fvSchemes for transpose operator
2011-01-18 15:24:30 +00:00
andy
eaef8d482b
STYLE: Updated 1991 start copyright year to 2004
2011-01-14 16:08:00 +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
099cc39e2e
Revert "STYLE: 2011 copyright date."
...
This reverts commit b18f6cc1ce
.
2011-01-05 18:24:29 +00:00
graham
b18f6cc1ce
STYLE: 2011 copyright date.
2011-01-05 11:14:26 +00:00
andy
7a6cfda2f8
Merge branch 'olesenm'
2011-01-04 10:52:41 +00:00
mattijs
805f6f76fb
ENH: windTurbineTerrain: mesh and run in parallel
2010-12-30 12:46:37 +00:00
Mark Olesen
881b3dafa2
Merge remote branch 'OpenCFD/master' into olesenm
...
Conflicts:
applications/solvers/multiphase/twoPhaseEulerFoam/kineticTheoryModels/kineticTheoryModel/kineticTheoryModel.C
applications/utilities/mesh/generation/extrude/extrudeToRegionMesh/createShellMesh.C
applications/utilities/surface/surfaceCheck/surfaceCheck.C
src/finiteVolume/fields/fvPatchFields/derived/advective/advectiveFvPatchField.C
src/finiteVolume/fields/fvPatchFields/derived/waveTransmissive/waveTransmissiveFvPatchField.C
src/meshTools/directMapped/directMappedPolyPatch/directMappedPatchBase.C
NOTE: also needed to strip trailing space/lines in various files
2010-12-21 10:19:53 +01:00
Mark Olesen
fc2aeba9fc
COMP: avoid ambiguous construct from tmp - solvers/ incompressible
2010-12-21 09:51:32 +01:00
mattijs
f1b5f8d023
ENH: extrudeToRegionMesh : leave base mesh alone
2010-12-20 17:10:41 +00:00
mattijs
6f2b17a698
ENH: fvSchemes : updated incompressible tutorials
2010-12-15 17:05:09 +00:00
mattijs
20f19d9d18
ENH: windTurbineTerrain : decomposeParDict update
2010-12-15 15:37:46 +00:00
mattijs
ba1daed66f
ENH: windTurbineTerrain : updated Allrun to use ptscotch
2010-12-15 15:36:44 +00:00
mattijs
a25d0036ed
BUG: tutorials : updated fvSchemes
2010-12-14 14:23:41 +00:00
mattijs
7ae8dc4860
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2010-12-14 10:10:04 +00:00
Henry
834aee9965
GeometricTensorField: added transpose function to support a tmp argument.
...
Use new "T" function to avoid duplicate registration of grad(U) object.
2010-12-12 21:39:15 +00:00
mattijs
123de44f51
ENH: windSimpleFoam tutorial update
2010-12-10 16:04:13 +00:00
mattijs
ad5305aebd
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2010-12-08 18:04:53 +00:00
mattijs
fdd30d1646
ENH: pitzDailyDirectMapped : make consistent with pitzDaily
2010-12-08 17:33:51 +00:00
sergio
e7e3a607c7
Merge branch 'basicSolidthermo'
2010-12-08 16:44:57 +00:00
sergio
262e6be2f8
ENH: new basicSolidThermo, solid -> pointSolid and solidMixture ->
...
pointSolidMixture. chtMultiRegion tutorials and solvers
2010-12-08 16:20:43 +00:00
mattijs
cddfacb4ce
ENH: windTurbineTerrain: use cellZones, not cellSets so we can do parallel running
2010-12-08 16:03:47 +00:00
mattijs
bf9a9915ec
ENH: windTurbineFoam : roughtNutWallFunction needs scalarField for roughness
2010-12-08 16:02:54 +00:00
mattijs
65a1c94630
ENH: decomposeParDict : use scotch
2010-12-08 11:46:12 +00:00
mattijs
a8ae8af7d5
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2010-12-07 16:46:29 +00:00
mattijs
650403c2dd
ENH: directMapped : added patchInternalField sampledSurface
2010-12-07 16:45:58 +00:00
sergio
fbcda2af93
BUG: Old libs linked in controlDict
2010-12-07 15:56:27 +00:00
mattijs
228c4ab263
BUG: directMapped tutorial: add missing interpolationScheme
2010-12-06 15:55:42 +00:00
mattijs
ae1e1cc963
BUG: tutorial scripts bashisms
2010-11-25 13:31:40 +00:00
Henry
a061b6e41b
Changed E to e in scalars
2010-11-03 11:34:34 +00:00
mattijs
47390ae99a
STYLE: tutorials comment
2010-10-27 16:07:29 +01:00
mattijs
1525e24b37
ENH: streamline : added subcycling
2010-10-26 18:42:36 +01:00
mattijs
a0517f0ea9
BUG: fan b.c. was using phi on slave side.
2010-10-21 18:38:58 +01:00
graham
3ab04e31f9
BUG: Adding correctPhi.
2010-10-15 10:33:20 +01:00
graham
baf417e4ba
ENH: Using reg-ex for motorbike layers (a-la training notes).
2010-10-14 13:58:35 +01:00
mattijs
cede24588b
ENH: pitzDailyDirectMapped updated to new blockMeshDict format
2010-10-13 13:48:54 +01:00
Henry
216f0a0cd1
pimpleDyMFoam: Corrected caching of rUA/rAU
2010-10-11 16:18:49 +01:00
Henry
ca8f5aee75
Tutorials: Added libOpenFOAM.so to libs when used to avoid paraFoam failing
2010-10-11 14:16:57 +01:00
mattijs
4f93b8ab73
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
...
Conflicts:
ReleaseNotes-dev
2010-10-08 14:03:07 +01:00
andy
32da2ff225
ENH: Multiple tutorial updates
2010-10-08 10:54:28 +01:00
andy
b362957124
ENH: Multiple tutorial updates
2010-10-07 13:52:51 +01:00
mattijs
eb82cac862
ENH: motorBike tutorial : added streamlines
2010-10-06 17:32:57 +01:00
Henry
d3f0b7a06b
Documentation: Added skeleton ReleaseNotes-dev
2010-10-06 12:05:25 +01:00
graham
ed314b62bc
STYLE: Removed unused dynamicMeshDicts.
2010-09-20 17:36:41 +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
2285298921
STYLE: README : misspelled date
2010-09-06 12:26:25 +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
graham
49a853116a
STYLE: copyright and 80 char line fixes.
2010-07-27 15:45:43 +01:00
graham
67136c25ee
STYLE: Remove tabs.
2010-07-27 12:24:27 +01:00
Mark Olesen
3ef7831a1e
STYLE: correct header format (as per ccfb6e32a6
)
2010-06-24 09:04:39 +02:00
henry
bfbab34491
Corrected merge conflicts from header changes.
2010-06-23 17:03:41 +01:00
henry
6574570ba0
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
...
Conflicts:
tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/polyMesh/boundary
tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0/rho
tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/polyMesh/boundary
tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/topAir/RASProperties
tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/topAir/thermophysicalProperties
tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/topAir/turbulenceProperties
tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/0/cp
tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/0/rho
tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/constant/polyMesh/boundary
tutorials/incompressible/simpleFoam/windTurbineTerrain/0/include/fixedInlet
tutorials/incompressible/simpleFoam/windTurbineTerrain/0/include/sideAndTopPatches
tutorials/incompressible/simpleFoam/windTurbineTerrain/0/nut
tutorials/incompressible/simpleFoam/windTurbineTerrain/0/p
tutorials/incompressible/simpleFoam/windTurbineTerrain/constant/RASProperties
tutorials/incompressible/simpleFoam/windTurbineTerrain/system/decomposeParDict
2010-06-23 16:56:45 +01:00
henry
ccfb6e32a6
Corrected headers.
2010-06-23 16:54:54 +01:00
sergio
73445367b8
ENH: wind turbine terrain tutorial(windSimpleFoam)
2010-06-23 10:54:33 +01:00
Mark Olesen
0ca515e3b1
Merge remote branch 'OpenCFD/master' into olesenm
2010-06-02 10:46:45 +02:00
graham
c1f565a186
STYLE: rename tutorial from wingFlutter to wingMotion. Not
...
necessarily a flutter.
2010-05-31 12:02:03 +01:00
mattijs
f84a91d7ce
Merge commit 'origin/master' into splitCyclic
...
Conflicts:
applications/utilities/mesh/manipulation/createBaffles/createBaffles.C
applications/utilities/postProcessing/patch/patchIntegrate/patchIntegrate.C
src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.C
src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.C
src/dynamicMesh/motionSmoother/motionSmoother.C
src/dynamicMesh/motionSmoother/motionSmoother.H
src/dynamicMesh/motionSmoother/motionSmootherTemplates.C
2010-05-18 13:28:21 +01:00
mattijs
bba50b2152
ENH: updated more tutorials
2010-05-18 12:18:42 +01:00
Mark Olesen
895a077cb1
STYLE: fixup some dictionary headers
2010-05-18 11:38:07 +02:00
mattijs
8816653041
BUG: t-junction-with-fan/Allrun : split cyclics
2010-05-17 17:19:30 +01:00
mattijs
2567ac7c17
ENH: adapted t-junction-with-fan for new createBaffles.
2010-05-17 17:11:14 +01:00
Mark Olesen
f9f988d82f
Merge remote branch 'OpenCFD/master' into olesenm
...
Conflicts:
src/finiteVolume/fields/fvPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValueFvPatchField.C
2010-05-31 11:50:56 +02:00
Mark Olesen
80b8071e75
ENH: add default control values to ease SIMPLE->PIMPLE transition
...
- add const-ness for control variables
- drop unused fluxGradp variable
- use lookupOrDefault instead of found/lookup combination
2010-05-20 08:24:55 +02:00
Mark Olesen
bde8dc579a
STYLE: fixup some dictionary headers
2010-05-18 11:38:07 +02:00
graham
7fc4368586
ENH: New pimpleDyMFoam tutorial of fluttering wing, demonstrating the
...
sixDoFRigidBodyDisplacement BC restraints and constraints.
2010-05-14 17:54:58 +01:00
mattijs
c367e07642
ENH: Converted all cellSet/faceSet/pointSet to topoSet.
2010-05-10 17:17:49 +01:00
mattijs
51c2adc21f
ENH: updated simpleSRFFoam/mixer tutorial
2010-05-04 17:33:44 +01:00
mattijs
f39c200e02
ENH: updated tutorial boundaryFoam/boundaryWallFunctionsProfile
2010-05-04 16:23:59 +01:00
mattijs
8420ff9e90
ENH: Updated boundaryFoam/boundaryWallFunctions tutorial
2010-05-04 16:19:22 +01:00
mattijs
409d373c6d
ENH: updated channel395 tutorial
2010-05-04 15:14:42 +01:00
mattijs
7f6740a9eb
Merge commit 'origin/master' into splitCyclic
2010-04-30 15:10:10 +01:00
Mark Olesen
845314b280
Merge remote branch 'OpenCFD/master' into olesenm
2010-04-28 14:49:39 +02:00
Mark Olesen
9c32ce1016
STYLE: use forAll macro in more places, avoid LF-CR endings
2010-04-23 18:35:55 +02:00
henry
5b8e46c318
simpleFoam/pitzDaily tutorial: Corrected functionObjects.
2010-04-22 16:29:16 +01:00
mattijs
1c7d6c1b2c
ENH: Restored old t-junction case. Renamed baffle case to t-junction-with-baffle
2010-04-16 16:51:25 +01:00
mattijs
0712a68639
Merge branch 'master' into splitCyclic
2010-04-16 14:21:27 +01:00
mattijs
af095081b7
ENH: Added baffles and fan cyclic
2010-04-16 13:16:26 +01:00
mattijs
cff2580336
Merge branch 'master' into splitCyclic
...
Conflicts:
applications/utilities/mesh/manipulation/splitMeshRegions/splitMeshRegions.C
applications/utilities/parallelProcessing/decomposePar/domainDecompositionMesh.C
src/OpenFOAM/db/IOstreams/Pstreams/UPstream.H
src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointPatchField.C
src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/interfaces/cyclicGAMGInterface/cyclicGAMGInterface.C
src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.H
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.H
src/OpenFOAM/meshes/polyMesh/syncTools/syncTools.C
src/OpenFOAM/meshes/polyMesh/syncTools/syncToolsTemplates.C
src/meshTools/sets/topoSets/faceSet.C
src/parallel/decompose/decompositionMethods/decompositionMethod/decompositionMethod.C
2010-04-16 12:09:34 +01:00
mattijs
1fe76fef6a
BUG: Load library containing the functionObjects before using them.
2010-04-15 11:35:43 +01:00
mattijs
defea5836e
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
...
Conflicts:
src/OpenFOAM/containers/Lists/DynamicList/DynamicList.H
src/postProcessing/functionObjects/field/fieldValues/cellSource/cellSource.C
src/postProcessing/functionObjects/field/fieldValues/faceSource/faceSource.C
2010-04-13 11:07:19 +01:00
mattijs
3b53ff5658
ENH: Make snappyHexMeshDict consistent with nGrow change.
...
nGrow in 1.6.x was always taken to be 0!
2010-04-12 17:27:39 +01:00
Mark Olesen
e8cfd92f9d
ENH: move residualControl and abortCalculation into common jobControl lib
2010-04-09 17:55:37 +02:00
Mark Olesen
a55ce8eeba
Merge remote branch 'OpenCFD/master' into olesenm
...
Conflicts:
tutorials/incompressible/simpleFoam/pitzDaily/system/controlDict
2010-04-09 14:21:34 +02:00
henry
30dc12f140
pitzDaily tutorial: Added functionObject convergence check.
2010-04-09 12:43:55 +01:00
henry
50616e6fc8
motorBike tutorial: improved the schemes.
2010-04-09 12:43:17 +01: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
10141f907b
STYLE: use dict entry for function objects in controlDict
2010-04-09 12:23:25 +02:00
henry
ed8fb0aa99
UEqn: Removed "Sp" term from the momentum equation of the steady-state solvers.
...
It is not clear that this "correction" term has provided any benefit and there
are cases for which it has proved detrimental to stability and convergence.
2010-04-06 16:28:59 +01:00
Mark Olesen
d29c438657
STYLE: use url for FSF license instead of postal address, switch to GPL v3
2010-03-29 14:07:56 +02:00
mattijs
d01adb74e3
ENH: Added tet volume check to checkMesh and snappyHexMesh
2010-03-26 13:39:51 +00:00
mattijs
89c7523c72
Merge branch 'master' into splitCyclic
...
Conflicts:
src/OpenFOAM/meshes/polyMesh/polyPatches/basic/coupled/coupledPolyPatch.C
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.C
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.H
src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.C
src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/autoLayerDriver.C
src/parallel/decompose/scotchDecomp/scotchDecomp.C
src/parallel/parMetisDecomp/parMetisDecomp.C
src/sampling/sampledSurface/isoSurface/isoSurfaceCell.C
2010-03-25 13:54:12 +00:00
mattijs
5d93fbe16d
ENH: Removed parmetis. Use ptscotch instead.
2010-03-22 16:48:48 +00:00
henry
d1dada5dfd
Removed unnecessary operations.
2010-03-19 17:56:11 +00:00
henry
b3fd9c599f
Removed unnecessary files.
2010-03-19 17:52:15 +00:00
Mark Olesen
d5170fa83a
STYLE: remove trailing space from adjointShapeOptimizationFoam tutorial files
2010-03-17 11:36:42 +01:00
Mark Olesen
cd768b7a5a
Merge remote branch 'OpenCFD/master' into olesenm
2010-03-17 08:52:10 +01:00
henry
d35773f4fb
New solver: adjointShapeOptimizationFoam
...
Uses adjoint method to block regions of the domain causing total pressure loss,
e.g. recirculation zones.
pitzDaily tutorial case supplied.
2010-03-15 17:08:45 +00:00
Mark Olesen
6b6dd51a27
STYLE: more consistent shell style in tutorial run/clean scripts
2010-03-10 10:55:42 +01:00
mattijs
49fb39e8f3
Merge commit 'origin/master' into splitCyclic
...
Conflicts:
applications/utilities/parallelProcessing/decomposePar/decomposePar.C
applications/utilities/parallelProcessing/decomposePar/domainDecomposition.C
applications/utilities/parallelProcessing/decomposePar/domainDecomposition.H
applications/utilities/parallelProcessing/decomposePar/domainDecompositionMesh.C
src/OpenFOAM/fields/pointPatchFields/constraint/processor/processorPointPatchField.C
src/OpenFOAM/fields/pointPatchFields/pointPatchField/pointPatchField.C
src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.H
src/OpenFOAM/meshes/polyMesh/globalMeshData/globalPoints.C
src/OpenFOAM/meshes/polyMesh/polyPatches/basic/coupled/coupledPolyPatch.C
src/OpenFOAM/meshes/polyMesh/polyPatches/basic/coupled/coupledPolyPatch.H
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processor/processorPolyPatch.C
2010-03-09 21:28:53 +00:00
mattijs
36346ec1a2
ENH: Do a weighted balance before refinement and layer addition.
...
Have weight=7 on cells to be refined and balance. Then after refinement
there will be perfect balancing. Similar for layer addition.
2010-02-03 06:18:30 +00:00
mattijs
46ad2e55d6
Merge branch 'master' into splitCyclic
...
Conflicts:
applications/utilities/parallelProcessing/decomposePar/domainDecomposition.C
applications/utilities/parallelProcessing/decomposePar/domainDecomposition.H
applications/utilities/parallelProcessing/decomposePar/domainDecompositionMesh.C
src/OpenFOAM/algorithms/MeshWave/FaceCellWave.C
src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterfaceFields/cyclicLduInterfaceField/cyclicLduInterfaceField.C
src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.C
src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.H
src/OpenFOAM/meshes/polyMesh/syncTools/dummyTransform.H
src/OpenFOAM/meshes/polyMesh/syncTools/syncTools.C
src/edgeMesh/edgeFormats/vtk/VTKedgeFormat.H
src/mesh/blockMesh/curvedEdges/spline.H
src/meshTools/PointEdgeWave/PointEdgeWave.C
src/meshTools/sets/topoSets/faceSet.C
2010-01-26 17:11:18 +00:00
mattijs
b877323a33
Added baffle option and corrected default setting
...
When faceZones are present one has to decide whether to have zone faces
only on the edge of cellZones or also freestanding.
The setting for minMedialAxisAngle was corrected since the calculation
has also been corrected.
2009-12-15 15:56:35 +00:00
mattijs
a029a59036
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2009-12-09 17:44:13 +00:00
mattijs
4bdd240291
Reverted to 1D solver
2009-12-09 12:47:20 +00:00
andy
92b1e0f1a0
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2009-12-09 10:06:16 +00:00
andy
5329c39999
reset incorrectly added files
2009-12-09 10:03:31 +00:00
henry
20995ae5ae
Corrected the name of the wall-function.
2009-12-08 22:37:54 +00:00
henry
c21721d293
Corrected the change to the "application" entry in controlDict.
2009-12-08 15:07:01 +00:00
Mark Olesen
b83e69818b
update some old dictionary headers - even found mention of Nabla!
2009-12-04 12:39:14 +01:00
mattijs
be1b1ceefc
Merge branch 'master' into splitCyclic
...
Conflicts:
applications/utilities/mesh/generation/blockMesh/blockMeshApp.C
applications/utilities/parallelProcessing/decomposePar/decomposeMesh.C
etc/bashrc
etc/cshrc
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.C
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processor/processorPolyPatch.C
src/decompositionMethods/parMetisDecomp/parMetisDecomp.C
src/dynamicMesh/Make/files
src/dynamicMesh/fvMeshDistribute/fvMeshDistribute.C
src/dynamicMesh/perfectInterface/perfectInterface.C
src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.C
src/dynamicMesh/polyTopoChange/polyTopoChange/polyTopoChange.C
src/dynamicMesh/polyTopoChange/polyTopoChange/polyTopoChange.H
src/finiteVolume/Make/files
src/mesh/blockMesh/blockMesh/blockMesh.C
src/mesh/blockMesh/blockMesh/blockMeshTopology.C
src/meshTools/Make/files
src/meshTools/sets/topoSets/faceSet.C
2009-11-30 15:20:52 +00:00
Mark Olesen
fa93ce8cd7
coding style adherence
...
- markup codingStyleGuide.org examples so they actually indent correctly
- use 'Info<<' as per codingStyleGuide instead of 'Info <<'
2009-11-27 15:39:14 +01:00
andy
e126099dc1
removed redundant logic
2009-11-24 14:29:41 +00:00
Mark Olesen
ebe39c4ea4
Merge commit 'OpenCFD/master' into olesenm
2009-11-04 08:56:20 +01:00
Mark Olesen
53a9208d9f
Merge commit 'bundle/home' into olesenm
...
Conflicts:
src/OpenFOAM/matrices/simpleMatrix/simpleMatrix.C
src/OpenFOAM/matrices/simpleMatrix/simpleMatrix.H
tutorials/incompressible/simpleFoam/airFoil2D/Allclean
tutorials/multiphase/settlingFoam/ras/tank3D/Allclean
2009-11-04 08:54:34 +01:00
henry
9bb3c1c1ba
New solvers and tutorial cases transferred from OpenFOAM-1.6.x.
2009-10-30 17:24:02 +00:00
henry
f5aa277982
Minor clean-up.
2009-10-30 17:22:55 +00:00
andy
3c54d945b4
removing done msg to be consistent with other tuts
2009-10-27 11:15:12 +00:00
andy
006803b4c5
added -f option when removing logs to avoid warning msg when cleaning
2009-10-27 10:58:19 +00:00
Mark Olesen
08fb4d5833
avoid spurious warnings on rm log.*
2009-10-09 19:46:08 +02:00
mattijs
ddb312a279
made entry optional
2009-09-29 20:37:23 +01:00
mattijs
09e1bfa865
pointMotion derived cellMotion is equivalent
2009-09-29 20:34:35 +01:00
henry
1d1fd3a37c
Improved the error message buffering by rewinding when the error is throw rather
...
than when it is initialised. This allows messages to be created and added to.
2009-09-17 15:10:07 +01:00
henry
26dac39576
Added "value" to wall BCs.
2009-09-13 23:11:28 +01:00
henry
6832ad28b0
Cleanup.
2009-09-09 21:56:07 +01:00
mattijs
3335aa68f3
moved non-IOobject files to subdirectory
2009-08-28 12:39:37 +01:00
mattijs
65f59bc992
moved non-IOobject files to subdirectory
2009-08-28 12:39:03 +01:00
mattijs
6f530e77cb
moved non-IOobject files to subdirectory
2009-08-28 12:38:44 +01:00
mattijs
6519dc62e2
to be able to handle wall function bcs
2009-08-28 12:37:31 +01:00
mattijs
3355c8d9eb
initial streamlines functionobject
2009-08-25 12:35:48 +01:00
henry
cf08f081da
Corrected tutorials.
2009-08-18 17:12:15 +01:00
henry
62a396b33f
Removed unnecessary files.
2009-08-17 23:43:27 +01:00
andy
a1d6fdf994
adding local foamLog.db
2009-08-13 17:09:22 +01:00
andy
a41b159fbc
adding boundaryFoam tutorial to evaluate wall functions
2009-08-13 16:56:59 +01:00
mattijs
8d115b35c1
Merge branch 'master' into splitCyclic
...
Conflicts:
applications/utilities/mesh/advanced/modifyMesh/cellSplitter.C
applications/utilities/mesh/conversion/fluent3DMeshToFoam/fluent3DMeshToFoam.L
applications/utilities/mesh/generation/blockMesh/blockMesh.C
applications/utilities/mesh/generation/blockMesh/createTopology.C
applications/utilities/mesh/generation/snappyHexMesh/Make/options
src/OpenFOAM/containers/Lists/ListOps/ListOps.H
src/OpenFOAM/containers/Lists/ListOps/ListOpsTemplates.C
src/OpenFOAM/containers/Lists/UList/UList.H
src/OpenFOAM/containers/Lists/UList/UListI.H
src/OpenFOAM/fields/pointPatchFields/constraint/processor/processorPointPatchField.C
src/OpenFOAM/meshes/polyMesh/polyMeshFromShapeMesh.C
src/OpenFOAM/meshes/polyMesh/polyPatches/basic/coupled/coupledPolyPatch.C
src/OpenFOAM/meshes/polyMesh/polyPatches/basic/coupled/coupledPolyPatch.H
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.C
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.H
src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processor/processorPolyPatch.C
src/OpenFOAM/meshes/polyMesh/syncTools/syncTools.C
src/OpenFOAM/meshes/polyMesh/syncTools/syncTools.H
src/OpenFOAM/meshes/polyMesh/syncTools/syncToolsTemplates.C
src/autoMesh/autoHexMesh/autoHexMeshDriver/autoLayerDriver.C
src/autoMesh/autoHexMesh/meshRefinement/meshRefinementBaffles.C
src/decompositionAgglomeration/Allwmake
src/decompositionAgglomeration/decompositionMethods/Make/files
src/decompositionAgglomeration/decompositionMethods/Make/options
src/dynamicMesh/attachDetach/attachInterface.C
src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.C
src/dynamicMesh/polyTopoChange/polyTopoChange/addPatchCellLayer.H
src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8.C
src/dynamicMesh/polyTopoChange/polyTopoChange/polyTopoChange.C
src/dynamicMesh/polyTopoChange/polyTopoChange/polyTopoChange.H
src/dynamicMesh/polyTopoChange/polyTopoChange/removePoints.H
src/dynamicMesh/slidingInterface/coupleSlidingInterface.C
src/finiteVolume/Make/files
tutorials/channelOodles/channel395/constant/polyMesh/blockMeshDict
tutorials/icoFoam/cavity/constant/polyMesh/blockMeshDict
wmake/rules/linux64Gcc/c++Opt
2009-08-07 08:19:53 +01:00
Mark Olesen
b4c93398e0
no-frills fvSolution format in tutorials/incompressible/*
2009-08-03 20:16:24 +02:00
andy
8bad166975
updated version number dev->1.6
2009-08-03 16:38:20 +01:00
Mark Olesen
ecb8d29b83
Merge commit 'OpenCFD/master' into olesenm
2009-08-03 16:20:24 +02:00
andy
60e3918be8
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2009-08-03 12:06:51 +01:00
andy
6dbb672b01
updating tutorial cases to use new nut/mut wall function names
2009-08-03 12:04:40 +01:00
Mark Olesen
d749aac04d
adjust tutorial fvSolution to use regular expressions and $variable
2009-08-01 14:51:59 +02:00
henry
4e6dbf5730
Force construction of mesh.deltaCoeffs() which may be needed for the wall-function BCs.
2009-07-30 12:58:03 +01:00
henry
1089bbc69c
Corrected omega wall-function BCs.
2009-07-29 11:52:42 +01:00
andy
2349fdaabe
updated version numbers to 1.6
2009-07-23 12:22:48 +01:00
henry
b3d455de80
Removed turbulence model coefficients from the dictionaries to allow them to default.
2009-07-21 19:05:30 +01:00