Enhancednced solver.

This commit is contained in:
Aditya Ujeniya 2023-09-19 12:10:00 +02:00
parent eb14891126
commit 70611112d5
97 changed files with 20278 additions and 351510 deletions

View File

@ -32,7 +32,7 @@ jmax 50 # number of interior cells in y-direction
# Time Data:
# ---------
te 100.0 # final time
te 60.0 # final time
dt 0.02 # time stepsize
tau 0.5 # safety factor for time stepsize control (<0 constant delt)
@ -40,7 +40,7 @@ tau 0.5 # safety factor for time stepsize control (<0 constant delt)
# -----------------------
itermax 500 # maximal number of pressure iteration in one time step
eps 0.00001 # stopping tolerance for pressure iteration
eps 0.0001 # stopping tolerance for pressure iteration
rho 0.52
omg 1.8 # relaxation parameter for SOR iteration
gamma 0.9 # upwind differencing factor gamma
@ -63,8 +63,8 @@ y2 4.0
# Shape 0 disable, 1 Rectangle/Square, 2 Circle
shape 1
xCenter 7.0
yCenter 2.0
xCenter 10.0
yCenter 2
xRectLength 3.0
yRectLength 1.0
circleRadius 1.0

View File

@ -26,8 +26,8 @@ p_init 0.0 # initial value for pressure
xlength 1.0 # domain size in x-direction
ylength 1.0 # domain size in y-direction
imax 40 # number of interior cells in x-direction
jmax 40 # number of interior cells in y-direction
imax 100 # number of interior cells in x-direction
jmax 100 # number of interior cells in y-direction
# Time Data:
# ---------

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 31 KiB

File diff suppressed because it is too large Load Diff

View File

@ -57,9 +57,9 @@ int main (int argc, char** argv)
void (*solver_generic[])() = {solve, solveRB, solveRBA};
//print(&solver, solver.s);
// printGrid(&solver, solver.s);
//exit(0);
// exit(0);
S = getTimeStamp();
@ -68,14 +68,17 @@ int main (int argc, char** argv)
if (tau > 0.0) computeTimestep(&solver);
setBoundaryConditions(&solver);
setSpecialBoundaryCondition(&solver);
setObjectBoundaryCondition(&solver);
computeFG(&solver);
computeRHS(&solver);
if (nt % 100 == 0) normalizePressure(&solver);
//if (nt % 100 == 0) normalizePressure(&solver);
solver_generic[variant - 1](&solver);
adaptUV(&solver);
/* Added function for particle tracing. Will inject and advance particles as per timePeriod */
//trace(&particletracer, solver.u, solver.v, t);
// trace(&particletracer, solver.u, solver.v, t);
t += solver.dt;
nt++;
@ -96,6 +99,11 @@ int main (int argc, char** argv)
freeParticles(&particletracer);
// printf("\nU : \n\n");
// print(&solver, solver.u);
// printf("\nV : \n\n");
// print(&solver, solver.v);
printf("Solution took %.2fs\n", E - S);
writeResult(&solver);
return EXIT_SUCCESS;

View File

@ -43,6 +43,20 @@ void print(Solver* solver, double* grid)
fflush(stdout);
}
void printGrid(Solver* solver, int* grid)
{
int imax = solver->imax;
for (int j = 0; j < solver->jmax + 2; j++) {
printf("%02d: ", j);
for (int i = 0; i < solver->imax + 2; i++) {
printf("%2d ", grid[j * (imax + 2) + i]);
}
printf("\n");
}
fflush(stdout);
}
static void printConfig(Solver* solver)
{
printf("Parameters for #%s#\n", solver->problem);
@ -111,7 +125,7 @@ void initSolver(Solver* solver, Parameter* params)
solver->rhs[i] = 0.0;
solver->f[i] = 0.0;
solver->g[i] = 0.0;
solver->s[i] = 1.0;
solver->s[i] = NONE;
}
double dx = solver->dx;
@ -121,7 +135,7 @@ void initSolver(Solver* solver, Parameter* params)
int iCenter = 0, jCenter = 0, iRectLength = 0, jRectLength = 0, radius = 0;
double* s = solver->s;
int* s = solver->s;
switch(params->shape)
{
@ -148,8 +162,7 @@ void initSolver(Solver* solver, Parameter* params)
{
if(i1 <= i && i <= i2 && j1 <= j && j <= j2)
{
// if(i == i1 || i == i2 || j == j1 || j == j2) S(i, j) = 2.0;
S(i, j) = 0.0;
S(i, j) = LOCAL;
}
}
}
@ -166,7 +179,7 @@ void initSolver(Solver* solver, Parameter* params)
{
if(distance(i, j, iCenter, jCenter) <= radius)
{
S(i, j) = 0.0;
S(i, j) = LOCAL;
}
}
}
@ -176,6 +189,30 @@ void initSolver(Solver* solver, Parameter* params)
break;
}
for (int j = 1; j < jmax + 1; j++)
{
for (int i = 1; i < imax + 1; i++)
{
// if( S(i+1,j+1) == NONE && S(i+1,j) == NONE && S(i,j+1) == NONE && S(i-1,j-1) == LOCAL && S(i,j) == LOCAL ) S(i,j) = BOTTOMRIGHT;
// else if( S(i-1,j+1) == NONE && S(i-1,j) == NONE && S(i,j+1) == NONE && S(i+1,j-1) == LOCAL && S(i,j) == LOCAL ) S(i,j) = BOTTOMLEFT;
// else if( S(i+1,j-1) == NONE && S(i,j-1) == NONE && S(i+1,j) == NONE && S(i-1,j+1) == LOCAL && S(i,j) == LOCAL ) S(i,j) = TOPRIGHT;
// else if( S(i-1,j-1) == NONE && S(i,j-1) == NONE && S(i-1,j) == NONE && S(i+1,j+1) == LOCAL && S(i,j) == LOCAL ) S(i,j) = TOPLEFT;
// else if( S(i+1,j) == NONE && S(i-1,j) == LOCAL && S(i,j) == LOCAL ) S(i,j) = RIGHT;
// else if( S(i,j+1) == NONE && S(i,j-1) == LOCAL && S(i,j) == LOCAL ) S(i,j) = BOTTOM;
// else if( S(i-1,j) == NONE && S(i+1,j) == LOCAL && S(i,j) == LOCAL ) S(i,j) = LEFT;
// else if( S(i,j-1) == NONE && S(i,j+1) == LOCAL && S(i,j) == LOCAL ) S(i,j) = TOP;
if( S(i,j-1) == NONE && S(i,j+1) == LOCAL && S(i,j) == LOCAL ) S(i,j) = BOTTOM; //TOP
if( S(i-1,j) == NONE && S(i+1,j) == LOCAL && S(i,j) == LOCAL ) S(i,j) = LEFT; //LEFT
if( S(i+1,j) == NONE && S(i-1,j) == LOCAL && S(i,j) == LOCAL ) S(i,j) = RIGHT; //RIGHT
if( S(i,j+1) == NONE && S(i,j-1) == LOCAL && S(i,j) == LOCAL ) S(i,j) = TOP; //BOTTOM
if( S(i-1,j-1) == NONE && S(i,j-1) == NONE && S(i-1,j) == NONE && S(i+1,j+1) == LOCAL && (S(i,j) == LOCAL || S(i,j) == LEFT || S(i,j) == BOTTOM ) ) S(i,j) = BOTTOMLEFT; //TOPLEFT
if( S(i+1,j-1) == NONE && S(i,j-1) == NONE && S(i+1,j) == NONE && S(i-1,j+1) == LOCAL && (S(i,j) == LOCAL || S(i,j) == RIGHT || S(i,j) == BOTTOM ) ) S(i,j) = BOTTOMRIGHT; //TOPRIGHT
if( S(i-1,j+1) == NONE && S(i-1,j) == NONE && S(i,j+1) == NONE && S(i+1,j-1) == LOCAL && (S(i,j) == LOCAL || S(i,j) == LEFT || S(i,j) == TOP )) S(i,j) = TOPLEFT; //BOTTOMLEFT
if( S(i+1,j+1) == NONE && S(i+1,j) == NONE && S(i,j+1) == NONE && S(i-1,j-1) == LOCAL && (S(i,j) == LOCAL || S(i,j) == RIGHT || S(i,j) == TOP ) ) S(i,j) = TOPRIGHT; //BOTTOMRIGHT
}
}
#ifdef VERBOSE
printConfig(solver);
#endif
@ -191,11 +228,14 @@ void computeRHS(Solver* solver)
double* rhs = solver->rhs;
double* f = solver->f;
double* g = solver->g;
int* s = solver->s;
for (int j = 1; j < jmax + 1; j++) {
for (int i = 1; i < imax + 1; i++) {
RHS(i, j) = idt *
((F(i, j) - F(i - 1, j)) * idx + (G(i, j) - G(i, j - 1)) * idy);
for (int j = 1; j < jmax + 1; j++)
{
for (int i = 1; i < imax + 1; i++)
{
// if(S(i,j) == NONE)
RHS(i, j) = idt * ((F(i, j) - F(i - 1, j)) * idx + (G(i, j) - G(i, j - 1)) * idy);
}
}
}
@ -266,7 +306,7 @@ void solveRB(Solver* solver)
double idy2 = 1.0 / dy2;
double factor = solver->omega * 0.5 * (dx2 * dy2) / (dx2 + dy2);
double* p = solver->p;
double* s = solver->s;
int* s = solver->s;
double* rhs = solver->rhs;
double epssq = eps * eps;
int it = 0;
@ -278,22 +318,24 @@ void solveRB(Solver* solver)
res = 0.0;
jsw = 1;
for (pass = 0; pass < 2; pass++) {
for (pass = 0; pass < 2; pass++)
{
isw = jsw;
for (int j = 1; j < jmax + 1; j++) {
for (int i = isw; i < imax + 1; i += 2) {
// val = S(i+1, j) + S(i-1, j) + S(i, j+1) + S(i, j-1);
// if(val == 0 || S(i,j) == 0)
for (int j = 1; j < jmax + 1; j++)
{
for (int i = isw; i < imax + 1; i += 2)
{
// if(S(i,j) == NONE)
// {
// continue;
// }
double r = RHS(i, j) -
((P(i + 1, j) - 2.0 * P(i, j) + P(i - 1, j)) * idx2 +
(P(i, j + 1) - 2.0 * P(i, j) + P(i, j - 1)) * idy2);
double r = RHS(i, j) -
((P(i + 1, j) - 2.0 * P(i, j) + P(i - 1, j)) * idx2 +
(P(i, j + 1) - 2.0 * P(i, j) + P(i, j - 1)) * idy2);
P(i, j) -= (factor * r );
res += (r * r);
P(i, j) -= (factor * r );
res += (r * r);
// }
}
isw = 3 - isw;
}
@ -310,6 +352,8 @@ void solveRB(Solver* solver)
P(imax + 1, j) = P(imax, j);
}
//setObjectPBoundaryCondition(solver);
res = res / (double)(imax * jmax);
#ifdef DEBUG
@ -561,12 +605,122 @@ void setSpecialBoundaryCondition(Solver* solver)
}
}
void setObjectBoundaryCondition(Solver* solver)
{
int imax = solver->imax;
int jmax = solver->jmax;
double* u = solver->u;
double* v = solver->v;
int* s = solver->s;
for (int j = 1; j < jmax + 1; j++)
{
for (int i = 1; i < imax + 1; i++)
{
switch(S(i,j))
{
case TOP:
U(i,j) = -U(i,j+1);
U(i-1,j) = -U(i-1,j+1);
V(i,j) = 0.0;
break;
case BOTTOM:
U(i,j) = -U(i,j-1);
U(i-1,j) = -U(i-1,j-1);
V(i,j) = 0.0;
break;
case LEFT:
U(i,j) = 0.0;
V(i,j) = -V(i-1,j);
V(i,j-1) = -V(i-1,j-1);
break;
case RIGHT:
U(i,j) = 0.0;
V(i,j) = -V(i+1,j);
V(i,j-1) = -V(i+1,j-1);
break;
case TOPLEFT:
U(i,j) = -U(i,j+1);
U(i-1,j) = 0.0;
V(i,j) = 0.0;
V(i,j+1) = -V(i-1,j+1);
break;
case TOPRIGHT:
U(i,j) = 0.0;
U(i+1,j) = -U(i+1,j+1);
V(i,j) = 0.0;
V(i,j+1) = -V(i+1,j+1);
break;
case BOTTOMLEFT:
U(i,j) = -U(i,j-1);
U(i-1,j) = 0.0;
V(i,j) = -V(i-1,j);
V(i,j-1) = 0.0;
break;
case BOTTOMRIGHT:
U(i,j) = 0.0;
U(i+1,j) = -U(i+1,j-1);
V(i,j) = -V(i,j+1);
V(i,j-1) = 0.0;
break;
}
}
}
}
void setObjectPBoundaryCondition(Solver* solver)
{
int imax = solver->imax;
int jmax = solver->jmax;
double* p = solver->p;
int* s = solver->s;
for (int j = 1; j < jmax + 1; j++)
{
for (int i = 1; i < imax + 1; i++)
{
switch (S(i,j))
{
case TOP:
P(i,j) = P(i,j+1);
break;
case BOTTOM:
P(i,j) = P(i,j-1);
break;
case LEFT:
P(i,j) = P(i-1,j);
break;
case RIGHT:
P(i,j) = P(i,j+1);
break;
case TOPLEFT:
P(i,j) = (P(i-1,j) + P(i,j+1))/2;
break;
case TOPRIGHT:
P(i,j) = (P(i+1,j) + P(i,j+1))/2;
break;
case BOTTOMLEFT:
P(i,j) = (P(i-1,j) + P(i,j-1))/2;
break;
case BOTTOMRIGHT:
P(i,j) = (P(i+1,j) + P(i,j-1))/2;
break;
default:
break;
}
}
}
}
void computeFG(Solver* solver)
{
double* u = solver->u;
double* v = solver->v;
double* f = solver->f;
double* g = solver->g;
int* s = solver->s;
int imax = solver->imax;
int jmax = solver->jmax;
double gx = solver->gx;
@ -579,45 +733,84 @@ void computeFG(Solver* solver)
double du2dx, dv2dy, duvdx, duvdy;
double du2dx2, du2dy2, dv2dx2, dv2dy2;
for (int j = 1; j < jmax + 1; j++) {
for (int i = 1; i < imax + 1; i++) {
du2dx = inverseDx * 0.25 *
((U(i, j) + U(i + 1, j)) * (U(i, j) + U(i + 1, j)) -
(U(i, j) + U(i - 1, j)) * (U(i, j) + U(i - 1, j))) +
gamma * inverseDx * 0.25 *
(fabs(U(i, j) + U(i + 1, j)) * (U(i, j) - U(i + 1, j)) +
fabs(U(i, j) + U(i - 1, j)) * (U(i, j) - U(i - 1, j)));
for (int j = 1; j < jmax + 1; j++)
{
for (int i = 1; i < imax + 1; i++)
{
if(S(i,j) == NONE)
{
du2dx = inverseDx * 0.25 *
((U(i, j) + U(i + 1, j)) * (U(i, j) + U(i + 1, j)) -
(U(i, j) + U(i - 1, j)) * (U(i, j) + U(i - 1, j))) +
gamma * inverseDx * 0.25 *
(fabs(U(i, j) + U(i + 1, j)) * (U(i, j) - U(i + 1, j)) +
fabs(U(i, j) + U(i - 1, j)) * (U(i, j) - U(i - 1, j)));
duvdy = inverseDy * 0.25 *
((V(i, j) + V(i + 1, j)) * (U(i, j) + U(i, j + 1)) -
(V(i, j - 1) + V(i + 1, j - 1)) * (U(i, j) + U(i, j - 1))) +
gamma * inverseDy * 0.25 *
(fabs(V(i, j) + V(i + 1, j)) * (U(i, j) - U(i, j + 1)) +
fabs(V(i, j - 1) + V(i + 1, j - 1)) *
(U(i, j) - U(i, j - 1)));
duvdy = inverseDy * 0.25 *
((V(i, j) + V(i + 1, j)) * (U(i, j) + U(i, j + 1)) -
(V(i, j - 1) + V(i + 1, j - 1)) * (U(i, j) + U(i, j - 1))) +
gamma * inverseDy * 0.25 *
(fabs(V(i, j) + V(i + 1, j)) * (U(i, j) - U(i, j + 1)) +
fabs(V(i, j - 1) + V(i + 1, j - 1)) *
(U(i, j) - U(i, j - 1)));
du2dx2 = inverseDx * inverseDx * (U(i + 1, j) - 2.0 * U(i, j) + U(i - 1, j));
du2dy2 = inverseDy * inverseDy * (U(i, j + 1) - 2.0 * U(i, j) + U(i, j - 1));
F(i, j) = U(i, j) + dt * (inverseRe * (du2dx2 + du2dy2) - du2dx - duvdy + gx);
du2dx2 = inverseDx * inverseDx * (U(i + 1, j) - 2.0 * U(i, j) + U(i - 1, j));
du2dy2 = inverseDy * inverseDy * (U(i, j + 1) - 2.0 * U(i, j) + U(i, j - 1));
F(i, j) = U(i, j) + dt * (inverseRe * (du2dx2 + du2dy2) - du2dx - duvdy + gx);
duvdx = inverseDx * 0.25 *
((U(i, j) + U(i, j + 1)) * (V(i, j) + V(i + 1, j)) -
(U(i - 1, j) + U(i - 1, j + 1)) * (V(i, j) + V(i - 1, j))) +
gamma * inverseDx * 0.25 *
(fabs(U(i, j) + U(i, j + 1)) * (V(i, j) - V(i + 1, j)) +
fabs(U(i - 1, j) + U(i - 1, j + 1)) *
(V(i, j) - V(i - 1, j)));
duvdx = inverseDx * 0.25 *
((U(i, j) + U(i, j + 1)) * (V(i, j) + V(i + 1, j)) -
(U(i - 1, j) + U(i - 1, j + 1)) * (V(i, j) + V(i - 1, j))) +
gamma * inverseDx * 0.25 *
(fabs(U(i, j) + U(i, j + 1)) * (V(i, j) - V(i + 1, j)) +
fabs(U(i - 1, j) + U(i - 1, j + 1)) *
(V(i, j) - V(i - 1, j)));
dv2dy = inverseDy * 0.25 *
((V(i, j) + V(i, j + 1)) * (V(i, j) + V(i, j + 1)) -
(V(i, j) + V(i, j - 1)) * (V(i, j) + V(i, j - 1))) +
gamma * inverseDy * 0.25 *
(fabs(V(i, j) + V(i, j + 1)) * (V(i, j) - V(i, j + 1)) +
fabs(V(i, j) + V(i, j - 1)) * (V(i, j) - V(i, j - 1)));
dv2dy = inverseDy * 0.25 *
((V(i, j) + V(i, j + 1)) * (V(i, j) + V(i, j + 1)) -
(V(i, j) + V(i, j - 1)) * (V(i, j) + V(i, j - 1))) +
gamma * inverseDy * 0.25 *
(fabs(V(i, j) + V(i, j + 1)) * (V(i, j) - V(i, j + 1)) +
fabs(V(i, j) + V(i, j - 1)) * (V(i, j) - V(i, j - 1)));
dv2dx2 = inverseDx * inverseDx * (V(i + 1, j) - 2.0 * V(i, j) + V(i - 1, j));
dv2dy2 = inverseDy * inverseDy * (V(i, j + 1) - 2.0 * V(i, j) + V(i, j - 1));
G(i, j) = V(i, j) + dt * (inverseRe * (dv2dx2 + dv2dy2) - duvdx - dv2dy + gy);
dv2dx2 = inverseDx * inverseDx * (V(i + 1, j) - 2.0 * V(i, j) + V(i - 1, j));
dv2dy2 = inverseDy * inverseDy * (V(i, j + 1) - 2.0 * V(i, j) + V(i, j - 1));
G(i, j) = V(i, j) + dt * (inverseRe * (dv2dx2 + dv2dy2) - duvdx - dv2dy + gy);
}
else
{
switch(S(i,j))
{
case TOP:
G(i,j) = V(i,j);
break;
case BOTTOM:
G(i,j-1) = V(i,j-1);
break;
case LEFT:
F(i-1,j) = U(i-1,j);
break;
case RIGHT:
F(i,j) = U(i,j);
break;
case TOPLEFT:
F(i-1,j) = U(i-1,j);
G(i,j) = V(i,j);
break;
case TOPRIGHT:
F(i,j) = U(i,j);
G(i,j) = V(i,j);
break;
case BOTTOMLEFT:
F(i-1,j) = U(i-1,j);
G(i,j-1) = V(i,j-1);
break;
case BOTTOMRIGHT:
F(i,j) = U(i,j);
G(i,j-1) = V(i,j-1);
break;
}
}
}
}
@ -641,7 +834,7 @@ void adaptUV(Solver* solver)
double* p = solver->p;
double* u = solver->u;
double* v = solver->v;
double* s = solver->s;
int* s = solver->s;
double* f = solver->f;
double* g = solver->g;
double factorX = solver->dt / solver->dx;
@ -653,19 +846,6 @@ void adaptUV(Solver* solver)
{
for (int i = 1; i < imax + 1; i++)
{
val = S(i+1, j) + S(i-1, j) + S(i, j+1) + S(i, j-1);
if(S(i,j) == 0 && val == 0)
{
U(i, j) = 0;
V(i, j) = 0;
continue;
}
// else if(S(i,j) == 2.0)
// {
// U(i, j) = -U(i, j);
// V(i, j) = -V(i, j);
// continue;
// }
U(i, j) = F(i, j) - (P(i + 1, j) - P(i, j)) * factorX;
V(i, j) = G(i, j) - (P(i, j + 1) - P(i, j)) * factorY;
}

View File

@ -8,6 +8,7 @@
#define __SOLVER_H_
#include "parameter.h"
enum OBJECTBOUNDARY { NONE = 0, TOP, BOTTOM, LEFT, RIGHT, TOPLEFT, BOTTOMLEFT, TOPRIGHT, BOTTOMRIGHT, LOCAL };
enum BC { NOSLIP = 1, SLIP, OUTFLOW, PERIODIC };
/// @brief
enum SHAPE { NOSHAPE = 0, RECT, CIRCLE };
@ -20,7 +21,8 @@ typedef struct {
/* arrays */
double *p, *rhs;
double *f, *g;
double *u, *v, *s;
double *u, *v;
int *s;
/* parameters */
double eps, omega, rho;
double re, tau, gamma;
@ -42,8 +44,12 @@ extern void normalizePressure(Solver*);
extern void computeTimestep(Solver*);
extern void setBoundaryConditions(Solver*);
extern void setSpecialBoundaryCondition(Solver*);
extern void setObjectBoundaryCondition(Solver*);
extern void setObjectPBoundaryCondition(Solver*);
extern void computeFG(Solver*);
extern void adaptUV(Solver*);
extern void writeResult(Solver*);
extern void print(Solver*, double*);
extern void printGrid(Solver*, int*);
#endif

View File

@ -1,5 +1,7 @@
set terminal png size 1800,768 enhanced font ,12
set output 'velocity.png'
set datafile separator whitespace
#set object 1 rect from 8.5,1.5 to 11.5,2.5 lw 5
plot 'velocity.dat' using 1:2:3:4:5 with vectors filled head size 0.01,20,60 lc palette

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 86 KiB

View File

@ -3,7 +3,7 @@ set term gif animate delay 50
set output "trace.gif"
set xrange [0:30]
set yrange [0:4]
do for [ts=0:200] {
do for [ts=0:600] {
plot "particles_".ts.".dat" with points pointtype 7
}
unset output

Binary file not shown.

Before

Width:  |  Height:  |  Size: 796 KiB

After

Width:  |  Height:  |  Size: 2.6 MiB

View File

@ -1,12 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
0
CYCLE 1 1 int
1
POINTS 0 float
CELLS 0 0
CELL_TYPES 0

View File

@ -1,189 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
1
CYCLE 1 1 int
1
POINTS 59 float
1.00 4.00 0.0
1.00 3.93 0.0
1.00 3.86 0.0
1.00 3.80 0.0
1.01 3.73 0.0
1.01 3.66 0.0
1.01 3.59 0.0
1.01 3.53 0.0
1.01 3.46 0.0
1.01 3.39 0.0
1.01 3.32 0.0
1.01 3.25 0.0
1.01 3.19 0.0
1.01 3.12 0.0
1.01 3.05 0.0
1.02 2.98 0.0
1.02 2.92 0.0
1.02 2.85 0.0
1.02 2.78 0.0
1.02 2.71 0.0
1.02 2.64 0.0
1.02 2.58 0.0
1.02 2.51 0.0
1.02 2.44 0.0
1.02 2.37 0.0
1.02 2.31 0.0
1.02 2.24 0.0
1.02 2.17 0.0
1.02 2.10 0.0
1.02 2.03 0.0
1.02 1.97 0.0
1.02 1.90 0.0
1.02 1.83 0.0
1.02 1.76 0.0
1.02 1.69 0.0
1.02 1.63 0.0
1.02 1.56 0.0
1.02 1.49 0.0
1.02 1.42 0.0
1.02 1.36 0.0
1.02 1.29 0.0
1.02 1.22 0.0
1.02 1.15 0.0
1.02 1.08 0.0
1.02 1.02 0.0
1.01 0.95 0.0
1.01 0.88 0.0
1.01 0.81 0.0
1.01 0.75 0.0
1.01 0.68 0.0
1.01 0.61 0.0
1.01 0.54 0.0
1.01 0.47 0.0
1.01 0.41 0.0
1.01 0.34 0.0
1.01 0.27 0.0
1.00 0.20 0.0
1.00 0.14 0.0
1.00 0.07 0.0
CELLS 59 118
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
CELL_TYPES 59
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

View File

@ -1,909 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
10
CYCLE 1 1 int
1
POINTS 299 float
1.00 4.00 0.0
1.24 3.94 0.0
1.49 3.87 0.0
1.73 3.80 0.0
1.96 3.73 0.0
2.17 3.67 0.0
2.38 3.60 0.0
2.58 3.54 0.0
2.78 3.48 0.0
2.96 3.42 0.0
3.13 3.36 0.0
3.29 3.30 0.0
3.44 3.24 0.0
3.58 3.18 0.0
3.72 3.12 0.0
3.84 3.06 0.0
3.95 3.01 0.0
4.05 2.95 0.0
4.14 2.89 0.0
4.23 2.83 0.0
4.30 2.77 0.0
4.36 2.71 0.0
4.41 2.64 0.0
4.46 2.58 0.0
4.49 2.50 0.0
4.51 2.43 0.0
4.53 2.34 0.0
4.54 2.26 0.0
4.55 2.17 0.0
4.55 2.07 0.0
4.55 1.98 0.0
4.55 1.89 0.0
4.54 1.79 0.0
4.52 1.71 0.0
4.50 1.62 0.0
4.47 1.54 0.0
4.44 1.46 0.0
4.40 1.39 0.0
4.34 1.32 0.0
4.28 1.26 0.0
4.21 1.20 0.0
4.12 1.14 0.0
4.03 1.08 0.0
3.93 1.02 0.0
3.82 0.96 0.0
3.69 0.90 0.0
3.56 0.84 0.0
3.42 0.78 0.0
3.27 0.72 0.0
3.10 0.66 0.0
2.93 0.59 0.0
2.75 0.53 0.0
2.56 0.47 0.0
2.36 0.40 0.0
2.15 0.33 0.0
1.94 0.27 0.0
1.71 0.20 0.0
1.48 0.13 0.0
1.23 0.07 0.0
1.18 0.07 0.0
1.00 4.00 0.0
1.19 3.93 0.0
1.38 3.87 0.0
1.57 3.80 0.0
1.75 3.73 0.0
1.92 3.67 0.0
2.08 3.60 0.0
2.24 3.54 0.0
2.39 3.47 0.0
2.53 3.41 0.0
2.67 3.34 0.0
2.80 3.28 0.0
2.92 3.21 0.0
3.03 3.15 0.0
3.14 3.08 0.0
3.23 3.02 0.0
3.33 2.96 0.0
3.41 2.89 0.0
3.49 2.83 0.0
3.56 2.76 0.0
3.62 2.69 0.0
3.67 2.63 0.0
3.72 2.56 0.0
3.76 2.49 0.0
3.80 2.42 0.0
3.83 2.35 0.0
3.85 2.27 0.0
3.87 2.20 0.0
3.88 2.13 0.0
3.88 2.05 0.0
3.88 1.98 0.0
3.88 1.90 0.0
3.86 1.83 0.0
3.85 1.75 0.0
3.82 1.68 0.0
3.79 1.61 0.0
3.76 1.54 0.0
3.71 1.46 0.0
3.66 1.40 0.0
3.61 1.33 0.0
3.54 1.26 0.0
3.47 1.19 0.0
3.40 1.13 0.0
3.31 1.06 0.0
3.22 0.99 0.0
3.12 0.93 0.0
3.01 0.86 0.0
2.90 0.80 0.0
2.78 0.73 0.0
2.65 0.67 0.0
2.52 0.60 0.0
2.37 0.54 0.0
2.22 0.47 0.0
2.07 0.40 0.0
1.90 0.34 0.0
1.74 0.27 0.0
1.56 0.20 0.0
1.37 0.13 0.0
1.18 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.14 3.93 0.0
1.28 3.87 0.0
1.41 3.80 0.0
1.54 3.73 0.0
1.67 3.67 0.0
1.79 3.60 0.0
1.90 3.53 0.0
2.01 3.47 0.0
2.11 3.40 0.0
2.21 3.33 0.0
2.30 3.27 0.0
2.39 3.20 0.0
2.47 3.13 0.0
2.55 3.07 0.0
2.62 3.00 0.0
2.69 2.93 0.0
2.75 2.87 0.0
2.81 2.80 0.0
2.86 2.73 0.0
2.91 2.66 0.0
2.95 2.60 0.0
2.99 2.53 0.0
3.02 2.46 0.0
3.05 2.39 0.0
3.08 2.32 0.0
3.09 2.25 0.0
3.11 2.18 0.0
3.12 2.11 0.0
3.12 2.04 0.0
3.12 1.97 0.0
3.12 1.90 0.0
3.11 1.83 0.0
3.09 1.76 0.0
3.07 1.69 0.0
3.05 1.62 0.0
3.02 1.56 0.0
2.99 1.49 0.0
2.95 1.42 0.0
2.90 1.35 0.0
2.86 1.28 0.0
2.80 1.21 0.0
2.75 1.14 0.0
2.68 1.08 0.0
2.61 1.01 0.0
2.54 0.94 0.0
2.46 0.88 0.0
2.38 0.81 0.0
2.29 0.74 0.0
2.20 0.67 0.0
2.10 0.61 0.0
2.00 0.54 0.0
1.89 0.47 0.0
1.77 0.40 0.0
1.66 0.34 0.0
1.53 0.27 0.0
1.41 0.20 0.0
1.27 0.13 0.0
1.13 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.08 3.93 0.0
1.17 3.87 0.0
1.26 3.80 0.0
1.34 3.73 0.0
1.41 3.66 0.0
1.49 3.60 0.0
1.56 3.53 0.0
1.63 3.46 0.0
1.69 3.39 0.0
1.75 3.33 0.0
1.81 3.26 0.0
1.86 3.19 0.0
1.91 3.13 0.0
1.96 3.06 0.0
2.01 2.99 0.0
2.05 2.92 0.0
2.09 2.86 0.0
2.13 2.79 0.0
2.16 2.72 0.0
2.19 2.65 0.0
2.22 2.58 0.0
2.24 2.52 0.0
2.26 2.45 0.0
2.28 2.38 0.0
2.29 2.31 0.0
2.31 2.24 0.0
2.32 2.18 0.0
2.32 2.11 0.0
2.32 2.04 0.0
2.32 1.97 0.0
2.32 1.90 0.0
2.31 1.83 0.0
2.31 1.76 0.0
2.29 1.70 0.0
2.28 1.63 0.0
2.26 1.56 0.0
2.24 1.49 0.0
2.21 1.42 0.0
2.19 1.36 0.0
2.16 1.29 0.0
2.12 1.22 0.0
2.09 1.15 0.0
2.05 1.08 0.0
2.00 1.02 0.0
1.96 0.95 0.0
1.91 0.88 0.0
1.86 0.81 0.0
1.80 0.74 0.0
1.74 0.68 0.0
1.68 0.61 0.0
1.62 0.54 0.0
1.55 0.47 0.0
1.48 0.41 0.0
1.41 0.34 0.0
1.33 0.27 0.0
1.25 0.20 0.0
1.17 0.13 0.0
1.08 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.03 3.93 0.0
1.07 3.86 0.0
1.10 3.80 0.0
1.13 3.73 0.0
1.16 3.66 0.0
1.19 3.59 0.0
1.22 3.53 0.0
1.24 3.46 0.0
1.27 3.39 0.0
1.29 3.32 0.0
1.31 3.26 0.0
1.34 3.19 0.0
1.36 3.12 0.0
1.37 3.05 0.0
1.39 2.99 0.0
1.41 2.92 0.0
1.42 2.85 0.0
1.44 2.78 0.0
1.45 2.71 0.0
1.46 2.65 0.0
1.47 2.58 0.0
1.48 2.51 0.0
1.49 2.44 0.0
1.50 2.37 0.0
1.50 2.31 0.0
1.51 2.24 0.0
1.51 2.17 0.0
1.51 2.10 0.0
1.52 2.04 0.0
1.52 1.97 0.0
1.51 1.90 0.0
1.51 1.83 0.0
1.51 1.76 0.0
1.50 1.70 0.0
1.50 1.63 0.0
1.49 1.56 0.0
1.48 1.49 0.0
1.47 1.42 0.0
1.46 1.36 0.0
1.45 1.29 0.0
1.44 1.22 0.0
1.42 1.15 0.0
1.41 1.08 0.0
1.39 1.02 0.0
1.37 0.95 0.0
1.35 0.88 0.0
1.33 0.81 0.0
1.31 0.75 0.0
1.29 0.68 0.0
1.27 0.61 0.0
1.24 0.54 0.0
1.21 0.47 0.0
1.19 0.41 0.0
1.16 0.34 0.0
1.13 0.27 0.0
1.10 0.20 0.0
1.07 0.14 0.0
1.03 0.07 0.0
CELLS 299 598
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
1 59
1 60
1 61
1 62
1 63
1 64
1 65
1 66
1 67
1 68
1 69
1 70
1 71
1 72
1 73
1 74
1 75
1 76
1 77
1 78
1 79
1 80
1 81
1 82
1 83
1 84
1 85
1 86
1 87
1 88
1 89
1 90
1 91
1 92
1 93
1 94
1 95
1 96
1 97
1 98
1 99
1 100
1 101
1 102
1 103
1 104
1 105
1 106
1 107
1 108
1 109
1 110
1 111
1 112
1 113
1 114
1 115
1 116
1 117
1 118
1 119
1 120
1 121
1 122
1 123
1 124
1 125
1 126
1 127
1 128
1 129
1 130
1 131
1 132
1 133
1 134
1 135
1 136
1 137
1 138
1 139
1 140
1 141
1 142
1 143
1 144
1 145
1 146
1 147
1 148
1 149
1 150
1 151
1 152
1 153
1 154
1 155
1 156
1 157
1 158
1 159
1 160
1 161
1 162
1 163
1 164
1 165
1 166
1 167
1 168
1 169
1 170
1 171
1 172
1 173
1 174
1 175
1 176
1 177
1 178
1 179
1 180
1 181
1 182
1 183
1 184
1 185
1 186
1 187
1 188
1 189
1 190
1 191
1 192
1 193
1 194
1 195
1 196
1 197
1 198
1 199
1 200
1 201
1 202
1 203
1 204
1 205
1 206
1 207
1 208
1 209
1 210
1 211
1 212
1 213
1 214
1 215
1 216
1 217
1 218
1 219
1 220
1 221
1 222
1 223
1 224
1 225
1 226
1 227
1 228
1 229
1 230
1 231
1 232
1 233
1 234
1 235
1 236
1 237
1 238
1 239
1 240
1 241
1 242
1 243
1 244
1 245
1 246
1 247
1 248
1 249
1 250
1 251
1 252
1 253
1 254
1 255
1 256
1 257
1 258
1 259
1 260
1 261
1 262
1 263
1 264
1 265
1 266
1 267
1 268
1 269
1 270
1 271
1 272
1 273
1 274
1 275
1 276
1 277
1 278
1 279
1 280
1 281
1 282
1 283
1 284
1 285
1 286
1 287
1 288
1 289
1 290
1 291
1 292
1 293
1 294
1 295
1 296
1 297
1 298
CELL_TYPES 299
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,189 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
2
CYCLE 1 1 int
1
POINTS 59 float
1.00 4.00 0.0
1.03 3.93 0.0
1.06 3.86 0.0
1.09 3.80 0.0
1.11 3.73 0.0
1.14 3.66 0.0
1.16 3.59 0.0
1.18 3.53 0.0
1.21 3.46 0.0
1.23 3.39 0.0
1.25 3.32 0.0
1.27 3.26 0.0
1.28 3.19 0.0
1.30 3.12 0.0
1.32 3.05 0.0
1.33 2.99 0.0
1.35 2.92 0.0
1.36 2.85 0.0
1.37 2.78 0.0
1.38 2.71 0.0
1.39 2.65 0.0
1.40 2.58 0.0
1.41 2.51 0.0
1.42 2.44 0.0
1.42 2.37 0.0
1.43 2.31 0.0
1.43 2.24 0.0
1.43 2.17 0.0
1.44 2.10 0.0
1.44 2.04 0.0
1.44 1.97 0.0
1.44 1.90 0.0
1.43 1.83 0.0
1.43 1.76 0.0
1.43 1.70 0.0
1.42 1.63 0.0
1.42 1.56 0.0
1.41 1.49 0.0
1.40 1.42 0.0
1.39 1.36 0.0
1.38 1.29 0.0
1.37 1.22 0.0
1.36 1.15 0.0
1.35 1.08 0.0
1.33 1.02 0.0
1.32 0.95 0.0
1.30 0.88 0.0
1.28 0.81 0.0
1.26 0.75 0.0
1.25 0.68 0.0
1.23 0.61 0.0
1.20 0.54 0.0
1.18 0.47 0.0
1.16 0.41 0.0
1.14 0.34 0.0
1.11 0.27 0.0
1.08 0.20 0.0
1.06 0.14 0.0
1.03 0.07 0.0
CELLS 59 118
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
CELL_TYPES 59
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,369 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
3
CYCLE 1 1 int
1
POINTS 119 float
1.00 4.00 0.0
1.06 3.93 0.0
1.11 3.86 0.0
1.17 3.80 0.0
1.22 3.73 0.0
1.27 3.66 0.0
1.32 3.59 0.0
1.36 3.53 0.0
1.40 3.46 0.0
1.45 3.39 0.0
1.48 3.33 0.0
1.52 3.26 0.0
1.56 3.19 0.0
1.59 3.12 0.0
1.62 3.05 0.0
1.65 2.99 0.0
1.68 2.92 0.0
1.70 2.85 0.0
1.73 2.78 0.0
1.75 2.72 0.0
1.77 2.65 0.0
1.78 2.58 0.0
1.80 2.51 0.0
1.81 2.44 0.0
1.82 2.38 0.0
1.83 2.31 0.0
1.84 2.24 0.0
1.85 2.17 0.0
1.85 2.10 0.0
1.85 2.04 0.0
1.85 1.97 0.0
1.85 1.90 0.0
1.85 1.83 0.0
1.84 1.76 0.0
1.83 1.70 0.0
1.82 1.63 0.0
1.81 1.56 0.0
1.80 1.49 0.0
1.78 1.42 0.0
1.76 1.36 0.0
1.74 1.29 0.0
1.72 1.22 0.0
1.70 1.15 0.0
1.67 1.08 0.0
1.65 1.02 0.0
1.62 0.95 0.0
1.59 0.88 0.0
1.55 0.81 0.0
1.52 0.74 0.0
1.48 0.68 0.0
1.44 0.61 0.0
1.40 0.54 0.0
1.36 0.47 0.0
1.31 0.41 0.0
1.26 0.34 0.0
1.22 0.27 0.0
1.16 0.20 0.0
1.11 0.14 0.0
1.05 0.07 0.0
1.00 0.07 0.0
1.00 4.00 0.0
1.00 3.93 0.0
1.01 3.86 0.0
1.01 3.80 0.0
1.01 3.73 0.0
1.01 3.66 0.0
1.01 3.59 0.0
1.02 3.53 0.0
1.02 3.46 0.0
1.02 3.39 0.0
1.02 3.32 0.0
1.02 3.25 0.0
1.03 3.19 0.0
1.03 3.12 0.0
1.03 3.05 0.0
1.03 2.98 0.0
1.03 2.92 0.0
1.03 2.85 0.0
1.03 2.78 0.0
1.03 2.71 0.0
1.04 2.64 0.0
1.04 2.58 0.0
1.04 2.51 0.0
1.04 2.44 0.0
1.04 2.37 0.0
1.04 2.31 0.0
1.04 2.24 0.0
1.04 2.17 0.0
1.04 2.10 0.0
1.04 2.03 0.0
1.04 1.97 0.0
1.04 1.90 0.0
1.04 1.83 0.0
1.04 1.76 0.0
1.04 1.69 0.0
1.04 1.63 0.0
1.04 1.56 0.0
1.04 1.49 0.0
1.04 1.42 0.0
1.04 1.36 0.0
1.03 1.29 0.0
1.03 1.22 0.0
1.03 1.15 0.0
1.03 1.08 0.0
1.03 1.02 0.0
1.03 0.95 0.0
1.03 0.88 0.0
1.03 0.81 0.0
1.02 0.75 0.0
1.02 0.68 0.0
1.02 0.61 0.0
1.02 0.54 0.0
1.02 0.47 0.0
1.01 0.41 0.0
1.01 0.34 0.0
1.01 0.27 0.0
1.01 0.20 0.0
1.01 0.14 0.0
1.00 0.07 0.0
CELLS 119 238
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
1 59
1 60
1 61
1 62
1 63
1 64
1 65
1 66
1 67
1 68
1 69
1 70
1 71
1 72
1 73
1 74
1 75
1 76
1 77
1 78
1 79
1 80
1 81
1 82
1 83
1 84
1 85
1 86
1 87
1 88
1 89
1 90
1 91
1 92
1 93
1 94
1 95
1 96
1 97
1 98
1 99
1 100
1 101
1 102
1 103
1 104
1 105
1 106
1 107
1 108
1 109
1 110
1 111
1 112
1 113
1 114
1 115
1 116
1 117
1 118
CELL_TYPES 119
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,369 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
4
CYCLE 1 1 int
1
POINTS 119 float
1.00 4.00 0.0
1.08 3.93 0.0
1.17 3.87 0.0
1.25 3.80 0.0
1.32 3.73 0.0
1.40 3.66 0.0
1.47 3.60 0.0
1.54 3.53 0.0
1.60 3.46 0.0
1.66 3.39 0.0
1.72 3.33 0.0
1.77 3.26 0.0
1.83 3.19 0.0
1.88 3.13 0.0
1.92 3.06 0.0
1.97 2.99 0.0
2.01 2.92 0.0
2.04 2.86 0.0
2.08 2.79 0.0
2.11 2.72 0.0
2.14 2.65 0.0
2.16 2.58 0.0
2.19 2.52 0.0
2.21 2.45 0.0
2.22 2.38 0.0
2.24 2.31 0.0
2.25 2.24 0.0
2.26 2.17 0.0
2.26 2.11 0.0
2.27 2.04 0.0
2.27 1.97 0.0
2.26 1.90 0.0
2.26 1.83 0.0
2.25 1.76 0.0
2.24 1.70 0.0
2.22 1.63 0.0
2.20 1.56 0.0
2.18 1.49 0.0
2.16 1.42 0.0
2.13 1.35 0.0
2.11 1.29 0.0
2.07 1.22 0.0
2.04 1.15 0.0
2.00 1.08 0.0
1.96 1.01 0.0
1.92 0.95 0.0
1.87 0.88 0.0
1.82 0.81 0.0
1.77 0.74 0.0
1.71 0.68 0.0
1.66 0.61 0.0
1.59 0.54 0.0
1.53 0.47 0.0
1.46 0.41 0.0
1.39 0.34 0.0
1.32 0.27 0.0
1.24 0.20 0.0
1.16 0.13 0.0
1.08 0.07 0.0
1.03 0.07 0.0
1.00 4.00 0.0
1.03 3.93 0.0
1.06 3.86 0.0
1.09 3.80 0.0
1.12 3.73 0.0
1.14 3.66 0.0
1.17 3.59 0.0
1.19 3.53 0.0
1.22 3.46 0.0
1.24 3.39 0.0
1.26 3.32 0.0
1.28 3.26 0.0
1.30 3.19 0.0
1.31 3.12 0.0
1.33 3.05 0.0
1.35 2.99 0.0
1.36 2.92 0.0
1.38 2.85 0.0
1.39 2.78 0.0
1.40 2.71 0.0
1.41 2.65 0.0
1.42 2.58 0.0
1.43 2.51 0.0
1.43 2.44 0.0
1.44 2.37 0.0
1.45 2.31 0.0
1.45 2.24 0.0
1.45 2.17 0.0
1.46 2.10 0.0
1.46 2.04 0.0
1.46 1.97 0.0
1.46 1.90 0.0
1.45 1.83 0.0
1.45 1.76 0.0
1.45 1.70 0.0
1.44 1.63 0.0
1.43 1.56 0.0
1.43 1.49 0.0
1.42 1.42 0.0
1.41 1.36 0.0
1.40 1.29 0.0
1.39 1.22 0.0
1.37 1.15 0.0
1.36 1.08 0.0
1.35 1.02 0.0
1.33 0.95 0.0
1.31 0.88 0.0
1.30 0.81 0.0
1.28 0.75 0.0
1.26 0.68 0.0
1.24 0.61 0.0
1.21 0.54 0.0
1.19 0.47 0.0
1.17 0.41 0.0
1.14 0.34 0.0
1.11 0.27 0.0
1.09 0.20 0.0
1.06 0.14 0.0
1.03 0.07 0.0
CELLS 119 238
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
1 59
1 60
1 61
1 62
1 63
1 64
1 65
1 66
1 67
1 68
1 69
1 70
1 71
1 72
1 73
1 74
1 75
1 76
1 77
1 78
1 79
1 80
1 81
1 82
1 83
1 84
1 85
1 86
1 87
1 88
1 89
1 90
1 91
1 92
1 93
1 94
1 95
1 96
1 97
1 98
1 99
1 100
1 101
1 102
1 103
1 104
1 105
1 106
1 107
1 108
1 109
1 110
1 111
1 112
1 113
1 114
1 115
1 116
1 117
1 118
CELL_TYPES 119
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,549 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
5
CYCLE 1 1 int
1
POINTS 179 float
1.00 4.00 0.0
1.11 3.93 0.0
1.22 3.87 0.0
1.33 3.80 0.0
1.43 3.73 0.0
1.53 3.66 0.0
1.62 3.60 0.0
1.71 3.53 0.0
1.80 3.46 0.0
1.88 3.40 0.0
1.96 3.33 0.0
2.03 3.26 0.0
2.10 3.20 0.0
2.16 3.13 0.0
2.22 3.06 0.0
2.28 2.99 0.0
2.33 2.93 0.0
2.38 2.86 0.0
2.43 2.79 0.0
2.47 2.72 0.0
2.51 2.66 0.0
2.54 2.59 0.0
2.57 2.52 0.0
2.60 2.45 0.0
2.62 2.38 0.0
2.64 2.32 0.0
2.66 2.25 0.0
2.67 2.18 0.0
2.67 2.11 0.0
2.68 2.04 0.0
2.68 1.97 0.0
2.67 1.90 0.0
2.67 1.83 0.0
2.65 1.76 0.0
2.64 1.70 0.0
2.62 1.63 0.0
2.60 1.56 0.0
2.57 1.49 0.0
2.54 1.42 0.0
2.50 1.35 0.0
2.47 1.28 0.0
2.42 1.22 0.0
2.38 1.15 0.0
2.33 1.08 0.0
2.27 1.01 0.0
2.22 0.95 0.0
2.16 0.88 0.0
2.09 0.81 0.0
2.02 0.74 0.0
1.95 0.67 0.0
1.87 0.61 0.0
1.79 0.54 0.0
1.70 0.47 0.0
1.61 0.41 0.0
1.52 0.34 0.0
1.42 0.27 0.0
1.32 0.20 0.0
1.22 0.13 0.0
1.11 0.07 0.0
1.06 0.07 0.0
1.00 4.00 0.0
1.06 3.93 0.0
1.11 3.87 0.0
1.17 3.80 0.0
1.22 3.73 0.0
1.27 3.66 0.0
1.32 3.59 0.0
1.37 3.53 0.0
1.41 3.46 0.0
1.45 3.39 0.0
1.49 3.33 0.0
1.53 3.26 0.0
1.57 3.19 0.0
1.60 3.12 0.0
1.63 3.05 0.0
1.66 2.99 0.0
1.69 2.92 0.0
1.72 2.85 0.0
1.74 2.78 0.0
1.76 2.72 0.0
1.78 2.65 0.0
1.80 2.58 0.0
1.82 2.51 0.0
1.83 2.44 0.0
1.84 2.38 0.0
1.85 2.31 0.0
1.86 2.24 0.0
1.87 2.17 0.0
1.87 2.10 0.0
1.87 2.04 0.0
1.87 1.97 0.0
1.87 1.90 0.0
1.87 1.83 0.0
1.86 1.76 0.0
1.85 1.70 0.0
1.84 1.63 0.0
1.83 1.56 0.0
1.82 1.49 0.0
1.80 1.42 0.0
1.78 1.36 0.0
1.76 1.29 0.0
1.74 1.22 0.0
1.72 1.15 0.0
1.69 1.08 0.0
1.66 1.02 0.0
1.63 0.95 0.0
1.60 0.88 0.0
1.56 0.81 0.0
1.53 0.74 0.0
1.49 0.68 0.0
1.45 0.61 0.0
1.41 0.54 0.0
1.36 0.47 0.0
1.32 0.41 0.0
1.27 0.34 0.0
1.22 0.27 0.0
1.17 0.20 0.0
1.11 0.13 0.0
1.05 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.00 3.93 0.0
1.01 3.86 0.0
1.01 3.80 0.0
1.02 3.73 0.0
1.02 3.66 0.0
1.02 3.59 0.0
1.03 3.53 0.0
1.03 3.46 0.0
1.03 3.39 0.0
1.03 3.32 0.0
1.04 3.25 0.0
1.04 3.19 0.0
1.04 3.12 0.0
1.04 3.05 0.0
1.05 2.98 0.0
1.05 2.92 0.0
1.05 2.85 0.0
1.05 2.78 0.0
1.05 2.71 0.0
1.05 2.64 0.0
1.06 2.58 0.0
1.06 2.51 0.0
1.06 2.44 0.0
1.06 2.37 0.0
1.06 2.31 0.0
1.06 2.24 0.0
1.06 2.17 0.0
1.06 2.10 0.0
1.06 2.03 0.0
1.06 1.97 0.0
1.06 1.90 0.0
1.06 1.83 0.0
1.06 1.76 0.0
1.06 1.70 0.0
1.06 1.63 0.0
1.06 1.56 0.0
1.06 1.49 0.0
1.05 1.42 0.0
1.05 1.36 0.0
1.05 1.29 0.0
1.05 1.22 0.0
1.05 1.15 0.0
1.05 1.08 0.0
1.05 1.02 0.0
1.04 0.95 0.0
1.04 0.88 0.0
1.04 0.81 0.0
1.04 0.75 0.0
1.03 0.68 0.0
1.03 0.61 0.0
1.03 0.54 0.0
1.03 0.47 0.0
1.02 0.41 0.0
1.02 0.34 0.0
1.02 0.27 0.0
1.01 0.20 0.0
1.01 0.14 0.0
1.00 0.07 0.0
CELLS 179 358
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
1 59
1 60
1 61
1 62
1 63
1 64
1 65
1 66
1 67
1 68
1 69
1 70
1 71
1 72
1 73
1 74
1 75
1 76
1 77
1 78
1 79
1 80
1 81
1 82
1 83
1 84
1 85
1 86
1 87
1 88
1 89
1 90
1 91
1 92
1 93
1 94
1 95
1 96
1 97
1 98
1 99
1 100
1 101
1 102
1 103
1 104
1 105
1 106
1 107
1 108
1 109
1 110
1 111
1 112
1 113
1 114
1 115
1 116
1 117
1 118
1 119
1 120
1 121
1 122
1 123
1 124
1 125
1 126
1 127
1 128
1 129
1 130
1 131
1 132
1 133
1 134
1 135
1 136
1 137
1 138
1 139
1 140
1 141
1 142
1 143
1 144
1 145
1 146
1 147
1 148
1 149
1 150
1 151
1 152
1 153
1 154
1 155
1 156
1 157
1 158
1 159
1 160
1 161
1 162
1 163
1 164
1 165
1 166
1 167
1 168
1 169
1 170
1 171
1 172
1 173
1 174
1 175
1 176
1 177
1 178
CELL_TYPES 179
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,549 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
6
CYCLE 1 1 int
1
POINTS 179 float
1.00 4.00 0.0
1.14 3.93 0.0
1.27 3.87 0.0
1.41 3.80 0.0
1.54 3.73 0.0
1.66 3.66 0.0
1.77 3.60 0.0
1.89 3.53 0.0
1.99 3.47 0.0
2.09 3.40 0.0
2.19 3.33 0.0
2.28 3.27 0.0
2.37 3.20 0.0
2.45 3.13 0.0
2.52 3.07 0.0
2.60 3.00 0.0
2.66 2.93 0.0
2.72 2.87 0.0
2.78 2.80 0.0
2.83 2.73 0.0
2.88 2.66 0.0
2.92 2.60 0.0
2.96 2.53 0.0
2.99 2.46 0.0
3.02 2.39 0.0
3.04 2.32 0.0
3.06 2.25 0.0
3.07 2.18 0.0
3.08 2.11 0.0
3.08 2.04 0.0
3.08 1.97 0.0
3.08 1.90 0.0
3.07 1.83 0.0
3.05 1.76 0.0
3.04 1.69 0.0
3.01 1.62 0.0
2.98 1.55 0.0
2.95 1.49 0.0
2.91 1.42 0.0
2.87 1.35 0.0
2.82 1.28 0.0
2.77 1.21 0.0
2.72 1.14 0.0
2.65 1.08 0.0
2.59 1.01 0.0
2.51 0.94 0.0
2.44 0.87 0.0
2.36 0.81 0.0
2.27 0.74 0.0
2.18 0.67 0.0
2.08 0.61 0.0
1.98 0.54 0.0
1.88 0.47 0.0
1.76 0.40 0.0
1.65 0.34 0.0
1.53 0.27 0.0
1.40 0.20 0.0
1.27 0.13 0.0
1.13 0.07 0.0
1.08 0.07 0.0
1.00 4.00 0.0
1.08 3.93 0.0
1.17 3.87 0.0
1.25 3.80 0.0
1.33 3.73 0.0
1.40 3.66 0.0
1.47 3.60 0.0
1.54 3.53 0.0
1.61 3.46 0.0
1.67 3.39 0.0
1.73 3.33 0.0
1.79 3.26 0.0
1.84 3.19 0.0
1.89 3.13 0.0
1.94 3.06 0.0
1.98 2.99 0.0
2.02 2.92 0.0
2.06 2.86 0.0
2.09 2.79 0.0
2.13 2.72 0.0
2.15 2.65 0.0
2.18 2.58 0.0
2.20 2.52 0.0
2.22 2.45 0.0
2.24 2.38 0.0
2.26 2.31 0.0
2.27 2.24 0.0
2.28 2.17 0.0
2.28 2.11 0.0
2.29 2.04 0.0
2.28 1.97 0.0
2.28 1.90 0.0
2.28 1.83 0.0
2.27 1.76 0.0
2.25 1.70 0.0
2.24 1.63 0.0
2.22 1.56 0.0
2.20 1.49 0.0
2.18 1.42 0.0
2.15 1.35 0.0
2.12 1.29 0.0
2.09 1.22 0.0
2.05 1.15 0.0
2.02 1.08 0.0
1.97 1.01 0.0
1.93 0.95 0.0
1.88 0.88 0.0
1.83 0.81 0.0
1.78 0.74 0.0
1.72 0.68 0.0
1.66 0.61 0.0
1.60 0.54 0.0
1.54 0.47 0.0
1.47 0.41 0.0
1.40 0.34 0.0
1.32 0.27 0.0
1.25 0.20 0.0
1.16 0.13 0.0
1.08 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.03 3.93 0.0
1.06 3.86 0.0
1.09 3.80 0.0
1.12 3.73 0.0
1.15 3.66 0.0
1.18 3.59 0.0
1.20 3.53 0.0
1.22 3.46 0.0
1.25 3.39 0.0
1.27 3.32 0.0
1.29 3.26 0.0
1.31 3.19 0.0
1.33 3.12 0.0
1.35 3.05 0.0
1.36 2.99 0.0
1.38 2.92 0.0
1.39 2.85 0.0
1.40 2.78 0.0
1.42 2.71 0.0
1.43 2.65 0.0
1.44 2.58 0.0
1.45 2.51 0.0
1.45 2.44 0.0
1.46 2.37 0.0
1.47 2.31 0.0
1.47 2.24 0.0
1.47 2.17 0.0
1.48 2.10 0.0
1.48 2.04 0.0
1.48 1.97 0.0
1.48 1.90 0.0
1.47 1.83 0.0
1.47 1.76 0.0
1.47 1.70 0.0
1.46 1.63 0.0
1.45 1.56 0.0
1.45 1.49 0.0
1.44 1.42 0.0
1.43 1.36 0.0
1.42 1.29 0.0
1.40 1.22 0.0
1.39 1.15 0.0
1.38 1.08 0.0
1.36 1.02 0.0
1.34 0.95 0.0
1.33 0.88 0.0
1.31 0.81 0.0
1.29 0.75 0.0
1.27 0.68 0.0
1.25 0.61 0.0
1.22 0.54 0.0
1.20 0.47 0.0
1.17 0.41 0.0
1.15 0.34 0.0
1.12 0.27 0.0
1.09 0.20 0.0
1.06 0.14 0.0
1.03 0.07 0.0
CELLS 179 358
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
1 59
1 60
1 61
1 62
1 63
1 64
1 65
1 66
1 67
1 68
1 69
1 70
1 71
1 72
1 73
1 74
1 75
1 76
1 77
1 78
1 79
1 80
1 81
1 82
1 83
1 84
1 85
1 86
1 87
1 88
1 89
1 90
1 91
1 92
1 93
1 94
1 95
1 96
1 97
1 98
1 99
1 100
1 101
1 102
1 103
1 104
1 105
1 106
1 107
1 108
1 109
1 110
1 111
1 112
1 113
1 114
1 115
1 116
1 117
1 118
1 119
1 120
1 121
1 122
1 123
1 124
1 125
1 126
1 127
1 128
1 129
1 130
1 131
1 132
1 133
1 134
1 135
1 136
1 137
1 138
1 139
1 140
1 141
1 142
1 143
1 144
1 145
1 146
1 147
1 148
1 149
1 150
1 151
1 152
1 153
1 154
1 155
1 156
1 157
1 158
1 159
1 160
1 161
1 162
1 163
1 164
1 165
1 166
1 167
1 168
1 169
1 170
1 171
1 172
1 173
1 174
1 175
1 176
1 177
1 178
CELL_TYPES 179
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,729 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
7
CYCLE 1 1 int
1
POINTS 239 float
1.00 4.00 0.0
1.16 3.93 0.0
1.33 3.87 0.0
1.49 3.80 0.0
1.64 3.73 0.0
1.79 3.67 0.0
1.93 3.60 0.0
2.06 3.53 0.0
2.19 3.47 0.0
2.31 3.40 0.0
2.43 3.34 0.0
2.53 3.27 0.0
2.64 3.20 0.0
2.73 3.14 0.0
2.82 3.07 0.0
2.91 3.01 0.0
2.99 2.94 0.0
3.06 2.88 0.0
3.13 2.81 0.0
3.19 2.74 0.0
3.24 2.67 0.0
3.29 2.61 0.0
3.34 2.54 0.0
3.37 2.47 0.0
3.40 2.40 0.0
3.43 2.33 0.0
3.45 2.26 0.0
3.47 2.19 0.0
3.48 2.12 0.0
3.48 2.05 0.0
3.48 1.97 0.0
3.48 1.90 0.0
3.46 1.83 0.0
3.45 1.76 0.0
3.43 1.69 0.0
3.40 1.62 0.0
3.37 1.55 0.0
3.33 1.48 0.0
3.28 1.41 0.0
3.23 1.34 0.0
3.18 1.27 0.0
3.12 1.21 0.0
3.05 1.14 0.0
2.98 1.07 0.0
2.90 1.00 0.0
2.81 0.94 0.0
2.72 0.87 0.0
2.62 0.80 0.0
2.52 0.74 0.0
2.41 0.67 0.0
2.30 0.60 0.0
2.18 0.54 0.0
2.05 0.47 0.0
1.91 0.40 0.0
1.78 0.34 0.0
1.63 0.27 0.0
1.48 0.20 0.0
1.32 0.13 0.0
1.16 0.07 0.0
1.11 0.07 0.0
1.00 4.00 0.0
1.11 3.93 0.0
1.22 3.87 0.0
1.33 3.80 0.0
1.43 3.73 0.0
1.53 3.66 0.0
1.63 3.60 0.0
1.72 3.53 0.0
1.80 3.46 0.0
1.89 3.40 0.0
1.97 3.33 0.0
2.04 3.26 0.0
2.11 3.20 0.0
2.18 3.13 0.0
2.24 3.06 0.0
2.30 2.99 0.0
2.35 2.93 0.0
2.40 2.86 0.0
2.45 2.79 0.0
2.49 2.72 0.0
2.53 2.66 0.0
2.56 2.59 0.0
2.59 2.52 0.0
2.62 2.45 0.0
2.64 2.38 0.0
2.66 2.32 0.0
2.67 2.25 0.0
2.69 2.18 0.0
2.69 2.11 0.0
2.70 2.04 0.0
2.70 1.97 0.0
2.69 1.90 0.0
2.68 1.83 0.0
2.67 1.76 0.0
2.66 1.70 0.0
2.64 1.63 0.0
2.62 1.56 0.0
2.59 1.49 0.0
2.56 1.42 0.0
2.52 1.35 0.0
2.48 1.28 0.0
2.44 1.22 0.0
2.39 1.15 0.0
2.34 1.08 0.0
2.29 1.01 0.0
2.23 0.95 0.0
2.17 0.88 0.0
2.10 0.81 0.0
2.03 0.74 0.0
1.96 0.68 0.0
1.88 0.61 0.0
1.80 0.54 0.0
1.71 0.47 0.0
1.62 0.40 0.0
1.52 0.34 0.0
1.43 0.27 0.0
1.32 0.20 0.0
1.22 0.13 0.0
1.11 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.06 3.93 0.0
1.12 3.87 0.0
1.17 3.80 0.0
1.23 3.73 0.0
1.28 3.66 0.0
1.33 3.59 0.0
1.38 3.53 0.0
1.42 3.46 0.0
1.46 3.39 0.0
1.51 3.33 0.0
1.54 3.26 0.0
1.58 3.19 0.0
1.62 3.12 0.0
1.65 3.05 0.0
1.68 2.99 0.0
1.71 2.92 0.0
1.73 2.85 0.0
1.76 2.78 0.0
1.78 2.72 0.0
1.80 2.65 0.0
1.82 2.58 0.0
1.84 2.51 0.0
1.85 2.44 0.0
1.86 2.38 0.0
1.87 2.31 0.0
1.88 2.24 0.0
1.89 2.17 0.0
1.89 2.10 0.0
1.89 2.04 0.0
1.89 1.97 0.0
1.89 1.90 0.0
1.89 1.83 0.0
1.88 1.76 0.0
1.87 1.70 0.0
1.86 1.63 0.0
1.85 1.56 0.0
1.83 1.49 0.0
1.82 1.42 0.0
1.80 1.36 0.0
1.78 1.29 0.0
1.76 1.22 0.0
1.73 1.15 0.0
1.71 1.08 0.0
1.68 1.02 0.0
1.65 0.95 0.0
1.61 0.88 0.0
1.58 0.81 0.0
1.54 0.74 0.0
1.50 0.68 0.0
1.46 0.61 0.0
1.42 0.54 0.0
1.37 0.47 0.0
1.32 0.41 0.0
1.28 0.34 0.0
1.22 0.27 0.0
1.17 0.20 0.0
1.11 0.13 0.0
1.06 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.01 3.93 0.0
1.01 3.86 0.0
1.02 3.80 0.0
1.02 3.73 0.0
1.02 3.66 0.0
1.03 3.59 0.0
1.03 3.53 0.0
1.04 3.46 0.0
1.04 3.39 0.0
1.04 3.32 0.0
1.05 3.25 0.0
1.05 3.19 0.0
1.05 3.12 0.0
1.06 3.05 0.0
1.06 2.98 0.0
1.06 2.92 0.0
1.07 2.85 0.0
1.07 2.78 0.0
1.07 2.71 0.0
1.07 2.64 0.0
1.07 2.58 0.0
1.07 2.51 0.0
1.08 2.44 0.0
1.08 2.37 0.0
1.08 2.31 0.0
1.08 2.24 0.0
1.08 2.17 0.0
1.08 2.10 0.0
1.08 2.03 0.0
1.08 1.97 0.0
1.08 1.90 0.0
1.08 1.83 0.0
1.08 1.76 0.0
1.08 1.70 0.0
1.08 1.63 0.0
1.08 1.56 0.0
1.07 1.49 0.0
1.07 1.42 0.0
1.07 1.36 0.0
1.07 1.29 0.0
1.07 1.22 0.0
1.07 1.15 0.0
1.06 1.08 0.0
1.06 1.02 0.0
1.06 0.95 0.0
1.05 0.88 0.0
1.05 0.81 0.0
1.05 0.75 0.0
1.04 0.68 0.0
1.04 0.61 0.0
1.04 0.54 0.0
1.03 0.47 0.0
1.03 0.41 0.0
1.02 0.34 0.0
1.02 0.27 0.0
1.02 0.20 0.0
1.01 0.14 0.0
1.00 0.07 0.0
CELLS 239 478
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
1 59
1 60
1 61
1 62
1 63
1 64
1 65
1 66
1 67
1 68
1 69
1 70
1 71
1 72
1 73
1 74
1 75
1 76
1 77
1 78
1 79
1 80
1 81
1 82
1 83
1 84
1 85
1 86
1 87
1 88
1 89
1 90
1 91
1 92
1 93
1 94
1 95
1 96
1 97
1 98
1 99
1 100
1 101
1 102
1 103
1 104
1 105
1 106
1 107
1 108
1 109
1 110
1 111
1 112
1 113
1 114
1 115
1 116
1 117
1 118
1 119
1 120
1 121
1 122
1 123
1 124
1 125
1 126
1 127
1 128
1 129
1 130
1 131
1 132
1 133
1 134
1 135
1 136
1 137
1 138
1 139
1 140
1 141
1 142
1 143
1 144
1 145
1 146
1 147
1 148
1 149
1 150
1 151
1 152
1 153
1 154
1 155
1 156
1 157
1 158
1 159
1 160
1 161
1 162
1 163
1 164
1 165
1 166
1 167
1 168
1 169
1 170
1 171
1 172
1 173
1 174
1 175
1 176
1 177
1 178
1 179
1 180
1 181
1 182
1 183
1 184
1 185
1 186
1 187
1 188
1 189
1 190
1 191
1 192
1 193
1 194
1 195
1 196
1 197
1 198
1 199
1 200
1 201
1 202
1 203
1 204
1 205
1 206
1 207
1 208
1 209
1 210
1 211
1 212
1 213
1 214
1 215
1 216
1 217
1 218
1 219
1 220
1 221
1 222
1 223
1 224
1 225
1 226
1 227
1 228
1 229
1 230
1 231
1 232
1 233
1 234
1 235
1 236
1 237
1 238
CELL_TYPES 239
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,729 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
8
CYCLE 1 1 int
1
POINTS 239 float
1.00 4.00 0.0
1.19 3.93 0.0
1.38 3.87 0.0
1.57 3.80 0.0
1.75 3.73 0.0
1.92 3.67 0.0
2.08 3.60 0.0
2.24 3.54 0.0
2.38 3.47 0.0
2.53 3.41 0.0
2.66 3.34 0.0
2.79 3.28 0.0
2.90 3.21 0.0
3.02 3.15 0.0
3.12 3.08 0.0
3.22 3.02 0.0
3.31 2.96 0.0
3.39 2.89 0.0
3.47 2.83 0.0
3.54 2.76 0.0
3.60 2.69 0.0
3.66 2.63 0.0
3.71 2.56 0.0
3.75 2.49 0.0
3.78 2.42 0.0
3.81 2.35 0.0
3.83 2.27 0.0
3.85 2.20 0.0
3.86 2.13 0.0
3.87 2.05 0.0
3.87 1.98 0.0
3.86 1.90 0.0
3.85 1.83 0.0
3.83 1.75 0.0
3.81 1.68 0.0
3.78 1.61 0.0
3.74 1.54 0.0
3.70 1.47 0.0
3.65 1.40 0.0
3.59 1.33 0.0
3.53 1.26 0.0
3.46 1.19 0.0
3.38 1.13 0.0
3.30 1.06 0.0
3.21 0.99 0.0
3.11 0.93 0.0
3.00 0.86 0.0
2.89 0.80 0.0
2.77 0.73 0.0
2.64 0.67 0.0
2.51 0.60 0.0
2.37 0.54 0.0
2.22 0.47 0.0
2.06 0.40 0.0
1.90 0.34 0.0
1.73 0.27 0.0
1.56 0.20 0.0
1.37 0.13 0.0
1.18 0.07 0.0
1.13 0.07 0.0
1.00 4.00 0.0
1.14 3.93 0.0
1.28 3.87 0.0
1.41 3.80 0.0
1.54 3.73 0.0
1.66 3.67 0.0
1.78 3.60 0.0
1.89 3.53 0.0
2.00 3.47 0.0
2.10 3.40 0.0
2.20 3.33 0.0
2.29 3.27 0.0
2.38 3.20 0.0
2.46 3.13 0.0
2.54 3.07 0.0
2.61 3.00 0.0
2.68 2.93 0.0
2.74 2.87 0.0
2.79 2.80 0.0
2.85 2.73 0.0
2.89 2.66 0.0
2.94 2.60 0.0
2.97 2.53 0.0
3.01 2.46 0.0
3.03 2.39 0.0
3.06 2.32 0.0
3.07 2.25 0.0
3.09 2.18 0.0
3.10 2.11 0.0
3.10 2.04 0.0
3.10 1.97 0.0
3.10 1.90 0.0
3.09 1.83 0.0
3.07 1.76 0.0
3.05 1.69 0.0
3.03 1.62 0.0
3.00 1.55 0.0
2.97 1.49 0.0
2.93 1.42 0.0
2.89 1.35 0.0
2.84 1.28 0.0
2.79 1.21 0.0
2.73 1.14 0.0
2.67 1.08 0.0
2.60 1.01 0.0
2.53 0.94 0.0
2.45 0.88 0.0
2.37 0.81 0.0
2.28 0.74 0.0
2.19 0.67 0.0
2.09 0.61 0.0
1.99 0.54 0.0
1.88 0.47 0.0
1.77 0.40 0.0
1.65 0.34 0.0
1.53 0.27 0.0
1.40 0.20 0.0
1.27 0.13 0.0
1.13 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.08 3.93 0.0
1.17 3.87 0.0
1.25 3.80 0.0
1.33 3.73 0.0
1.41 3.66 0.0
1.48 3.60 0.0
1.55 3.53 0.0
1.62 3.46 0.0
1.68 3.39 0.0
1.74 3.33 0.0
1.80 3.26 0.0
1.85 3.19 0.0
1.90 3.13 0.0
1.95 3.06 0.0
1.99 2.99 0.0
2.04 2.92 0.0
2.08 2.86 0.0
2.11 2.79 0.0
2.14 2.72 0.0
2.17 2.65 0.0
2.20 2.58 0.0
2.22 2.52 0.0
2.24 2.45 0.0
2.26 2.38 0.0
2.28 2.31 0.0
2.29 2.24 0.0
2.30 2.18 0.0
2.30 2.11 0.0
2.31 2.04 0.0
2.30 1.97 0.0
2.30 1.90 0.0
2.30 1.83 0.0
2.29 1.76 0.0
2.27 1.70 0.0
2.26 1.63 0.0
2.24 1.56 0.0
2.22 1.49 0.0
2.20 1.42 0.0
2.17 1.36 0.0
2.14 1.29 0.0
2.11 1.22 0.0
2.07 1.15 0.0
2.03 1.08 0.0
1.99 1.02 0.0
1.94 0.95 0.0
1.90 0.88 0.0
1.85 0.81 0.0
1.79 0.74 0.0
1.73 0.68 0.0
1.67 0.61 0.0
1.61 0.54 0.0
1.54 0.47 0.0
1.47 0.41 0.0
1.40 0.34 0.0
1.33 0.27 0.0
1.25 0.20 0.0
1.17 0.13 0.0
1.08 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.03 3.93 0.0
1.06 3.87 0.0
1.10 3.80 0.0
1.13 3.73 0.0
1.15 3.66 0.0
1.18 3.59 0.0
1.21 3.53 0.0
1.23 3.46 0.0
1.26 3.39 0.0
1.28 3.32 0.0
1.30 3.26 0.0
1.32 3.19 0.0
1.34 3.12 0.0
1.36 3.05 0.0
1.38 2.99 0.0
1.39 2.92 0.0
1.41 2.85 0.0
1.42 2.78 0.0
1.43 2.71 0.0
1.45 2.65 0.0
1.46 2.58 0.0
1.46 2.51 0.0
1.47 2.44 0.0
1.48 2.37 0.0
1.48 2.31 0.0
1.49 2.24 0.0
1.49 2.17 0.0
1.49 2.10 0.0
1.50 2.04 0.0
1.50 1.97 0.0
1.49 1.90 0.0
1.49 1.83 0.0
1.49 1.76 0.0
1.48 1.70 0.0
1.48 1.63 0.0
1.47 1.56 0.0
1.46 1.49 0.0
1.45 1.42 0.0
1.44 1.36 0.0
1.43 1.29 0.0
1.42 1.22 0.0
1.41 1.15 0.0
1.39 1.08 0.0
1.38 1.02 0.0
1.36 0.95 0.0
1.34 0.88 0.0
1.32 0.81 0.0
1.30 0.75 0.0
1.28 0.68 0.0
1.26 0.61 0.0
1.23 0.54 0.0
1.21 0.47 0.0
1.18 0.41 0.0
1.15 0.34 0.0
1.12 0.27 0.0
1.09 0.20 0.0
1.06 0.14 0.0
1.03 0.07 0.0
CELLS 239 478
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
1 59
1 60
1 61
1 62
1 63
1 64
1 65
1 66
1 67
1 68
1 69
1 70
1 71
1 72
1 73
1 74
1 75
1 76
1 77
1 78
1 79
1 80
1 81
1 82
1 83
1 84
1 85
1 86
1 87
1 88
1 89
1 90
1 91
1 92
1 93
1 94
1 95
1 96
1 97
1 98
1 99
1 100
1 101
1 102
1 103
1 104
1 105
1 106
1 107
1 108
1 109
1 110
1 111
1 112
1 113
1 114
1 115
1 116
1 117
1 118
1 119
1 120
1 121
1 122
1 123
1 124
1 125
1 126
1 127
1 128
1 129
1 130
1 131
1 132
1 133
1 134
1 135
1 136
1 137
1 138
1 139
1 140
1 141
1 142
1 143
1 144
1 145
1 146
1 147
1 148
1 149
1 150
1 151
1 152
1 153
1 154
1 155
1 156
1 157
1 158
1 159
1 160
1 161
1 162
1 163
1 164
1 165
1 166
1 167
1 168
1 169
1 170
1 171
1 172
1 173
1 174
1 175
1 176
1 177
1 178
1 179
1 180
1 181
1 182
1 183
1 184
1 185
1 186
1 187
1 188
1 189
1 190
1 191
1 192
1 193
1 194
1 195
1 196
1 197
1 198
1 199
1 200
1 201
1 202
1 203
1 204
1 205
1 206
1 207
1 208
1 209
1 210
1 211
1 212
1 213
1 214
1 215
1 216
1 217
1 218
1 219
1 220
1 221
1 222
1 223
1 224
1 225
1 226
1 227
1 228
1 229
1 230
1 231
1 232
1 233
1 234
1 235
1 236
1 237
1 238
CELL_TYPES 239
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,909 +0,0 @@
# vtk DataFile Version 3.0
PAMPI cfd solver particle tracing file
ASCII
DATASET UNSTRUCTURED_GRID
FIELD FieldData 2
TIME 1 1 double
9
CYCLE 1 1 int
1
POINTS 299 float
1.00 4.00 0.0
1.21 3.93 0.0
1.44 3.87 0.0
1.65 3.80 0.0
1.85 3.73 0.0
2.05 3.67 0.0
2.23 3.60 0.0
2.41 3.54 0.0
2.58 3.47 0.0
2.74 3.41 0.0
2.89 3.35 0.0
3.04 3.28 0.0
3.17 3.22 0.0
3.30 3.16 0.0
3.42 3.10 0.0
3.53 3.04 0.0
3.63 2.98 0.0
3.73 2.91 0.0
3.81 2.85 0.0
3.89 2.79 0.0
3.96 2.72 0.0
4.01 2.66 0.0
4.07 2.59 0.0
4.11 2.52 0.0
4.15 2.45 0.0
4.18 2.37 0.0
4.20 2.30 0.0
4.22 2.22 0.0
4.23 2.14 0.0
4.23 2.06 0.0
4.23 1.98 0.0
4.22 1.90 0.0
4.21 1.82 0.0
4.19 1.74 0.0
4.17 1.66 0.0
4.14 1.59 0.0
4.10 1.51 0.0
4.06 1.44 0.0
4.00 1.37 0.0
3.94 1.30 0.0
3.87 1.24 0.0
3.80 1.17 0.0
3.71 1.11 0.0
3.62 1.04 0.0
3.51 0.98 0.0
3.40 0.92 0.0
3.28 0.85 0.0
3.15 0.79 0.0
3.02 0.73 0.0
2.87 0.66 0.0
2.72 0.60 0.0
2.56 0.53 0.0
2.39 0.47 0.0
2.21 0.40 0.0
2.03 0.34 0.0
1.84 0.27 0.0
1.64 0.20 0.0
1.43 0.13 0.0
1.21 0.07 0.0
1.16 0.07 0.0
1.00 4.00 0.0
1.16 3.93 0.0
1.33 3.87 0.0
1.49 3.80 0.0
1.64 3.73 0.0
1.79 3.67 0.0
1.93 3.60 0.0
2.07 3.53 0.0
2.20 3.47 0.0
2.32 3.40 0.0
2.43 3.34 0.0
2.54 3.27 0.0
2.65 3.20 0.0
2.75 3.14 0.0
2.84 3.07 0.0
2.92 3.01 0.0
3.00 2.94 0.0
3.08 2.88 0.0
3.14 2.81 0.0
3.20 2.74 0.0
3.26 2.68 0.0
3.31 2.61 0.0
3.35 2.54 0.0
3.39 2.47 0.0
3.42 2.40 0.0
3.45 2.33 0.0
3.47 2.26 0.0
3.49 2.19 0.0
3.50 2.12 0.0
3.50 2.05 0.0
3.50 1.97 0.0
3.49 1.90 0.0
3.48 1.83 0.0
3.47 1.76 0.0
3.44 1.69 0.0
3.42 1.62 0.0
3.39 1.55 0.0
3.35 1.48 0.0
3.30 1.41 0.0
3.25 1.34 0.0
3.20 1.27 0.0
3.13 1.21 0.0
3.07 1.14 0.0
2.99 1.07 0.0
2.91 1.00 0.0
2.83 0.94 0.0
2.73 0.87 0.0
2.63 0.80 0.0
2.53 0.74 0.0
2.42 0.67 0.0
2.30 0.60 0.0
2.18 0.54 0.0
2.05 0.47 0.0
1.92 0.40 0.0
1.78 0.34 0.0
1.63 0.27 0.0
1.48 0.20 0.0
1.32 0.13 0.0
1.16 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.11 3.93 0.0
1.22 3.87 0.0
1.33 3.80 0.0
1.44 3.73 0.0
1.54 3.66 0.0
1.63 3.60 0.0
1.73 3.53 0.0
1.81 3.46 0.0
1.90 3.40 0.0
1.98 3.33 0.0
2.05 3.26 0.0
2.12 3.20 0.0
2.19 3.13 0.0
2.25 3.06 0.0
2.31 2.99 0.0
2.37 2.93 0.0
2.42 2.86 0.0
2.46 2.79 0.0
2.51 2.72 0.0
2.54 2.66 0.0
2.58 2.59 0.0
2.61 2.52 0.0
2.64 2.45 0.0
2.66 2.38 0.0
2.68 2.32 0.0
2.69 2.25 0.0
2.70 2.18 0.0
2.71 2.11 0.0
2.72 2.04 0.0
2.72 1.97 0.0
2.71 1.90 0.0
2.70 1.83 0.0
2.69 1.76 0.0
2.68 1.70 0.0
2.66 1.63 0.0
2.63 1.56 0.0
2.61 1.49 0.0
2.57 1.42 0.0
2.54 1.35 0.0
2.50 1.28 0.0
2.46 1.22 0.0
2.41 1.15 0.0
2.36 1.08 0.0
2.30 1.01 0.0
2.24 0.95 0.0
2.18 0.88 0.0
2.11 0.81 0.0
2.04 0.74 0.0
1.97 0.68 0.0
1.89 0.61 0.0
1.80 0.54 0.0
1.72 0.47 0.0
1.63 0.41 0.0
1.53 0.34 0.0
1.43 0.27 0.0
1.33 0.20 0.0
1.22 0.13 0.0
1.11 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.06 3.93 0.0
1.12 3.87 0.0
1.18 3.80 0.0
1.23 3.73 0.0
1.28 3.66 0.0
1.34 3.60 0.0
1.38 3.53 0.0
1.43 3.46 0.0
1.47 3.39 0.0
1.52 3.33 0.0
1.56 3.26 0.0
1.59 3.19 0.0
1.63 3.12 0.0
1.66 3.06 0.0
1.69 2.99 0.0
1.72 2.92 0.0
1.75 2.85 0.0
1.78 2.78 0.0
1.80 2.72 0.0
1.82 2.65 0.0
1.84 2.58 0.0
1.85 2.51 0.0
1.87 2.45 0.0
1.88 2.38 0.0
1.89 2.31 0.0
1.90 2.24 0.0
1.91 2.17 0.0
1.91 2.10 0.0
1.91 2.04 0.0
1.91 1.97 0.0
1.91 1.90 0.0
1.90 1.83 0.0
1.90 1.76 0.0
1.89 1.70 0.0
1.88 1.63 0.0
1.87 1.56 0.0
1.85 1.49 0.0
1.84 1.42 0.0
1.82 1.36 0.0
1.80 1.29 0.0
1.77 1.22 0.0
1.75 1.15 0.0
1.72 1.08 0.0
1.69 1.02 0.0
1.66 0.95 0.0
1.63 0.88 0.0
1.59 0.81 0.0
1.55 0.74 0.0
1.51 0.68 0.0
1.47 0.61 0.0
1.43 0.54 0.0
1.38 0.47 0.0
1.33 0.41 0.0
1.28 0.34 0.0
1.23 0.27 0.0
1.17 0.20 0.0
1.12 0.13 0.0
1.06 0.07 0.0
1.00 0.00 0.0
1.00 4.00 0.0
1.01 3.93 0.0
1.01 3.86 0.0
1.02 3.80 0.0
1.03 3.73 0.0
1.03 3.66 0.0
1.04 3.59 0.0
1.04 3.53 0.0
1.05 3.46 0.0
1.05 3.39 0.0
1.06 3.32 0.0
1.06 3.25 0.0
1.06 3.19 0.0
1.07 3.12 0.0
1.07 3.05 0.0
1.08 2.98 0.0
1.08 2.92 0.0
1.08 2.85 0.0
1.08 2.78 0.0
1.09 2.71 0.0
1.09 2.64 0.0
1.09 2.58 0.0
1.09 2.51 0.0
1.09 2.44 0.0
1.10 2.37 0.0
1.10 2.31 0.0
1.10 2.24 0.0
1.10 2.17 0.0
1.10 2.10 0.0
1.10 2.03 0.0
1.10 1.97 0.0
1.10 1.90 0.0
1.10 1.83 0.0
1.10 1.76 0.0
1.10 1.70 0.0
1.10 1.63 0.0
1.09 1.56 0.0
1.09 1.49 0.0
1.09 1.42 0.0
1.09 1.36 0.0
1.09 1.29 0.0
1.08 1.22 0.0
1.08 1.15 0.0
1.08 1.08 0.0
1.08 1.02 0.0
1.07 0.95 0.0
1.07 0.88 0.0
1.06 0.81 0.0
1.06 0.75 0.0
1.06 0.68 0.0
1.05 0.61 0.0
1.05 0.54 0.0
1.04 0.47 0.0
1.04 0.41 0.0
1.03 0.34 0.0
1.03 0.27 0.0
1.02 0.20 0.0
1.01 0.14 0.0
1.01 0.07 0.0
CELLS 299 598
1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
1 51
1 52
1 53
1 54
1 55
1 56
1 57
1 58
1 59
1 60
1 61
1 62
1 63
1 64
1 65
1 66
1 67
1 68
1 69
1 70
1 71
1 72
1 73
1 74
1 75
1 76
1 77
1 78
1 79
1 80
1 81
1 82
1 83
1 84
1 85
1 86
1 87
1 88
1 89
1 90
1 91
1 92
1 93
1 94
1 95
1 96
1 97
1 98
1 99
1 100
1 101
1 102
1 103
1 104
1 105
1 106
1 107
1 108
1 109
1 110
1 111
1 112
1 113
1 114
1 115
1 116
1 117
1 118
1 119
1 120
1 121
1 122
1 123
1 124
1 125
1 126
1 127
1 128
1 129
1 130
1 131
1 132
1 133
1 134
1 135
1 136
1 137
1 138
1 139
1 140
1 141
1 142
1 143
1 144
1 145
1 146
1 147
1 148
1 149
1 150
1 151
1 152
1 153
1 154
1 155
1 156
1 157
1 158
1 159
1 160
1 161
1 162
1 163
1 164
1 165
1 166
1 167
1 168
1 169
1 170
1 171
1 172
1 173
1 174
1 175
1 176
1 177
1 178
1 179
1 180
1 181
1 182
1 183
1 184
1 185
1 186
1 187
1 188
1 189
1 190
1 191
1 192
1 193
1 194
1 195
1 196
1 197
1 198
1 199
1 200
1 201
1 202
1 203
1 204
1 205
1 206
1 207
1 208
1 209
1 210
1 211
1 212
1 213
1 214
1 215
1 216
1 217
1 218
1 219
1 220
1 221
1 222
1 223
1 224
1 225
1 226
1 227
1 228
1 229
1 230
1 231
1 232
1 233
1 234
1 235
1 236
1 237
1 238
1 239
1 240
1 241
1 242
1 243
1 244
1 245
1 246
1 247
1 248
1 249
1 250
1 251
1 252
1 253
1 254
1 255
1 256
1 257
1 258
1 259
1 260
1 261
1 262
1 263
1 264
1 265
1 266
1 267
1 268
1 269
1 270
1 271
1 272
1 273
1 274
1 275
1 276
1 277
1 278
1 279
1 280
1 281
1 282
1 283
1 284
1 285
1 286
1 287
1 288
1 289
1 290
1 291
1 292
1 293
1 294
1 295
1 296
1 297
1 298
CELL_TYPES 299
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1