9cd9a9f364
ddtScheme::fvcDdtPhiCoeff: Zero ddtCorr on AMIs
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1421
2015-03-24 15:23:01 +00:00
32a31972aa
potentialFoam: Added new method to estimate the static pressure field from the velocity
...
Uses a form of the Euler equation in which only variation along the streamlines is considered
2015-02-19 19:05:17 +00:00
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
c778346c96
Formatting: Rationalized the indentation of #include
2015-02-10 20:35:50 +00:00
fe8c5ff636
Applications: use pimpleControl.dict() and simpleControl.dict() instead of looking-up the sub-dict
2015-02-09 22:15:26 +00:00
046f740f0e
Renamed relativeFlux -> makeRelative and absoluteFlux -> makeAbsolute
2013-08-20 15:40:00 +01:00
05022c2c02
BUG: In these solvers adjustPhi in the pEqn was calculated "before"
...
fvOption.relativeFlux() statement. Therefore adjustPhi was using
the absolute phi instead if the relative when the MRF was active
2013-08-07 17:18:08 +01:00
1290c0f914
ENH: Added fvOptions support to potentialFoam
2013-03-18 09:49:49 +00:00
d2b84dc511
ENH: Updated fieldSources->fvOptions for solvers
2013-01-08 09:38:01 +00:00
df073a34ec
ENH: Added sources to scalarTransportFoam
2012-12-11 09:56:41 +00:00
76da04621c
ENH: Updated info message
2012-12-03 11:39:56 +00:00
ca3ec6ebcb
ENH: Updated SIMPLE solvers to new simpleControl framework
2011-10-26 14:31:57 +01:00
c2dd153a14
Copyright transfered to the OpenFOAM Foundation
2011-08-14 12:17:30 +01:00
319292bc2c
ENH: potentialFoam: add initialiseUBCs option
2011-08-01 15:36:04 +01:00
caea0aec03
Merge branch 'master' into cvm
2011-06-17 10:57:23 +01:00
da836edfc1
ENH: argList: added -noFunctionObjects to all argList
2011-06-08 14:21:51 +01:00
e26e8f1032
potentialFoam: added "noFunctionObjects" option
2011-06-08 12:09:05 +01:00
1be43f88ae
Merge branch 'master' into cvm
2011-05-31 16:18:03 +01:00
d26ebdc851
ENH: potentialFoam tutorial: use 'coded' functionObject to generate analytical solution
2011-05-24 12:50:24 +01:00
a3417e4596
Merge branch 'master' into cvm
...
Conflicts:
tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/system/extrudeToRegionMeshDict
tutorials/lagrangian/reactingParcelFilmFoam/panel/system/extrudeToRegionMeshDict
2011-04-21 12:02:49 +01:00
656bbf5308
ENH: Updated solvers to use simpleControl and pimpleControl
2011-04-14 17:45:20 +01:00
fe0f6a487a
Merge branch 'master' into cvm
...
Conflicts:
applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C
2011-04-07 14:17:08 +01:00
d057de7128
potentialFoam: Changed the sub-dict in fvSolution from SIMPLE to potentialFlow
2011-04-05 14:56:41 +01:00
c513ae8ccc
potentialFoam: Changed the sub-dict in fvSolution from SIMPLE to potentialFlow
2011-04-05 14:54:42 +01:00
a54afe65c3
potentialFoam: Changed the sub-dict in fvSolution from SIMPLE to potentialFlow
2011-04-05 14:54:14 +01: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
7b5bff1a9e
COMP: avoid ambiguous construct from tmp - solvers/ DNS
2010-12-21 09:48:26 +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
c51a2b0f63
ENH: have MUST_READ_IF_MODIFIED on IOdictionary construction
2010-06-02 09:48:07 +01:00
b657f4a403
solvers: Reformatting and cleanup.
2010-04-22 16:26:43 +01:00
d29c438657
STYLE: use url for FSF license instead of postal address, switch to GPL v3
2010-03-29 14:07:56 +02:00
58b7e64185
Use argList::addOption, argList::addBoolOption (almost) everywhere
...
- ensure that the standard options (eg, from timeSelector) also have
some usage information
2009-12-03 13:32:12 +01:00
d1295da31f
adjust solvers and utilities to use new argList methods
...
- also drop various unused time options from src/OpenFOAM/include
2009-05-19 20:21:50 +02: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
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