a40999c586
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2009-02-18 12:30:33 +00:00
dee5fee4db
tutorial updates
2009-02-18 12:29:22 +00:00
c2c0c66fd2
typo
2009-02-18 11:15:47 +00:00
8b5457a829
Bug fix for the change in directory structure.
2009-02-17 22:01:40 +00:00
aa6710901e
Added Time::loop() to allow the
...
while(runTime.loop())
{
...
}
idiom.
Demonstrated in the shallowWaterFoam solver.
2009-02-17 22:00:59 +00:00
fcd4e88e0e
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2009-02-17 17:07:16 +00:00
17b2e50e9c
Added shallowWaterFoam solver and tutorial case.
2009-02-17 17:07:09 +00:00
19aa23d707
Merge commit 'OpenCFD/master' into olesenm
2009-02-17 16:35:00 +01:00
663e9b7abf
start simplification of fieldAverage
...
- track previous time index and to avoid recalculating averages.
- make sure averages are up-to-date before calling write
2009-02-17 16:21:41 +01:00
c799fb0014
renamed to be consistent with new solver naming convention
2009-02-17 12:27:38 +00:00
a5ab4126d8
renamed to be consistent with new solver naming convention
2009-02-17 12:09:27 +00:00
fee6e312b9
Time and functionObject updated for end()
...
- added end() method to functionObject, functionObjectList & associated classes
- moved outputFilters from src/sampling -> src/OpenFOAM/db/functionObjects
2009-02-17 12:48: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
5e34369a32
using IOobjects for reading
2009-02-16 18:55:28 +00:00
ef537003c6
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2009-02-16 13:12:21 +00:00
2002e46bb6
housekeeping
2009-02-16 11:32:34 +00:00
80b6624d43
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2009-02-16 11:03:51 +00:00
c64902ea74
Use gSum rather than sum for parallel running.
2009-02-15 21:45:13 +00:00
8a474e2de1
Corrected typo.
2009-02-15 21:44:44 +00:00
6206a2e1a5
Stabilised the models by forcing the production of k and epsilon to be positive
...
even when the dot-product of the Reynolds stress and the gradient of velocity is
negative. Currently this is done by taking the magnitude, another alternative
would be to take only the positive part.
2009-02-15 21:43:06 +00:00
f266f17adf
Updates from Niklas:
...
Better properties for CH4N2O
Limiting the temperature to the boiling-point in parcel
2009-02-15 21:39:20 +00:00
c063d04a3d
Small cleanup.
2009-02-15 21:37:29 +00:00
e51f57c708
Merge branch 'tutorials'
2009-02-13 19:11:40 +00:00
3ec6e289ed
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2009-02-13 19:06:54 +00:00
00fbaf627a
more updates...
2009-02-13 18:31:15 +00:00
a5b039b4ca
updates
2009-02-13 17:28:21 +00:00
4b81f44378
more updates...
2009-02-13 17:03:05 +00:00
ef874be0b9
updates
2009-02-13 16:14:44 +00:00
68f1ba6a6d
extraneous files
2009-02-13 15:33:04 +00:00
ab4d2e0f3e
updated
2009-02-13 15:20:28 +00:00
5e7339fe15
Merge commit 'OpenCFD/master' into olesenm
2009-02-13 16:05:16 +01:00
a3b50aff9f
further tutorial updates
2009-02-13 14:17:08 +00:00
d21869b580
cosmetics
2009-02-13 14:13:51 +00:00
e03979ad3b
functionObjectList added manualStart()/manualExecute()
...
- can call start()/execute() manually regardless of the execution status
2009-02-13 15:10:22 +01:00
76dd475a67
sun porting
2009-02-13 13:03:10 +00:00
94bec509ce
acos bounds
2009-02-13 12:39:40 +00:00
c350f6958c
register averages
2009-02-13 11:30:03 +00:00
5ce9333c4c
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2009-02-13 09:01:17 +00:00
0685f59b4a
changed comment
2009-02-13 08:59:47 +00:00
a13be52006
initialisation order
2009-02-13 08:59:33 +00:00
d4dcd5bd55
delayed transformation calculation
2009-02-13 08:59:22 +00:00
fafb3e8885
functionObjectList and Time modifications
...
- added clear() method to functionObjectList. It also gets called by ~Time().
This should destroy function objects before anything else gets
destroyed (eg, objectRegistry).
2009-02-12 22:13:30 +01:00
485d821477
updated basic
2009-02-12 19:07:02 +00:00
12fba38d87
restructuring to reflect solver hierarchy
2009-02-12 18:59:59 +00:00
b1f65a8254
new BC for compressible density
2009-02-12 18:34:17 +00:00
d8ec3376fc
avoid calling functionObjectList twice with Time::operator+=()
...
- make functionObjectList mutable so it can change behind our back
2009-02-12 16:01:39 +01:00
68965204f9
resolve conflict
2009-02-12 10:15:28 +00:00
2d8ec16d6c
update
2009-02-12 10:11:57 +00:00
8741d3079f
update
2009-02-12 10:11:57 +00:00
b5a1f09321
functionObjectList with SHA1Digest tracking
2009-02-12 10:51:30 +01:00