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

temperature on the wall

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes
  • 2 Post By Bloerb

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 24, 2018, 10:59
Default temperature on the wall
  #1
New Member
 
Boday
Join Date: Oct 2018
Posts: 10
Rep Power: 8
guitar_love_15 is on a distinguished road
Hi.
I need to increase the wall temperature by 10K for each iteration.For example, the wall temperature in the initial time is 400 K, after 0.5 it is 1000K. Unfortunately, I do not know how to do this. Please help me.
Code:
dimensions      [0 0 0 1 0 0 0];

internalField   uniform 400;

boundaryField
{
    top
    {
        type            zeroGradient;
    }

    bottom
    {
        type            zeroGradient;
    }

    walls
    {
        type            fixedValue;
        value           uniform 400;// how to increase it for each iteration
    }

    symmetry
    {
        type            symmetryPlane;
    }

    frontAndBack
    {
        type            empty;
    }
}
guitar_love_15 is offline   Reply With Quote

Old   October 24, 2018, 11:13
Default
  #2
Senior Member
 
sheaker's Avatar
 
Oskar
Join Date: Nov 2015
Location: Poland
Posts: 184
Rep Power: 11
sheaker is on a distinguished road
Maybe this will help:
https://openfoam.org/release/2-1-0/b...ime-dependent/
sheaker is offline   Reply With Quote

Old   October 24, 2018, 11:49
Default
  #3
New Member
 
Boday
Join Date: Oct 2018
Posts: 10
Rep Power: 8
guitar_love_15 is on a distinguished road
Thank you. I tried to use it, but it did not help me. How to use uniformValue for temperature?
guitar_love_15 is offline   Reply With Quote

Old   October 24, 2018, 14:42
Default
  #4
Senior Member
 
Join Date: Sep 2013
Posts: 353
Rep Power: 21
Bloerb will become famous soon enough
Code:
dimensions      [0 0 0 1 0 0 0];

internalField   uniform 400;

boundaryField
{
    top
    {
        type            zeroGradient;
    }

    bottom
    {
        type            zeroGradient;
    }

    walls
    {
        type            uniformFixedValue;
        uniformValue    table
                        (
                            (  0  400.0)
                            (0.5  1000.0)
                        );
    }

    symmetry
    {
        type            symmetryPlane;
    }

    frontAndBack
    {
        type            empty;
    }
}
peterhess and chungle like this.
Bloerb is offline   Reply With Quote

Old   October 24, 2018, 16:47
Default
  #5
New Member
 
Boday
Join Date: Oct 2018
Posts: 10
Rep Power: 8
guitar_love_15 is on a distinguished road
Thank you!!!
guitar_love_15 is offline   Reply With Quote

Reply

Tags
openfoam, temperature


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
[openSmoke] libOpenSMOKE Tobi OpenFOAM Community Contributions 562 January 25, 2023 10:21
Ansys CFX problem: unexpected very high temperatures in premix laminar combustion faizan_habib7 CFX 4 February 1, 2016 18:00
is internalField(U) equivalent to zeroGradient? immortality OpenFOAM Running, Solving & CFD 7 March 29, 2013 02:27
Errors running allwmake in OpenFOAM141dev with WM_COMPILE_OPTION%3ddebug unoder OpenFOAM Installation 11 January 30, 2008 21:30
About fix wall temperature in wall boundary joon Siemens 2 March 10, 2003 02:41


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