Skip to content
Snippets Groups Projects
  1. Jun 26, 2017
  2. Jun 23, 2017
  3. Jun 15, 2017
  4. May 22, 2017
  5. Jul 27, 2017
  6. Jun 23, 2017
  7. Jun 11, 2017
    • Henry Weller's avatar
      listSwitches: moved from argList to debug · 5403e977
      Henry Weller authored and Andrew Heather's avatar Andrew Heather committed
      Initially the listSwitches functions depended directly on argList functionality
      but this has now been factored out so that the listSwitches functions are more
      general and require only debug functionality.
      5403e977
  8. Jun 10, 2017
    • Henry Weller's avatar
      Replace foamList utility with -list.* options · 02e33f49
      Henry Weller authored and Andrew Heather's avatar Andrew Heather committed
      Provides better context for the available boundary conditions, fvOptions,
      functionObjects etc. and thus returns only those available to and compatible
      with the particular application.
      
      e.g.
      
      pimpleFoam -help
      
      Usage: pimpleFoam [OPTIONS]
      options:
        -case <dir>       specify alternate case directory, default is the cwd
        -listFunctionObjects
                          List functionObjects
        -listFvOptions    List fvOptions
        -listRegisteredSwitches
                          List switches registered for run-time modification
        -listScalarBCs    List scalar field boundary conditions (fvPatchField<scalar>)
        -listSwitches     List switches declared in libraries but not set in
                          etc/controlDict
        -listTurbulenceModels
                          List turbulenceModels
        -listUnsetSwitches
                          List switches declared in libraries but not set in
                          etc/controlDict
        -listVectorBCs    List vector field boundary conditions (fvPatchField<vector>)
        -noFunctionObjects
                          do not execute functionObjects
        -parallel         run in parallel
        -postProcess      Execute functionObjects only
        -roots <(dir1 .. dirN)>
                          slave root directories for distributed running
        -srcDoc           display source code in browser
        -doc              display application documentation in browser
        -help             print the usage
      
      pimpleFoam listTurbulenceModels
      
      pimpleFoam -listTurbulenceModels
      /*---------------------------------------------------------------------------*\
      | =========                 |                                                 |
      | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
      |  \\    /   O peration     | Version:  dev                                   |
      |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
      |    \\/     M anipulation  |                                                 |
      \*---------------------------------------------------------------------------*/
      Build  : dev-39c46019e44f
      Exec   : pimpleFoam -listTurbulenceModels
      Date   : Jun 10 2017
      Time   : 21:37:49
      Host   : "dm"
      PID    : 675
      Case   : /home/dm2/henry/OpenFOAM/OpenFOAM-dev
      nProcs : 1
      sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
      SetNaN : Initialising allocated memory to NaN (FOAM_SETNAN).
      fileModificationChecking : Monitoring run-time modified files using timeStampMaster (fileModificationSkew 10)
      allowSystemOperations : Allowing user-supplied system call operations
      
      // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
      Turbulence models
      3
      (
      LES
      RAS
      laminar
      )
      
      RAS models
      18
      (
      LRR
      LamBremhorstKE
      LaunderSharmaKE
      LienCubicKE
      LienLeschziner
      RNGkEpsilon
      SSG
      ShihQuadraticKE
      SpalartAllmaras
      kEpsilon
      kOmega
      kOmegaSST
      kOmegaSSTLM
      kOmegaSSTSAS
      kkLOmega
      qZeta
      realizableKE
      v2f
      )
      
      LES models
      10
      (
      DeardorffDiffStress
      Smagorinsky
      SpalartAllmarasDDES
      SpalartAllmarasDES
      SpalartAllmarasIDDES
      WALE
      dynamicKEqn
      dynamicLagrangian
      kEqn
      kOmegaSSTDES
      )
      
      Further work will be needed to support the -listTurbulenceModels option in
      multiphase solvers.
      02e33f49
  9. Jun 26, 2017
  10. Jun 06, 2017
  11. Jun 04, 2017
  12. Jun 02, 2017
  13. May 31, 2017
  14. May 22, 2017
  15. May 18, 2017
  16. May 12, 2017
  17. May 08, 2017
  18. May 05, 2017
  19. May 04, 2017
  20. Jun 13, 2017
  21. May 18, 2017
  22. May 09, 2017
  23. May 03, 2017
  24. Apr 30, 2017
  25. Aug 16, 2017
  26. Jul 17, 2017
  27. Jul 16, 2017
  28. Jun 13, 2017
  29. May 18, 2017
  30. Jul 17, 2017
  31. Jul 13, 2017
  32. Sep 05, 2017
  33. Jul 17, 2017
  34. Sep 05, 2017
  35. Jun 06, 2017
  36. Apr 28, 2017
    • Will Bainbridge's avatar
      tutorials/lagrangian: Added mixedVesselAMI2D · 643ef331
      Will Bainbridge authored and Andrew Heather's avatar Andrew Heather committed
      This tutorial demonstrates moving mesh and AMI with a Lagrangian cloud.
      It is very slow, as interaction lists (required to compute collisions)
      are not optimised for moving meshes. The simulation time has therefore
      been made very short, so that it finishes in a reasonable time. The
      mixer only completes a small fraction of a rotation in this time. This
      is still sufficient to test tracking and collisions in the presence of
      AMI and mesh motion.
      
      In order to generate a convincing animation, however, the end time must
      be increased and the simulation run for a number of days.
      643ef331