Update to get the code to compile again

This commit is contained in:
James E McClure 2015-06-15 22:20:41 -04:00
parent 1f8a610143
commit 61b8048d42
3 changed files with 4 additions and 16 deletions

View File

@ -35,7 +35,7 @@ extern "C" void INITIALIZE(char *ID, double *f_even, double *f_odd, int Nx, int
f_even[9*N+n] = -1.0;
}
}
}
}
extern "C" void Compute_VELOCITY(char *ID, double *disteven, double *distodd, double *vel, int Nx, int Ny, int Nz)
@ -85,7 +85,7 @@ extern "C" void Compute_VELOCITY(char *ID, double *disteven, double *distodd, do
}
}
}
}
//*************************************************************************
extern "C" void MRT(char *ID, double *disteven, double *distodd, int Nx, int Ny, int Nz,
@ -273,5 +273,5 @@ extern "C" void MRT(char *ID, double *disteven, double *distodd, int Nx, int Ny,
}
}
}
}

View File

@ -9,15 +9,3 @@ extern "C" void SwapD3Q19(char *ID, double *disteven, double *distodd, int Nx, i
extern "C" void MRT(char *ID, double *f_even, double *f_odd, double rlxA, double rlxB, double Fx, double Fy, double Fz,int Nx, int Ny, int Nz);
extern "C" void InitD3Q19(char *ID, double *f_even, double *f_odd, int Nx, int Ny, int Nz);
extern "C" void ComputeVelocityD3Q19(char *ID, double *disteven, double *distodd, double *vel,
int Nx, int Ny, int Nz);
extern "C" void ComputePressureD3Q19(char *ID, double *disteven, double *distodd, double *Pressure,
int Nx, int Ny, int Nz);
extern "C" void PressureBC_inlet(double *disteven, double *distodd, double din,
int Nx, int Ny, int Nz);
extern "C" void PressureBC_outlet(double *disteven, double *distodd, double dout,
int Nx, int Ny, int Nz, int outlet);

View File

@ -8,7 +8,7 @@
#include "Domain.h"
#include "Extras.h"
#include "D3Q19.h"
#include "ScaLBL.h"
#include "D3Q7.h"
#include "Color.h"
#include "Communication.h"