Commit Graph

27070 Commits

Author SHA1 Message Date
ab49c60394 instance searching 2009-02-24 12:08:54 +00:00
364e8e001d reintroduce comments 2009-02-24 12:07:50 +00:00
78b10babac collection 2009-02-24 12:07:06 +00:00
2d81360722 removed instance searching 2009-02-24 12:06:28 +00:00
af8a42067c collapse cell detection 2009-02-24 12:05:35 +00:00
9cea1db461 Removing CV mesher from dsmc branch 2009-02-24 10:10:31 +00:00
e37b5efc02 Line removed 2009-02-24 10:05:09 +00:00
7f71aadf49 cosmetics 2009-02-24 09:45:00 +00:00
7f9e4755cd Adding initial dsmc cloud and solver. 2009-02-23 18:55:24 +00:00
53ab605456 Merge branch 'master' into cvm 2009-02-23 12:14:29 +00:00
761ccd2bb3 updates 2009-02-20 19:12:27 +00:00
2ad849811b Modified grading function. 2009-02-20 18:36:48 +00:00
e2bad4ddac restructuring
- injection model sets new parcel position and cell owner
    - allows injection model to cache injection cells etc.
2009-02-20 17:45:44 +00:00
b5140f74aa cosmetics 2009-02-20 16:58:04 +00:00
4b623e594c wildcards in dictionary 2009-02-20 16:47:33 +00:00
a1525f016a extrapolate to any non-constraint patch 2009-02-20 16:47:09 +00:00
80707849f3 Merge branch 'master' into lagrangianDev 2009-02-20 16:36:38 +00:00
ef8ac6ff9e message change 2009-02-19 22:41:23 +00:00
c09bbf8a25 Added distance to and index of closest surface patch to indexedVertex, using this to preform tests of near surface grading and refinement. 2009-02-19 18:01:13 +00:00
4f23395fb9 Added buoyancy effects
- NOTE: not included pRef - still needs to be done (somehow)
2009-02-19 17:58:25 +00:00
5c97cd1d39 added comment 2009-02-19 13:08:07 +00:00
b1fe3cc51a processorFvPatchField now holds opposite value; not interpolate 2009-02-19 11:15:32 +00:00
7f2f779779 Fixes to point insertion, making faceAreaWeight normalised, not hard coded to cell size, adding tweak to fertex removal criteria to allow selective insertion at short-edge midpoint if the vertices have not already been flagged for removal. 2009-02-18 18:57:09 +00:00
5e2a16d047 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2009-02-18 18:17:14 +00:00
181f252245 updates 2009-02-18 18:05:54 +00:00
3c5afbfcac Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2009-02-18 17:08:00 +00:00
0e2f77b170 iso surface on coupled bc 2009-02-18 17:05:56 +00:00
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
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
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
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
8695977fc5 Added point removal for short Delaunay edges in rotational controller as well as small and highly conntected dual cell removal. 2009-02-17 17:58:28 +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
0d4433cb33 Merge branch 'master' into cvm 2009-02-16 19:19:19 +00:00
7d5e91f6a0 Added point insertions on long edges for rotational controller and identified possible point removal candidates. 2009-02-16 19:15:09 +00: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