|
[Sponsors] |
April 28, 2001, 11:21 |
Posdat
|
#1 |
Guest
Posts: n/a
|
Dear everybody,
I'm simulating the flow through a Kaplanturbine in a pipe(Actuatordisctheory), and I'm using the subroutine Sormom.f without problems. Now I need to take out the velocities U,V,W in a row of cells, why I thought Posdat.f would do, but I'm having difficulties to define the row. I want to define a celltype and then ask Posdat.f to calculate for this specific celltype. Is it possible? Is it possible to get V,W,Y,X,Z from Posdat.f? When I define the celltype I get the message that it is wrong. In the subroutine the fluidtype is defined as ICTID(NCTMXU) - what does "NCTMXU" mean? Maria |
|
April 30, 2001, 11:29 |
Re: Posdat
|
#2 |
Guest
Posts: n/a
|
"NCTMAXU" means the maximum member of fluid cells.
You can get the flowfield distribution in the Posdat.f by the following way: (1)Define a region as you wish in "CTAB" and give it a cell table number (for example: 8). (2)Add the following program to Postdat.f: Do I=1, NTCELL IF(ICTID(I).EQ.8) write(*,*) U(1,I),U(2,I),U(3,I) ENDDO (3)Compile and run again. Everything should be OK. Hope it works! |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
error in posdat.f | tipakorn | Siemens | 4 | August 24, 2007 08:42 |
resor in posdat | hamodi | Siemens | 0 | August 6, 2007 05:22 |
CFL in posdat | hamodi | Siemens | 2 | August 6, 2007 03:27 |
POSDAT | Sheila | Siemens | 2 | February 8, 2006 12:08 |
posdat in HPC | Won-Geun Lee | Siemens | 0 | May 23, 2001 21:03 |