openfoam/applications/solvers/multiphase/multiphaseEulerFoam
Mark Olesen b4d38ab468 ENH: improve handling of ThirdParty packages
- generalize some of the library extensions (.so vs .dylib).
  Provide as wmake 'sysFunctions'

- added note about unsupported/incomplete system support

- centralize detection of ThirdParty packages into wmake/ subdirectory
  by providing a series of scripts in the spirit of GNU autoconfig.
  For example,

      have_boost, have_readline, have_scotch, ...

  Each of the `have_<package>` scripts will generally provide the
  following type of functions:

      have_<package>          # detection
      no_<package>            # reset
      echo_<package>          # echoing

  and the following type of variables:

      HAVE_<package>          # unset or 'true'
      <package>_ARCH_PATH     # root for <package>
      <package>_INC_DIR       # include directory for <package>
      <package>_LIB_DIR       # library directory for <package>

  This simplifies the calling scripts:

      if have_metis
      then
          wmake metisDecomp
      fi

  As well as reducing clutter in the corresponding Make/options:

      EXE_INC = \
          -I$(METIS_INC_DIR) \
          -I../decompositionMethods/lnInclude

      LIB_LIBS = \
          -L$(METIS_LIB_DIR) -lmetis

  Any additional modifications (platform-specific or for an external build
  system) can now be made centrally.
2018-04-24 14:51:19 +02:00
..
interfacialModels STYLE: Correcting typos 2018-03-28 17:14:16 +01:00
Make Make/options: Removed duplicate entries 2016-08-01 20:55:16 +01:00
multiphaseSystem STYLE: Correcting typos 2018-03-28 17:14:16 +01:00
Allwclean Allwmake: Remove 'set -x' which generates a lot of noise 2016-11-13 18:08:22 +00:00
Allwmake ENH: improve handling of ThirdParty packages 2018-04-24 14:51:19 +02:00
correctPhi.H multiphaseEulerFoam: transform to solve for p_rgh 2015-03-19 21:40:41 +00:00
CourantNo.H Updated headers 2016-04-30 21:53:19 +01:00
createFields.H STYLE: more consistent use of dimensioned Zero 2018-03-16 10:24:03 +01:00
createMRFZones.H MRFZone: rationalize to allow support for general frame acceleration 2015-05-29 15:31:53 +01:00
DDtU.H MRFZone: rationalize to allow support for general frame acceleration 2015-05-29 15:31:53 +01:00
MRFCorrectBCs.H MRFZone: rationalize to allow support for general frame acceleration 2015-05-29 15:31:53 +01:00
multiphaseEulerFoam.C GIT: Initial state after latest Foundation merge 2016-09-20 14:49:08 +01:00
pEqn.H STYLE: more consistent use of dimensioned Zero 2018-03-16 10:24:03 +01:00
TEqns.H Thermodynamics and sub-models: Removed "Sp" boundedness corrections on transport, replaced with "bounded Gauss" scheme 2012-09-21 14:34:42 +01:00
UEqns.H GeometricField::dimensionedInteralFieldRef() -> GeometricField::ref() 2016-04-30 18:43:51 +01:00
zonePhaseVolumes.H multiphaseEulerFoam: Work in progress 2011-10-26 14:30:06 +01:00