Skip to content
Snippets Groups Projects
  1. Dec 01, 2015
  2. Nov 29, 2015
  3. Nov 28, 2015
  4. Nov 27, 2015
  5. Nov 26, 2015
  6. Nov 24, 2015
    • Henry Weller's avatar
      TurbulenceModels: updated the mapping of k to R BCs · d812879f
      Henry Weller authored
      Now k BCs which do not have a symmTensor equivalent are converted to "calculated"
      d812879f
    • Henry Weller's avatar
      fvPatchFields/derived/fixedProfile: New BC which applies the specified 1D profile · 7321a5ee
      Henry Weller authored
      This is useful when applying an experimentally obtained profile as an
      inlet condition:
      
          Example of the boundary condition specification:
          \verbatim
          myPatch
          {
              type            fixedProfile;
              profile    csvFile;
      
              profileCoeffs
              {
                  nHeaderLine         0;          // Number of header lines
                  refColumn           0;          // Reference column index
                  componentColumns    (1 2 3);    // Component column indices
                  separator           ",";        // Optional (defaults to ",")
                  mergeSeparators     no;         // Merge multiple separators
                  fileName            "Uprofile.csv";  // name of csv data file
                  outOfBounds         clamp;      // Optional out-of-bounds handling
                  interpolationScheme linear;     // Optional interpolation scheme
              }
              direction        (0 1 0);
              origin           0;
          }
          \endverbatim
      
      or a simple polynomial profile:
      
          Example setting a parabolic inlet profile for the PitzDaily case:
          \verbatim
          inlet
          {
              type            fixedProfile;
      
              profile         polynomial
              (
                  ((1 0 0)        (0 0 0))
                  ((-6200 0 0)    (2 0 0))
              );
              direction       (0 1 0);
              origin          0.0127;
          }
          \endverbatim
      
      Based on code provided by Hassan Kassem:
      http://www.openfoam.org/mantisbt/view.php?id=1922
      7321a5ee
    • Henry Weller's avatar
  7. Nov 23, 2015
  8. Nov 22, 2015
  9. Nov 21, 2015
  10. Nov 20, 2015
  11. Nov 19, 2015
  12. Nov 18, 2015
  13. Nov 17, 2015
  14. Nov 16, 2015
  15. Nov 15, 2015
  16. Nov 13, 2015
  17. Nov 11, 2015
  18. Nov 10, 2015
  19. Nov 08, 2015
  20. Nov 06, 2015
  21. Nov 04, 2015
  22. Nov 01, 2015
  23. Oct 31, 2015
    • Henry Weller's avatar
      equationOfState/Boussinesq: New equation of state for the Boussinesq... · ef07a816
      Henry Weller authored
      equationOfState/Boussinesq: New equation of state for the Boussinesq approximation for buoyant flows
      
      Description
          Incompressible gas equation of state using the Boussinesq approximation for
          the density as a function of temperature only:
      
          \verbatim
              rho = rho0*(1 - beta*(T - T0))
          \endverbatim
      
      To be used with the buoyantPimpleFoam and buoyantSimpleFoam solvers as
      an alternative to using buoyantBoussinesqPimpleFoam or
      buoyantBoussinesqSimpleFoam, providing consistency with all other
      solvers and utilities using the thermodynamics package in OpenFOAM.
      ef07a816
  24. Oct 30, 2015