|
[Sponsors] |
Confusion: implementing non newtonian viscosity with particle tracking? |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 13, 2021, 08:58 |
Confusion: implementing non newtonian viscosity with particle tracking?
|
#1 |
Member
Sourav Mandal
Join Date: Jul 2019
Posts: 55
Rep Power: 7 |
The icoUncoupledKinematicParcelFoam or particleFoam solver does in include non Newtonian fluid models (in opefoam.com version 2012 and openfoam.org 8 versions, respectively). However, I need to track particles inside a nozzle at steady state laminar flow with power law fluid. I have the steady state velocity profile (after running simpleFoam), which I can use for the particle tracking.
But I not absolutely sure of the viscosity model that needs to be provided. Code:
❯FOAM_TUTORIALS/lagrangian/particleFoam/hopper/hopperInitialState/constant/transportProperties /*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 8 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; location "constant"; object transportProperties; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // rhoInf [1 -3 0 0 0 0 0] 1.2; transportModel Newtonian; nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // Such as,
I tried providing non Newtonian viscosity model in the transportProperties of particleFoam, but it failed. Code:
❯ particleFoam /*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 8 \\/ M anipulation | \*---------------------------------------------------------------------------*/ Build : 8 Exec : particleFoam Date : Apr 13 2021 Time : 13:47:55 Host : "archLinux2" PID : 30850 I/O : uncollated Case : /home/massisenergy/autoMount/Data_Documents/Dox_ownCloud/openFoamDataSR/E3DBP_Nozzle/CFD_E3DBP_PauloA_SM/PAA_Blunted_Nordson7018358_fR1.5microlitre/PAA_Blend1_deltaX0.02Y0.025_simpleFOAM/PAAB1_deltaX.02Y.025_particleFoamNewtonian nProcs : 1 sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE). fileModificationChecking : Monitoring run-time modified files using timeStampMaster (fileModificationSkew 10) allowSystemOperations : Allowing user-supplied system call operations // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // Create time Create mesh for time = 0 Reading g Reading field U Reading/calculating face flux field phi Selecting incompressible transport model powerLaw --> FOAM FATAL IO ERROR: keyword grad(U) is undefined in dictionary "/home/.../system/fvSchemes/gradSchemes" file: /home/.../system/fvSchemes/gradSchemes from line 25 to line 25. From function const Foam::entry& Foam::dictionary::lookupEntry(const Foam::word&, bool, bool) const in file db/dictionary/dictionary.C at line 799. FOAM exiting |
|
April 19, 2021, 10:01 |
small modification for Non Newtonian viscosity models
|
#2 | |
Member
Sourav Mandal
Join Date: Jul 2019
Posts: 55
Rep Power: 7 |
Quote:
Code:
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 8 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; location "system"; object fvSchemes; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ddtSchemes { default none; } gradSchemes { default Gauss linear;//none; } divSchemes { default none; } laplacianSchemes { default none; } interpolationSchemes { default linear; } //************************************************************************* // |
||
April 19, 2021, 10:03 |
|
#3 | |
Member
Sourav Mandal
Join Date: Jul 2019
Posts: 55
Rep Power: 7 |
Quote:
|
||
April 30, 2021, 04:36 |
|
#4 |
Member
Join Date: Sep 2010
Location: Leipzig, Germany
Posts: 96
Rep Power: 16 |
Hi,
1) It is for the fluid. 2) Some of the forces acting on the particle do depend on the fluid viscosity. So you need to have it in order to correctly calculate the particle motion. |
|
Tags |
icouncoupledkinematicp, nonnewtonian, particletracking, steadystate, viscositymodel |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Particle tracking file per time step in an Unsteady Particle Tracking | Manu4CFD | FLUENT | 1 | December 29, 2022 08:15 |
Eulerian Multiphase Model vs Lagrangian Particle Tracking | ajjadhav | CFX | 14 | December 7, 2020 17:22 |
Particle Tracking in Steady State | Manu4CFD | FLUENT | 0 | March 7, 2019 04:43 |
Particle size and Mesh Size; Particle tracking; | Suman Sapkota | CFX | 11 | August 12, 2018 20:39 |
Particle tracking INTEGER limitation warning | Peter023 | FLUENT | 0 | June 24, 2013 04:59 |