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

Help me !! radiation considering scattering

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By keitaro7_14

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 4, 2018, 00:56
Exclamation Help me !! radiation considering scattering
  #1
Member
 
Jung da yoon
Join Date: Nov 2017
Posts: 53
Rep Power: 8
kane is on a distinguished road
I want to know the wall heat flux of Enclosure case.
Internal medium is gray and scattering gas.
I have to consider a scattering model.


first, I add this code.
Code:
scatterModel  constantScatter;

constantScatterCoeffs
{
   sigma        sigma   [ 0 -1 0 0 0 0 0 ] 0.5;
   C            C       [ 0 0 0 0 0 0 0 ] 0;
}
But I think it was not effective.
What should I do additionally??

++++oh, Is is not possible to consider scattering in fvdom model????

Last edited by kane; January 4, 2018 at 02:39.
kane is offline   Reply With Quote

Old   January 4, 2018, 12:53
Default
  #2
Senior Member
 
Domenico Lahaye
Join Date: Dec 2013
Posts: 723
Blog Entries: 1
Rep Power: 17
dlahaye is on a distinguished road
What do you mean by "not effective"?
dlahaye is offline   Reply With Quote

Old   January 5, 2018, 04:46
Post
  #3
Member
 
Jung da yoon
Join Date: Nov 2017
Posts: 53
Rep Power: 8
kane is on a distinguished road
oh I'm sorry.
''NOT effective'' means that I added the code, but it did not work.
As a result, i could not deal with scattering in fvdom model.

Last edited by kane; January 5, 2018 at 06:37.
kane is offline   Reply With Quote

Old   January 5, 2018, 07:00
Post
  #4
Member
 
Jung da yoon
Join Date: Nov 2017
Posts: 53
Rep Power: 8
kane is on a distinguished road
I'm really confused...

Is it not possible to deal with scattering in fvdom model??
kane is offline   Reply With Quote

Old   January 5, 2018, 10:23
Default
  #5
Senior Member
 
Domenico Lahaye
Join Date: Dec 2013
Posts: 723
Blog Entries: 1
Rep Power: 17
dlahaye is on a distinguished road
I image that fvDOM implemented in OpenFoam does allow for scattering. Could you please be more descriptive than "not working". Do you obtain results that are incorrect or no results at all?
dlahaye is offline   Reply With Quote

Old   January 6, 2018, 04:43
Post
  #6
Member
 
Jung da yoon
Join Date: Nov 2017
Posts: 53
Rep Power: 8
kane is on a distinguished road
thank you for commenting, dlahaye!!

I'm sorry for my abstract explanation.

First I made a solver that deal with only radiation heat transfer.
So I applied this solver in Enclosed case.
As a result, I gained wall heat fluxes such as qr,qin in Openfoam.

But, this time I want to get wall heat fluxes(qr,qin) using a radiation solver
added to scattering. I added below codes in Enclosed case- file(constant/radiationproperties) to deal with scattering.


Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.2.0                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "constant";
    object      radiationProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

radiation on;

radiationModel  fvDOM;

fvDOMCoeffs
{
    nPhi    10;         // azimuthal angles in PI/2 on X-Y.(from Y to X)
    nTheta  10;          // polar angles in PI (from Z to X-Y plane)
    convergence 1e-6;   // convergence criteria for radiation iteration
    maxIter 1000;         // maximum number of iterations
}

// Number of flow iterations per radiation iteration
solverFreq 1;

absorptionEmissionModel constantAbsorptionEmission;

constantAbsorptionEmissionCoeffs
{
   absorptivity    absorptivity    [ 0 -1 0 0 0 0 0 ]  1;
   emissivity      emissivity      [ 0 -1 0 0 0 0 0 ]  1;
   E               E               [ 1 -1 -3 0 0 0 0 ] 0;
}

scatterModel  constantScatter;

constantScatterCoeffs
{
   sigma        sigma   [ 0 -1 0 0 0 0 0 ] 0.5;
   C            C       [ 0 0 0 0 0 0 0 ] 0;
}
But it was the same results(qin,qr) as no scattering.
I thought that i could only add scatterModel codes in radiationproperties to
deal with scattering. What should i do additionally??

I attached my solver and case file. Please check it out.
'Enclosescatter' is case file that deal with scattering.
'radiationFoam' is solver file.
Attached Files
File Type: zip Enclosurescatter.zip (4.9 KB, 7 views)
File Type: zip radiationFoam.zip (1.7 KB, 11 views)
kane is offline   Reply With Quote

Old   January 8, 2018, 01:30
Default
  #7
Member
 
Jung da yoon
Join Date: Nov 2017
Posts: 53
Rep Power: 8
kane is on a distinguished road
Does anyone who have ever tried to run fvdom model case including scattering????
kane is offline   Reply With Quote

Old   May 3, 2018, 10:07
Default
  #8
Member
 
chengan.wang
Join Date: Jan 2016
Location: china
Posts: 47
Rep Power: 10
wangchengan2003 is on a distinguished road
Send a message via Skype™ to wangchengan2003
Dear kane,
If you know how to use incident radition 'G' in the solver? Because I want to calculate the temperaute field by 'T=pow(fvDOM->G()/(4*sigma),0.25);'

Best regards,

Chengan
wangchengan2003 is offline   Reply With Quote

Old   June 8, 2021, 09:53
Default
  #9
Member
 
JuanMi
Join Date: Nov 2017
Posts: 41
Rep Power: 8
keitaro7_14 is on a distinguished road
If you analyze fvDOM.C, you can see that scatterModel is not considered (although scatterModel.H is loaded). However, in P1 model the variable scatter_ is used.
B_R_Khan likes this.
keitaro7_14 is offline   Reply With Quote

Old   August 16, 2023, 11:13
Default
  #10
New Member
 
BISSAI NKAA
Join Date: Feb 2022
Posts: 16
Rep Power: 4
sante_junior is on a distinguished road
Quote:
Originally Posted by keitaro7_14 View Post
If you analyze fvDOM.C, you can see that scatterModel is not considered (although scatterModel.H is loaded). However, in P1 model the variable scatter_ is used.
that's right
sante_junior 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
chtMultiRegionSimpleFoam: Thermal Conduction + Surface-To-Surface Radiation Zeppo OpenFOAM Running, Solving & CFD 16 May 18, 2017 18:04
Materials Radiation properties: scattering and absorption coefficient monkaeydadde CFX 0 April 7, 2017 07:03
Monte Carlo Simulation: H-Energy is not convergating & high Incident Radiation volleyHC CFX 5 April 3, 2016 05:41
Radiation Modeling Chris89 CFX 20 August 14, 2014 07:51
GETVAR Error in Multiband Monte Carlo Radiation Simulation with Directional Source silvan CFX 3 June 16, 2014 09:49


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