Commit Graph

7666 Commits

Author SHA1 Message Date
Mark Olesen
ffc74562f7 STYLE: shorten paths reported in dynamicCode 2011-03-02 15:36:02 +01:00
andy
ce29cba31a ENH: use solution dt instead of time dt 2011-03-02 14:31:27 +00:00
andy
a5ce23af33 ENH: Improvements to particle integration methods 2011-03-02 14:31:00 +00:00
Mark Olesen
815a806be7 ENH: allow verbose output for fixedValueFvPatchScalarFieldTemplate 2011-03-02 14:28:22 +01:00
Mark Olesen
3b72fc3e38 ENH: support default values in string expansion
- syntax as per Bourne/Korn shell
      ${parameter:-defValue}

  If parameter is unset or null, the \c defValue is substituted.
  Otherwise, the value of parameter is substituted.
2011-03-02 14:11:30 +01:00
Mark Olesen
01ea4623f9 BUG: string expand bombed out on first unknown construct
- eg,
       "$USER $(PWD) $USER"  ->  "username $(PWD) $USER"
  instead of
       "$USER $(PWD) $USER"  ->  "username $(PWD) username"

  this is noticable in some dynamicCode usages

STYLE: consolidate all string expand code into stringOps
2011-03-02 13:46:15 +01:00
andy
630592fb17 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2011-03-02 11:48:42 +00:00
andy
ad5a849416 ENH: Tutoral updates 2011-03-02 11:42:37 +00:00
sergio
c9098c1b1b BUG: Distribute QrNbr was missing 2011-03-02 11:16:28 +00:00
andy
b91eb061b2 ENH: Clouds - only read parcel fields when solution is active 2011-03-02 11:01:47 +00:00
andy
b2de414a99 ENH: Updated steadyReactingParcelFoam -> LTSReactingParcelFoam 2011-03-02 11:00:13 +00:00
Mark Olesen
e65f566d68 Merge remote branch 'OpenCFD/master' into olesenm 2011-03-01 19:15:06 +01:00
mattijs
cb38e02622 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2011-03-01 18:04:55 +00:00
mattijs
1a3639371a ENH: radiationCoupledBase.C: FatalIOError instead of FatalError 2011-03-01 18:04:03 +00:00
mattijs
9ae8019446 STYLE: directMappedPatchBase.C: date 2011-03-01 18:03:34 +00:00
mattijs
63ecc03d76 STYLE: snappyHexMeshDict: updated comment 2011-03-01 18:02:51 +00:00
andy
7d1e727372 ENH: pass args by reference instead of copy 2011-03-01 17:52:10 +00:00
andy
d3dc12967e Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2011-03-01 17:14:41 +00:00
andy
9de87955cf BUG: correction to particle forces - still needs a better method... 2011-03-01 17:14:34 +00:00
andy
075dee2fb8 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2011-03-01 17:00:32 +00:00
andy
e694ee9ca5 BUG: corrected colliding cloud sub-cycling 2011-03-01 16:17:14 +00:00
andy
cefb78fc6d ENH: moved maxCo out of loop 2011-03-01 16:16:56 +00:00
Mark Olesen
d3c2038cef ENH: add foamSite alias for changing to site-directory 2011-03-01 16:36:47 +01:00
mattijs
e4f00d6b83 Revert "STYLE: surfaceCoarsen: remove orhpaned files"
This reverts commit 98f269edaf.
2011-03-01 15:00:38 +00:00
Mark Olesen
f182b725da STYLE: use 'static const' instead of 'const static' for consistency 2011-03-01 15:21:30 +01:00
Mark Olesen
a1d40dec77 Merge remote branch 'OpenCFD/master' into olesenm 2011-03-01 15:15:44 +01:00
Mark Olesen
97cd3af1ff ENH: cleanup codeStream - use dynamicCode, dynamicCodeContext encapsulation
Problems remain with codedFixedValueFvPatchScalarField:

- readIfModified() notices change on system/codeDict, but the
  codeProperties::setUnmodified() means that only a single entry will
  get processed

- it appears that while dlclose() may (or may not) be actually closing
  the library, there are probably still references about. This means
  that a subsequent reloading still points to the original functions
  and the lookup is not updated correctly.
2011-03-01 14:19:24 +01:00
andy
2b241996df STYLE: info comment formatting 2011-03-01 09:54:31 +00:00
Mark Olesen
6b79aae433 BUG: removing coded FixedValue patch deleted fvPatch constructor tables
- use newly introduced makeRemovablePatchTypeField to avoid this problem
2011-03-01 10:51:59 +01:00
andy
1f8a8535a0 ENH: Resolved build order in thermophysical model libs 2011-03-01 09:50:47 +00:00
andy
72cba34850 ENH: Added particle fate output to standard interaction model 2011-02-28 18:18:19 +00:00
andy
c4a4055d3a ENH: Updates to the lagrangian intermediate lib coupling terms 2011-02-28 16:25:11 +00:00
Mark Olesen
344a4500cb ENH: runTimeSelection with addRemovable 2011-02-28 16:39:35 +01:00
andy
4ae3d1c0e5 GIT: ,erge conflict resolution 2011-02-28 12:00:43 +00:00
andy
8c7e1e13af ENH: Updated kinematic and thermo cloud sources 2011-02-28 11:58:22 +00:00
andy
6036c90d2a ENH: Updated kinematic and thermo cloud sources 2011-02-28 11:58:22 +00:00
andy
da12c41f15 ENH: Added error msg if collisions used in steady state calcs 2011-02-28 10:40:46 +00:00
andy
784e20705c ENH: Tutorial - added emmisivity mode entry to G field 2011-02-28 10:37:37 +00:00
andy
69f62abe26 ENH: Output cloud property dictionaries as ascii 2011-02-28 10:36:34 +00:00
Mark Olesen
5c5b82f289 BUG: codeProperties was masking regIOobject::modified()
- file changes were not getting noticed, made modified 'sticky'
2011-02-25 20:15:08 +01:00
andy
eec0068e37 STYLE: corrected line length <= 80 chars 2011-02-25 17:46:56 +00:00
andy
3da15e1cfd STYLE: code clean-up 2011-02-25 17:44:02 +00:00
andy
7118bf647d BUG: Added missing typename macro 2011-02-25 17:32:55 +00:00
andy
e3c4a02b8c COMP: removed extrudeModel and MGridGenGAMGAgglomeration from foamDebugSwitches 2011-02-25 17:21:42 +00:00
Mark Olesen
f2ff53f7b4 ENH: add dlSymFound() to check for existence of symbol without warnings 2011-02-25 18:19:45 +01:00
Mark Olesen
b8f643f3da BUG: must use dlerror() to clear prev errors before using dlsym() 2011-02-25 18:18:41 +01:00
andy
edf3d0498d ENH: rename libradiation in tut case 2011-02-25 17:04:58 +00:00
andy
9279607f4d COMP: compile SLGThermo before radiation 2011-02-25 17:03:48 +00:00
andy
7e7b75be36 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2011-02-25 16:44:39 +00:00
andy
1ec2377731 ENH: further lagrangian tutorial updates 2011-02-25 16:43:18 +00:00