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

ACMI pro-tip for speedup

Register Blogs Community New Posts Updated Threads Search

Like Tree3Likes
  • 3 Post By linnemann

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   December 11, 2018, 04:45
Default ACMI pro-tip for speedup
  #1
Senior Member
 
linnemann's Avatar
 
Niels Nielsen
Join Date: Mar 2009
Location: NJ - Denmark
Posts: 555
Rep Power: 27
linnemann will become famous soon enough
If there is a large difference in the ACMI sizes.
Having the boundaries with the smallest faces first in the boundary file will have a drastic effect on speedup.

Code:
    ACMI2_couple
    {
        type            cyclicACMI;
        nFaces          16176;
    }
    ACMI3_couple
    {
        type            cyclicACMI;
        nFaces          16176;
    }
    ACMI1_couple
    {
        type            cyclicACMI;
        nFaces          1080;
        }

    ACMI4_couple
    {
        type            cyclicACMI;
        nFaces          1080;
    }
Will use ~1min to do the addressing

Code:
    ACMI1_couple
    {
        type            cyclicACMI;
        nFaces          1080;
        }

    ACMI4_couple
    {
        type            cyclicACMI;
        nFaces          1080;
    }
    ACMI2_couple
    {
        type            cyclicACMI;
        nFaces          16176;
    }
    ACMI3_couple
    {
        type            cyclicACMI;
        nFaces          16176;
    }
Will use 5s! to do the addressing....
jherb, GerhardHolzinger and dybuk like this.
__________________
Linnemann

PS. I do not do personal support, so please post in the forums.
linnemann 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
Question of strategy to apply squealer tip effect Inkyom Main CFD Forum 0 December 11, 2017 23:31
Out File does not show Imbalance in % Mmaragann CFX 5 January 20, 2017 10:20
[ICEM] make tip gap surface, ICEM Jonathan ANSYS Meshing & Geometry 2 July 3, 2014 11:06
[ICEM] Unstructure Meshing at the Wing Tip Surface from Imported Plot3D Structured Mesh yona ANSYS Meshing & Geometry 8 January 21, 2014 10:06
Prosurf to Proam problems, help please William Wallace Siemens 11 February 3, 2006 17:00


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