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

scattering, sigmaEff meaning

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 10, 2018, 04:43
Post scattering, sigmaEff meaning
  #1
Member
 
Jung da yoon
Join Date: Nov 2017
Posts: 53
Rep Power: 9
kane is on a distinguished road
I found the codes in constantscatter.c file.

Code:
Foam::radiation::constantScatter::sigmaEff() const
{
    return tmp<volScalarField>
    (
        new volScalarField
        (
            IOobject
            (
                "sigma",
                mesh_.time().timeName(),
                mesh_,
                IOobject::NO_READ,
                IOobject::NO_WRITE,
                false
            ),
            mesh_,
            sigma_*(3.0 - C_)
        )
    );
}
Does it mean that sigmaEff equals sigma_*(3.0-C_) ??

sigmaEff = sigma_*(3.0-C_) ??
kane is offline   Reply With Quote

Old   May 31, 2021, 08:31
Default SigmaEff() constantScatter model
  #2
New Member
 
Bill
Join Date: Jun 2019
Posts: 29
Rep Power: 7
OPFO is on a distinguished road
I am using OpenFOAM-v2006 and the icoreactingmultiphaseinterfoam solver with LaserDTRM radiation model and the constantScatter model.

According to [1], in the constantScatter model parameters of radiation properties, the user can input sigma and C constants that ultimately affect a parameter called SigmaEff(). In the P1 radiation model, SigmaEff() is used to alter mesh values to affect diffusion of properties such as T.

// Construct diffusion
const volScalarField gamma
(
IOobject
(
"gammaRad",
G_.mesh().time().timeName(),
G_.mesh(),
IOobject::NO_READ,
IOobject::NO_WRITE
),
1.0/(3.0*a_ + sigmaEff + a0)
);

// Solve G transport equation
solve
(
fvm::laplacian(gamma, G_)
- fvm::Sp(a_, G_)
==
- 4.0*(e_*physicoChemical::sigma*pow4(T_)) - E_
);

In LaserDTRM, I cannot find where SigmaEff() is incorporated into the solver as in the example of P1. For various sigma and C values that I plug in, the simulation is unchanged which would suggest that the scatter model is not actually incorporated into the solver. I have also tried varying the size of my mesh elements but with no effect.

Can someone help explain how the constantScatter model works for the LaserDTRM radiation model?

Thanks in advance!

[1] http://www.tfd.chalmers.se/~hani/kur...Foam_final.pdf
OPFO 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
Help me !! radiation considering scattering kane OpenFOAM Running, Solving & CFD 9 August 16, 2023 12:13
wavelength dependent scattering coefficient amirsamami FLUENT 2 January 5, 2018 23:35
Static Pressure meaning Hardee FLUENT 1 February 5, 2016 22:34
scattering coefficient mehdiyeganeh FLUENT 0 January 12, 2015 16:09
What's meaning of UDF FUNCTION zhaoxinyu Fluent UDF and Scheme Programming 0 March 31, 2010 09:04


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