1 / 9

dr inż. Ziemowit Malecha TOWARDS A THERMAL MODEL FOR THE DIPOLE BY OpenFOAM

dr inż. Ziemowit Malecha TOWARDS A THERMAL MODEL FOR THE DIPOLE BY OpenFOAM. OpenFOAM. Open Source Field Operation and Manipulation C++ libraries ADVANTAGES: More than 50 standard solvers ( open source )

silvern
Télécharger la présentation

dr inż. Ziemowit Malecha TOWARDS A THERMAL MODEL FOR THE DIPOLE BY OpenFOAM

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. dr inż. Ziemowit MalechaTOWARDS A THERMAL MODEL FOR THE DIPOLE BY OpenFOAM

  2. OpenFOAM • Open Source Field Operation and Manipulation C++ libraries • ADVANTAGES: • More than 50 standard solvers (open source) • Possibilityto implement new solver from the beginning or use standard solver as a frame • Access to source code • Applicable to any geometry DISADVANTAGE: • lack of full documentation

  3. STANDARD SOLVERS • Incompressible flows RANS, LES, non Newtonian, PISO, SIMPLE • Compressible flows SIMPLE, PIMPLE, PISO, sonic/supersonic • Multiphase flows compressible, imcompressible, VOF (volume of fluid) • Combustion • Heat transfer and buoyancy-driven flows laminar/turbulent, compressible/incompressible • Molecular dynamics methods • Monte Carlo methods • Electromagnetics • Particle tracking flows • Stress analysis of solids • Finance

  4. PREPROCESING • blockMesh • snappyHexMesh (hexahedral, stl geometry) • Transport mesh from commercial meshers • any mesh cell shape • Mesh, courtesy of: IT'IS Foundation for Research, Zürich, Switzerland

  5. POSTPROCESING ParaView – Open Source Scientific Visualization

  6. OpenFOAM syntax Navier – Stokes equation solve    ( fvm::ddt(rho, U)       + fvm::div(phi, U)       - fvm::laplacian(mu, U)         ==       - fvc::grad(p)   ); • Linear solvers: • PCG/PBICG – preconditioned (bi-)conjugate gradient (DIC, FDIC, DILU, diagonal) • GAMG – generalised geometric-algebraic multi-grid

  7. boundary condition fixedValueValue is specified fixedGradientNormal gradient is specified calculatedBoundary field derived from other fields mixedMixed fixedValue/ fixedGradient condition inletOutletSwitches and between fixedValue and zeroGradientdepending on direction of the flow pressureInletOutletVelocityCombination of pressureInletVelocity and inletOutlet Time and space varying

  8. Two Fluid model ///PISO LOOP fvm::ddt(rho, U) + fvm::div(phi, U)          ==   - fvc::grad(p) + fvc::grad(T) fvm::ddt(rho, Un) + fvm::div(phi, Un)          ==    - fvc::grad(p) - fvc::grad(T) + laplacian(ni,Un) ///END PISO LOOP fvm::ddt(T) + fvm::div(phi, T) -laplacian(k, T) )

  9. Fountain effect Superfluid normal fluid

More Related