|
[Sponsors] |
November 6, 2012, 21:02 |
.oldTime() question
|
#1 |
New Member
Chad
Join Date: Sep 2011
Posts: 16
Rep Power: 15 |
Info<< "Reading field alphaL\n" << endl;
volScalarField alphaL ( IOobject ( "alphaL", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE ), alphaL.oldTime(); mesh, dimensionedScalar("alphaL", dimless, scalar(0.0)) ); -------------------------- When compiled, error: createFields.H:42: error: expected `)' before ';' token createFields.H:44: warning: left-hand operand of comma has no effect createFields.H:45: error: expected `;' before ')' token -------------------------- I cannot figure out where the problem is. Thanks. |
|
November 7, 2012, 03:36 |
|
#2 |
Senior Member
Kathrin Kissling
Join Date: Mar 2009
Location: Besigheim, Germany
Posts: 134
Rep Power: 17 |
Hey,
first thing is a general one: you should not use a ; (semicolon) inside a constructor. These are comma-seperated lists. second: Check GeometricField class for constructors, I think there is none like the one you stated. What are you trying to do? Best Kathrin |
|
November 7, 2012, 07:51 |
|
#3 |
New Member
Chad
Join Date: Sep 2011
Posts: 16
Rep Power: 15 |
Hi, Kathrin
Thanks for pointing out this mistake. ---------------- volScalarField alphaTemp ( IOobject ( "alphaTemp", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), mesh, dimensionedScalar("alphaTemp", dimless, 0) ); alphaTemp.oldTime(); ------------------- Maybe this is the correct way to use. I am trying to store alphaTemp's old value for each time, since I want to use ddt(alphaTemp) later. I am not quite sure whether this is correct. |
|
November 7, 2012, 07:53 |
|
#4 |
New Member
Chad
Join Date: Sep 2011
Posts: 16
Rep Power: 15 |
Hi, Kathrin
Thanks for pointing out this mistake. ---------------- volScalarField alphaTemp ( IOobject ( "alphaTemp", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), mesh, dimensionedScalar("alphaTemp", dimless, 0) ); alphaTemp.oldTime(); ------------------- Maybe this is the correct way to use. I am trying to store alphaTemp's old value for each time, since I want to use ddt(alphaTemp) later. I am not quite sure whether this is correct. |
|
Tags |
oldtime() |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Question Re Engineering Data Source | imnull | ANSYS | 0 | March 5, 2012 14:51 |
internal field question - PitzDaily Case | atareen64 | OpenFOAM Running, Solving & CFD | 2 | January 26, 2011 16:26 |
question on bounday layer modeling | Wen Long | Main CFD Forum | 2 | November 12, 2005 18:29 |
Poisson Solver question | Suresh | Main CFD Forum | 3 | August 12, 2005 05:37 |
Philosophical CFD question | Richard Howe | Main CFD Forum | 14 | June 17, 2001 15:41 |