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

Boundary conditions MultiRegionHeater

Register Blogs Community New Posts Updated Threads Search

 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old   October 25, 2013, 07:10
Post Boundary conditions MultiRegionHeater
  #1
New Member
 
Bárbara Arizmendi
Join Date: Oct 2013
Location: Spain
Posts: 14
Rep Power: 12
Barbara is on a distinguished road
Hi Foamers!
I'm new to OpenFoam and I'm working with multiRegionFoam. I've played correctly the tutorial multiRegionHeater but now I'm doing some changes. I'd like to set the T value of the heater to 500 K and delete the condition of the minY which is a fixed temperature. In the changeDictionarydict I've the folllowing script:


Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.2.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
   version     2.0;
   format      ascii;
   class       dictionary;
   object      changeDictionaryDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
dictionaryReplacement
{
   boundary
   {
       minY
       {
           type            wall;
       }
 
   }
 
   T
   {
       internalField   uniform 300;
 
       boundaryField
       {
           ".*"
           {
               type            zeroGradient;
               value           uniform 300;
           }
           "heater_to_.*"
           {
 
               type            compressible::turbulentTemperatureCoupledBaffleMixed;
               neighbourFieldName T;
               kappa           solidThermo;
               kappaName       none;
               value           uniform 500;
           }
           minY
           {
               type            zeroGradient;
value           uniform 300;
           }
       }
   }
}
 
// ************************************************************************* //
I've run the case and It doesn't converge. I've waited for 2 hour and I don't get any solution. Is it a problem of the code or do I have to wait longer time?

Thanks you
Barbara is offline   Reply With Quote

 

Tags
boundary conditions, multiregionheater


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
Question about heat transfer coefficient setting for CFX Anna Tian CFX 1 June 16, 2013 06:28
symmetry boundary conditions in cfx lost.identity CFX 41 May 22, 2013 07:21
Low Mixing time Problem Mavier CFX 5 April 29, 2013 00:00
[Netgen] boundary conditions and mesh exporting vaina74 OpenFOAM Meshing & Mesh Conversion 2 May 27, 2010 09:38
[Commercial meshers] Trimmed cell and embedded refinement mesh conversion issues michele OpenFOAM Meshing & Mesh Conversion 2 July 15, 2005 04:15


All times are GMT -4. The time now is 10:21.