Skip to content

Commit

Permalink
remvoe unexpected error printouts
Browse files Browse the repository at this point in the history
  • Loading branch information
JX278 committed Dec 29, 2023
1 parent 8c9bae5 commit 1c1c1fb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions src/dfCombustionModels/FGM/baseFGM/baseFGM.C
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Foam::combustionModels::baseFGM<ReactionThermo>::baseFGM
)
:
laminar<ReactionThermo>(modelType, thermo, turb, combustionProperties),
fvOptions(fv::options::New(this->mesh())),
// fvOptions(fv::options::New(this->mesh())),
buffer_(this->coeffs().lookupOrDefault("buffer", false)),
scaledPV_(this->coeffs().lookupOrDefault("scaledPV", false)),
incompPref_(this->coeffs().lookupOrDefault("incompPref", -10.0)),
Expand Down Expand Up @@ -535,11 +535,11 @@ void Foam::combustionModels::baseFGM<ReactionThermo>::transport()
)
-fvm::laplacian( mut/Sct_ + mu/Sc_, c_)
-omega_c_
+ fvOptions(rho_, c_)
// + fvOptions(rho_, c_)
==
c_ * S_c
);
fvOptions.correct(c_);
// fvOptions.correct(c_);

if(relaxation_)
{
Expand Down Expand Up @@ -609,9 +609,9 @@ void Foam::combustionModels::baseFGM<ReactionThermo>::transport()
)
-fvm::laplacian( mut/Sct_ + mu/Sc_, c_)
-omega_c_
+ fvOptions(rho_, c_)
// + fvOptions(rho_, c_)
);
fvOptions.correct(c_);
// fvOptions.correct(c_);

if(relaxation_)
{
Expand Down
4 changes: 2 additions & 2 deletions src/dfCombustionModels/FGM/baseFGM/baseFGM.H
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ SourceFiles
#include "../laminar/laminar.H"
#include "uniformDimensionedFields.H"
#include "CanteraMixture.H"
#include "fvOptions.H"
// #include "fvOptions.H"
#include "LESfilter.H"
//#include "basicThermo.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Expand All @@ -63,7 +63,7 @@ class baseFGM
{
// Protected Data
protected:
fv::options& fvOptions;
// fv::options& fvOptions;
//- buffer switch
Switch buffer_;

Expand Down
1 change: 0 additions & 1 deletion src/dfCombustionModels/Make/options
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ LIB_LIBS = \
-lturbulenceModels \
-llagrangian \
-lfiniteVolume \
-lfvOptions \
-lmeshTools \
-L$(DF_LIBBIN) \
-ldfCompressibleTurbulenceModels \
Expand Down

0 comments on commit 1c1c1fb

Please sign in to comment.