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

Oodles and more

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 6, 2005, 11:14
Default Hi, I am trying to add an equ
  #1
Member
 
Radu Mustata
Join Date: Mar 2009
Location: Zaragoza, Spain
Posts: 99
Rep Power: 17
r2d2 is on a distinguished road
Hi,
I am trying to add an equation to oodles and then run it for a "cold jet" simulation. The equation would be for a non-reacting scalar and itīs done in a similar way as "ftEqn.H" of XiFoam. I will breafly describe what Iīve done ("mixf", it`s the name of my variable):
firstly: mixfEqn.H reads:
tmp<fv::convectionscheme<scalar> > mvConvection
(
fv::convectionScheme<scalar>::New
(
mesh,
phi,
mesh.divScheme("div(phi,mixf_2)")
)
);


solve
(
fvm::ddt(mixf)
+ mvConvection->fvmDiv(phi, mixf)
- fvm::laplacian(sgsModel->nuEff(), mixf)
);


I added in "createAverages.H"

volScalarField* mixfMeanPtr;
if (nAveragingStepsFile.good())
{
...
Info<< "Creating field mixfMean\n" << endl;
mixfMeanPtr = new volScalarField
(
IOobject
(
"mixfMean",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);

}
else
{
...
Info<< "Creating field mixfMean\n" << endl;
mixfMeanPtr = new volScalarField
(
IOobject
(
"mixfMean",
runTime.timeName(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
),
mixf
);
}
....
volScalarField& mixfMean = *mixfMeanPtr;

Then in "calculateAverages.H" I added:

mixfMean = nm1Coeff*mixfMean + nCoeff*mixf;

and in "createFields.H"

Info<< "Reading field mixf\n" << endl;
volScalarField mixf
(
IOobject
(
"mixf",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);

now, at runtime, in the 0 directory I added the "mixf" file with all the definitions of patch values and all that

I run the case in parallel using LAM and it seems to run fine, for as long as I left it running Co did not go over 0.5. The trouble that I have is that at finalising the program I get a message like:

--> FOAM FATAL ERROR : NO_READ specified for read-constructor of object Umean of class IOobject

Function: regIOobject::readStream(const word&)
in file: db/regIOobject/regIOobjectRead.C at line: 53.

FOAM parallel run aborting

...and this Umean can be something else like mixf_0, or pmean or mixfmean ...with the same error. Then, of course (I guess) when I want to reconstructPar the simulation I get (e.g. in the aforementioned error case):
Time = 0.0005

Reconstructing FV fields

Reconstructing volScalarFields

mixf_0
nuSgs
epsilonMean
k
mixfMean


--> FOAM FATAL IO ERROR : cannot open file

file: /mnt/store1/radu/OpenFOAM/radu-1.1/run/oodles2/coldjet/processor9/0.0005/mixfMea n at line 0.

Function: regIOobject::readStream(const word&)
in file: db/regIOobject/regIOobjectRead.C at line: 68.

FOAM exiting

Am I missing something? Help...please!
Cheers,
Radu
r2d2 is offline   Reply With Quote

Old   July 6, 2005, 11:21
Default Because mixf is not part of a
  #2
Senior Member
 
Join Date: Mar 2009
Posts: 854
Rep Power: 22
henry is on a distinguished road
Because mixf is not part of a thermodynamic or other coupled system there is no need to use multivariate discretisation for it. So instead of

mvConvection->fvmDiv(phi, mixf)

use

fvm::iv(phi, mixf)

and then you don't need

tmp<fv::convectionscheme<scalar> > mvConvection
(
fv::convectionScheme<scalar>::New
(
mesh,
phi,
mesh.divScheme("div(phi,mixf_2)")
)
);
henry is offline   Reply With Quote

Old   July 6, 2005, 11:22
Default Sorry I mean fvm::div(p
  #3
Senior Member
 
Join Date: Mar 2009
Posts: 854
Rep Power: 22
henry is on a distinguished road
Sorry I mean

fvm::div(phi, mixf)
henry is offline   Reply With Quote

Old   July 6, 2005, 11:29
Default Thanks, I will try this and
  #4
Member
 
Radu Mustata
Join Date: Mar 2009
Location: Zaragoza, Spain
Posts: 99
Rep Power: 17
r2d2 is on a distinguished road
Thanks,
I will try this and see how it goes. Will keep
the fvScheme for it like this, then...

div(phi,mixf) Gauss Gamma201 1;

Radu
r2d2 is offline   Reply With Quote

Old   July 6, 2005, 11:43
Default Did what you said...got the sa
  #5
Member
 
Radu Mustata
Join Date: Mar 2009
Location: Zaragoza, Spain
Posts: 99
Rep Power: 17
r2d2 is on a distinguished road
Did what you said...got the same, as in now:

--> FOAM FATAL ERROR : NO_READ specified for read-constructor of object R of class IOobject

Function: regIOobject::readStream(const word&)
in file: db/regIOobject/regIOobjectRead.C at line: 53.

FOAM parallel run aborting


I MUST be doing something wrong...
r2d2 is offline   Reply With Quote

Old   July 6, 2005, 11:48
Default To get rid of this error messa
  #6
Senior Member
 
Join Date: Mar 2009
Posts: 854
Rep Power: 22
henry is on a distinguished road
To get rid of this error message you must specify MUST_READ rather than NO_READ for your constructors of objects you are reading.
henry is offline   Reply With Quote

Old   July 7, 2005, 07:39
Default Did that in "createAverages.H"
  #7
Member
 
Radu Mustata
Join Date: Mar 2009
Location: Zaragoza, Spain
Posts: 99
Rep Power: 17
r2d2 is on a distinguished road
Did that in "createAverages.H" and now seems fine. Not that I understand it very well, though: I mean at startup if I donīt have anything I thought I should be putting:
Info<< "Creating field mixfMean\n" << endl;
mixfMeanPtr = new volScalarField
(
IOobject
(
"mixfMean",
runTime.timeName(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
),
mixf
);

rather than:

Info<< "Creating field mixfMean\n" << endl;
mixfMeanPtr = new volScalarField
(
IOobject
(
"mixfMean",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mixf
);

Thanks anyway.
Radu
r2d2 is offline   Reply With Quote

Old   July 7, 2005, 08:02
Default Yes that is a copy-constructor
  #8
Senior Member
 
Join Date: Mar 2009
Posts: 854
Rep Power: 22
henry is on a distinguished road
Yes that is a copy-constructor not a read-constructor so you should use IOobject::NO_READ for it.
henry is offline   Reply With Quote

Old   September 14, 2005, 12:50
Default I tried version 1.2. I played
  #9
Member
 
Ralph
Join Date: Mar 2009
Posts: 40
Rep Power: 17
ralph is on a distinguished road
I tried version 1.2. I played around with "oodles" (problem on 3 processors) and noticed, that it has about 25% less performance, compared to version 1.1.
Is this a common attribute or is this my specific problem?
Iīve seen, that there is some new implementation of "phi"-calculation in "oodles". May this be the cause?

Ralph
ralph is offline   Reply With Quote

Old   July 23, 2007, 04:02
Default hi, I feel bad to ask you thi
  #10
Senior Member
 
Cedric DUPRAT
Join Date: Mar 2009
Location: Nantes, France
Posts: 195
Rep Power: 17
cedric_duprat is on a distinguished road
hi,
I feel bad to ask you this question with all the explication before but;
I also have a FOAM FATAL ERROR mistake after ...lot's of iterations (which is hurtful):
NO_READ specified for read-constructor of object phi_0.

The problem is that I can't find the phi_0 IOobject in oodles (in createAverages.H) someone know where it is implement ? Or someone can just help me there ?

Thank you,

Cedric
cedric_duprat is offline   Reply With Quote

Old   September 23, 2007, 01:54
Default Hi When i add body force (
  #11
Senior Member
 
Marhamat Zeinali
Join Date: Mar 2009
Location: Tehran, Tehran, iran
Posts: 107
Rep Power: 17
marhamat is on a distinguished road
Hi

When i add body force (F) to oodles and icoFoam solvers it seems that vorticity generation in the test case using with icoFoam is more than oodles.
My test case is a channel that it sides are symmetryplane and inlet velocity is zero.
And F is exponential subject that acts on the geometry center and affect limited domain for several time step.
Any hint?

Thanks in advance
Marhamat
marhamat is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Coefficienct in the oodles loneboard OpenFOAM Running, Solving & CFD 4 March 12, 2009 21:18
A question on DES oodles ivan_cozza OpenFOAM Running, Solving & CFD 2 November 17, 2008 09:33
Oodles vs turbFoam rolando OpenFOAM Running, Solving & CFD 9 June 4, 2007 05:42
Parallel oodles sriharsha OpenFOAM Running, Solving & CFD 0 December 27, 2006 17:25
Parallel oodles sriharsha OpenFOAM Running, Solving & CFD 0 December 27, 2006 17:21


All times are GMT -4. The time now is 20:37.