Combustion

A subforum specific to the development of the OpenFoam-based workbenches ( Cfd https://github.com/qingfengxia/Cfd and CfdOF https://github.com/jaheyns/CfdOF )

Moderator: oliveroxtoby

thschrader
Veteran
Posts: 3154
Joined: Sat May 20, 2017 12:06 pm
Location: Germany

Re: Combustion

Post by thschrader »

Dimensions of the body?
fungnow
Posts: 16
Joined: Thu Oct 14, 2021 5:50 pm

Re: Combustion

Post by fungnow »

the setup and geometry is in the case above!
RamjetCombustion.FCStd
(18.36 KiB) Downloaded 63 times
trying to sim this jet http://www.luft46.com/misc/skp14.html
fungnow
Posts: 16
Joined: Thu Oct 14, 2021 5:50 pm

Re: Combustion

Post by fungnow »

Epiphony: Combustion is a bunch of snakes! Who Knew!?

Using "ReactingFoamTutorial" -> https://www.cfd.at/sites/default/files/ ... Eleven.pdf
and "CFD Tutorial 1 - Elbow" from CSIR as guides!
https://raw.githubusercontent.com/opens ... 0Elbow.pdf
and C:\Users\~~~\FreeCAD 0.19\v2012\msys64\home\ofuser\OpenFOAM\OpenFOAM-v2012\tutorials\combustion\reactingFoam\laminar\counterFlowFlame2D
the ignition is accomplished by an input of mixture of N2 and methane superheated to temp of association (800 K)

back to 3D model using OpenFOAM sheets from above example
https://www.cemf.ir/PDFs/OpenFOAM/Sandi ... ngFoam.pdf
the outer ring enters air 294 K
the middle superheated mix at 1880 K (spark plug)
the inner ring methane 294 K.
However ignition by method from Tutorial above!
is there methane in freeCAD???
so now after meshing and writing case
select "edit" option and hack!
fungnow
Posts: 16
Joined: Thu Oct 14, 2021 5:50 pm

Re: Combustion

Post by fungnow »

[video]C:\Users\fungnow(avisom.avi)[/video]
wanted to post short video but cannot find how to do it?????
User avatar
adrianinsaval
Veteran
Posts: 5544
Joined: Thu Apr 05, 2018 5:15 pm

Re: Combustion

Post by adrianinsaval »

fungnow wrote: Mon Jan 10, 2022 8:29 pm [video]C:\Users\fungnow(avisom.avi)[/video]
wanted to post short video but cannot find how to do it?????
upload to youtube or some other hosting service then paste the link here and try using the [video] tag, I'm not sure what sites are supported but I think at least youtube is supported. Maximum file size for attachments in the forum is 1.5mb so you won't be able to post a video here directly, if it's short and audio and image quality are not important you can try converting to a gif that has less than 1.5mb and upload that as an attachment
chrisb
Veteran
Posts: 54143
Joined: Tue Mar 17, 2015 9:14 am

Re: Combustion

Post by chrisb »

The Upload Limit is 1MB.
A Sketcher Lecture with in-depth information is available in English, auf Deutsch, en français, en español.
fungnow
Posts: 16
Joined: Thu Oct 14, 2021 5:50 pm

Re: Combustion

Post by fungnow »

Thank you much! Youtube it is, in a while!
fungnow
Posts: 16
Joined: Thu Oct 14, 2021 5:50 pm

Re: Combustion

Post by fungnow »

phpBB [video]
Last edited by Kunda1 on Sun Jan 23, 2022 1:54 am, edited 1 time in total.
Reason: used video tags for clip
fungnow
Posts: 16
Joined: Thu Oct 14, 2021 5:50 pm

Re: Combustion

Post by fungnow »

OLT4P_pulse.png
OLT4P_pulse.png (89.12 KiB) Viewed 2369 times
test of pulse fuel inlet , the code was on UTb title "Pulsing Inlet Velocity"

Code: Select all

testing editing CASE before solving
                     ????       use "Analysis control" "Edit" Case button! 
          THIS WILL IMPLEMENT "Pulsing Inlet Velocity" (find it on UTb)
inletGas
    {
        // Fix all three components of velocity on inflow and only the normal component on outflow,
        // in order to be well-posed if there are some faces on the patch which are actually outflows.
        type                fixedNormalInletOutletVelocity;
        fixTangentialInflow yes;
        normalVelocity
        {
            type            uniformFixedValue;
            value           uniform ( 3.2 0.0 0.0 );
            uniformValue sine;
            uniformValueCoeffs
            {
              frequency 2;
              amplitude 5;
              level (10 0 0); 
              scale (1 0 0);  
             }

        }
        value               uniform ( 3.2 0.0 0.0 );
    }
Last edited by Kunda1 on Fri Jan 28, 2022 12:23 am, edited 1 time in total.
Reason: added code tags
Post Reply