2491f257b1
Corrected line lengths
2012-02-29 16:39:53 +00:00
3237340aa3
Correct date
2012-02-28 16:43:19 +00:00
f8d99aa784
bubbleFoam, twoPhaseEulerFoam: rationalise kEpsilon
2012-02-28 16:29:08 +00:00
d0795f9625
settlingFoam: improved handling of the turbulence and wall-functions
2012-02-17 12:46:03 +00:00
d05c5a41a1
ENH: Updated PIMPLE solvers to new pimpleControl framework
2011-10-26 12:04:25 +01:00
1c1a98363c
ENH: Simplified solvers - removed storePrevIter code
2011-09-08 12:04:15 +01:00
c2dd153a14
Copyright transfered to the OpenFOAM Foundation
2011-08-14 12:17:30 +01:00
d81d99d490
bubbleFoam, twoPhaseEulerFoam: Added storage of pressure from the previous iteration for PIMPLE
2011-07-09 22:24:28 +01:00
39b30e2429
ENH: Updated bubbleFoam solver and tutorial
2011-04-18 15:05:30 +01:00
8369a8d78b
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2011-04-15 17:16:00 +01:00
0301a62527
ENH: Updated more solvers to use the new algorithm container classes
2011-04-15 16:34:29 +01:00
f947f0b46e
bubbleFoam: Updated the viscosity used to the effective viscosity
...
in line with the rest of the wall-function implementations
2011-04-15 16:09:39 +01:00
13cc1d0dd7
bubbleFoam: Corrected the velocity used in the wall-functions to be that of the continuous-phase
2011-04-13 11:54:28 +01:00
0f3d393ec5
bubbleFoam, twoPhaseEulerFoam: Updated handling of the transpose terms
2011-03-21 10:49:20 +00:00
eaef8d482b
STYLE: Updated 1991 start copyright year to 2004
2011-01-14 16:08:00 +00:00
099cc39e2e
Revert "STYLE: 2011 copyright date."
...
This reverts commit b18f6cc1ce .
2011-01-05 18:24:29 +00:00
b18f6cc1ce
STYLE: 2011 copyright date.
2011-01-05 11:14:26 +00:00
078c427594
COMP: avoid ambiguous construct from tmp - solvers/ multiphase
2010-12-21 09:53:19 +01:00
4f8ea8d6af
BUG: Incorrect lookup name for alphak
2010-10-26 11:53:56 +01:00
5a655495dc
bubbleFoam: Cleaned-up createPhi
2010-09-29 10:49:35 +01:00
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
012494fdb5
STYLE: Fixing code style requirements for all apps.
...
Exception: applyWallFunctionBoundaryConditions.C cannot split #include
directives.
2010-07-27 15:27:05 +01:00
28b1a9e2c6
Merge branch 'olesenm'
2010-06-03 10:25:03 +01:00
c51a2b0f63
ENH: have MUST_READ_IF_MODIFIED on IOdictionary construction
2010-06-02 09:48:07 +01:00
ff30e6b61a
STYLE: can use bool instead of Switch version of dictionary::lookupOrDefault
...
- both versions handle the same input words.
Only need the <Switch> version when the destination variable is
also a Switch and we need to output the word later.
2010-05-20 14:17:18 +02:00
9c32ce1016
STYLE: use forAll macro in more places, avoid LF-CR endings
2010-04-23 18:35:55 +02:00
d29c438657
STYLE: use url for FSF license instead of postal address, switch to GPL v3
2010-03-29 14:07:56 +02:00
5e972c772f
remove trailing space from some files
2009-12-04 13:39:35 +01:00
909e6b27e4
Apply coding style recommendations:
...
- space between keyword and bracket in 'for(..)', 'if(..)', 'while(..)'
2009-11-30 08:55:03 +01:00
791b5aaeaa
replacing isType with isA to enable directMappedWall to work
2009-09-15 17:51:59 +01:00
7a8a318312
Revert "define values for standardCmu, standardKappa, standardE in turbulenceModel.H"
...
This reverts commit 54a8b6a152 .
2009-08-03 15:31:14 +02:00
54a8b6a152
define values for standardCmu, standardKappa, standardE in turbulenceModel.H
2009-08-01 09:36:34 +02:00
827e3659b9
consistency update: kappa=0.41, E=9.8
...
- this would be an argument for providing default values at the top-level
compressible/incompressible turbulenceModel
2009-07-31 18:15:54 +02:00
b3d455de80
Removed turbulence model coefficients from the dictionaries to allow them to default.
2009-07-21 19:05:30 +01:00
5a83c4660c
Added rho for the buoyantPressure BC.
2009-07-10 14:42:23 +01:00
d76820dc57
Changed g from being read from environmentalProperties to being read directly as a
...
uniformDimensionedVectorField.
2009-07-08 17:09:51 +01:00
7d73dd3171
updates for new thermo and general code tidying
2009-06-15 15:36:57 +01:00
4b60453cf1
use while (runTime.loop() { .. } where possible in solvers
...
- change system/controlDict to use functions {..} instead of functions (..);
* This is internally more efficient
- fixed formatting of system/controlDict functions entry
- pedantic change: use 'return 0' instead of 'return(0)' in the applications,
since return is a C/C++ keyword, not a function.
2009-02-18 08:57:10 +01:00
c2256e51f3
change solvers, utilities, etc. to use while (..) time-looping idiom
...
- this (now deprecated) idiom:
for (runTime++; !runTime.end(); runTime++) { ... }
has a few problems:
* stop-on-next-write will be off-by-one (ie, doesn't work)
* function objects are not executed on exit with runTime.end()
Fixing these problems is not really possible.
- this idiom
while (runTime.run())
{
runTime++;
...
}
works without the above problems.
2009-02-17 08:47:42 +01:00
28b200bcd9
update copyrights for 2009
2008-12-31 19:01:56 +01:00
02cabc3cf2
updated Copyright (C) \d+-2008 OpenCFD Ltd.
2008-06-25 15:01:46 +02:00
56fd8890d5
consistency updates
2008-06-20 11:22:33 +01:00
4ddd3c67a6
updates to tuts to reflect turbulence changes, and general tut updates
2008-06-17 14:07:11 +01:00
168c7e1ca9
removing FoamX
2008-06-04 13:40:02 +01:00
3170c7c0c9
Creation of OpenFOAM-dev repository 15/04/2008
2008-04-15 18:56:58 +01:00