|
[Sponsors] |
What is the difference between the cell numbers ? |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
September 25, 2003, 15:16 |
What is the difference between the cell numbers ?
|
#1 |
Guest
Posts: n/a
|
There is a parameter in the subroutine posdat:ICLMAP(I)
It is explained in this way: ICLMAP(I) (PROSTAR)cell number corresponding to STAR cell index I. So what is the exact meaning of STAR cell index I? For example,if I get one cell number in PROSTAR which is 10,when I "load STAR transient data " by using cell number 10 from the pstt file by the option load transient post data,I found the results I got are different with the results gotten by using the subroutine posdat. What is the matter? Is there some difference between the Prostar cell number(10) and the cell number used in posdat(ICLMAP(10)?)? Thanks a lot for your help! Lee |
|
September 26, 2003, 09:39 |
Re: What is the difference between the cell number
|
#2 |
Guest
Posts: n/a
|
> Is there some difference between the Prostar cell number(10) and the cell number used in posdat(ICLMAP(10)?
Yes, there is. ICLMAP accepts STAR cell number and returns PROSTAR cell number. You are using ICLMAP in the wrong way. To get STAR cell number corresponding to PROSTAR cell 10 you have to build the reversed index by looking through all the STAR cell and getting their numbers with ICLMAP. |
|
September 26, 2003, 11:13 |
Re: What is the difference between the cell number
|
#3 |
Guest
Posts: n/a
|
Thank you,anton!
But how to look through the STAR cell?I mean whether I can do it by a subroutine or other ways. Whether were the PROSTAR cell number changed into STAR cell number at the moment the model was runing? Thank you for your help! Lee |
|
September 28, 2003, 08:28 |
Re: What is the difference between the cell number
|
#4 |
Guest
Posts: n/a
|
The PROSTAR number is the one you get with ICLMAP(I), where I is the internal STAR cell number (= internal solver cell number). When you write your geometry file, the cell are renumbered to get a small executable as possible. For post-processing, you need to know the PROSTAR cell number attributed to the internal cell after renumbering. This is why you need ICLMAP.
If you want to get values for a particular PROSTAR cell number, say #10, you have to loop over all cells, like: DO I=1,NCELL IF (ICLMAP(I).EQ.10) THEN .... .... END IF END DO |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
complex numbers for UDF | korcan | FLUENT | 2 | April 9, 2006 17:24 |
FoamX does not eat numbers | Martin Lorenz (Lorenz) | OpenFOAM Pre-Processing | 9 | January 21, 2006 18:03 |
unsturcture cell & cylinder cell Difference~ | lenson | Siemens | 1 | January 9, 2006 06:32 |
Cell Numbers | furkan | Siemens | 3 | November 24, 2005 04:06 |
high difference between cell and nodal values | Trilok | FLUENT | 2 | November 13, 2003 04:38 |