Commit Graph

4342 Commits

Author SHA1 Message Date
Mark Olesen
438a83fc81 Update experimental dictionary #calc for new Coco pragmas 2009-12-21 09:28:17 +01:00
Mark Olesen
daf1d6db3d Fixed bad usage of Foam::FatalErrorIn in chemkinLexer.L 2009-12-16 15:43:56 +01:00
Mark Olesen
e434b51914 Add namespace qualifier to WarningIn, FatalErrorIn, etc. macros.
- Previously had just 'Warning' instead of '::Foam::Warning', which
  meant that an identically named class method would inadvertently be
  used - resulting in a compile failure.
2009-12-16 08:55:04 +01:00
Mark Olesen
a5217d7be3 Merge commit 'bundle/home' into olesenm 2009-12-16 08:08:23 +01:00
Mark Olesen
cfeeea7b71 Merge commit 'OpenCFD/master' into olesenm 2009-12-16 08:03:50 +01:00
Mark Olesen
ad2204a818 Add in calcEntry as a very rough draft
- needs Coco/R 16 Dec 2009 version
2009-12-16 01:31:44 +01:00
Mark Olesen
23f5e5917a Remove unused primitiveEntry::insert() private method.
Improve constructors.

    - Use (const UList<token>&) instead of (const List<token>&)

    - Add (const Xfer< List<token> >&) constructor.
2009-12-15 17:35:21 +01:00
Mark Olesen
409fb9aa9a Use openmpi-1.4, which was released 2009-12-08 (minor security fix).
According to the openmpi release information:
- Use GNU Libtool 2.2.6b to build Open MPI, which updates the
  embedded "libltdl" library to fix a potential security
  vulnerability. There are no other changes compared to Open MPI
  v1.3.4.

For development purposes it should thus be adequate to simply

    ( cd $WM_THIRD_PARTY_DIR && mv openmpi-1.3.4 openmpi-1.4 )

if you don't wish to recompile things.
2009-12-15 16:43:33 +01:00
Mark Olesen
fb2bd52972 Use openmpi-1.4, which was released 2009-12-08 (minor security fix).
According to the openmpi release information:
- Use GNU Libtool 2.2.6b to build Open MPI, which updates the
  embedded "libltdl" library to fix a potential security
  vulnerability. There are no other changes compared to Open MPI
  v1.3.4.

For development purposes it should thus be adequate to simply

    ( cd $WM_THIRD_PARTY_DIR && mv openmpi-1.3.4 openmpi-1.4 )

if you don't wish to recompile things.
2009-12-15 16:43:33 +01:00
Mark Olesen
268ed99a7e Fix size bug in PackedList operator=, spotted by Mattijs.
- the size_ was not being adjusted in two assignment operators:
      PackedList<nBits>::operator=(const PackedList<nBits>&)
      PackedList<nBits>::operator=(const UList<label>&)
2009-12-15 13:01:48 +01:00
Mark Olesen
2c815e5b84 Improve ITstream constructors.
- Use (const UList<token>&) instead of (const List<token>&)

- Add (const Xfer< List<token> >&) constructor.
2009-12-15 12:59:50 +01:00
andy
1e086391b7 Branch merge + conflict resolution 2009-12-15 11:38:23 +00:00
Mark Olesen
2760c3db5f Merge commit 'OpenCFD/master' into olesenm 2009-12-15 10:48:51 +01:00
Mark Olesen
02ef85faef Use first() and last() methods in primitiveEntry. 2009-12-15 09:37:09 +01:00
Mark Olesen
3f0b6ec830 Fix minor bug in ITstream
- The lineNumber of token::undefinedToken was being changed instead of
  just the lineNumber of the return token.

- use List::first() and List::last() methods as well
2009-12-15 09:27:27 +01:00
Mark Olesen
1b45fab97a Add minor documentation to pTraits specializations. 2009-12-15 09:03:07 +01:00
Mark Olesen
eb0c408262 Add very rudimentary output support for wide-characters. 2009-12-15 08:38:06 +01:00
Mark Olesen
2df9e0c342 Add very rudimentary output support for wide-characters. 2009-12-15 08:38:06 +01:00
mattijs
94f2aac0b5 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2009-12-14 11:21:15 +00:00
mattijs
5ca567d7cb Changed indentation 2009-12-14 11:20:57 +00:00
mattijs
192f8ae542 Changed tecio build options to use local file 2009-12-14 11:20:22 +00:00
Mark Olesen
7c8316df70 Add peekBack() method to Istream. 2009-12-12 15:35:10 +01:00
andy
f04cdab21d Update to compressible omegaWallFunction
Changed the evaluation of omega to be a function of both omega in the viscous
sublayer and omega in the log region
2009-12-11 17:39:49 +00:00
andy
87f05dd72f Update to incompressible omegaWallFunction
Changed the evaluation of omega to be a function of both omega in the viscous
sublayer and omega in the log region
2009-12-11 17:26:21 +00:00
Mark Olesen
bf2865a087 Add missing low-level peek() to ISstream. 2009-12-11 17:31:15 +01:00
Mark Olesen
497ec32ed8 Add missing low-level peek() to ISstream. 2009-12-11 17:31:15 +01:00
Mark Olesen
d016db1bc6 Enhance edgeMesh to support more formats.
Read only support:

  .bdf, .nas - NASTRAN format. Handles both CBEAM and CROD as lines.
  CROD is what Hypermesh happens to output.

Write only support:

  .vtk - VTK legacy format in ASCII

Read/write support:
  .eMesh - native format, which is simply a list of points, edges
      with an additional IOobject header that lets them be moved about
      easily to use as a featureEdgeMesh.

  .inp - STAR-CD inp/cel/vrt combination
       IOobject header)

  .obj - Alias waverfront format

Radically simplify surfaceFeatureConvert by using the new edgeMesh
functionality.
2009-12-11 16:29:55 +01:00
Mark Olesen
46a455ccea Remove unused Istream methods from surfMesh classes.
Move compilation edgeMesh and surfMesh up in the list
(they are independent of triSurface).
2009-12-11 15:04:28 +01:00
mattijs
6791d10570 Changed indentation 2009-12-11 11:59:28 +00:00
mattijs
ce7274639d Added missing face-flipping flag 2009-12-11 11:58:12 +00:00
mattijs
834e493812 Fixed missing arguments in error message 2009-12-11 11:56:04 +00:00
mattijs
88e407043e Fixed typo in printing 2009-12-11 11:55:36 +00:00
mattijs
9d817bfbdf Added -region option 2009-12-11 11:55:07 +00:00
andy
9589828aa8 Added another new tutorial case for porousExplicitSourceReactingParcelFoam 2009-12-10 16:40:18 +00:00
andy
7bed6626c7 Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-12-10 16:03:54 +00:00
andy
29d7d3f50b Added new tutorial case for porousExplicitSourceReactingParcelFoam 2009-12-10 16:02:37 +00:00
andy
49818dd9ea Added enthalpyTransfer option to liquid evap coeffs 2009-12-10 15:37:55 +00:00
mattijs
35eeedeaa5 Added allowFreeStandingZoneFaces flag
This determines when faceZones and cellZones are being meshed any zone faces
can only be on the boundary of the cellZone or also 'free standing'. The
latter option can be used to e.g. create free-standing baffles
(that do not separate two regions)
2009-12-10 15:31:04 +00:00
mattijs
17846a6bda Removed unused include file 2009-12-10 15:27:21 +00:00
andy
94c61aba3e Updated thermo poly inputs for tutorial case 2009-12-10 15:26:21 +00:00
andy
7a46fea0d0 Updates to phase change model and ethalpy coupling
- Using parcel chemical enthalpy to update cloud chemical enthalpy transfer
  instead of total parcel enthalpy.
- Added functionality to allow enthalpy transfer to be user-controlled,
  either using latent heat, or instanteous enthalpy difference
2009-12-10 15:09:18 +00:00
andy
d058c7ceb8 Added Polynomial class test 2009-12-10 12:50:20 +00:00
andy
9016db20dc Updates and corrections for the polynomial thermo
Added missing operators, and converted polys to be molar-intensive
to enable mixing using existing molar-weighted strategy
2009-12-10 12:34:42 +00:00
andy
a8b2b4a91c Correcting poor coding style 2009-12-10 12:30:45 +00:00
mattijs
a029a59036 Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev 2009-12-09 17:44:13 +00:00
mattijs
9e3527b315 Added more intelligent checking for finding same intersection 2009-12-09 17:42:57 +00:00
mattijs
e8af5d62d5 Filter out zero-sized patches; add generic capability 2009-12-09 17:42:30 +00:00
henry
95fe0792dc Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-12-09 13:35:24 +00:00
henry
812b8f7a94 Changed the way in which the sub-dictionaries prepend the name of the parent to
avoid accumulation of the name during copy and clone.
2009-12-09 13:35:21 +00:00
Mark Olesen
0fc464254a Fix minor bug in surfaceFeatureExtract.C 2009-12-09 13:50:31 +01:00