|
[Sponsors] |
April 6, 2005, 11:07 |
The simplest axisymetric model
|
#1 |
New Member
Fran�ois Cauneau
Join Date: Mar 2009
Location: Sophia Antipolis, France
Posts: 8
Rep Power: 17 |
The simplest axisymetric model for a fan/turbine consists in following the Froude theory: declare inside the fluid a couple of very close patches - e.g. forming a thin disk - and to set a fixed value for delta-P and a constant velocity+rho between up/downstream faces.
Doing so in openFOAM I encounter a deviation from the theory, i.e. the mass balance is slightly but progressively violated, resulting in mass injected by the disk inside the control volume. I think it comes from the fact I do not see how to actually set the up/downstream velocities to be identical. Is there a way to merge the patches and then to set a mass conservation condition between the upstream patch and the downstream patch ? Pr. Francois Cauneau Ecole des Mines de Paris |
|
April 6, 2005, 11:36 |
Is your mesh one cell thick?
|
#2 |
Senior Member
Join Date: Mar 2009
Posts: 854
Rep Power: 22 |
Is your mesh one cell thick? If so it sounds like you are doing something similar to what boundaryFoam was designed for. If not it sounds like yo need cyclic conditions from front-to-back and drive the flow with a pressure-gradient body-force as in channelOodles.
|
|
April 13, 2005, 12:44 |
Thanks Henry,
indeed the ca
|
#3 |
New Member
Fran�ois Cauneau
Join Date: Mar 2009
Location: Sophia Antipolis, France
Posts: 8
Rep Power: 17 |
Thanks Henry,
indeed the case is 2D, but may extend it for 3D later. SO I was planning to test both of yoyr suggestions... but, shame on me I switched to new version 1.1 !! bad Idea, I cannot further enter any data under FoamX. Trying any of 1.1 1,1 1.1d 1,1d to simply enter 1.1 gives "not a valid number". So, before testing your suggestion, I scan the discussion list to seek for this very... basic trick :-) Francois Cauneau |
|
November 26, 2005, 22:57 |
I will resolve the momentum eq
|
#4 |
Member
olivier Petit
Join Date: Mar 2009
Location: Göteborg, Sweden
Posts: 67
Rep Power: 17 |
I will resolve the momentum equation for 2D axisymetric.
the equation is: div(rho*vv)=-grad(p)+div(mu[grad(v)+Trans(grad(v))]) I implemented it like: ------------------------- phi = fvc::interpolate(rho*U) & mesh.Sf(); tmp<fvvectormatrix> UEqn ( fvm::div(phi, U) - fvm::laplacian(mu,U)- fvc::div(mu*symm(fvc::grad(U)())) + fvc::div(mu*skew(fvc::grad(U)())) ); UEqn().relax(); solve(UEqn() == -fvc::grad(p)); -------------------- When I run this equation with the case of pitzDaily I have the good result. but with the case (2D axisymetric) like nozzleFlow2D I have the bad result. 1. what's the probleme in my implementation ? 2. is there a method to rewrite this equation in cylindrical co-ordinates. I wish to have a fast answer. thanks a lot. ----- Olivier |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Gravity axisymetric | Aminop | FLUENT | 2 | May 5, 2008 05:12 |
axisymetric | BB | FLUENT | 4 | February 1, 2006 04:43 |
3d, 2d or axisymetric | SAM | Main CFD Forum | 2 | November 15, 2004 07:00 |
axisymetric jet | mehdi icho | FLUENT | 2 | April 1, 2002 00:03 |
meshing an axisymetric jet | mehdi icho | FLUENT | 0 | March 1, 2002 10:23 |