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

FGM combustion model

Register Blogs Community New Posts Updated Threads Search

Like Tree15Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 9, 2015, 03:05
Default
  #61
Senior Member
 
Freedom
Join Date: May 2014
Posts: 209
Rep Power: 12
wenxu is on a distinguished road
Quote:
Originally Posted by Likun View Post
Are you still interested in this code? I have a copy, if you want I can share it with you.

Best regards,
Likun

Hi, LiKun

I can not download the source code. Could you send it to me? 981588592@qq.com

Thank you very much!

Regards,
Wen Xu
wenxu is offline   Reply With Quote

Old   July 16, 2015, 23:46
Default Files
  #62
Member
 
Lisandro Maders
Join Date: Feb 2013
Posts: 98
Rep Power: 13
Lisandro Maders is on a distinguished road
Quote:
Originally Posted by Aklaessen View Post
If somebody does have these files, could you send it to me as well.
thanks
Did some of you guys get the files? I was reading this post and it would be very useful to me!

Thank you!
Lisandro Maders is offline   Reply With Quote

Old   July 17, 2015, 02:11
Default
  #63
Member
 
Join Date: Feb 2015
Posts: 31
Rep Power: 11
Stefano Puggelli is on a distinguished road
If you give me your email I will send you the material.
Stefano
Stefano Puggelli is offline   Reply With Quote

Old   July 17, 2015, 06:01
Default
  #64
Member
 
Lisandro Maders
Join Date: Feb 2013
Posts: 98
Rep Power: 13
Lisandro Maders is on a distinguished road
Sure!!!

lisandro.maders@gmail.com

Thanks a lot!!!
Lisandro Maders is offline   Reply With Quote

Old   August 11, 2015, 19:37
Default Help
  #65
Member
 
Join Date: Feb 2014
Posts: 63
Rep Power: 12
Uyan is on a distinguished road
Did anyone recently succeeded in installing this FGM package on 1.6-ext ?

I downloaded this package from https://openfoamwiki.net/index.php/S...ibution#Code_3

I am trying to install this on Ubuntu 12.04, with cantera-1.7.0 but i cannot get it to compile beyond a certain point due to cantera compilation at the moment.

Code:
ChemicalSystem.H:4:29: fatal error: cantera/Cantera.h: No such file or directory
compilation terminated.
Code:
src/pycantera.cpp:22:34: fatal error: numarray/arrayobject.h: No such file or directory
compilation terminated.
From what i found numarry does not support by recent python. Can someone help me to move beyond this point??
Uyan is offline   Reply With Quote

Old   August 17, 2015, 14:43
Default How to generate LDMtables ?
  #66
Member
 
Join Date: Feb 2014
Posts: 63
Rep Power: 12
Uyan is on a distinguished road
Okay i finally compiled both generateILDM and pdfOodles. There are tutorials for pdfOodles but not clear how LDMtables were genereated.

How do i generate FGMtables can someone please give a hint ?
Uyan is offline   Reply With Quote

Old   August 21, 2015, 02:09
Default
  #67
Member
 
Join Date: Feb 2015
Posts: 31
Rep Power: 11
Stefano Puggelli is on a distinguished road
Quote:
Originally Posted by Uyan View Post
Okay i finally compiled both generateILDM and pdfOodles. There are tutorials for pdfOodles but not clear how LDMtables were genereated.

How do i generate FGMtables can someone please give a hint ?
I think that you can find some examples in the system folder of the pdfOodles tutorial test cases. You will find a generateIldmDict where the main informations about the generation of flamelet solution are stored. Then, with a reaction mechanism and a thermo you can specify the temperature of air, the temperature of the mixture or what you prefer in order to generate a flamelet solution for several values of Z and h.

Best,
Stefano
Uyan likes this.
Stefano Puggelli is offline   Reply With Quote

Old   August 22, 2015, 10:21
Default generateILDM
  #68
Member
 
Join Date: Feb 2014
Posts: 63
Rep Power: 12
Uyan is on a distinguished road
Hi Steffano,

Thanks for your reply.

But when i run generateILDM from the case directory I get the following error. For all 3 examples i have this problem.

Code:
terminate called after throwing an instance of 'std::logic_error'
  what():  basic_string::_S_construct null not valid
Aborted (core dumped)
Do i need to modify the tutorial files?

Could you please attach a working example directory without the mesh files.
Uyan is offline   Reply With Quote

Old   August 24, 2015, 02:34
Default
  #69
Member
 
Join Date: Feb 2015
Posts: 31
Rep Power: 11
Stefano Puggelli is on a distinguished road
Hi Uyan,
here you can find an example of a working generatedIldmDict.
However, looking at your error I think that maybe you have to modify the file main.C at line 40-41 with your working directory or you have other compilation errors.

/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/

FoamFile
{
version 2.0;
format ascii;

root "";
case "";
instance "";
local "";

class dictionary;
object generateFgmDict;
}

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

readCacheOnly no;

inputFile "gri30.cti";
gasID "gri30_mix";

defaultConservedVariables 3
(
p 100000
phi 0.586
T 294
);

constituentsGivenAs moleNumbers;
//constituentsGivenAs moleFractions;
//constituentsGivenAs massFractions;

fuel 1
(
CH4 1.0
);

oxidant 2
(
O2 1.0
N2 3.76
);

majorProducts 2
(
CO2 1.0
H2O 2.0
);

mixtureFractionBasedOn C;

stoichiometricOxidantFuelMassRatio 17.13;

fixUnburntTemperature no;

conservedVariableLoops
(

{
variable h;
start -1.75+06;
end -11442.24;
resolution 50;
}

);
ILDMgeneratorType FGM;
laminarFlameDomainLength 0.03;
laminarFlameInitialDomainResolution 15;
flameShift 0.0;

progressVariableName CO2;
progressVariableResolution 50;
resolution 64;
// ************************************************** *********************** //
Stefano Puggelli is offline   Reply With Quote

Old   October 22, 2015, 00:02
Default
  #70
New Member
 
Jaehyeon Kim
Join Date: Sep 2014
Posts: 4
Rep Power: 11
Ryunjin is on a distinguished road
Hi Stefano,

Did you solve the laminar flame using this FGM code?

Is it possible?

If so, how configure the setting?
Ryunjin is offline   Reply With Quote

Old   December 20, 2015, 21:10
Default
  #71
Senior Member
 
Freedom
Join Date: May 2014
Posts: 209
Rep Power: 12
wenxu is on a distinguished road
Has anyone in this thread complied the code in OpenFOAM 2.3.0?
wenxu is offline   Reply With Quote

Old   December 21, 2015, 02:44
Default
  #72
Member
 
Join Date: Feb 2015
Posts: 31
Rep Power: 11
Stefano Puggelli is on a distinguished road
I don't think so! I think that it is only available for OpenFoam 1.6!
Stefano Puggelli is offline   Reply With Quote

Old   December 21, 2015, 03:06
Default
  #73
Senior Member
 
Freedom
Join Date: May 2014
Posts: 209
Rep Power: 12
wenxu is on a distinguished road
Now I am working with it to compile it with OF2.3.0 standard library.
wenxu is offline   Reply With Quote

Old   December 21, 2015, 03:08
Default
  #74
Member
 
Join Date: Feb 2015
Posts: 31
Rep Power: 11
Stefano Puggelli is on a distinguished road
If you need help I would be interested in. You can contact me with a private email.
Stefano
Stefano Puggelli is offline   Reply With Quote

Old   December 21, 2015, 03:18
Default
  #75
Senior Member
 
Freedom
Join Date: May 2014
Posts: 209
Rep Power: 12
wenxu is on a distinguished road
Thank you very much! Now I have compile it successfully with OF2.3.x library, but the case has not run to validate this model.
My email address:981588592@qq.com

Best regards,
Wen
wenxu is offline   Reply With Quote

Old   November 7, 2016, 05:28
Default Additional Scalar into SIJPDFthermo class?
  #76
Member
 
Join Date: Feb 2014
Posts: 63
Rep Power: 12
Uyan is on a distinguished road
Hi all,

Has anyone successfully add another scalar into the SIJPDFthermo class and looked up it from the pre-integrated table.

Lets say something like 'OH' species mass fraction?



Thanks in advance for any hints.
Uyan is offline   Reply With Quote

Old   January 26, 2017, 09:05
Default
  #77
New Member
 
Join Date: Jan 2016
Posts: 5
Rep Power: 10
MorenoGeerts is on a distinguished road
Does anybody still have this code? It could be a very good point to start for me.

moreno.geerts@ugent.be
MorenoGeerts is offline   Reply With Quote

Old   October 22, 2019, 10:00
Default Code request.
  #78
New Member
 
Constantin Sula
Join Date: May 2018
Posts: 1
Rep Power: 0
aha248 is on a distinguished road
Hi,

I am also interested in the FGM code. In case any of you has it, could you please email it to me at sulaconstantin@yahoo.com?
aha248 is offline   Reply With Quote

Old   September 30, 2020, 08:16
Default
  #79
New Member
 
Join Date: Aug 2020
Posts: 3
Rep Power: 5
renzhaoxin1989 is on a distinguished road
Hi Likun,

Could you share a copy to me? I am a new learner to the FGM.

Thanks in advance!

Quote:
Originally Posted by Likun View Post
Are you still interested in this code? I have a copy, if you want I can share it with you.

Best regards,
Likun
renzhaoxin1989 is offline   Reply With Quote

Old   September 30, 2020, 08:21
Default
  #80
New Member
 
Join Date: Aug 2020
Posts: 3
Rep Power: 5
renzhaoxin1989 is on a distinguished road
My email address is 530666002@qq.com. Thanks!

Quote:
Originally Posted by Likun View Post
Are you still interested in this code? I have a copy, if you want I can share it with you.

Best regards,
Likun
renzhaoxin1989 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
Liquid rocket engine non-premixed combustion model Erik FLUENT 2 November 28, 2013 14:09
second and final question about flamelet combustion model AdidaKK CFX 0 October 17, 2009 07:25
Combustion Model for CAI/HCCI - AVL FIRE Patryk Main CFD Forum 0 July 24, 2009 16:43
How to model combustion with only methane stream? ligang zheng FLUENT 2 May 1, 2007 09:16
combustion model Hennie van der Westhuizen Siemens 7 February 27, 2002 02:10


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