Commit Graph

2844 Commits

Author SHA1 Message Date
henry
20dcad4e57 Added the reciprocal of the turbulent Schmidt number. 2009-05-29 11:03:20 +01:00
henry
46ca766a4b Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-29 09:33:58 +01:00
henry
47beddc1c1 Added output of the patch area magnitude and the integral over the patch area magnitude. 2009-05-29 09:33:47 +01:00
henry
1d14951bf5 Added turbulent diffusivity. 2009-05-29 09:32:32 +01:00
mattijs
0100aa87fd Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-28 18:22:47 +01:00
mattijs
1779687e3d duplicate function removed 2009-05-28 18:22:38 +01:00
mattijs
d4d4f72827 optional reading of writeGraph 2009-05-28 18:15:16 +01:00
mattijs
6c2996cac4 correction from Hilary 2009-05-28 18:14:53 +01:00
mattijs
55f5241fc8 output wallDistance 2009-05-28 18:14:38 +01:00
andy
0a97692857 bugfix: changed order of logic to prevent hand on redude in parallel 2009-05-28 11:46:54 +01:00
andy
3a32131ccd Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-27 19:25:27 +01:00
andy
fd9cf0c1f6 removed kappa from argument list - not used 2009-05-27 19:23:05 +01:00
andy
66cd363092 updated 2009-05-27 19:22:35 +01:00
mattijs
549e72dff2 decomposing meshes in time directories 2009-05-26 21:43:00 +01:00
andy
88ea18c3a7 change to QMAKE_PATH 2009-05-22 12:32:17 +01:00
andy
71a73d9490 removing duplicate file 2009-05-22 11:57:05 +01:00
henry
cc5506f103 Added backward compatibility in the naming of the ParaView directory. 2009-05-21 18:29:13 +01:00
henry
a562395687 Allow the setting of the Qt version via the path to the appropriate qmake. 2009-05-21 17:45:56 +01:00
andy
10c2f6bee0 Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-21 10:13:42 +01:00
andy
287fd398e2 adding missed file from tutorial 2009-05-20 17:37:54 +01:00
andy
4459d245b7 updates to bring in to line with radiation lib 2009-05-20 17:31:46 +01:00
andy
69e2eefdb0 added new coalChemisryFoam tutorial 2009-05-20 17:30:21 +01:00
andy
c7ab2fcc4c changed field name 2009-05-20 16:05:10 +01:00
andy
57bc6a726a Merge branch 'lagrangianDev' into WBM 2009-05-20 14:58:43 +01:00
andy
a9e1faf9c3 removing const-ness 2009-05-20 14:58:27 +01:00
andy
5866b3a114 correcting signs for return heat of reaction 2009-05-20 14:54:12 +01:00
andy
6ec44522c0 Merge branch 'lagrangianDev' into WBM 2009-05-20 14:50:30 +01:00
andy
0696e9aa44 corrections to chemical enthalpy transfer 2009-05-20 14:50:08 +01:00
Mark Olesen
8edf105c45 cleanup of time handling (cosmetic changes), used timeSelector in more places 2009-05-20 15:40:30 +02:00
Mark Olesen
7941b04785 Merge commit 'OpenCFD/master' into olesenm 2009-05-19 21:15:56 +02:00
Mark Olesen
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
andy
174efa305c Merge branch 'lagrangianDev' into WBM 2009-05-19 18:27:02 +01:00
andy
5ccff5ffca updated version in header to 1.5.x 2009-05-19 18:23:41 +01:00
andy
58871d4368 adding writeRegisteredObject 2009-05-19 18:18:56 +01:00
andy
30baccd509 adding reactingParcelFoam tutorial 2009-05-19 17:54:45 +01:00
andy
4fa5f74f8a using null constructor for none option 2009-05-19 17:37:41 +01:00
andy
c4ac52e6b0 fix: taking carrier specie id 2009-05-19 17:37:04 +01:00
Mark Olesen
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
graham
55e766bd67 Fix: edge lookup from edgeLabels_ by index rather than just from edges 2009-05-19 15:48:54 +01:00
andy
3efc299dea multiple updates 2009-05-19 15:06:43 +01:00
andy
bbb9e52353 updates to surface reaction models 2009-05-19 15:05:18 +01:00
andy
5dbc2e53c1 moved h-eqn out of PISO loop 2009-05-19 15:03:39 +01:00
andy
04064d110b fixed: wrong calculation of H1 2009-05-19 15:03:00 +01:00
Mark Olesen
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
andy
ef1f480257 adding path to meshTools/lnInclude 2009-05-19 10:02:53 +01:00
andy
de937e59d1 typo - missing ()'s 2009-05-18 19:36:31 +01:00
andy
a723b85abd updates to enable requested field activated injection 2009-05-18 19:04:04 +01:00
andy
f2f7b74f03 added pre-factor for reference field 2009-05-18 19:02:16 +01:00
andy
6f68f6fb20 typo - missing ()'s 2009-05-18 19:36:31 +01:00
andy
868e2e4096 adding path to meshTools/lnInclude 2009-05-19 10:02:53 +01:00