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

Simple way of simulating heating from sun

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By Hawxliquid

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 18, 2023, 00:31
Default Simple way of simulating heating from sun
  #1
New Member
 
Boris
Join Date: Jan 2017
Posts: 25
Rep Power: 9
Hawxliquid is on a distinguished road
Hi,


I am currently to do a simple case, the tutorial example "simpleCarSolarPanel" from the heattransfer tutorials.


In the tuorial, it seems the temperature is constant everywhere in the domain. But what I would like to simulate is actually the temperature in the domain, as well as its effect on the natural convection it generates.


I thought of using the "qr" as a an input for heat in my domain, but I can not find how to use any boundary conditions that would let me do that..


Would anyone have experience on that? I do not need a very realistic simulation, just a way of having the boundary cells with a high qr to input heat at a higher rate in the domain, that the ones with a lower qr.


Thank you!
Hawxliquid is offline   Reply With Quote

Old   August 18, 2023, 03:55
Default
  #2
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,170
Rep Power: 27
Yann will become famous soon enough
Hello,

You can replace the zeroGradient temperature BC by something like externalWallHeatFluxTemperature so your walls get heated up with solar radiation.

Have a look at the documentation: https://doc.openfoam.com/2306/tools/...uxTemperature/

You can also check the tutorial linked in the documentation.

Hope this helps,
Yann
Yann is offline   Reply With Quote

Old   August 18, 2023, 04:15
Default
  #3
New Member
 
Boris
Join Date: Jan 2017
Posts: 25
Rep Power: 9
Hawxliquid is on a distinguished road
Hi Yann,


Great. Thanks, it seems it sent me on the good direction


I now have results, but have some issue still.


Namely, I get zone with unrealistic high T°. I tried playing around with the radiation propeties, boundaryRadiationProperties, 0/T, etc.
I manage to lower a bit the high T°, but it is still unrealistically high..


I tried to use fvOptions with limitT, but somehow it does not do anything ? I get a
Code:
limitTemperature limitTAir Lower limited 0 (0%) of cells, with min limit 290
limitTemperature limitTAir Upper limited 6911 (19.88%) of cells, with max limit 350
limitTemperature limitTAir Unlimited Tmin 299.642
limitTemperature limitTAir Unlimited Tmax 350

but it does not seem to limit it.


If anyone had any idea why I get such high temperature, or knows a way to apply the limitT (not the best option I know ), It will be of great help!


I am sharing the case here:
Attached Files
File Type: zip simpleCarSolarPanel.zip (13.5 KB, 8 views)
Hawxliquid is offline   Reply With Quote

Old   August 18, 2023, 04:52
Default
  #4
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,170
Rep Power: 27
Yann will become famous soon enough
It looks like your limitT is working:

Code:
limitTemperature limitTAir Upper limited 6911 (19.88%) of cells, with max limit 350
There are 6911 cells were max temperature is limited, and it corresponds to 19.88% of the total number of cells in the mesh.

About the temperature values you get, I guess it must be related to the radiation received, the radiative properties of your walls and the other boundary conditions used in the tutorial.
Yann is offline   Reply With Quote

Old   August 18, 2023, 04:58
Default
  #5
New Member
 
Boris
Join Date: Jan 2017
Posts: 25
Rep Power: 9
Hawxliquid is on a distinguished road
Ah, that is peculiar, because when I post-process the case using paraview, I see temperatures way above the limit, as shown in the attached picture (https://imgur.com/a/MjpQIvT). Any idea why?




Additionally, I looked around but could not find good documentation about the boundaryRadiationProperties. Especially about the different types (opaqueDiffusive vs opaqueReflective) and why the absorptivity and emissivity are defined by two floats. (In the example (0.3 0.7)).


Any idea where I can get information about this?




EDIT :


Maybe regarding the limitT, I found a weird issue.
At the beginning of my log, I get the sentence:
"
Selecting finite volume options type limitTemperature
Source: limitTAir
- selecting all cells
- selected 34761 cell(s) with volume 39.8291
"


But it seems that, looking at paraview, my mesh is made of 89843 cells and 51980 points ?!

Last edited by Hawxliquid; August 18, 2023 at 05:12. Reason: extra info
Hawxliquid is offline   Reply With Quote

Old   August 18, 2023, 05:32
Default
  #6
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,170
Rep Power: 27
Yann will become famous soon enough
Quote:
Originally Posted by Hawxliquid View Post
Ah, that is peculiar, because when I post-process the case using paraview, I see temperatures way above the limit, as shown in the attached picture (https://imgur.com/a/MjpQIvT). Any idea why?
I think this is because limitT limits temperature in the cells. You are visualizing temperature on boundary faces which are probably not limited. The max temperature in your internalMesh should correspond to the max temperature defined in limitT.

Quote:
Originally Posted by Hawxliquid View Post
Additionally, I looked around but could not find good documentation about the boundaryRadiationProperties. Especially about the different types (opaqueDiffusive vs opaqueReflective) and why the absorptivity and emissivity are defined by two floats. (In the example (0.3 0.7)).

Any idea where I can get information about this?
There are 2 floats because the wall absorption/emission model uses a multiband model. In radiationProperties you also have a spectralDistribution for each band.

If information is not available in the documentation, you have to search into the source code:

Code:
grep -r "opaqueDiffusive" $FOAM_SRC
This should get your to something like: $FOAM_SRC/thermophysicalModels/radiation/submodels/boundaryRadiationProperties/opaqueDiffusive/opaqueDiffusive.H
You can check the file header to hopefully gather information about it, and if this is not enough you'll have to dig into the code itself, which might be pretty tedious.

Note that this is only and example, you can also use find to search for specific files and directories, while grep will search a pattern into files. It can be interesting to use both, depending on the situation.

In addition, you might find interesting things in the release notes. For instance the initial release of solarLoad: https://www.openfoam.com/news/main-n...ical-modelling
There must have been some additions in the next releases.

I find radiation models in OpenFOAM pretty messy, good luck getting your way through the jungle!
Yann
Yann is offline   Reply With Quote

Old   August 18, 2023, 05:36
Default
  #7
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,170
Rep Power: 27
Yann will become famous soon enough
Quote:
Originally Posted by Hawxliquid View Post
EDIT :


Maybe regarding the limitT, I found a weird issue.
At the beginning of my log, I get the sentence:
"
Selecting finite volume options type limitTemperature
Source: limitTAir
- selecting all cells
- selected 34761 cell(s) with volume 39.8291
"


But it seems that, looking at paraview, my mesh is made of 89843 cells and 51980 points ?!
Your mesh is made of 34761 cells, as stated by OpenFOAM. By default, ParaView has a "Decompose polyhedra" option. You have to untick it when loading your case to see the actual mesh stats.

Cheers,
Yann
Yann is offline   Reply With Quote

Old   August 21, 2023, 04:14
Default
  #8
New Member
 
Boris
Join Date: Jan 2017
Posts: 25
Rep Power: 9
Hawxliquid is on a distinguished road
Thank you so much for all the information Yann, they are very useful!


I manage to make the simple case work, but not the case I want to apply it to. I have been trying for a while to find where my error could arise from, but to no avail.


When I launch the case (even with radiation turned off), my velocity diverges, as shown here :

https://pastebin.com/23G5mQ6w


I also see at the first iteration that the enthalpy equation seems to diverge, right at the start? Why would that happen? (DILUPBiCGStab: Solving for h, Initial residual = 1, Final residual = 78.6652, No Iterations 1000)










For information, my fvSolution :


Code:
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
 |  \\    /   O peration     | Version:  v2206                                 |
 |   \\  /    A nd           | Website:  www.openfoam.com                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
 FoamFile
 {
     version     2.0;
     format      ascii;
     class       dictionary;
     object      fvSolution;
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
 
 solvers
 {
     p_rgh
     {
         solver          PCG;
         preconditioner  DIC;
         tolerance       1e-08;
         relTol          0.01;
     }
 
 
     "(U|h|k|epsilon)"
     {
         solver           PBiCGStab;
         preconditioner   DILU;
         tolerance        1e-7;
         relTol           0.05;
     }
 }
 
 
 SIMPLE
 {
     nNonOrthogonalCorrectors 10;
 
 
 
 
     rhoMin          0.5;
     rhoMax          2.0;
     residualControl
     {
         p_rgh           1e-2;
         U               1e-4;
         T               1e-2;
 
 
         // possibly check turbulence fields
         "(k|epsilon|omega)" 1e-3;
     }
 }
 
 
 
 
 relaxationFactors
 {
     fields
     {
         p_rgh          0.3;
         p               0.3;
         U               0.7;
         T             0.7;
     }
     equations
     {
         U               0.3;
         T               0.3;
         "(k|epsilon|R)" 0.2;
         rho            0.3;
 
 
     }
 }
 
 
 
 
 // ************************************************************************* //



fvSchemes :


Code:
 
 
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
 |  \\    /   O peration     | Version:  v2206                                 |
 |   \\  /    A nd           | Website:  www.openfoam.com                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
 FoamFile
 {
     version     2.0;
     format      ascii;
     class       dictionary;
     object      fvSchemes;
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
 
 ddtSchemes
 {
     default         steadyState;
 }
 
 
 gradSchemes
 {
     default         Gauss linear;
 }
 
 
 divSchemes
 {
     default         none;
 
 
     div(phi,U)      bounded Gauss upwind;
 
 
     energy          bounded Gauss upwind;
     div(phi,h)      $energy;
     div(phi,K)      $energy;
 
 
     turbulence      bounded Gauss upwind;
     div(phi,k)      $turbulence;
     div(phi,epsilon) $turbulence;
 
 
     div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;
 }
 
 
 laplacianSchemes
 {
     default         Gauss linear limited corrected 0.333;
 }
 
 
 interpolationSchemes
 {
     default         linear;
 }
 
 
 snGradSchemes
 {
     default         limited corrected 0.333;
 }
 
 
 fluxRequired
 {
     default         no;
     p_rgh;
 }
 
 
 
 
 // ************************************************************************* //



If anyone had any idea of why this happen, that would be very useful!




Thanks

EDIT:


It seems like that my issue comes from my pressure and p_rgh BC. But I can't seem to find how to fix it. I have an open domain (dome_big), and my BC are:


p

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2006                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [1 -1 -2 0 0 0 0];

internalField   uniform 101325;
boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"
    
   ".*"
   {
       type     calculated;
       value    $internalField;
   }

}

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

prgh
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2206                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [1 -1 -2 0 0 0 0];

internalField   uniform 101325;

boundaryField
{
    dome_big
    {
        type            prghTotalPressure;
        p0              $internalField;



    }

    ground
    {
        type            fixedFluxPressure;
        value           $internalField;


    }

    buildings
    {
        type            fixedFluxPressure;
        value           $internalField;



    }

    water
    {
        type            fixedFluxPressure;
        value           $internalField;



    }
}


// ************************************************************************* //
Hawxliquid is offline   Reply With Quote

Old   August 21, 2023, 05:24
Default
  #9
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,170
Rep Power: 27
Yann will become famous soon enough
Hello,

Quote:
Originally Posted by Hawxliquid View Post
I also see at the first iteration that the enthalpy equation seems to diverge, right at the start? Why would that happen? (DILUPBiCGStab: Solving for h, Initial residual = 1, Final residual = 78.6652, No Iterations 1000)
This usually happens due to initialization, and it can happen on any variable but pressure and energy are probably the most sensitive. It's not really a big deal as long as it gets back to normal within few iterations, which is what is happening for you, since you get this on the second iteration:

Code:
DILUPBiCGStab:  Solving for h, Initial residual = 0.580014, Final residual = 0.0151477, No Iterations 4
So basically the solver struggles to solve h on first iteration, probably due to the initialization of the simulation, but gets back on track and starts converging on the next iterations. So far so good, I wouldn't mind too much about that. Initial conditions are important, but it's not always possible to have a good first guess before starting the simulation.
(By the way, you can monitor residual by plotting it, it makes it easier to follow what's going on in the simulation. I would also recommend to plot variables of interest such as min/max temperature, max velocity, etc...)

Back to your diverging velocity: it can be VERY tricky to find proper boundary conditions for buoyant flows, especially for open domains. When dealing with natural convection, the flow conditions at the boundaries are usually not known and the flow is driven by buoyant forces inside the domain. Numerically speaking, this is not something easy to deal with.

I personally still don't have reliable set of boundary conditions for such cases. You can have a look at this thread which basically discuss this matter: Common setup for p_rgh in complete open domains

Another recommendation: try avoiding 1st order schemes when it comes to natural convection. It can lead to weird stuff like reversed convection flow.

Aside from numerical schemes, I think your main challenge will be to find a proper set of boundary conditions for your case.

Good luck!
Yann
Yann is offline   Reply With Quote

Old   August 22, 2023, 04:43
Default
  #10
New Member
 
Boris
Join Date: Jan 2017
Posts: 25
Rep Power: 9
Hawxliquid is on a distinguished road
Quote:
Originally Posted by Yann View Post
Hello,



This usually happens due to initialization, and it can happen on any variable but pressure and energy are probably the most sensitive. It's not really a big deal as long as it gets back to normal within few iterations, which is what is happening for you, since you get this on the second iteration:

Code:
DILUPBiCGStab:  Solving for h, Initial residual = 0.580014, Final residual = 0.0151477, No Iterations 4
So basically the solver struggles to solve h on first iteration, probably due to the initialization of the simulation, but gets back on track and starts converging on the next iterations. So far so good, I wouldn't mind too much about that. Initial conditions are important, but it's not always possible to have a good first guess before starting the simulation.
(By the way, you can monitor residual by plotting it, it makes it easier to follow what's going on in the simulation. I would also recommend to plot variables of interest such as min/max temperature, max velocity, etc...)

Back to your diverging velocity: it can be VERY tricky to find proper boundary conditions for buoyant flows, especially for open domains. When dealing with natural convection, the flow conditions at the boundaries are usually not known and the flow is driven by buoyant forces inside the domain. Numerically speaking, this is not something easy to deal with.

I personally still don't have reliable set of boundary conditions for such cases. You can have a look at this thread which basically discuss this matter: Common setup for p_rgh in complete open domains

Another recommendation: try avoiding 1st order schemes when it comes to natural convection. It can lead to weird stuff like reversed convection flow.

Aside from numerical schemes, I think your main challenge will be to find a proper set of boundary conditions for your case.

Good luck!
Yann

Again, merci for your time and such great information!


I think I am starting to get a okay convergence. If anyone is interested, previously my " far field" model was made of the side and the sky as the same patch, hence making the convergence problematic regarding BC.
I separated the two, and used a prghTotalPressure for the "sky", and fixedFluxPressure on the rest of the BCs. That seem to work so far.


Now, just have to play with the radiation model to get "realistic" temperature on the BCs! Currently they reach thousands of K, for a qr equivalent to a sunny day
Yann likes this.
Hawxliquid is offline   Reply With Quote

Reply


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
Continuity divergence in simple gas flow Okka FLUENT 7 January 11, 2019 01:01
compressibleInterFoam incl. viscous dissipation heating vigges OpenFOAM Programming & Development 5 June 10, 2018 06:06
SIMPLE vs. PISO Kappa OpenFOAM Running, Solving & CFD 1 October 17, 2016 08:08
problem simulating an advection equation hami9293 Main CFD Forum 1 July 17, 2015 16:01
SIMPLE algorithm Jonathan Castro Main CFD Forum 3 December 10, 1999 04:59


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