Basic OpenFOAM Programming Tutorial: Adding Passive Scalar Transport Equation to icoFoam

Поделиться
HTML-код
  • Опубликовано: 29 янв 2025

Комментарии • 24

  • @GeniusNation
    @GeniusNation 5 лет назад +3

    You are blessing to openFoam community. I loved this video.

  • @vnicolazo
    @vnicolazo 2 года назад

    thank you so so so much, I've been looking for this for so long you have no idea, you're a real life saver!! I FINALLY understand what is going on

  • @jay8293
    @jay8293 4 года назад +1

    Thank you so much for uploading this precious lecture.
    This is 100X useful than any other paid lectures of openfoam.

  • @rohitkeshri5427
    @rohitkeshri5427 4 года назад

    cleared many doubts in just 1 video. thank u very much......

  • @BoBbY-gj8jz
    @BoBbY-gj8jz 3 года назад +1

    It's a great video, learnt alot from it.
    please make video on adding reaction in the solver, or modifying combustion solver for other reactions.

  • @chrisoliv85
    @chrisoliv85 8 лет назад

    Thank you very much Vuko! Hope you keep posting more videos like these!

  • @林崔
    @林崔 3 года назад

    such a great video! thanks for sharing!

  • @thomasperet8100
    @thomasperet8100 8 лет назад

    Excellent man. Thanks a lot for posting such a good tutorial.

  • @idreeskhan1629
    @idreeskhan1629 5 лет назад

    thanks Vuko, it will highly appreciated if you upload a video related to viscoelastic models.

  • @ningtian7255
    @ningtian7255 8 лет назад +4

    thanks a lot. It is really helpful. I am intent to add a source term in PDE. Could you please give a me hint how to do it

  • @cickolol7167
    @cickolol7167 8 лет назад +1

    thank you for sharing the precious info

  • @mohamedshatarah7264
    @mohamedshatarah7264 10 месяцев назад

    Thank you so much. You are amazing sir

  • @sourabhsup
    @sourabhsup 8 лет назад

    Excellent explanation.... thank you so much!!

  • @碎金-v2v
    @碎金-v2v 6 лет назад

    Thanks for your tutorials! It is really helpful!!!!

  • @vladj4391
    @vladj4391 8 лет назад

    Thanks for posting this tutorial!

  • @AHGAZI-mx3yf
    @AHGAZI-mx3yf 6 лет назад

    Thanks a ton.It is a massive help.

  • @merajahmed8069
    @merajahmed8069 4 года назад

    awesome video very helpful.

  • @KeviPegoraro
    @KeviPegoraro 4 года назад

    I always get the error: setFields: symbol lookup error: setFields: undefined symbol: _ZN4Foam9UOPstream8beginRawEl
    when I run the setFields command, even in the opemFoam tutorials, what can it be?

  • @idreeskhan1629
    @idreeskhan1629 4 года назад

    Nice, could you explain how to use dimensionless equation's in OpenFoam?

  • @minkangshen
    @minkangshen 4 года назад

    thank you very much

  • @vsammartano
    @vsammartano 8 лет назад

    Hi! thank you for your tutorial ... it was really helpful! ... did you do a tutorial to create a personal openfoam application? i.e. to initialize a particular flow field, as in a wave generation tank? I would appreciate if you can help me in this issue.

  • @idreeskhan1629
    @idreeskhan1629 4 года назад

    Please any one could explain in EXE-INC=$(LIB_SRC)/finitevolume/linclude they have mentioned the liberary finitvolume in EXE-LIBS=-lfinitevolum\-llduSolvers but why not lduSolver or if finitvolume library is mentioned in EXE-LIBS then why they have mentioned lduSolvers, although only finitevolum is mentioned in EXE-INC. kindly what is the rule.

  • @lukasf2648
    @lukasf2648 6 лет назад +1

    Good video. Thank you. Nevertheless, please use a better microphone.

  • @abderrahmanemokrani2542
    @abderrahmanemokrani2542 3 года назад

    hello sir
    please
    how i can add a function to the differential equation in openfoam, especially the scale function,
    *like here :
    fvm::ddt(T) - (1/(1+dfra(T)*Lat/(CP*eT)))*fvm::laplacian(DT, T)
    ==
    fvOptions(T)
    *for the continuous functions I managed to define them by this program in createFields.H
    volScalarField dfra
    (
    IOobject
    (
    "dfra",
    runTime.timeName(),
    mesh
    ),
    {
    0.5-0*T
    }
    );
    *but for the scale function i can't difinde (dfra(T))
    *the function what i want add it is this:
    int fraction(int n);
    using namespace std;
    double dfra (double a)
    {
    double r;
    if(a>-0.5 && a