Commit Graph

3824 Commits

Author SHA1 Message Date
andy
ad350c504f cosmetics 2009-04-06 16:32:45 +01:00
andy
fa794c981d Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-03-26 13:50:34 +00:00
andy
ecb14e0546 moved tuts in line with change in application structure 2009-03-26 13:50:12 +00:00
andy
836ede21de formatting 2009-03-25 12:22:26 +00:00
mattijs
950c77117b comment 2009-03-24 18:02:42 +00:00
mattijs
fe55f58d46 new turbulence setup 2009-03-23 16:35:53 +00:00
Mark Olesen
fb1e155eed Merge commit 'OpenCFD/master' into olesenm 2009-03-16 08:28:08 +01:00
henry
48c75eef27 Corrected case for the new wall-function treatment. 2009-03-12 21:53:46 +00:00
Mark Olesen
e011328d99 Merge commit 'OpenCFD/master' into olesenm 2009-03-12 10:39:22 +01:00
henry
73b153f302 Updates and extensions to the MRF and SRF handling. 2009-03-11 16:49:46 +00:00
Mark Olesen
6ecdf4fc41 updated DebugSwitches, surfaceWriter
- added obj surfaceWriter
- don't bother with prepended field names on obj and stl surfaceWriter.
  It fills the disk and suggests differences where there are none.
2009-03-09 15:37:54 +01:00
Mark Olesen
0cfce1a7ab Merge commit 'OpenCFD/master' into olesenm 2009-03-05 11:00:34 +01:00
Mark Olesen
1a2bcf7d84 Merge commit 'OpenCFD/master' into olesenm 2009-03-04 12:20:51 +01:00
mattijs
7e735715a4 more flexible mrfzones
modified:   finiteVolume/cfdTools/general/MRF/MRFZone.C
modified:   finiteVolume/cfdTools/general/MRF/MRFZone.H
	modified:   ../tutorials/incompressible/MRFSimpleFoam/mixerVessel2D/constant/MRFZones
2009-03-03 17:09:01 +00:00
mattijs
a15e5f7f05 zone faces derived from cell zone 2009-02-27 12:53:55 +00:00
mattijs
bb74c5ae14 sample usage of wildcards 2009-02-26 22:48:30 +00:00
Mark Olesen
507ad1e643 Merge commit 'OpenCFD/master' into olesenm 2009-02-25 10:50:26 +01:00
mattijs
364e8e001d reintroduce comments 2009-02-24 12:07:50 +00:00
mattijs
5c97cd1d39 added comment 2009-02-19 13:08:07 +00:00
andy
181f252245 updates 2009-02-18 18:05:54 +00:00
andy
0781a2f387 correcting use of totalPressure BC
- still not consistent for pd as does not include buoyancy effects
2009-02-18 16:13:32 +00:00
andy
a40999c586 Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-02-18 12:30:33 +00:00
andy
dee5fee4db tutorial updates 2009-02-18 12:29:22 +00:00
Mark Olesen
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
henry
8b5457a829 Bug fix for the change in directory structure. 2009-02-17 22:01:40 +00:00
henry
fcd4e88e0e Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-02-17 17:07:16 +00:00
henry
17b2e50e9c Added shallowWaterFoam solver and tutorial case. 2009-02-17 17:07:09 +00:00
Mark Olesen
19aa23d707 Merge commit 'OpenCFD/master' into olesenm 2009-02-17 16:35:00 +01:00
andy
c799fb0014 renamed to be consistent with new solver naming convention 2009-02-17 12:27:38 +00:00
Mark Olesen
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
andy
2002e46bb6 housekeeping 2009-02-16 11:32:34 +00:00
andy
e51f57c708 Merge branch 'tutorials' 2009-02-13 19:11:40 +00:00
andy
00fbaf627a more updates... 2009-02-13 18:31:15 +00:00
andy
a5b039b4ca updates 2009-02-13 17:28:21 +00:00
andy
4b81f44378 more updates... 2009-02-13 17:03:05 +00:00
andy
ef874be0b9 updates 2009-02-13 16:14:44 +00:00
andy
ab4d2e0f3e updated 2009-02-13 15:20:28 +00:00
andy
a3b50aff9f further tutorial updates 2009-02-13 14:17:08 +00:00
mattijs
5ce9333c4c Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2009-02-13 09:01:17 +00:00
andy
485d821477 updated basic 2009-02-12 19:07:02 +00:00
andy
12fba38d87 restructuring to reflect solver hierarchy 2009-02-12 18:59:59 +00:00
andy
33caf9f6a7 general update 2009-02-11 14:33:18 +00:00
mattijs
54749c0e9b no blockMesh 2009-02-10 23:35:42 +00:00
mattijs
f8c1396426 syntax changes 2009-02-10 17:37:40 +00:00
henry
c44f8aee42 Choosing mine. 2009-01-20 16:33:31 +00:00
henry
f97160ba7a Choosing Andy's 2009-01-20 16:31:48 +00:00
henry
d29e728814 Upgraded. 2009-01-20 16:28:26 +00:00
andy
b1dcfe66ec updated 2009-01-19 11:54:56 +00:00
mattijs
2dbf42085d Initial set of changes. 2009-01-15 18:29:08 +00:00
mattijs
73426723b0 new boundary syntax 2009-01-15 18:25:51 +00:00
mattijs
9c9c43f23a new boundary syntax 2009-01-15 18:25:11 +00:00
andy
e16553c68b Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-01-09 16:33:01 +00:00
andy
67ee945ad3 updating to new turbulence framework and injection specifications 2009-01-09 16:26:55 +00:00
Mark Olesen
cdd2266467 Merge commit 'OpenCFD/master' into olesenm
Conflicts:

	src/OpenFOAM/db/IOstreams/Pstreams/IPstream.C
	src/OpenFOAM/db/IOstreams/Pstreams/OPstream.C
2009-01-07 09:39:17 +01:00
mattijs
bbed85ab94 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2009-01-06 20:54:19 +00:00
mattijs
7db79b0439 wrong application 2009-01-06 18:33:38 +00:00
henry
5f1c919041 Header automatically changed. Should we try to avoid this? 2009-01-05 22:23:25 +00:00
henry
efd8afdbb6 Added the new "outputControl" option to the function objects. 2009-01-05 22:22:43 +00:00
henry
b1ca8f48e4 Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-01-05 22:18:33 +00:00
henry
d793344af2 Corrected mhdFoam tutorial scripts. 2009-01-05 22:18:19 +00:00
mattijs
a386230785 sicortex 2009-01-05 12:38:30 +00:00
mattijs
ca6f085843 missing setFields 2009-01-05 12:17:09 +00:00
Mark Olesen
28b200bcd9 update copyrights for 2009 2008-12-31 19:01:56 +01:00
mattijs
1d450fbe11 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2008-12-30 22:00:52 +00:00
mattijs
22393b4262 new bc 2008-12-30 22:00:17 +00:00
andy
eaea0460cd general updates for new turbulence model structure 2008-12-19 17:59:54 +00:00
henry
e1d7916c3b From Niklas Nordin:
New fuels are iso/n-propanol and urea.  Although urea is a bit dodgy, but that's
all of the properties Ive found so far.

I've also added a variation of temperature instead of constant temperature for
some injector-classes so Im sending you the new version of the dieselFoam
tutorial also.
2008-12-18 16:58:29 +00:00
henry
0479165024 Added generic turbulenceModel base class to incompressible turbulence models. 2008-11-20 20:33:06 +00:00
henry
326b86ec2d Added generic turbulenceModel base class to incompressible turbulence models. 2008-11-20 17:07:17 +00:00
mattijs
99e8bf7516 volPointInterpolation, pointMesh now MeshObject 2008-10-21 15:02:04 +01:00
mattijs
50dcc40e9a new interval syntax 2008-10-20 15:31:39 +01:00
Mark Olesen
073569c070 minor consistency changes, docu cosmetics 2008-10-13 09:28:34 +02:00
Mark Olesen
7a77e7ad3e Merge commit 'OpenCFD/master' into olesenm 2008-10-09 16:13:41 +02:00
mattijs
9891d37172 parallel postChannel 2008-10-08 07:55:07 +01:00
Mark Olesen
ab5c014a69 tweaked tutorial run scripts, avoid some bashisms 2008-10-08 08:39:16 +02:00
mattijs
c15ceeb6ed Merge branch 'master' of /home/hunt2/OpenFOAM/OpenFOAM-dev 2008-10-02 08:43:39 +01:00
mattijs
0c471dd861 corrected numbering 2008-10-02 08:43:03 +01:00
Mark Olesen
f8823b684b wcleanAll - provide some information about the progress
- move tutorial cleanup to the end in case the user wishes to
    abort the wcleanAll script

  - adjusted wcleanAlmostAll according, but don't know if it's really
    needed any more
2008-09-30 19:32:13 +02:00
Mark Olesen
eacad3d6ab blockMeshDict.m4 files: print *not* printf, don't need POSIX with Math::Trig 2008-09-24 18:27:56 +02:00
andy
dc69c60269 update 2008-09-16 12:13:12 +01:00
andy
8c8f76fb7d update 2008-09-16 12:13:12 +01:00
andy
e95b3a9312 Merge branch 'master' of ssh://hunt/home/hunt2/OpenFOAM/OpenFOAM-dev 2008-09-16 11:27:07 +01:00
andy
85cbbbf6ec updated to reflect changes to function object output handling 2008-09-16 11:24:03 +01:00
henry
7d74145339 Corrected the "format" entry to be consistent with the GNU extensions to m4. 2008-09-11 11:39:20 +01:00
mattijs
3128561a4a generalised directMappedPolyPatch 2008-09-09 17:22:37 +01:00
mattijs
f526e28176 preserved keyword format 2008-09-09 17:14:29 +01:00
henry
fe58db2ecf Merge branch 'master' of ssh://hunt/home/hunt2/OpenFOAM/OpenFOAM-dev 2008-09-03 08:38:23 +01:00
henry
485a2549c8 Removed spaces. 2008-09-03 08:35:44 +01:00
mattijs
dab849c8ba aligned sampling plane with cells 2008-08-28 15:51:08 +01:00
mattijs
c1cd9c4cd7 pimpleFoam tutorial 2008-08-15 12:20:42 +01:00
Mark Olesen
fb91e80086 tutorial and misc Dict cosmetics 2008-08-10 22:25:06 +02:00
Mark Olesen
7be206a5f3 Be pickier about only running certain scripts from the cwd 2008-08-09 18:50:27 +02:00
Mark Olesen
501c558f1f cht tutorial - use 'paraFoam -touch' to create files for paraview 2008-08-09 18:44:59 +02:00
Mark Olesen
3bc28f6cb0 foamUpdate scripts - avoid destroying soft-links or trashing existing {RAS,LES}Properties 2008-08-08 23:15:28 +02:00
Mark Olesen
2e6f99627b replace 'prinf' with 'print' in blockMeshDict.m4 files
- how did the old versions actually even work?
2008-08-08 22:40:40 +02:00
Mark Olesen
a99632d441 cht tutorial tidy up
- remove inappropriate fields from the regions
    (only important or useful for post-processing)
  - Allclean script had missed some files
2008-08-08 22:38:25 +02:00
mattijs
c809c1d5bd adding coefficient logging 2008-08-06 16:14:05 +01:00
henry
fe4b18b053 Set the min value to 1e-8. 2008-08-04 16:05:06 +01:00
mattijs
700ba91ec7 changed header 2008-07-29 18:49:49 +01:00
mattijs
b4dd40f798 extraneous files 2008-07-29 18:25:43 +01:00
henry
9aaefba2f4 Added Allclean to preserve the mesh files 2008-07-29 09:28:36 +01:00
henry
3b59411239 Removed spurious file 2008-07-29 08:46:26 +01:00
henry
88b67a3263 New simpleFoam tutorial 2008-07-29 08:45:25 +01:00
andy
4a2475ac6c correcting p initial internal field value 2008-07-24 10:32:06 +01:00
mattijs
46b102bd8f Merge branch 'master' of /home/noisy2/OpenFOAM/OpenFOAM-dev 2008-07-15 22:11:10 +01:00
mattijs
67c010c729 chtMultiRegionFoam tutorial 2008-07-15 22:10:40 +01:00
Mark Olesen
5e5b26edd5 update dictionary headers and FoamFile entry to 1.5 format 2008-07-14 14:50:35 +02:00
mattijs
69a75b1ca4 Merge branch 'master' of /home/noisy2/OpenFOAM/OpenFOAM-dev 2008-07-09 15:18:45 +01:00
mattijs
17beb3c21a meshing tutorials 2008-07-09 15:18:39 +01:00
Mark Olesen
f17c95cbff Merge commit 'OpenCFD/master' into olesenm 2008-07-09 11:44:45 +02:00
andy
78de486b87 Merge branch 'master' of ssh://noisy/home/noisy2/OpenFOAM/OpenFOAM-dev 2008-07-09 09:30:17 +01:00
Mark Olesen
9cde05b169 Merge commit 'OpenCFD/master' into olesenm
Resolved conflicts:
	src/OpenFOAM/interpolations/interpolationTable/interpolationTable.C
	src/OpenFOAM/interpolations/interpolationTable/interpolationTable.H
2008-07-09 09:14:18 +02:00
henry
27a474bed7 Use rm -rf to avoid warnings for files that have already been removed. 2008-07-08 19:13:07 +01:00
andy
e14d5bc4c5 removed redundant probes folder 2008-07-08 13:36:39 +01:00
Mark Olesen
d7f85054e8 minor fixup for flowRate bcs. 2008-07-07 08:49:35 +02:00
henry
2b91f04baf Minor change to motion settings. 2008-07-04 13:49:50 +01:00
henry
65a5335757 New interDyMFoam tutorial: sloshingTank3D6DoF 2008-07-04 13:48:28 +01:00
graham
ba7d45228a Added Allrun and Allclean scripts to gnemdFoam and mdEquilibrationFoam tutorials 2008-07-03 17:49:51 +01:00
andy
06dec3884e clean-up of unused file 2008-07-03 17:09:31 +01:00
henry
1513f4a1f3 New interDyMFoam tutorial sloshingTank3D 2008-07-02 22:42:37 +01:00
henry
b3442bf900 Updates to sloshingTank2D 2008-07-02 22:41:36 +01:00
henry
98e1cd0256 Corrected headers. 2008-07-01 20:18:15 +01:00
henry
1e7f8941c9 New interDyMFoam tutorial: sloshing in a ship's tank 2008-07-01 20:17:56 +01:00
henry
a672bdda7c New interDyMFoam tutorial: sloshing in a ship's tank 2008-07-01 20:16:00 +01:00
henry
b9a78b5407 Minor corrections to tutorials. 2008-06-30 12:02:43 +01:00
henry
24610e1c00 Merge branch 'master' of ssh://noisy/home/noisy2/OpenFOAM/OpenFOAM-dev 2008-06-30 12:01:33 +01:00
henry
aabb4e3b2c New tutorial case for compressibleLesInterFoam: depthCharge3D 2008-06-30 12:01:23 +01:00
andy
2573b0e8f1 consistency update - 0.orig->0.org 2008-06-30 11:33:15 +01:00
andy
2766a978a9 Merge branch 'master' of ssh://noisy/home/noisy2/OpenFOAM/OpenFOAM-dev 2008-06-30 11:16:29 +01:00
andy
ad42db8f07 fix typo in p solver selection 2008-06-30 11:16:12 +01:00
henry
359825f011 Merge branch 'master' of ssh://noisy/home/noisy2/OpenFOAM/OpenFOAM-dev 2008-06-29 11:43:45 +01:00
henry
ca23897c3a New turorial case 2008-06-29 11:43:39 +01:00
andy
934b076910 Merge branch 'molecularDynamics' 2008-06-27 18:25:53 +01:00
graham
1636c4757d Merge branch 'master' of ssh://noisy/home/noisy2/OpenFOAM/OpenFOAM-dev 2008-06-27 17:30:06 +01:00
graham
bb35786d4b modifies endTime in tutorials/mdEquilibrationFoam/periodicCube 2008-06-27 17:25:19 +01:00
henry
889f48ba0e Merge branch 'master' of ssh://noisy/home/noisy2/OpenFOAM/OpenFOAM-dev 2008-06-27 16:58:56 +01:00
andy
cef603c1bb adding missed files (were excluded by .gitignore settings) 2008-06-27 16:50:48 +01:00
henry
7ee02116b3 Remove unnecessary R files 2008-06-27 16:45:00 +01:00
henry
1d73417d9c Added pd 2008-06-27 16:40:41 +01:00
henry
939a46c844 Added pd, changed p BCs to calculated and added pRef to thermophysicalProperties 2008-06-27 16:39:42 +01:00
graham
eb110816ba changed writeTables to no in tutorials/gnemdFoam/nanoNozzle 2008-06-27 16:07:22 +01:00
andy
64961d9a3b added fieldAverage function object to control dict 2008-06-27 10:30:01 +01:00
andy
80c9f74b64 added fieldAverage function object to control dict 2008-06-27 10:30:01 +01:00
andy
afee283883 small updates to tuts 2008-06-27 10:26:49 +01:00
andy
5285277dd8 small updates to tuts 2008-06-27 10:26:49 +01:00
andy
b4b75fc000 removing old averaging - replaced by averaging function object 2008-06-26 18:01:47 +01:00
andy
5de6dec9a2 removing old averaging - replaced by averaging function object 2008-06-26 18:01:47 +01:00
Mark Olesen
69bcc1baad Merge commit 'OpenCFD/master' into olesenm 2008-06-26 14:08:49 +02:00
andy
66873cc938 updated file headers for v1.5 2008-06-26 12:33:25 +01:00
andy
0d45add454 updated file headers for v1.5 2008-06-26 12:33:25 +01:00
andy
d0bbed6418 Merge branch 'master' of ssh://noisy/home/noisy2/OpenFOAM/OpenFOAM-dev 2008-06-26 12:24:40 +01:00
andy
019e29d831 new tutorials 2008-06-26 12:21:14 +01:00
andy
38e6e0f17a new tutorials 2008-06-26 12:21:14 +01:00
andy
0bdc96812a clean up 2008-06-26 12:20:53 +01:00
andy
963b52b842 clean up 2008-06-26 12:20:53 +01:00
Mark Olesen
9806f58e29 Merge commit 'OpenCFD/master' into olesenm 2008-06-26 08:37:14 +02:00
Chris Greenshields
c3ebc46ff0 Updated headers in case files in tutorials and added rhoCentralFoam tutorials 2008-06-25 15:21:31 +01:00
Chris Greenshields
ec37e51870 Updated headers in case files in tutorials and added rhoCentralFoam tutorials 2008-06-25 15:21:31 +01:00
Mark Olesen
02cabc3cf2 updated Copyright (C) \d+-2008 OpenCFD Ltd. 2008-06-25 15:01:46 +02:00
Mark Olesen
fc7538d2b4 updated Copyright (C) \d+-2008 OpenCFD Ltd. 2008-06-25 15:01:46 +02:00
andy
0c1d0884ff small updates and removing X permissions 2008-06-23 18:06:06 +01:00
andy
fbcac8e23c small updates and removing X permissions 2008-06-23 18:06:06 +01:00
andy
af88d9bedf updating molecularDynamics functionality with Graham's latest changes 2008-06-23 17:55:35 +01:00
andy
b33f76e5cb updating molecularDynamics functionality with Graham's latest changes 2008-06-23 17:55:35 +01:00
andy
12e0fc01c0 removed molecular dynamics functionality (being updated) 2008-06-23 17:42:05 +01:00
andy
92f7290c12 removed molecular dynamics functionality (being updated) 2008-06-23 17:42:05 +01:00
Chris Greenshields
0eaf65b518 Updating sampleDict in solidDisplacmentFoam tutorial case 2008-06-21 17:36:18 +01:00
Chris Greenshields
34267e9ae4 Updating sampleDict in solidDisplacmentFoam tutorial case 2008-06-21 17:36:18 +01:00
Chris Greenshields
713ce12d95 Updating sampleDict in rhoSonicFoam/shockTube case 2008-06-21 17:35:04 +01:00
Chris Greenshields
f8e3f505d6 Updating sampleDict in rhoSonicFoam/shockTube case 2008-06-21 17:35:04 +01:00
andy
64f058e1c8 general update 2008-06-20 17:25:03 +01:00
andy
c1bbed3633 general update 2008-06-20 17:25:03 +01:00
andy
b0f29324b2 minor fixes 2008-06-20 14:02:07 +01:00
andy
db0cd2b225 minor fixes 2008-06-20 14:02:07 +01:00
andy
cc74d67ff5 consistency updates 2008-06-20 13:51:29 +01:00
andy
9658ca230c consistency updates 2008-06-20 13:51:29 +01:00
andy
56fd8890d5 consistency updates 2008-06-20 11:22:33 +01:00
andy
71916c4416 consistency updates 2008-06-20 11:22:33 +01:00
andy
84ee449391 added printCoeffs option to turbulenceProperties 2008-06-18 18:29:11 +01:00
andy
196b52263a added printCoeffs option to turbulenceProperties 2008-06-18 18:29:11 +01:00
andy
a3b87122e7 more tutorial updates 2008-06-18 15:28:35 +01:00
andy
083b049cb3 more tutorial updates 2008-06-18 15:28:35 +01:00
andy
2777fdd31f general fixes 2008-06-18 13:14:00 +01:00
andy
eeef7ead0b general fixes 2008-06-18 13:14:00 +01:00
andy
0cea5a78fc general updates 2008-06-18 12:43:48 +01:00
andy
fec418d580 general updates 2008-06-18 12:43:48 +01:00
andy
06e21df784 general update 2008-06-18 12:28:28 +01:00
andy
62ef62f404 general update 2008-06-18 12:28:28 +01:00
andy
5c957aa03e consistency update - (in)compressibleTurbulenceModels -> (in)compressibleRASmodels 2008-06-18 10:06:06 +01:00
andy
2b01d2f5da consistency update - (in)compressibleTurbulenceModels -> (in)compressibleRASmodels 2008-06-18 10:06:06 +01:00
graham
d3cf5a5fef changed timestep control in molecule::move to tEnd > (SMALL*SMALL)) to allow for short timesteps (1e-14) for MD. Problem only occuring in parallel. Added tutorials for gnemdFoam: constrictedChannel and nanoNozzle
removed constantidList from constrictedChannel
removed idList from constrictedChannel
2008-06-20 18:52:14 +01:00
graham
b0a2e17703 Merge branch 'master' into molecularDynamics 2008-06-17 17:03:06 +01:00
andy
c7a59bb25f consistency update 2008-06-17 16:43:27 +01:00
graham
217f01e026 Updated gnemdFoam, mdEquilibrationFoam and molConfig applications to use new separate potential and molecule libraries. Updated potentialDict description in mdEquilibrationFoam/periodicCube test case to new format. 2008-06-17 16:08:28 +01:00
andy
4ddd3c67a6 updates to tuts to reflect turbulence changes, and general tut updates 2008-06-17 14:07:11 +01:00
henry
39d9bebe26 Updated with new run, test and clean scripts 2008-06-16 12:49:38 +01:00
henry
9ad914ca0b Tried to sort out the scripts in the tutorials but found it is messed up. Will start again from a new version from Mattijs 2008-06-13 13:46:55 +01:00
mattijs
91c2d7743b tutorial scripts 2008-06-12 19:32:10 +01:00
Henry Weller
9ae900e175 sh compatibility 2008-05-30 10:10:12 +01:00
henry
dd22a8d8a0 Implamented Rasmus' corrections to the particle force. 2008-05-28 22:38:03 +01:00
henry
4a2a23a710 Lots of changes from Mark and my changes to ddtPhiCorr all mixed together
because I failed to work out how to merge Mark's stuff -- HELP!!!
2008-05-25 21:46:37 +01:00
mattijs
e2ee122a02 Merge branch 'master' of /home/noisy2/OpenFOAM/OpenFOAM-dev/ 2008-05-23 11:06:51 +01:00
mattijs
bc84848b6d New tutorial: pitzdaily with mapped inlet 2008-05-22 16:24:27 +01:00
andy
4a9f21ba18 adding molecular dynamics sources/app/utility 2008-05-22 15:03:46 +01:00
andy
9acc7a8b21 updated tutorial 2008-05-16 12:08:40 +01:00
andy
88263c2b21 Merge branch 'testLagrangian' into Lagrangian 2008-05-16 11:44:28 +01:00
mattijs
9923752218 Merge branch 'master' of /home/noisy2/OpenFOAM/OpenFOAM-dev/ 2008-05-15 21:50:05 +01:00
andy
d1c55c14ee updating to reflect changes to injection model 2008-05-15 19:05:07 +01:00
andy
202212497f correcting buondary conditions for tutorial case 2008-05-15 12:46:02 +01:00
andy
38ada7f58e updating injection mechanism + added coneInjection model 2008-05-15 12:44:17 +01:00
mattijs
b6c519717c Dambreak with mesh refinement / unrefinement update. 2008-05-15 11:24:33 +01:00
andy
d9b16477e1 Moved buoyantSimpleRadiationFoam from tutorials to applications/solvers/heatTransfer 2008-05-13 12:56:43 +01:00
henry
0958e4dc85 Run wmakeLnIncude before building other and Pstream 2008-05-12 23:04:28 +01:00
andy
7077a768ea updated LES <xxx>oodles tutorials to use the fieldAverage function object 2008-05-12 18:04:11 +01:00
mattijs
4467097cbd Uabs (for postprocessing) only constructed when needed. 2008-05-09 17:01:21 +01:00
andy
ed43e5b2ed minor updates to kivaTest tutorial case 2008-05-09 13:03:11 +01:00
andy
86b0322103 adding rhoTurbTwinParcelFoam demo solver and test case 2008-05-09 11:14:32 +01:00
andy
beb2fcb0c8 adding demonstration buoyantSimpleRadiationFoam solver and tutorial 2008-05-08 17:47:46 +01:00
andy
082165d1c5 adding SRF library, and tutorial with demonstration solver 2008-05-08 17:43:17 +01:00
mattijs
74fc8ba4c4 Added interDyMFoam testcases 2008-05-06 17:35:46 +01:00
mattijs
5c26897095 No longer valid 2008-05-06 17:34:44 +01:00
mattijs
6754032235 Inserted interDyMFoam testcase into testloop 2008-05-06 16:37:29 +01:00
andy
a853e0f350 removing results from tutorial case 2008-05-06 12:09:27 +01:00
OpenFOAM-admin
3170c7c0c9 Creation of OpenFOAM-dev repository 15/04/2008 2008-04-15 18:56:58 +01:00