andy
eaef8d482b
STYLE: Updated 1991 start copyright year to 2004
2011-01-14 16:08:00 +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
Mark Olesen
da439f5484
STYLE: consistent naming for templated/non-templated patch field construction
...
eg,
- makePatchTypeField -> makeTemplatePatchTypeField
- makeNonTemplatedPatchTypeField -> makePatchTypeField
2010-12-30 09:36:09 +01:00
Mark Olesen
e81e392ae6
COMP: adjust code for nu() as tmp<volScalarField>
2010-12-22 09:38:27 +01:00
Mark Olesen
fc2aeba9fc
COMP: avoid ambiguous construct from tmp - solvers/ incompressible
2010-12-21 09:51:32 +01:00
Henry
5dc9b66ba3
New Courant number now implemented in most solvers
...
CHT solvers still to do
2010-10-13 13:09:24 +01:00
Henry
eb51614780
Renamed rUA -> rAU
2010-10-11 20:10:34 +01:00
Henry
216f0a0cd1
pimpleDyMFoam: Corrected caching of rUA/rAU
2010-10-11 16:18:49 +01:00
andy
88f0f2e4a3
ENH: simpleFoam, rhoSimpleFoam and porousSimpleFoam updates
2010-10-08 14:38:03 +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
f26b8c1cc7
STYLE: 80 char lines.
2010-07-28 16:42:53 +01:00
graham
012494fdb5
STYLE: Fixing code style requirements for all apps.
...
Exception: applyWallFunctionBoundaryConditions.C cannot split #include
directives.
2010-07-27 15:27:05 +01:00
mattijs
f6670f8dec
COMP: Make/options added indirect libs for Solaris linker.
2010-07-15 09:38:52 +01:00
andy
28b1a9e2c6
Merge branch 'olesenm'
2010-06-03 10:25:03 +01:00
mattijs
f1ee573aa0
Merge branch 'inotify'
...
Conflicts:
TODO
2010-06-02 10:10:52 +01:00
mattijs
c51a2b0f63
ENH: have MUST_READ_IF_MODIFIED on IOdictionary construction
2010-06-02 09:48:07 +01:00
henry
361b153343
Final iteration information now available in mesh::data (used to be mesh::fvData)
...
Relaxation and solution parameters for the final iteration in PIMPLE loops are
now selected according to the value of the "finalIteration" entry in the
mesh::data dictionary.
rhoPimpleFoam significantly updates and now replaces rhoPisoFoam.
2010-05-25 18:45:25 +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
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
Mark Olesen
227631742d
ENH: add const-ness to pressureImplicitPorosity control
2010-05-20 08:42:07 +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
andy
ccf61a7db8
Revert "STYLE: remove unneed '()' for simple return statements,"
...
This reverts commit c600ce545d
.
2010-05-18 14:30:53 +01:00
Mark Olesen
c600ce545d
STYLE: remove unneed '()' for simple return statements,
...
- fix 'forAll (' -> 'forAll(' format (again)
2010-05-17 13:08:11 +02:00
andy
7ad0be020e
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2010-05-10 11:44:49 +01:00
henry
4b487cf5e0
pimpleDyMFoam: Moved turbulence correction inside the outer-loop.
2010-05-08 10:47:19 +01:00
mattijs
c5b801c5dc
BUG: indexing symmTensor with tensor::XX component names.
2010-05-04 17:21:09 +01:00
Mark Olesen
72f7d46f23
ENH: add operator[](const word&) as "find-by-name" to some classes
...
- affected: polyBoundary, fvBoundaryMesh, ZoneMesh, searchableSurfaces
before:
const label zoneI = mesh.cellZones().findZoneID(zoneName);
const cellZone& cz = mesh.cellZones()[zoneI];
after:
const cellZone& cz = mesh.cellZones()[zoneName];
2010-04-29 10:12:35 +02:00
Mark Olesen
9c32ce1016
STYLE: use forAll macro in more places, avoid LF-CR endings
2010-04-23 18:35:55 +02:00
mattijs
21b283779c
STYLE: new time structure
2010-04-15 11:59:31 +01:00
Mark Olesen
5b8b42f0dc
TYPO: in directory name for adjointShapeOptimizationFoam
2010-04-12 14:26:59 +02:00
henry
d4d0b88988
fvData: New database (dictionary) held on the fvMesh to store residual information etc.
...
This data can be used for convergence testing e.g. by a functionObject.
Other data could also be stored, e.g. global continuity errors and other reduced results.
2010-04-07 15:40:52 +01: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
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
mattijs
22ac629da5
BUG: Detect derived-from-wall boundary conditions
2010-03-01 14:49:47 +00:00
henry
cdb616eb48
Removed blank line.
2010-01-20 17:06:22 +00:00
Mark Olesen
5e972c772f
remove trailing space from some files
2009-12-04 13:39:35 +01:00
Mark Olesen
909e6b27e4
Apply coding style recommendations:
...
- space between keyword and bracket in 'for(..)', 'if(..)', 'while(..)'
2009-11-30 08:55:03 +01: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
henry
bb65911c45
Added a correction to the boundary velocity and flux to make them consistent
...
with the boundary motion before the fluxes are corrected for continuity by
pcorr.
2009-11-18 23:10:26 +00:00
andy
cf9b9bff17
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2009-11-12 13:29:10 +00:00
andy
e7347dbd62
removed unnecessary interpolation of h - not used
2009-11-09 10:15:07 +00:00
henry
9bb3c1c1ba
New solvers and tutorial cases transferred from OpenFOAM-1.6.x.
2009-10-30 17:24:02 +00:00
graham
9221793088
Changing
...
deltaT().value() to deltaTValue()
and
deltaT0().value() to deltaT0Value()
across the whole code - faster to return especially if being used
often, in each call to a submodel for example.
2009-10-21 16:36:07 +01:00
henry
dc183f3011
Minor formatting change.
2009-08-18 17:14:25 +01:00
andy
d02c8d1a52
updated Up calc to use mag()
2009-08-13 09:44:09 +01:00
mattijs
e5a710d3eb
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2009-08-05 16:18:38 +01:00
mattijs
eba6c985a9
added rawTopoFvChanger mesh
2009-08-05 16:11:47 +01:00
andy
827f834a93
corrected y+ calc, re-structured, better handling for walls
2009-08-03 09:53:13 +01:00