|
[Sponsors] |
March 26, 2012, 12:57 |
groovyBC
|
#1 |
New Member
Maike
Join Date: Dec 2010
Posts: 8
Rep Power: 16 |
I try to set up a depth dependent Temperature Gradient for a case in OpenFOAM with groovyBC.
FLOOR { type groovyBC; variables "ypos=pos().y;"; valueExpression "(ypos-7300)*(-0.025)+273"; } when I run the case, I get the following in the output of the first written timestep: FLOOR { type groovyBC; refValue nonuniform List<scalar> 283 (... here are 283 correct values); refGradient uniform 0; valueFraction uniform 1; value nonuniform List<scalar> 283 (... here are the same 283 values); valueExpression "(ypos-7300)*(-0.025)+273"; gradientExpression "0"; fractionExpression "1"; variables "ypos=pos().y;"; timelines ( ); why is it written in refValue and value? I use a Temperature reference Value and define it elsewhere, to calculate the density... But this one I don't need. Then there is a further problem, no clue if it's connected... The field phi gets a completly wrong number of points for the internal field and several nan. The field U gets the right number of points in the internal field but as well a lot of nan... Does someone have an idea about this? Cheers, Maike. |
|
March 26, 2012, 17:49 |
|
#2 | ||
Assistant Moderator
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51 |
Quote:
refValue is something used by the mixed-BC (which groovyBC inherits from) to set that value-value (see the mixed-BC in the UserGuide to see what that actually means) groovyBC sets the refValue from the valueExpression. So all three depend on each other (the wonder of inheritance) The only reason that value and refValue are the same is because your fractionExpression is "1" (see the mixed-docu and you'll be enlightened) Quote:
phi and U depend on each other so the NaN are no surprise. Most likely there is a problem during the solution of the Momentum/Continuity-equations. |
|||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[swak4Foam] groovyBC for oscillatory flow | liybzd | OpenFOAM Community Contributions | 5 | November 12, 2018 08:53 |
[swak4Foam] reactingMultiPhaseEulerFoam problems with groovyBC | zanilu70 | OpenFOAM Community Contributions | 4 | December 13, 2016 07:46 |
[swak4Foam] Change in alpha and U with groovyBC in twoPhaseEulerFoam | dani2702 | OpenFOAM Community Contributions | 0 | November 17, 2016 04:30 |
[swak4Foam] groovyBC issue - k and epsilon | sagnikmazumdar | OpenFOAM Community Contributions | 24 | March 1, 2015 08:16 |
[swak4Foam] groovyBC and Eqn.setReference() | benk | OpenFOAM Community Contributions | 3 | June 2, 2011 09:49 |