CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

simulation whitout a U equation

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 26, 2009, 03:52
Default simulation whitout a U equation
  #1
Member
 
Sven Degner
Join Date: Mar 2009
Location: Zürich
Posts: 55
Rep Power: 17
sven82 is on a distinguished road
hi,

i write my own DES model and try next to simulate the correlation of the isotropic turbulence. But in this case I got some problems with the initial conditions.
At the moment I got the velocity conditions, the problem is how it is possible to write the other fields for my fixed velocity field , in my case p,k,epsilon?

the simple idea, solve the case without U equation till convergence and i got the matching field for my velocity field?

original oodles something like this
:
fvVectorMatrix UEqn //the velocity equation
(
fvm::ddt(U)
+ fvm::div(phi, U)
+ sgsModel->divDevBeff(U)
);

if (momentumPredictor)
{ solve(UEqn == -fvc::grad(p)); }

// --- PISO loop
for (int corr=0; corr<nCorr; corr++)
{
volScalarField rUA = 1.0/UEqn.A();

U = rUA*UEqn.H();
phi = (fvc::interpolate(U) & mesh.Sf())
+ fvc::ddtPhiCorr(rUA, U, phi); ..........................

My question now how can edit the solver to solve my problem

target: p , k , epsilon for my over the time fixed velocity field?

best regard
Sven
sven82 is offline   Reply With Quote

Old   August 20, 2009, 05:48
Default
  #2
Member
 
Markus Weinmann
Join Date: Mar 2009
Location: Stuttgart, Germany
Posts: 77
Rep Power: 17
cfdmarkus is on a distinguished road
Hi Sven

have you solved your problem already?
In order not to solve for U, you could try to increase the tolerance on U such that U is never updated in the iteration process.

I am also interesseted in how you have generated isotropic turbulence in OF? The reason why I am asking is because I want to calibrate a hybrid RANS/LES method using isotropic turbulence. Unfortunately, I was not very successful in generating isotropic turbulence until now. Do you have any tips?

Markus
cfdmarkus is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
rotational and inviscid Mike Main CFD Forum 40 November 9, 2023 06:03
Overflow problem in steady simulation ReeKo CFX 11 October 8, 2008 17:57
Unsteady vs Steady simulation - any difference? Sally Main CFD Forum 16 December 16, 2005 09:15
Reynolds Stress equation ??? Abhijit Tilak Main CFD Forum 4 November 15, 2000 06:01
non linear continuity equation S.Venkat Main CFD Forum 0 May 30, 2000 07:43


All times are GMT -4. The time now is 18:38.