Commit Graph

2899 Commits

Author SHA1 Message Date
ef5a7f6741 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-29 15:34:10 +01:00
1589afb960 added localSize member function 2009-05-29 15:28:26 +01:00
feb846bd43 work around scotch fpe bug 2009-05-29 15:27:55 +01:00
80175df2dd Changed the BC to switch between "pd" and static pressure according to the variable name. 2009-05-29 11:57:15 +01:00
20dcad4e57 Added the reciprocal of the turbulent Schmidt number. 2009-05-29 11:03:20 +01:00
46ca766a4b Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-29 09:33:58 +01:00
47beddc1c1 Added output of the patch area magnitude and the integral over the patch area magnitude. 2009-05-29 09:33:47 +01:00
1d14951bf5 Added turbulent diffusivity. 2009-05-29 09:32:32 +01:00
0100aa87fd Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-28 18:22:47 +01:00
1779687e3d duplicate function removed 2009-05-28 18:22:38 +01:00
d4d4f72827 optional reading of writeGraph 2009-05-28 18:15:16 +01:00
6c2996cac4 correction from Hilary 2009-05-28 18:14:53 +01:00
55f5241fc8 output wallDistance 2009-05-28 18:14:38 +01:00
0a97692857 bugfix: changed order of logic to prevent hand on redude in parallel 2009-05-28 11:46:54 +01:00
3a32131ccd Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-27 19:25:27 +01:00
fd9cf0c1f6 removed kappa from argument list - not used 2009-05-27 19:23:05 +01:00
66cd363092 updated 2009-05-27 19:22:35 +01:00
0e75278db9 bugfix: << operator 2009-05-27 18:29:49 +01:00
549e72dff2 decomposing meshes in time directories 2009-05-26 21:43:00 +01:00
88ea18c3a7 change to QMAKE_PATH 2009-05-22 12:32:17 +01:00
71a73d9490 removing duplicate file 2009-05-22 11:57:05 +01:00
cc5506f103 Added backward compatibility in the naming of the ParaView directory. 2009-05-21 18:29:13 +01:00
a562395687 Allow the setting of the Qt version via the path to the appropriate qmake. 2009-05-21 17:45:56 +01:00
10c2f6bee0 Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-21 10:13:42 +01:00
287fd398e2 adding missed file from tutorial 2009-05-20 17:37:54 +01:00
4459d245b7 updates to bring in to line with radiation lib 2009-05-20 17:31:46 +01:00
69e2eefdb0 added new coalChemisryFoam tutorial 2009-05-20 17:30:21 +01:00
c7ab2fcc4c changed field name 2009-05-20 16:05:10 +01:00
57bc6a726a Merge branch 'lagrangianDev' into WBM 2009-05-20 14:58:43 +01:00
a9e1faf9c3 removing const-ness 2009-05-20 14:58:27 +01:00
5866b3a114 correcting signs for return heat of reaction 2009-05-20 14:54:12 +01:00
6ec44522c0 Merge branch 'lagrangianDev' into WBM 2009-05-20 14:50:30 +01:00
0696e9aa44 corrections to chemical enthalpy transfer 2009-05-20 14:50:08 +01:00
8edf105c45 cleanup of time handling (cosmetic changes), used timeSelector in more places 2009-05-20 15:40:30 +02:00
7941b04785 Merge commit 'OpenCFD/master' into olesenm 2009-05-19 21:15:56 +02: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
174efa305c Merge branch 'lagrangianDev' into WBM 2009-05-19 18:27:02 +01:00
5ccff5ffca updated version in header to 1.5.x 2009-05-19 18:23:41 +01:00
58871d4368 adding writeRegisteredObject 2009-05-19 18:18:56 +01:00
30baccd509 adding reactingParcelFoam tutorial 2009-05-19 17:54:45 +01:00
4fa5f74f8a using null constructor for none option 2009-05-19 17:37:41 +01:00
c4ac52e6b0 fix: taking carrier specie id 2009-05-19 17:37:04 +01:00
724b034cc7 argList enhancement: added convenience methods for accessing options
Oriented somewhat on dictionary methods.

Return the argument string associated with the named option:
    Info<< "-foo: " << args.option("foo") << nl;

Return true if the named option is found
    if (args.optionFound("foo")) ...

Return an IStringStream to the named option
    old:      value = readScalar(IStringStream(args.options()["foo"])());
    newer:    value = readScalar(args.optionLookup("foo")());
    also:     List<scalar> lst(args.optionLookup("foo")());

Read a value from the named option
    newest:   value = args.optionRead<scalar>("foo");

Read a value from the named option if present.
    old:  if (args.options().found("foo"))
          {
              value = readScalar(IStringStream(args.options()["foo"])());
          }
    new:  args.optionReadIfPresent("foo", value);

Read a List of values from the named option
    patches = args.optionReadList<word>("patches");

Didn't bother adding optionReadListIfPresent<T>(const word&), since it
probably wouldn't be common anyhow.
2009-05-19 18:19:49 +02:00
55e766bd67 Fix: edge lookup from edgeLabels_ by index rather than just from edges 2009-05-19 15:48:54 +01:00
3efc299dea multiple updates 2009-05-19 15:06:43 +01:00
bbb9e52353 updates to surface reaction models 2009-05-19 15:05:18 +01:00
5dbc2e53c1 moved h-eqn out of PISO loop 2009-05-19 15:03:39 +01:00
04064d110b fixed: wrong calculation of H1 2009-05-19 15:03:00 +01:00
1d2a94c38b HashTable minor iterator issues
- made const_iterator::operator* and const_iterator::operator() const only
- added const versions of iterator::operator* and iterator::operator()
2009-05-19 13:14:54 +02:00
ef1f480257 adding path to meshTools/lnInclude 2009-05-19 10:02:53 +01:00