CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Community Contributions

[swak4Foam] Boundary Conditions with GroovyBC, Normal Gradient

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

Like Tree10Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 24, 2012, 10:42
Default Boundary Conditions with GroovyBC, Normal Gradient
  #1
Member
 
Join Date: Mar 2012
Location: Munich, Germany
Posts: 67
Rep Power: 14
treima is on a distinguished road
Hello,

I´d like to implement some boundary conditions with groovyBC, but it seems, that that doesn`t work like I think it should .
Here is my problem:

Without groovyBc it´s possible to implement a fixed normal gradient with

boundary
{
type fixedGradient;
gradient 100;
}

Now i need this expression with a dependency of a variable, computet in a step befor. So i tried

boundary
{
type groovyBC;
gradientExpression "Var-fixed";
variable "Var{boundary2}=Var2; fixed=100";
value uniform 0;
}

For a calculating a single value, for example for a Dirichlet boundary condition, it works.

Did I make a mistake in my definition of the boundary condition? Are there any good documentations for groovyBC, where i can find such things?


Best regards
treima
treima is offline   Reply With Quote

Old   May 24, 2012, 12:11
Default
  #2
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by treima View Post
Hello,

I´d like to implement some boundary conditions with groovyBC, but it seems, that that doesn`t work like I think it should .
Here is my problem:

Without groovyBc it´s possible to implement a fixed normal gradient with

boundary
{
type fixedGradient;
gradient 100;
}

Now i need this expression with a dependency of a variable, computet in a step befor. So i tried

boundary
{
type groovyBC;
gradientExpression "Var-fixed";
variable "Var{boundary2}=Var2; fixed=100";
value uniform 0;
}

For a calculating a single value, for example for a Dirichlet boundary condition, it works.
What you're missing is
Code:
fractionExpression "0";
to make it a Neumann condition. See http://openfoamwiki.net/index.php/Contrib_groovyBC

Quote:
Originally Posted by treima View Post
Did I make a mistake in my definition of the boundary condition? Are there any good documentations for groovyBC, where i can find such things?
Good documentation? I'm offended . The above link plus the presentations that are linked from the swak4Foam-page provide an unfoamy amount of information (I'm sure people are laughing behind my back)

No seriously. I've started writing a document that summarizes the most important concepts of swak4Foam. But don't hold your breath. If we're lucky I will have a first version before the end of the Mayan calendar (otherwise the world will end ...)
gschaider is offline   Reply With Quote

Old   May 30, 2012, 09:41
Default
  #3
Member
 
Join Date: Mar 2012
Location: Munich, Germany
Posts: 67
Rep Power: 14
treima is on a distinguished road
Thanks for your answer, it works perfect.

I have another question on boundary conditions with groovyBC. Is it possible to make this location-dependent? Is here pos().x right?

For example, if I´m having a look at a twodimensional geometry:

boundary
{
type groovyBC;
gradientExpression "Var-function";
variable "Var{boundary2}=Var2; function=pos().x^2+2*pos().x+3";
value uniform 0;
fractionExpression "0";
}

And if this is possible, how can I define a interval for x, e.g. x from 0 to 1?
treima is offline   Reply With Quote

Old   May 30, 2012, 10:44
Default
  #4
Member
 
Join Date: Mar 2012
Location: Munich, Germany
Posts: 67
Rep Power: 14
treima is on a distinguished road
I think I found a solution to my problem from above.

boundary
{
type groovyBC;
gradientExpression "Var-function";
variable "Var{boundary2}=Var2; function=pos().x*pos().x+2*pos().x+3";
value uniform 0;
fractionExpression "0";
}

But I´d like to expand my example

Is it possible to define something like this in the boundary conditions?
Var{boundary2} (x) = Var2 (x)

Var2 at boundary2 is a function, which is dependent from the location. OpenFoam takes the average of the Values, but it would be nicer to have the exact values at every location.


Best regards
treima
treima is offline   Reply With Quote

Old   May 30, 2012, 14:03
Default
  #5
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by treima View Post
I think I found a solution to my problem from above.

boundary
{
type groovyBC;
gradientExpression "Var-function";
variable "Var{boundary2}=Var2; function=pos().x*pos().x+2*pos().x+3";
value uniform 0;
fractionExpression "0";
}

But I´d like to expand my example

Is it possible to define something like this in the boundary conditions?
Var{boundary2} (x) = Var2 (x)

Var2 at boundary2 is a function, which is dependent from the location. OpenFoam takes the average of the Values, but it would be nicer to have the exact values at every location.


Best regards
treima
What you want is patch to patch mapping, right? Sorry. For the foreseeable future groovyBC will not support this (I've discussed the technical problems elsewhere).

BUT: if you reorganize Var and Var2 as a cyclic patch you might be able to get what you want using a jump-boundary condition doing something like this
Code:
    var
    {
        type            groovyBCJump;
        value           uniform 0;
        patchType       cyclic;
        jumpExpression  "pos().x*pos().x+2*pos().x+3";
    }
Have a look at the example case Examples/test/jumpChannel for additional inspiration.

Of course you'll have to make sure that the other physical quantities can live with the cyclic
Luttappy likes this.
gschaider is offline   Reply With Quote

Old   July 27, 2012, 10:34
Default patch to patch mapping
  #6
Senior Member
 
Sören
Join Date: Mar 2012
Posts: 102
Rep Power: 14
despaired student is on a distinguished road
Hi,

what do you exactly mean by "patch to patch mapping"? Right now I'm looking for a tool to map the velocity-field of one model onto the inlet of another model.
Is this possible and where do I find an example?

What I want to do is the following:
simulate a rectangular line -> export the outflow-velocity-profile -> map this outflow-profile onto an inlet-surface.The inlet and outflow geometries are the same.

I've already looked into the lid-driven-cavity tutorial but there I mapped an entire Mesh onto a finer one but what if I just want to map one surface...?


Kind regards
despaired student is offline   Reply With Quote

Old   August 1, 2012, 18:18
Default
  #7
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by despaired student View Post
Hi,

what do you exactly mean by "patch to patch mapping"?
To make this clear: I was speaking of swak, not OF in general

Quote:
Originally Posted by despaired student View Post
Right now I'm looking for a tool to map the velocity-field of one model onto the inlet of another model.
Is this possible and where do I find an example?

What I want to do is the following:
simulate a rectangular line -> export the outflow-velocity-profile -> map this outflow-profile onto an inlet-surface.The inlet and outflow geometries are the same.

I've already looked into the lid-driven-cavity tutorial but there I mapped an entire Mesh onto a finer one but what if I just want to map one surface...?


Kind regards
The technology to do something like this during a simulation is there (have a look at the cht-solver and the boundary conditions used there).

If you want something like the mapFields utility but only for one boundary: could be done with the above stuff, but I'm not aware of such a utility (which doesn't mean that it doesn't exist)
gschaider is offline   Reply With Quote

Old   September 19, 2012, 13:21
Default
  #8
New Member
 
anonymous
Join Date: Sep 2012
Location: Miami, USA
Posts: 7
Rep Power: 13
socrates is on a distinguished road
I am trying to apply a constant BC on micro-tubes surfaces inside a substrate. I have tried these:
1.

{
type fixedGradient;
gradient uniform -10000;
}

2.

{
type groovyBC;
gradientExpression "-10000";
fractionExpression "0";
}

3.

{
type groovyBC;
value uniform 300;
gradientExpression "gradT";
variables "htot=15000.00;Tinf=293.00;k=130;gradT=htot/(k)*(Tinf-T);";
}

The results show different gradient values on the walls, gradTx, gradTy and gradTz are so much more that the input values. I should mention that when I apply this BC for top surface which is horizontal I get perfect results. Here it says ( http://www.foamcfd.org/Nabla/guides/...Guidese11.html) that by "fixedgradient" we define
. I need to define only the magnitude of temperature gradient on the tubes.

Could you help me please?

Thank you

aa
socrates is offline   Reply With Quote

Old   September 19, 2012, 18:21
Default
  #9
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by socrates View Post
I am trying to apply a constant BC on micro-tubes surfaces inside a substrate. I have tried these:
1.

{
type fixedGradient;
gradient uniform -10000;
}

2.

{
type groovyBC;
gradientExpression "-10000";
fractionExpression "0";
}

3.

{
type groovyBC;
value uniform 300;
gradientExpression "gradT";
variables "htot=15000.00;Tinf=293.00;k=130;gradT=htot/(k)*(Tinf-T);";
}

The results show different gradient values on the walls, gradTx, gradTy and gradTz are so much more that the input values. I should mention that when I apply this BC for top surface which is horizontal I get perfect results. Here it says ( http://www.foamcfd.org/Nabla/guides/...Guidese11.html) that by "fixedgradient" we define
. I need to define only the magnitude of temperature gradient on the tubes.

Could you help me please?

Thank you

aa
I don't quite understand what you mean with "different" results. That the three variants above give different results (not much a surprise with 3)? Or that there are different gradients in each direction (the gradient is always defined as perpendicular to the face)

Variant 2 (the groovyBC one) should be equivalent to
Code:
{
 type             mixed;
 refGradient uniform -10000;
 refValue uniform 0;
 valueFraction uniform 0;
}
(it has been reported in the past that there are differences in the result to 1)
socrates likes this.
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request
gschaider is offline   Reply With Quote

Old   September 19, 2012, 20:37
Default
  #10
New Member
 
anonymous
Join Date: Sep 2012
Location: Miami, USA
Posts: 7
Rep Power: 13
socrates is on a distinguished road
Thank you for your help!

I want to define temperature gradient exactly "-10000" on the pipe. I have tried those 3 cases that I wrote in my previous post separately. Non of them gave me the constant gradient on my pipe. I assume the gradient that I define is the magnitude of gradient normal to surface. Then why sqrt(gradTx^2+gradTy^2+gradTz^2) is so much bigger than that.
I tried the Mixed BC that you suggested but still I have that problem. Isn't it because of my mesh? I used blockMesh/snappyHexMesh?

Thank you again

aa
socrates is offline   Reply With Quote

Old   September 21, 2012, 09:33
Default
  #11
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by socrates View Post
Thank you for your help!

I want to define temperature gradient exactly "-10000" on the pipe. I have tried those 3 cases that I wrote in my previous post separately. Non of them gave me the constant gradient on my pipe. I assume the gradient that I define is the magnitude of gradient normal to surface. Then why sqrt(gradTx^2+gradTy^2+gradTz^2) is so much bigger than that.
I tried the Mixed BC that you suggested but still I have that problem. Isn't it because of my mesh? I used blockMesh/snappyHexMesh?

Thank you again

aa
Don't know the setup of your problem but there are two things that make it possible for the absolute gradient to be bigger:

- you prescribe the gradient on the face. The values you're referring to are calculated in the cell center. May be bigger or smaller (that's discretization)
- you prescribe only the value of the gradient in normal direction. If for instance the normal direction of your patch is y but your model has an implicit gradient in x-direction (for instance because of two fixedValue-BCs with different values) then of course these two give a biggere absolute value

In general be more specific when asking (I don't know how it is with other people, but if I have trouble understanding what your problem actually is I loose interest). To be specific:

- how much is "much bigger than that"? 5%, 100%
- which of the four cases (fixedGradient, mixed and the two groovyBC variants) give the same results (and by how much do they differ)
socrates likes this.
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request
gschaider is offline   Reply With Quote

Old   September 21, 2012, 12:57
Default
  #12
New Member
 
anonymous
Join Date: Sep 2012
Location: Miami, USA
Posts: 7
Rep Power: 13
socrates is on a distinguished road
Thank you Bernhard for your help!
I am sorry, I am new here!

My case is a microchannel. For the flow inside the pipes I use a FORTRAN code to get friction losses.
To get the temp. on the pipe (walls) I use OpenFOAM.
So, first I use laplacianFOAM to get wall temp., and then with my code I will get the fluid temp.
Then inside my FORTRAN code I calculated dT/dn=h*(Twall-Tfluid)/k (I know the value of k) and import it as an input for laplacianFoam to get the updated temp. field.
Since in my FORTRAN code I know Twall, therefore dT/dn will be constant for each patch.
I put this procedure into a loop until the temp. difference between two iteration is less than 10^04.
It is converging and I get the results but I dont know they are correct or not.

I have four-layer microchannel:

2.jpg

Here are the setting for my snappyHexMesh:


// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

// snappyHexMesh switches.

castellatedMesh true;
snap true;
addLayers true;


// Geometry. Definition of all surfaces.

geometry
{
BN.stl
{
type triSurfaceMesh;
name nozzle;

}
};


// Settings for the castellatedMesh generation.

castellatedMeshControls
{

// Refinement parameters

maxLocalCells 100000;
maxGlobalCells 300000;
minRefinementCells 10;
nCellsBetweenLevels 6;
resolveFeatureAngle 20;
features
(
);

// Surface based refinement

refinementSurfaces
{
"nozzle_*"
{
level (3 3);
}
}




refinementRegions
{
}

// Mesh selection

locationInMesh (0.00000001 0.00000001 0.00000001);
//close to a inlet side corner where no channel would coincide
//depends on prob dimensions
}


// Settings for the snapping.

snapControls
{
nSmoothPatch 3;
tolerance 4;
nSolveIter 30;
nRelaxIter 5;
}



// Settings for the layer addition.

addLayersControls
{
layers
{
"nozzle_*"
{
nSurfaceLayers 10;
}
}
relativeSizes true;
expansionRatio 1.05;
finalLayerThickness 0.5;

minThickness 0.1;
nGrow 1;


// Advanced settings
featureAngle 60;
nRelaxIter 3;
nSmoothSurfaceNormals 1;
nSmoothNormals 3;
nSmoothThickness 10;
maxFaceThicknessRatio 0.5;
maxThicknessToMedialRatio 0.3;
minMedianAxisAngle 130;
nBufferCellsNoExtrude 0;
nLayerIter 50;
}



// Generic mesh quality settings.

meshQualityControls
{
maxNonOrtho 65;
maxBoundarySkewness 20;
maxInternalSkewness 4;
maxConcave 80;
minFlatness 0.5;
minVol -1e30;
minArea -1;
minTwist 0.05;
minDeterminant 0.001;
minFaceWeight 0.02;
minVolRatio 0.01;
minTriangleTwist -1;

// Advanced
nSmoothScale 4;
errorReduction 0.75;
}


// Advanced

debug 0;
mergeTolerance 1E-6;


// ************************************************** *********************** //

here is the mesh quality:
4.jpg

I just use the value of "-10000" to see if I can get the constant temp. gradient on the walls or not. I used the following setting (as you suggested):

{
type mixed;
refGradient uniform -10000;
refValue uniform 0;
valueFraction uniform 0;
}

here are results:

5.jpg
6.jpg
9.jpg

As you see the values are much more higher that "-10000".
I should mention that these channels are inside the silicon substrate 15*15*2 mm. I know top surface heat flux and bottom surface temp. other sides are isolated. I could not attach its picures. If you want I will attach it in another pot.

Please help me!!
socrates is offline   Reply With Quote

Old   September 22, 2012, 06:18
Default
  #13
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by socrates View Post
Thank you Bernhard for your help!
I am sorry, I am new here!

My case is a microchannel. For the flow inside the pipes I use a FORTRAN code to get friction losses.
To get the temp. on the pipe (walls) I use OpenFOAM.
So, first I use laplacianFOAM to get wall temp., and then with my code I will get the fluid temp.
Then inside my FORTRAN code I calculated dT/dn=h*(Twall-Tfluid)/k (I know the value of k) and import it as an input for laplacianFoam to get the updated temp. field.
Since in my FORTRAN code I know Twall, therefore dT/dn will be constant for each patch.
I put this procedure into a loop until the temp. difference between two iteration is less than 10^04.
It is converging and I get the results but I dont know they are correct or not.

I have four-layer microchannel:

Attachment 15866

Here are the setting for my snappyHexMesh:


// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

// snappyHexMesh switches.

castellatedMesh true;
snap true;
addLayers true;


// Geometry. Definition of all surfaces.

geometry
{
BN.stl
{
type triSurfaceMesh;
name nozzle;

}
};


// Settings for the castellatedMesh generation.

castellatedMeshControls
{

// Refinement parameters

maxLocalCells 100000;
maxGlobalCells 300000;
minRefinementCells 10;
nCellsBetweenLevels 6;
resolveFeatureAngle 20;
features
(
);

// Surface based refinement

refinementSurfaces
{
"nozzle_*"
{
level (3 3);
}
}




refinementRegions
{
}

// Mesh selection

locationInMesh (0.00000001 0.00000001 0.00000001);
//close to a inlet side corner where no channel would coincide
//depends on prob dimensions
}


// Settings for the snapping.

snapControls
{
nSmoothPatch 3;
tolerance 4;
nSolveIter 30;
nRelaxIter 5;
}



// Settings for the layer addition.

addLayersControls
{
layers
{
"nozzle_*"
{
nSurfaceLayers 10;
}
}
relativeSizes true;
expansionRatio 1.05;
finalLayerThickness 0.5;

minThickness 0.1;
nGrow 1;


// Advanced settings
featureAngle 60;
nRelaxIter 3;
nSmoothSurfaceNormals 1;
nSmoothNormals 3;
nSmoothThickness 10;
maxFaceThicknessRatio 0.5;
maxThicknessToMedialRatio 0.3;
minMedianAxisAngle 130;
nBufferCellsNoExtrude 0;
nLayerIter 50;
}



// Generic mesh quality settings.

meshQualityControls
{
maxNonOrtho 65;
maxBoundarySkewness 20;
maxInternalSkewness 4;
maxConcave 80;
minFlatness 0.5;
minVol -1e30;
minArea -1;
minTwist 0.05;
minDeterminant 0.001;
minFaceWeight 0.02;
minVolRatio 0.01;
minTriangleTwist -1;

// Advanced
nSmoothScale 4;
errorReduction 0.75;
}


// Advanced

debug 0;
mergeTolerance 1E-6;


// ************************************************** *********************** //

here is the mesh quality:
Attachment 15867

I just use the value of "-10000" to see if I can get the constant temp. gradient on the walls or not. I used the following setting (as you suggested):

{
type mixed;
refGradient uniform -10000;
refValue uniform 0;
valueFraction uniform 0;
}

here are results:

Attachment 15868
Attachment 15869
Attachment 15870

As you see the values are much more higher that "-10000".
I should mention that these channels are inside the silicon substrate 15*15*2 mm. I know top surface heat flux and bottom surface temp. other sides are isolated. I could not attach its picures. If you want I will attach it in another pot.

Please help me!!
Pictures are nice. Numbers are better. But before I even bother to look at the pictures tell me: are you looking at the cell values or at the point values in paraview? If you want to check the results always use the cell values. Because these are the values that OpenFOAM worked with and wrote. The point values are an interpretation by Paraview and may be misleading (especially on the boundary where depending on the reader and the boundary condition the BC-values may or may not be used for interpolation).
So if you're working only use cell values. The point values are only for the presentations afterwards so that the aesthets are not bother with the "steppiness" of the cells
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request
gschaider is offline   Reply With Quote

Old   September 22, 2012, 21:08
Default
  #14
New Member
 
anonymous
Join Date: Sep 2012
Location: Miami, USA
Posts: 7
Rep Power: 13
socrates is on a distinguished road
Hi Bernhard,

I dont know exactly, but I think you are right. here is my fvSchemes:
-------------------------------------------
ddtSchemes
{
default steadyState;
}

gradSchemes
{
default Gauss linear;
grad(T) Gauss linear;
}

divSchemes
{
default none;
}

laplacianSchemes
{
default non;
laplacian(DT,T) Gauss linear corrected;
}

interpolationSchemes
{
default linear;
interpolate(T) linear;
}

snGradSchemes
{
default corrected;
}

fluxRequired
{
default no;
T;
}

// ************************************************** *********************** //

I use sample to get the temp. and its gradient on surfaces and patches. My sampleDic is:

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

interpolationScheme cellPointFace;

setFormat vtk;
surfaceFormat vtk;

sets
();

surfaces
(
maxY
{
type patch;
patchName maxY;
}
minY
{
type patch;
patchName minY;
}
);

fields
(
T
gradTy
);

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

sample results are same as paraFoam. How can I make sure my results are correct? gradSchemes is based on cell enter value.

Thank you
aa
socrates is offline   Reply With Quote

Old   December 11, 2012, 15:54
Default Similar thing
  #15
New Member
 
Peter Benovsky
Join Date: Jun 2011
Posts: 5
Rep Power: 14
Peter Benovsky is on a distinguished road
Hi,
I would like to have something like timeVaryingFixedGradient. The first thought was to use the groovyBC. The problem is when I do this in the T dictionary boundary(running buoyantPimpleFoam):

Code:
heater
{
        type    groovyBC;
        value    uniform 300;
        valueExpression    "300";        
        gradientExpression    "gradT*time()";
        fractionExpression    "0";
        variables "heatFlux=6700;alpha=0.02;gradT=heatFlux/(alpha+alphat)";
}
then I get floating point exception. If I change fractionExpression "1"; I still get the floating point exception. Now, the interesting bit is that if I use fixedValue or fixed gradient everything runs OK. I wonder where do I try to divide by 0? To check whether swak installed properly I ran some of the examples and there everything works. In my controlDict I have included "libOpenFOAM.so" "libgroovyBC.so" "libgroovyStandardBCs.so".
Any ideas where could I have messed up?

Cheers
Peter
Peter Benovsky is offline   Reply With Quote

Old   December 11, 2012, 16:10
Default
  #16
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by Peter Benovsky View Post
Hi,
I would like to have something like timeVaryingFixedGradient. The first thought was to use the groovyBC. The problem is when I do this in the T dictionary boundary(running buoyantPimpleFoam):

Code:
heater
{
        type    groovyBC;
        value    uniform 300;
        valueExpression    "300";        
        gradientExpression    "gradT*time()";
        fractionExpression    "0";
        variables "heatFlux=6700;alpha=0.02;gradT=heatFlux/(alpha+alphat)";
}
then I get floating point exception. If I change fractionExpression "1"; I still get the floating point exception. Now, the interesting bit is that if I use fixedValue or fixed gradient everything runs OK. I wonder where do I try to divide by 0? To check whether swak installed properly I ran some of the examples and there everything works. In my controlDict I have included "libOpenFOAM.so" "libgroovyBC.so" "libgroovyStandardBCs.so".
Any ideas where could I have messed up?

Cheers
Peter
I'm afraid that is a bug that showed up a number of times in the last weeks and already is fixed in the development-branch: as a workaround set

refValue uniform 300;

This will only be used during startup (you didn't try to divide by 0. The thermoPhysics-library did with a value that was accidentally set to 0 because the expressions can't be evaluated before all the fields are loaded)
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request
gschaider is offline   Reply With Quote

Old   December 11, 2012, 18:53
Default
  #17
New Member
 
Peter Benovsky
Join Date: Jun 2011
Posts: 5
Rep Power: 14
Peter Benovsky is on a distinguished road
Quote:
Originally Posted by gschaider View Post
I'm afraid that is a bug that showed up a number of times in the last weeks and already is fixed in the development-branch: as a workaround set

refValue uniform 300;

This will only be used during startup (you didn't try to divide by 0. The thermoPhysics-library did with a value that was accidentally set to 0 because the expressions can't be evaluated before all the fields are loaded)
Thank you very much, Bernhard!
That works, and sorry for the duplicity if it is already mentioned elsewhere.

Bye
Peter
Peter Benovsky is offline   Reply With Quote

Old   December 12, 2012, 13:24
Default
  #18
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by Peter Benovsky View Post
Thank you very much, Bernhard!
That works, and sorry for the duplicity if it is already mentioned elsewhere.
In this case: no problem about the duplicity. It's hard to spot that it is the same bug if you don't know what is going on (you can't say that about all the bug reports I get here)
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request
gschaider is offline   Reply With Quote

Old   December 14, 2012, 04:04
Default
  #19
New Member
 
Peter Benovsky
Join Date: Jun 2011
Posts: 5
Rep Power: 14
Peter Benovsky is on a distinguished road
Quote:
Originally Posted by gschaider View Post
In this case: no problem about the duplicity. It's hard to spot that it is the same bug if you don't know what is going on (you can't say that about all the bug reports I get here)
Btw. I have noticed, that when using alphatWallFunction and groovyBC, alphat is not evaluated at the patch where groovy is applied. Value uniform=0; is there instead.
Is it the same bug, perhaps?



Peter
Peter Benovsky is offline   Reply With Quote

Old   December 14, 2012, 05:28
Default
  #20
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by Peter Benovsky View Post
Btw. I have noticed, that when using alphatWallFunction and groovyBC, alphat is not evaluated at the patch where groovy is applied. Value uniform=0; is there instead.
Is it the same bug, perhaps?



Peter
You can only have one BC on a patch at a time. Have you made sure that groovyBC is actually evaluated on that patch (for instance by introducing a syntactic error into an expression - if it fails it's evaluated)

BTW: which version of OF?
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request
gschaider is offline   Reply With Quote

Reply

Tags
boundary, condition, gradient, groovybc, normal

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
Problem in setting Boundary Condition Madhatter92 CFX 12 January 12, 2016 05:39
Problem with SIMPLEC-like finite volume channel flow boundary conditions ghobold Main CFD Forum 3 June 15, 2015 12:14
Radiation interface hinca CFX 15 January 26, 2014 18:11
Water subcooled boiling Attesz CFX 7 January 5, 2013 04:32
RPM in Wind Turbine Pankaj CFX 9 November 23, 2009 05:05


All times are GMT -4. The time now is 22:32.