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

[swak4Foam] groovyBC and funkySetFields married and got a kid named swak4Foam

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

Like Tree14Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 17, 2012, 10:29
Default
  #121
Senior Member
 
Anne Gerdes
Join Date: Aug 2010
Location: Hamburg
Posts: 168
Rep Power: 15
Anne Lincke is on a distinguished road
Hey Matthew,

I tested your example and when using the same expression like you did, nothing happened.

It worked when changing the order of functions and libs, try it this way

HTML Code:
functions
(
    monitorAirOutlet
    {
        type patchExpression;
        accumulations (sum);
        patches (airout);
        expression "area()";
        verbose true;
    }
);
libs (
    "libOpenFOAM.so"
    "libsimpleSwakFunctionObjects.so"
    "libswakFunctionObjects.so"
)
;
Kind Regards
Anne
Anne Lincke is offline   Reply With Quote

Old   September 17, 2012, 10:34
Default
  #122
New Member
 
Matthew Kube-McDowell
Join Date: Sep 2012
Posts: 4
Rep Power: 13
mkubemcd is on a distinguished road
Quote:
Originally Posted by Anne Lincke View Post
Hey Matthew,

I tested your example and when using the same expression like you did, nothing happened.

It worked when changing the order of functions and libs, try it this way
Oh dang, it was something stupidly simple. I forgot the ";" after the libs list. Thanks, that's what I needed to fix it.
mkubemcd is offline   Reply With Quote

Old   September 17, 2012, 10:35
Default
  #123
Senior Member
 
Anne Gerdes
Join Date: Aug 2010
Location: Hamburg
Posts: 168
Rep Power: 15
Anne Lincke is on a distinguished road
Oh, alright, I did not check this, but your are right.
The missing ';' was the reason!
Anne Lincke is offline   Reply With Quote

Old   October 31, 2012, 11:10
Default
  #124
New Member
 
Join Date: Sep 2012
Posts: 3
Rep Power: 13
HighOrderCFD is on a distinguished road
Greetings to all FOAMers and SWAKers

I am working with chtMultiRegionFoam and I have included in my simulation a fluid with the following thermoType:
hRhoThermo<pureMixture<sutherlandTransport<specieT hermo<janafThermo<perfectGas>>>>>

My question is if it is possible to obtain the thermal conductivity K as a separate file using swak4foam (or any other tool).

Thank you in advance for any comments.
HighOrderCFD is offline   Reply With Quote

Old   November 1, 2012, 09:32
Default
  #125
New Member
 
Romain
Join Date: Aug 2012
Posts: 12
Rep Power: 13
romain.h is on a distinguished road
Hello all,
I just installed swak4foam and I tried one of the tutorials : multiRegionHeaterFeedback since it seems interesting and close of what I am looking for.

I use the file Allrun, but I have an error :
Code:
Selecting thermodynamics package hRhoThermo<pureMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>>
#0  Foam::error::printStack(Foam::Ostream&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
#1  Foam::sigFpe::sigHandler(int) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
#2   in "/lib/x86_64-linux-gnu/libc.so.6"
#3  Foam::hRhoThermo<Foam::pureMixture<Foam::constTransport<Foam::specieThermo<Foam::hConstThermo<Foam::perfectGas> > > > >::calculate() in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#4  Foam::hRhoThermo<Foam::pureMixture<Foam::constTransport<Foam::specieThermo<Foam::hConstThermo<Foam::perfectGas> > > > >::hRhoThermo(Foam::fvMesh const&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#5  Foam::basicRhoThermo::addfvMeshConstructorToTable<Foam::hRhoThermo<Foam::pureMixture<Foam::constTransport<Foam::specieThermo<Foam::hConstThermo<Foam::perfectGas> > > > > >::New(Foam::fvMesh const&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#6  Foam::basicRhoThermo::New(Foam::fvMesh const&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#7  
 in "/opt/openfoam211/platforms/linux64GccDPOpt/bin/chtMultiRegionFoam"
#8  __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6"
#9
Upon on closer look, it seems that my groovyBC boundary condition is set at 0 K and it is this 0 value which give an error.
If I use a fixedValue boundary condition and not the groovyBC boundary condition the tutorial is running.

The groovyBC is the following :
Code:
minY
    {
        type            groovyBC;
        value           uniform 300;
       valueExpression "Tin-(Tout-300)";
       variables       "Tout{maxX/topAir}=average(T);Tin{minY/heater}=average(T);";
    }
According to http://openfoamwiki.net/index.php/Contrib_groovyBC, the value for the first iteration should be set to value uniform 300; but it is set to 0...

Even if the valueExpression is used, the patch minY should be set at T_heater-(T_topAir-300) thus 500 K - (300-300) = 500 K.

I tried different groovyBC expression for the temperature, but my temperature on this patch is always set to 0, which cause the simulation to fail.

If someone could show what is wrong with this boundary condition, or with the example case (multiRegionHeaterFeedback, which is included is the installation package of swak4foam) it will be really useful.


Thanks,
Romain

edit : I found my problem ! while I was looking at the wiki (http://openfoamwiki.net/index.php/Contrib/swak4Foam) I observed that OF211 seems to not be yet supported. And effectively, it is working with OF210. It seems that swak is not yet working correctly with OF211.
At least one hour wasted on that ! Hopefully it will help someone to not repeat my mistake.

Last edited by romain.h; November 1, 2012 at 15:12.
romain.h is offline   Reply With Quote

Old   November 4, 2012, 06:08
Default
  #126
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,974
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Greetings to all!

@HighOrderCFD:
Quote:
Originally Posted by HighOrderCFD View Post
My question is if it is possible to obtain the thermal conductivity K as a separate file using swak4foam (or any other tool).
Here you go: http://openfoamwiki.net/index.php/Ti...gisteredObject

Best regards,
Bruno
__________________
wyldckat is offline   Reply With Quote

Old   November 5, 2012, 09:35
Default
  #127
Member
 
Join Date: Mar 2009
Posts: 90
Rep Power: 17
aerogt3 is on a distinguished road
I am using swak4foam to monitor mass flow rate on faceZones. Does anyone know if it's possible to do pressure averaging on a faceZone using swak4foam?
aerogt3 is offline   Reply With Quote

Old   November 5, 2012, 16:01
Default
  #128
New Member
 
Romain
Join Date: Jun 2010
Location: Lyon
Posts: 28
Rep Power: 15
nakor is on a distinguished road
Quote:
Originally Posted by aerogt3 View Post
I am using swak4foam to monitor mass flow rate on faceZones. Does anyone know if it's possible to do pressure averaging on a faceZone using swak4foam?
can you be a bit more specific on what you want to do ?
It seem that you are looking to do something similar to what is explaining here, part 3.6

----------------------




On another point, I am looking to implement a boundary condition in chtMultiRegionFoam for conduction between two solids, but with a contact resistance.
I was thinking to use something along the lines of

Quote:
Patch2
{
type groovyBC;
value uniform Tinit;
valueExpression "Tpatch1+DT*q";
variables "Tpatch1{patch1/solid1}=average(T);DT=cst;q=?";
}
with q determined using a swak function, or by modifying the chtMultiRegionSolver in order to have a field Q (I have already done it)
qHot
{
type swakExpression;
valueType patch;
patchName hot;
verbose true;
expression "-K*area()*snGrad(T)";
accumulations (sum);
region Solid_2;
}

Do you think that something like that could work ?

Thanks

Last edited by nakor; November 7, 2012 at 08:23.
nakor is offline   Reply With Quote

Old   November 5, 2012, 16:52
Default
  #129
Member
 
Join Date: Mar 2009
Posts: 90
Rep Power: 17
aerogt3 is on a distinguished road
Quote:
Originally Posted by nakor View Post
can you be a bit more specific on what you want to do ?
It seem that you are looking to do something similar to what is explaining here, part 3.6
What is in section 3.6 is pressure monitoring on a patch. I want/need to do it on a faceZone! Unfortunately I can't answer your question
aerogt3 is offline   Reply With Quote

Old   November 14, 2012, 17:56
Default
  #130
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 HighOrderCFD View Post
Greetings to all FOAMers and SWAKers

I am working with chtMultiRegionFoam and I have included in my simulation a fluid with the following thermoType:
hRhoThermo<pureMixture<sutherlandTransport<specieT hermo<janafThermo<perfectGas>>>>>

My question is if it is possible to obtain the thermal conductivity K as a separate file using swak4foam (or any other tool).

Thank you in advance for any comments.
I K is kept in memory as a field by the model then swak can access it.

To access properties of the thermal model that are not accessible by fields you can load a function plugin by adding "libswakThermoTurbFunctionPlugin.so" to your libs. Then the field parser has additional functions like thermo_alpha() (which gives you the thermalDiffusivity)

FunctionPlugins only work with the latest release of swak4Foam
__________________
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   November 14, 2012, 18:01
Default
  #131
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 romain.h View Post
Hello all,
I just installed swak4foam and I tried one of the tutorials : multiRegionHeaterFeedback since it seems interesting and close of what I am looking for.

I use the file Allrun, but I have an error :
Code:
Selecting thermodynamics package hRhoThermo<pureMixture<constTransport<specieThermo<hConstThermo<perfectGas>>>>>
#0  Foam::error::printStack(Foam::Ostream&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
#1  Foam::sigFpe::sigHandler(int) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
#2   in "/lib/x86_64-linux-gnu/libc.so.6"
#3  Foam::hRhoThermo<Foam::pureMixture<Foam::constTransport<Foam::specieThermo<Foam::hConstThermo<Foam::perfectGas> > > > >::calculate() in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#4  Foam::hRhoThermo<Foam::pureMixture<Foam::constTransport<Foam::specieThermo<Foam::hConstThermo<Foam::perfectGas> > > > >::hRhoThermo(Foam::fvMesh const&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#5  Foam::basicRhoThermo::addfvMeshConstructorToTable<Foam::hRhoThermo<Foam::pureMixture<Foam::constTransport<Foam::specieThermo<Foam::hConstThermo<Foam::perfectGas> > > > > >::New(Foam::fvMesh const&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#6  Foam::basicRhoThermo::New(Foam::fvMesh const&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#7  
 in "/opt/openfoam211/platforms/linux64GccDPOpt/bin/chtMultiRegionFoam"
#8  __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6"
#9
Upon on closer look, it seems that my groovyBC boundary condition is set at 0 K and it is this 0 value which give an error.
If I use a fixedValue boundary condition and not the groovyBC boundary condition the tutorial is running.

The groovyBC is the following :
Code:
minY
    {
        type            groovyBC;
        value           uniform 300;
       valueExpression "Tin-(Tout-300)";
       variables       "Tout{maxX/topAir}=average(T);Tin{minY/heater}=average(T);";
    }
According to http://openfoamwiki.net/index.php/Contrib_groovyBC, the value for the first iteration should be set to value uniform 300; but it is set to 0...

Even if the valueExpression is used, the patch minY should be set at T_heater-(T_topAir-300) thus 500 K - (300-300) = 500 K.

I tried different groovyBC expression for the temperature, but my temperature on this patch is always set to 0, which cause the simulation to fail.

If someone could show what is wrong with this boundary condition, or with the example case (multiRegionHeaterFeedback, which is included is the installation package of swak4foam) it will be really useful.


Thanks,
Romain

edit : I found my problem ! while I was looking at the wiki (http://openfoamwiki.net/index.php/Contrib/swak4Foam) I observed that OF211 seems to not be yet supported. And effectively, it is working with OF210. It seems that swak is not yet working correctly with OF211.
At least one hour wasted on that ! Hopefully it will help someone to not repeat my mistake.
Same version of swak? Strange. It is possible that there is a problem with a changed order of evaluations. Could you write a bug-report and I'll see when I can get to it
__________________
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   November 16, 2012, 04:36
Default
  #132
New Member
 
Romain
Join Date: Jun 2010
Location: Lyon
Posts: 28
Rep Power: 15
nakor is on a distinguished road
Quote:
Originally Posted by gschaider View Post
Same version of swak? Strange. It is possible that there is a problem with a changed order of evaluations. Could you write a bug-report and I'll see when I can get to it
The issue has (recently) been reported, 0000159: OpenFoam 2.1.1 + swak4foam 0.2.0: groovyBC fail to apply the initial condition
http://sourceforge.net/apps/mantisbt...nbn=1#bugnotes :

My solution was to switch to OF210, which resolve the groovyBC problem, but OF210 is not working properly with one of my other boundary condition (externallWallHeatFluxTemperature).

I could stick with OF210 and groovyBC if I could replace externallWallHFTemperature with a similar groovy boundary condition.

Do you think that the following one could do the trick ?
Quote:
walls
{
type groovyBC;
value uniform 300;
gradientExpression "gradT";
fractionExpression "0";
variables "Text=300;hc=10000;gradT=(Text-T)*hc;";
timelines ();
}
(source)

edit: after test, it seem that I have to use hc=hext/lambda; I do not see why... But at least it is working.

Last edited by nakor; November 19, 2012 at 17:10.
nakor is offline   Reply With Quote

Old   November 20, 2012, 19:39
Default
  #133
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 aerogt3 View Post
I am using swak4foam to monitor mass flow rate on faceZones. Does anyone know if it's possible to do pressure averaging on a faceZone using swak4foam?
Yep. The only thing is that in the function object where you do that you've got to set

autoInterpolate true;

this tells the parser to automatically interpolate volume fields to the faces
__________________
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   November 29, 2012, 23:34
Default Refining my case
  #134
New Member
 
Matthew Kube-McDowell
Join Date: Sep 2012
Posts: 4
Rep Power: 13
mkubemcd is on a distinguished road
Hi again, now that I've got swak working I'm looking for a more elegant solution to my actual problem.

I'm running my case in interFoam, and what I'm trying to measure is the mass or volume flow of one phase out an outlet. What I've got right now is

Quote:
type patchExpression
accumulations (sum);
patches (airout);
expression "U.y*alpha1*area()";
verbose true;
with the restriction that the outlet plane has to be normal to the y-axis. It works okay, but it's not extendable and not entirely accurate.

What I want is an expression more like

Quote:
(velocity).dotproduct.(facenormal) * alpha1
but I'm not familiar with swak or sfo enough to know if that exists, and the documentation on the wiki is really confusing. Any advice would be greatly appreciated.
mkubemcd is offline   Reply With Quote

Old   November 30, 2012, 12:14
Default
  #135
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 mkubemcd View Post
Hi again, now that I've got swak working I'm looking for a more elegant solution to my actual problem.

I'm running my case in interFoam, and what I'm trying to measure is the mass or volume flow of one phase out an outlet. What I've got right now is

with the restriction that the outlet plane has to be normal to the y-axis. It works okay, but it's not extendable and not entirely accurate.

What I want is an expression more like

but I'm not familiar with swak or sfo enough to know if that exists, and the documentation on the wiki is really confusing. Any advice would be greatly appreciated.
It is here: http://openfoamwiki.net/index.php/Co...ression_syntax

Inner product is & and normal() gets you the face vectors
__________________
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   January 28, 2013, 21:12
Default
  #136
New Member
 
sorush ahmadian
Join Date: Jun 2012
Posts: 5
Rep Power: 13
sahmadian is on a distinguished road
Dear Bernard, I am newly working with OpenFOAM. I am trying to use the groovyBC library for a convective heat transfer boundary condition. I have used two kinds of expression:
1-
{ type groovyBC;
variables "ktherm=0.5;ktot=ktherm;htot=3400;Tinf=253.15; "; valueExpression "Tinf";
gradientExpression "0";
fractionExpression "(1/(1+ktot/htot*(mag(delta()))))";
value uniform 293.15;
}

For this kind of expression unfortunately when I change variables like htot no change in the solution is observed. So alternatively I used the following expression:

2-
{
type groovyBC;
value uniform 293.15;
variables "htot=340;Tinf=253.15;Cp=384;k=ktherm*0.01;gra dT=-htot*mag((T-Tinf))/k;";//k=alphaEff*rho*Cp;
gradientExpression "gradT";
fractionExpression "0";
timelines ( );
}

For this kind of expression, the results seem reasonable but when I increase the value of htot for a limit, a floating point expression is occurred and the solution is not converged. Can you please kindly help me in this regards? I prefer to use the second solution but dont know how to avoid the Floating point exception. I would really appreciate your help!
Regards
sahmadian is offline   Reply With Quote

Old   January 29, 2013, 14:15
Default
  #137
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 sahmadian View Post
Dear Bernard, I am newly working with OpenFOAM. I am trying to use the groovyBC library for a convective heat transfer boundary condition. I have used two kinds of expression:
1-
{ type groovyBC;
variables "ktherm=0.5;ktot=ktherm;htot=3400;Tinf=253.15; "; valueExpression "Tinf";
gradientExpression "0";
fractionExpression "(1/(1+ktot/htot*(mag(delta()))))";
value uniform 293.15;
}

For this kind of expression unfortunately when I change variables like htot no change in the solution is observed. So alternatively I used the following expression:

2-
{
type groovyBC;
value uniform 293.15;
variables "htot=340;Tinf=253.15;Cp=384;k=ktherm*0.01;gra dT=-htot*mag((T-Tinf))/k;";//k=alphaEff*rho*Cp;
gradientExpression "gradT";
fractionExpression "0";
timelines ( );
}

For this kind of expression, the results seem reasonable but when I increase the value of htot for a limit, a floating point expression is occurred and the solution is not converged. Can you please kindly help me in this regards? I prefer to use the second solution but dont know how to avoid the Floating point exception. I would really appreciate your help!
Regards
My guess with the second formulation is that the timestep is too large: the rather steep gradient produces a value that over/undershoots Tinf. Try a smaller timestep (not sure whether this is also the problem with the first formulation but it might be worth try)

Question: do you see groovyBC in the stacktrace? If not then I guess the problem is not groovyBC per se but the way you use it
__________________
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   January 29, 2013, 14:26
Default
  #138
New Member
 
Alex
Join Date: Jan 2013
Posts: 1
Rep Power: 0
Alex3262 is on a distinguished road
Dear Bernard,

I am a student of shipbuilding. At the moment I am writing my bachelor thesis.
Therefore I am using your swirl, which you have published on the website: http://openfoamwiki.net/index.php/Contrib_groovyBC
I do know how the swirl is working, but I am not sure, how the swirl looks alike.
What i want to adjust:
I want to indicate a swirl at the Inlet, which goes through the domain, so that I can map the results at my simulation.
Below you can see my actual swirl. For the construction I have used your parameters. This swirl drifts along the y axis.
Unfortunately i do not believe that this is how your swirl should look alike. The swirl originates at the beginning of my plate, that’s why I believe that the plate is causing the swirl.
Would it be possible that you send me images of your swirl? Or do you have any advice for me, how to accomplish my swirl?
Your information on CFD-online are really helpful and I am grateful, that you are such an active user of CFD-online.


screenshots: https://www.dropbox.com/sh/t6uuyhhaslmcsoi/RRK13N6Um-
Code:
inlet
{
type groovyBC;
variables "rpm=8000.0;Un=55.8;c=sum(pos()*mag(Sf()))/sum(mag(Sf()));n=sum(normal())/mag(sum(normal()));p=pos()-c;r=mag(p)+1.0e-10;R=max(r);xt=vector(n.y,-n.x,0);xT=xt/mag(xt);yt=vector(-n.x*n.z,-n.y*n.z,n.x*n.x+n.y*n.y);yT=yt/mag(yt);";
valueExpression "-Un*normal() + (rpm*pi/30)*((p & yT)*xT - (p & xT)*yT)";
}


Kind regards,
Alexander

Last edited by Alex3262; January 30, 2013 at 01:59.
Alex3262 is offline   Reply With Quote

Old   January 29, 2013, 20:55
Default
  #139
New Member
 
sorush ahmadian
Join Date: Jun 2012
Posts: 5
Rep Power: 13
sahmadian is on a distinguished road
Quote:
Originally Posted by gschaider View Post
My guess with the second formulation is that the timestep is too large: the rather steep gradient produces a value that over/undershoots Tinf. Try a smaller timestep (not sure whether this is also the problem with the first formulation but it might be worth try)

Question: do you see groovyBC in the stacktrace? If not then I guess the problem is not groovyBC per se but the way you use it
Hi Bernard,
Thanks so much for your reply!
I tried to change the time step (high to very small) and even the mesh (finer) but again got Floating point expression.
I guess there is a problem with numerical calculation. The reason I am telling this is that for example with variables htot=340 and k=ktherm*0.1 the solution is correct but when I change htot to for example 500 (which is not a big change) or the k to ktherm*0.05 then the temperature of the wall and the cells accross the wall fall to very small values of orders -1e20 and finally floating point expression is occurred. It seems that the solution is fine until a certain value of gradT or heat flux but heat fluxes higher than that value will cause a heat sink at the boundary.
One of the problems that may affect the solution can be the expression of mag(T-Tinf) which for T values lower that Tinf gradient is still imposed which should not. In OF codes I usually use for example max(0, (T-Tinf)) instead of mag(T-Tinf) but in groovyBC I tried this with no success. Do you know how to do this in groovyBC?
Any idea on improving the BC?
Thanks again for your consideration.
sahmadian is offline   Reply With Quote

Old   January 30, 2013, 04:06
Default
  #140
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 sahmadian View Post
Hi Bernard,
Thanks so much for your reply!
I tried to change the time step (high to very small) and even the mesh (finer) but again got Floating point expression.
I guess there is a problem with numerical calculation. The reason I am telling this is that for example with variables htot=340 and k=ktherm*0.1 the solution is correct but when I change htot to for example 500 (which is not a big change) or the k to ktherm*0.05 then the temperature of the wall and the cells accross the wall fall to very small values of orders -1e20 and finally floating point expression is occurred. It seems that the solution is fine until a certain value of gradT or heat flux but heat fluxes higher than that value will cause a heat sink at the boundary.
One of the problems that may affect the solution can be the expression of mag(T-Tinf) which for T values lower that Tinf gradient is still imposed which should not. In OF codes I usually use for example max(0, (T-Tinf)) instead of mag(T-Tinf) but in groovyBC I tried this with no success. Do you know how to do this in groovyBC?
Any idea on improving the BC?
Thanks again for your consideration.
I'm sorry. I only provide groovyBC. How you use it (and to make sure that your physical equations are right) I do not see as my responsibility.

Just some notes:
- making the mesh finer will NOT make the problem with the explicit gradient (the second formulation) go away but make it worse. ONLY change the timestep
- the first formulation should be in my opinion more stable
- the max-expression SHOULD work
__________________
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

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



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