LBPM/models/ColorModel.cpp

527 lines
18 KiB
C++
Raw Normal View History

2018-05-16 13:40:38 -05:00
/*
color lattice boltzmann model
*/
2018-05-16 13:50:40 -05:00
#include "models/ColorModel.h"
#include "analysis/distance.h"
2018-05-16 13:40:38 -05:00
2018-05-18 16:24:17 -05:00
ScaLBL_ColorModel::ScaLBL_ColorModel(int RANK, int NP, MPI_Comm COMM):
2018-05-19 13:02:45 -05:00
rank(RANK), nprocs(NP), Restart(0),timestep(0),timestepMax(0),tauA(0),tauB(0),rhoA(0),rhoB(0),alpha(0),beta(0),
Fx(0),Fy(0),Fz(0),flux(0),din(0),dout(0),inletA(0),inletB(0),outletA(0),outletB(0),
Nx(0),Ny(0),Nz(0),N(0),Np(0),nprocx(0),nprocy(0),nprocz(0),BoundaryCondition(0),Lx(0),Ly(0),Lz(0),comm(COMM)
2018-05-16 14:08:47 -05:00
{
2018-05-16 13:54:16 -05:00
}
ScaLBL_ColorModel::~ScaLBL_ColorModel(){
2018-05-19 13:02:45 -05:00
2018-05-16 13:54:16 -05:00
}
2018-06-27 15:31:03 -05:00
/*void ScaLBL_ColorModel::WriteCheckpoint(const char *FILENAME, const double *cPhi, const double *cfq, int Np)
{
int q,n;
double value;
ofstream File(FILENAME,ios::binary);
for (n=0; n<Np; n++){
// Write the two density values
value = cPhi[n];
File.write((char*) &value, sizeof(value));
// Write the even distributions
for (q=0; q<19; q++){
value = cfq[q*Np+n];
File.write((char*) &value, sizeof(value));
}
}
File.close();
}
void ScaLBL_ColorModel::ReadCheckpoint(char *FILENAME, double *cPhi, double *cfq, int Np)
{
int q=0, n=0;
double value=0;
ifstream File(FILENAME,ios::binary);
for (n=0; n<Np; n++){
File.read((char*) &value, sizeof(value));
cPhi[n] = value;
// Read the distributions
for (q=0; q<19; q++){
File.read((char*) &value, sizeof(value));
cfq[q*Np+n] = value;
}
}
File.close();
}
2018-07-01 16:13:27 -05:00
*/
2018-06-27 15:31:03 -05:00
2018-05-16 14:08:47 -05:00
void ScaLBL_ColorModel::ReadParams(string filename){
2018-05-16 13:40:38 -05:00
// read the input database
2018-05-19 13:02:45 -05:00
db = std::make_shared<Database>( filename );
domain_db = db->getDatabase( "Domain" );
color_db = db->getDatabase( "Color" );
analysis_db = db->getDatabase( "Analysis" );
// Color Model parameters
timestepMax = color_db->getScalar<int>( "timestepMax" );
tauA = color_db->getScalar<double>( "tauA" );
tauB = color_db->getScalar<double>( "tauB" );
rhoA = color_db->getScalar<double>( "rhoA" );
rhoB = color_db->getScalar<double>( "rhoB" );
Fx = color_db->getVector<double>( "F" )[0];
Fy = color_db->getVector<double>( "F" )[1];
Fz = color_db->getVector<double>( "F" )[2];
alpha = color_db->getScalar<double>( "alpha" );
beta = color_db->getScalar<double>( "beta" );
Restart = color_db->getScalar<bool>( "Restart" );
din = color_db->getScalar<double>( "din" );
dout = color_db->getScalar<double>( "dout" );
flux = color_db->getScalar<double>( "flux" );
inletA=1.f;
inletB=0.f;
outletA=0.f;
outletB=1.f;
2018-07-01 16:13:27 -05:00
2018-05-19 16:28:39 -05:00
if (BoundaryCondition==4) flux = din*rhoA; // mass flux must adjust for density (see formulation for details)
2018-05-19 13:02:45 -05:00
// Read domain parameters
auto L = domain_db->getVector<double>( "L" );
auto size = domain_db->getVector<int>( "n" );
auto nproc = domain_db->getVector<int>( "nproc" );
BoundaryCondition = domain_db->getScalar<int>( "BC" );
Nx = size[0];
Ny = size[1];
Nz = size[2];
Lx = L[0];
Ly = L[1];
Lz = L[2];
nprocx = nproc[0];
nprocy = nproc[1];
nprocz = nproc[2];
2018-05-19 16:28:39 -05:00
}
void ScaLBL_ColorModel::SetDomain(){
2018-05-19 13:02:45 -05:00
Dm = std::shared_ptr<Domain>(new Domain(domain_db,comm)); // full domain for analysis
Mask = std::shared_ptr<Domain>(new Domain(domain_db,comm)); // mask domain removes immobile phases
Nx+=2; Ny+=2; Nz += 2;
N = Nx*Ny*Nz;
2018-07-01 16:13:27 -05:00
id = new char [N];
2018-05-19 13:02:45 -05:00
for (int i=0; i<Nx*Ny*Nz; i++) Dm->id[i] = 1; // initialize this way
Averages = std::shared_ptr<TwoPhase> ( new TwoPhase(Dm) ); // TwoPhase analysis object
MPI_Barrier(comm);
Dm->CommInit();
MPI_Barrier(comm);
2018-06-13 09:09:55 -05:00
rank = Dm->rank();
2018-05-16 13:40:38 -05:00
}
void ScaLBL_ColorModel::ReadInput(){
2018-07-01 16:13:27 -05:00
size_t readID;
Mask->ReadIDs();
for (int i=0; i<Nx*Ny*Nz; i++) id[i] = Mask->id[i]; // save what was read
sprintf(LocalRankString,"%05d",rank);
sprintf(LocalRankFilename,"%s%s","ID.",LocalRankString);
sprintf(LocalRestartFile,"%s%s","Restart.",LocalRankString);
// Generate the signed distance map
// Initialize the domain and communication
Array<char> id_solid(Nx,Ny,Nz);
int count = 0;
// Solve for the position of the solid phase
for (int k=0;k<Nz;k++){
for (int j=0;j<Ny;j++){
for (int i=0;i<Nx;i++){
int n = k*Nx*Ny+j*Nx+i;
// Initialize the solid phase
if (Mask->id[n] > 0) id_solid(i,j,k) = 1;
else id_solid(i,j,k) = 0;
}
}
}
// Initialize the signed distance function
for (int k=0;k<Nz;k++){
for (int j=0;j<Ny;j++){
for (int i=0;i<Nx;i++){
int n=k*Nx*Ny+j*Nx+i;
// Initialize distance to +/- 1
Averages->SDs(i,j,k) = 2.0*double(id_solid(i,j,k))-1.0;
}
}
}
// MeanFilter(Averages->SDs);
if (rank==0) printf("Initialized solid phase -- Converting to Signed Distance function \n");
CalcDist(Averages->SDs,id_solid,*Mask);
2018-07-01 16:13:27 -05:00
if (rank == 0) cout << "Domain set." << endl;
2018-05-16 13:40:38 -05:00
}
2018-06-27 15:31:03 -05:00
2018-05-19 06:01:09 -05:00
void ScaLBL_ColorModel::AssignComponentLabels(double *phase)
2018-05-18 19:53:49 -05:00
{
size_t NLABELS=0;
2018-05-18 19:53:49 -05:00
char VALUE=0;
double AFFINITY=0.f;
2018-07-01 16:13:27 -05:00
2018-06-13 07:10:06 -05:00
auto LabelList = color_db->getVector<char>( "ComponentLabels" );
auto AffinityList = color_db->getVector<double>( "ComponentAffinity" );
2018-07-01 16:13:27 -05:00
2018-06-13 07:10:06 -05:00
NLABELS=LabelList.size();
if (NLABELS != AffinityList.size()){
ERROR("Error: ComponentLabels and ComponentAffinity must be the same length! \n");
2018-05-18 19:53:49 -05:00
}
2018-07-01 16:13:27 -05:00
if (rank==0){
2018-07-01 16:13:27 -05:00
printf("Components labels: %lu \n",NLABELS);
for (unsigned int idx=0; idx<NLABELS; idx++){
VALUE=LabelList[idx];
AFFINITY=AffinityList[idx];
printf(" label=%i, affinity=%f\n",int(VALUE),AFFINITY);
}
}
2018-05-18 19:53:49 -05:00
// Assign the labels
for (int k=0;k<Nz;k++){
for (int j=0;j<Ny;j++){
for (int i=0;i<Nx;i++){
int n = k*Nx*Ny+j*Nx+i;
2018-07-01 16:13:27 -05:00
VALUE=id[n];
2018-05-18 19:53:49 -05:00
// Assign the affinity from the paired list
for (unsigned int idx=0; idx < NLABELS; idx++){
2018-05-18 19:53:49 -05:00
//printf("rank=%i, idx=%i, value=%i, %i, \n",rank(),idx, VALUE,LabelList[idx]);
if (VALUE == LabelList[idx]){
AFFINITY=AffinityList[idx];
idx = NLABELS;
2018-07-01 16:13:27 -05:00
Mask->id[n] = 0; // set mask to zero since this is an immobile component
2018-05-18 19:53:49 -05:00
}
}
2018-07-02 12:32:25 -05:00
// fluid labels are reserved
if (VALUE == 1) AFFINITY=1.0;
else if (VALUE == 2) AFFINITY=-1.0;
2018-05-18 19:53:49 -05:00
phase[n] = AFFINITY;
}
}
}
2018-07-01 16:13:27 -05:00
// Set Dm to match Mask
for (int i=0; i<Nx*Ny*Nz; i++) Dm->id[i] = Mask->id[i];
2018-05-18 19:53:49 -05:00
}
2018-05-16 13:40:38 -05:00
void ScaLBL_ColorModel::Create(){
/*
* This function creates the variables needed to run a LBM
*/
2018-05-18 19:53:49 -05:00
//.........................................................
// don't perform computations at the eight corners
2018-05-21 09:13:23 -05:00
//id[0] = id[Nx-1] = id[(Ny-1)*Nx] = id[(Ny-1)*Nx + Nx-1] = 0;
//id[(Nz-1)*Nx*Ny] = id[(Nz-1)*Nx*Ny+Nx-1] = id[(Nz-1)*Nx*Ny+(Ny-1)*Nx] = id[(Nz-1)*Nx*Ny+(Ny-1)*Nx + Nx-1] = 0;
2018-07-01 16:13:27 -05:00
2018-05-18 19:53:49 -05:00
//.........................................................
// Initialize communication structures in averaging domain
2018-05-19 16:28:39 -05:00
for (int i=0; i<Nx*Ny*Nz; i++) Dm->id[i] = Mask->id[i];
2018-05-19 06:01:09 -05:00
Mask->CommInit();
2018-05-19 06:14:37 -05:00
Np=Mask->PoreCount();
2018-05-18 19:53:49 -05:00
//...........................................................................
if (rank==0) printf ("Create ScaLBL_Communicator \n");
// Create a communicator for the device (will use optimized layout)
// ScaLBL_Communicator ScaLBL_Comm(Mask); // original
ScaLBL_Comm = std::shared_ptr<ScaLBL_Communicator>(new ScaLBL_Communicator(Mask));
2018-07-02 12:32:25 -05:00
ScaLBL_Comm_Regular = std::shared_ptr<ScaLBL_Communicator>(new ScaLBL_Communicator(Mask));
2018-05-16 14:15:01 -05:00
2018-05-18 19:53:49 -05:00
int Npad=(Np/16 + 2)*16;
2018-06-13 09:09:55 -05:00
if (rank==0) printf ("Set up memory efficient layout, %i | %i | %i \n", Np, Npad, N);
2018-05-18 19:53:49 -05:00
Map.resize(Nx,Ny,Nz); Map.fill(-2);
auto neighborList= new int[18*Npad];
Np = ScaLBL_Comm->MemoryOptimizedLayoutAA(Map,neighborList,Mask->id,Np);
MPI_Barrier(comm);
2018-05-16 13:40:38 -05:00
2018-05-18 19:53:49 -05:00
//...........................................................................
// MAIN VARIABLES ALLOCATED HERE
//...........................................................................
// LBM variables
if (rank==0) printf ("Allocating distributions \n");
//......................device distributions.................................
2018-06-13 09:09:55 -05:00
dist_mem_size = Np*sizeof(double);
neighborSize=18*(Np*sizeof(int));
2018-05-18 19:53:49 -05:00
//...........................................................................
ScaLBL_AllocateDeviceMemory((void **) &NeighborList, neighborSize);
ScaLBL_AllocateDeviceMemory((void **) &dvcMap, sizeof(int)*Np);
ScaLBL_AllocateDeviceMemory((void **) &fq, 19*dist_mem_size);
ScaLBL_AllocateDeviceMemory((void **) &Aq, 7*dist_mem_size);
ScaLBL_AllocateDeviceMemory((void **) &Bq, 7*dist_mem_size);
ScaLBL_AllocateDeviceMemory((void **) &Den, 2*dist_mem_size);
2018-07-02 12:32:25 -05:00
ScaLBL_AllocateDeviceMemory((void **) &Phi, sizeof(double)*Nx*Ny*Nz);
2018-05-18 19:53:49 -05:00
ScaLBL_AllocateDeviceMemory((void **) &Pressure, sizeof(double)*Np);
ScaLBL_AllocateDeviceMemory((void **) &Velocity, 3*sizeof(double)*Np);
2018-07-02 12:32:25 -05:00
ScaLBL_AllocateDeviceMemory((void **) &ColorGrad, 3*sizeof(double)*Np);
2018-05-18 19:53:49 -05:00
//...........................................................................
// Update GPU data structures
2018-07-02 12:32:25 -05:00
if (rank==0) printf ("Setting up device map and neighbor list \n");
fflush(stdout);
2018-05-18 19:53:49 -05:00
int *TmpMap;
TmpMap=new int[Np];
for (int k=1; k<Nz-1; k++){
for (int j=1; j<Ny-1; j++){
for (int i=1; i<Nx-1; i++){
int idx=Map(i,j,k);
if (!(idx < 0))
TmpMap[idx] = k*Nx*Ny+j*Nx+i;
}
}
}
2018-07-02 12:32:25 -05:00
// check that TmpMap is valid
2018-09-19 20:30:30 -05:00
for (int idx=0; idx<ScaLBL_Comm->LastExterior(); idx++){
int n = TmpMap[idx];
if (n > Nx*Ny*Nz){
printf("Bad value! idx=%i \n");
TmpMap[idx] = Nx*Ny*Nz-1;
}
}
for (int idx=ScaLBL_Comm->FirstInterior(); idx<ScaLBL_Comm->LastInterior(); idx++){
2018-07-02 12:32:25 -05:00
int n = TmpMap[idx];
if (n > Nx*Ny*Nz){
printf("Bad value! idx=%i \n");
TmpMap[idx] = Nx*Ny*Nz-1;
}
}
2018-05-18 19:53:49 -05:00
ScaLBL_CopyToDevice(dvcMap, TmpMap, sizeof(int)*Np);
ScaLBL_DeviceBarrier();
delete [] TmpMap;
2018-07-02 12:32:25 -05:00
// copy the neighbor list
ScaLBL_CopyToDevice(NeighborList, neighborList, neighborSize);
// initialize phi based on PhaseLabel (include solid component labels)
double *PhaseLabel;
PhaseLabel = new double[N];
AssignComponentLabels(PhaseLabel);
ScaLBL_CopyToDevice(Phi, PhaseLabel, N*sizeof(double));
2018-05-16 13:40:38 -05:00
}
2018-05-18 19:53:49 -05:00
/********************************************************
* AssignComponentLabels *
********************************************************/
2018-05-16 13:40:38 -05:00
2018-05-19 16:28:39 -05:00
void ScaLBL_ColorModel::Initialize(){
2018-09-04 06:46:09 -05:00
if (rank==0) printf ("Initializing distributions \n");
ScaLBL_D3Q19_Init(fq, Np);
2018-05-19 16:28:39 -05:00
/*
* This function initializes model
*/
2018-06-27 15:31:03 -05:00
if (Restart == true){
if (rank==0){
printf("Reading restart file! \n");
ifstream restart("Restart.txt");
if (restart.is_open()){
restart >> timestep;
printf("Restarting from timestep =%i \n",timestep);
}
else{
printf("WARNING:No Restart.txt file, setting timestep=0 \n");
timestep=0;
}
}
MPI_Bcast(&timestep,1,MPI_INT,0,comm);
// Read in the restart file to CPU buffers
2018-09-05 00:00:02 -05:00
int *TmpMap;
TmpMap = new int[Np];
double *cPhi, *cDist;
2018-09-05 15:40:48 -05:00
cPhi = new double[N];
2018-09-05 00:00:02 -05:00
cDist = new double[19*Np];
2018-09-04 23:19:11 -05:00
ifstream File(LocalRestartFile,ios::binary);
2018-09-04 23:19:11 -05:00
int idx;
2018-09-04 21:36:22 -05:00
double value,va,vb;
2018-09-05 11:53:06 -05:00
ScaLBL_CopyToHost(TmpMap, dvcMap, Np*sizeof(int));
ScaLBL_CopyToHost(cPhi, Phi, N*sizeof(double));
2018-09-04 23:19:11 -05:00
2018-09-27 21:50:57 -05:00
for (int n=0; n<ScaLBL_Comm->LastExterior(); n++){
File.read((char*) &va, sizeof(va));
File.read((char*) &vb, sizeof(vb));
value = (va-vb)/(va+vb);
idx = TmpMap[n];
if (!(idx < 0) && idx<N)
cPhi[idx] = value;
}
for (int n=ScaLBL_Comm->FirstInterior(); ScaLBL_Comm->LastInterior(); n++){
2018-09-04 22:49:08 -05:00
File.read((char*) &va, sizeof(va));
File.read((char*) &vb, sizeof(vb));
2018-09-04 21:36:22 -05:00
value = (va-vb)/(va+vb);
2018-09-04 23:19:11 -05:00
idx = TmpMap[n];
2018-09-05 11:53:06 -05:00
if (!(idx < 0) && idx<N)
2018-09-05 00:00:02 -05:00
cPhi[idx] = value;
2018-09-04 21:10:29 -05:00
}
for (int n=0; n<Np; n++){
// Read the distributions
for (int q=0; q<19; q++){
File.read((char*) &value, sizeof(value));
cDist[q*Np+n] = value;
}
}
File.close();
2018-06-27 15:31:03 -05:00
// Copy the restart data to the GPU
ScaLBL_CopyToDevice(fq,cDist,19*Np*sizeof(double));
2018-09-05 15:40:48 -05:00
ScaLBL_CopyToDevice(Phi,cPhi,N*sizeof(double));
2018-06-27 15:31:03 -05:00
ScaLBL_DeviceBarrier();
2018-09-04 23:19:11 -05:00
2018-06-27 15:31:03 -05:00
MPI_Barrier(comm);
}
2018-07-02 12:32:25 -05:00
if (rank==0) printf ("Initializing phase field \n");
2018-07-28 15:01:24 -05:00
ScaLBL_PhaseField_Init(dvcMap, Phi, Den, Aq, Bq, 0, ScaLBL_Comm->LastExterior(), Np);
ScaLBL_PhaseField_Init(dvcMap, Phi, Den, Aq, Bq, ScaLBL_Comm->FirstInterior(), ScaLBL_Comm->LastInterior(), Np);
2018-07-02 12:32:25 -05:00
if (BoundaryCondition >0 ){
if (Dm->kproc()==0){
ScaLBL_SetSlice_z(Phi,1.0,Nx,Ny,Nz,0);
ScaLBL_SetSlice_z(Phi,1.0,Nx,Ny,Nz,1);
ScaLBL_SetSlice_z(Phi,1.0,Nx,Ny,Nz,2);
}
if (Dm->kproc() == nprocz-1){
ScaLBL_SetSlice_z(Phi,-1.0,Nx,Ny,Nz,Nz-1);
ScaLBL_SetSlice_z(Phi,-1.0,Nx,Ny,Nz,Nz-2);
ScaLBL_SetSlice_z(Phi,-1.0,Nx,Ny,Nz,Nz-3);
}
}
2018-05-21 09:13:23 -05:00
2018-05-16 13:40:38 -05:00
}
void ScaLBL_ColorModel::Run(){
2018-07-01 16:13:27 -05:00
int nprocs=nprocx*nprocy*nprocz;
const RankInfoStruct rank_info(rank,nprocx,nprocy,nprocz);
2018-07-02 12:32:25 -05:00
if (rank==0){
printf("********************************************************\n");
printf("No. of timesteps: %i \n", timestepMax);
fflush(stdout);
}
2018-07-01 16:13:27 -05:00
//.......create and start timer............
double starttime,stoptime,cputime;
ScaLBL_DeviceBarrier();
MPI_Barrier(comm);
starttime = MPI_Wtime();
//.........................................
2018-07-02 12:32:25 -05:00
//************ MAIN ITERATION LOOP ***************************************/
2018-07-01 16:13:27 -05:00
PROFILE_START("Loop");
2018-07-02 12:32:25 -05:00
//std::shared_ptr<Database> analysis_db;
2018-07-06 08:21:29 -05:00
bool Regular = false;
runAnalysis analysis( analysis_db, rank_info, ScaLBL_Comm, Dm, Np, Regular, beta, Map );
2018-07-06 11:38:49 -05:00
//analysis.createThreads( analysis_method, 4 );
2018-07-01 16:13:27 -05:00
while (timestep < timestepMax ) {
//if ( rank==0 ) { printf("Running timestep %i (%i MB)\n",timestep+1,(int)(Utilities::getMemoryUsage()/1048576)); }
PROFILE_START("Update");
// *************ODD TIMESTEP*************
timestep++;
// Compute the Phase indicator field
// Read for Aq, Bq happens in this routine (requires communication)
ScaLBL_Comm->BiSendD3Q7AA(Aq,Bq); //READ FROM NORMAL
2018-07-28 15:01:24 -05:00
ScaLBL_D3Q7_AAodd_PhaseField(NeighborList, dvcMap, Aq, Bq, Den, Phi, ScaLBL_Comm->FirstInterior(), ScaLBL_Comm->LastInterior(), Np);
2018-07-01 16:13:27 -05:00
ScaLBL_Comm->BiRecvD3Q7AA(Aq,Bq); //WRITE INTO OPPOSITE
2018-09-22 16:15:00 -05:00
ScaLBL_DeviceBarrier();
2018-07-28 15:01:24 -05:00
ScaLBL_D3Q7_AAodd_PhaseField(NeighborList, dvcMap, Aq, Bq, Den, Phi, 0, ScaLBL_Comm->LastExterior(), Np);
2018-07-02 12:32:25 -05:00
2018-07-01 16:13:27 -05:00
// Perform the collision operation
ScaLBL_Comm->SendD3Q19AA(fq); //READ FROM NORMAL
2018-09-22 15:00:32 -05:00
if (BoundaryCondition > 0){
ScaLBL_Comm->Color_BC_z(dvcMap, Phi, Den, inletA, inletB);
ScaLBL_Comm->Color_BC_Z(dvcMap, Phi, Den, outletA, outletB);
}
2018-07-02 12:32:25 -05:00
// Halo exchange for phase field
ScaLBL_Comm_Regular->SendHalo(Phi);
ScaLBL_D3Q19_AAodd_Color(NeighborList, dvcMap, fq, Aq, Bq, Den, Phi, Velocity, rhoA, rhoB, tauA, tauB,
2018-07-28 15:01:24 -05:00
alpha, beta, Fx, Fy, Fz, Nx, Nx*Ny, ScaLBL_Comm->FirstInterior(), ScaLBL_Comm->LastInterior(), Np);
2018-07-02 12:32:25 -05:00
ScaLBL_Comm_Regular->RecvHalo(Phi);
2018-07-01 16:13:27 -05:00
ScaLBL_Comm->RecvD3Q19AA(fq); //WRITE INTO OPPOSITE
2018-09-22 16:15:00 -05:00
ScaLBL_DeviceBarrier();
2018-07-01 16:13:27 -05:00
// Set BCs
if (BoundaryCondition == 3){
ScaLBL_Comm->D3Q19_Pressure_BC_z(NeighborList, fq, din, timestep);
ScaLBL_Comm->D3Q19_Pressure_BC_Z(NeighborList, fq, dout, timestep);
}
if (BoundaryCondition == 4){
din = ScaLBL_Comm->D3Q19_Flux_BC_z(NeighborList, fq, flux, timestep);
ScaLBL_Comm->D3Q19_Pressure_BC_Z(NeighborList, fq, dout, timestep);
}
2018-07-02 12:32:25 -05:00
ScaLBL_D3Q19_AAodd_Color(NeighborList, dvcMap, fq, Aq, Bq, Den, Phi, Velocity, rhoA, rhoB, tauA, tauB,
2018-07-28 15:01:24 -05:00
alpha, beta, Fx, Fy, Fz, Nx, Nx*Ny, 0, ScaLBL_Comm->LastExterior(), Np);
2018-07-01 16:13:27 -05:00
ScaLBL_DeviceBarrier(); MPI_Barrier(comm);
// *************EVEN TIMESTEP*************
timestep++;
// Compute the Phase indicator field
ScaLBL_Comm->BiSendD3Q7AA(Aq,Bq); //READ FROM NORMAL
2018-07-28 15:01:24 -05:00
ScaLBL_D3Q7_AAeven_PhaseField(dvcMap, Aq, Bq, Den, Phi, ScaLBL_Comm->FirstInterior(), ScaLBL_Comm->LastInterior(), Np);
2018-07-01 16:13:27 -05:00
ScaLBL_Comm->BiRecvD3Q7AA(Aq,Bq); //WRITE INTO OPPOSITE
2018-09-22 16:15:00 -05:00
ScaLBL_DeviceBarrier();
2018-07-28 15:01:24 -05:00
ScaLBL_D3Q7_AAeven_PhaseField(dvcMap, Aq, Bq, Den, Phi, 0, ScaLBL_Comm->LastExterior(), Np);
2018-07-01 16:13:27 -05:00
// Perform the collision operation
ScaLBL_Comm->SendD3Q19AA(fq); //READ FORM NORMAL
2018-07-02 12:32:25 -05:00
// Halo exchange for phase field
2018-09-22 15:00:32 -05:00
if (BoundaryCondition > 0){
ScaLBL_Comm->Color_BC_z(dvcMap, Phi, Den, inletA, inletB);
ScaLBL_Comm->Color_BC_Z(dvcMap, Phi, Den, outletA, outletB);
}
2018-07-02 12:32:25 -05:00
ScaLBL_Comm_Regular->SendHalo(Phi);
ScaLBL_D3Q19_AAeven_Color(dvcMap, fq, Aq, Bq, Den, Phi, Velocity, rhoA, rhoB, tauA, tauB,
2018-07-28 15:01:24 -05:00
alpha, beta, Fx, Fy, Fz, Nx, Nx*Ny, ScaLBL_Comm->FirstInterior(), ScaLBL_Comm->LastInterior(), Np);
2018-07-02 12:32:25 -05:00
ScaLBL_Comm_Regular->RecvHalo(Phi);
2018-07-01 16:13:27 -05:00
ScaLBL_Comm->RecvD3Q19AA(fq); //WRITE INTO OPPOSITE
2018-09-22 16:15:00 -05:00
ScaLBL_DeviceBarrier();
2018-07-01 16:13:27 -05:00
// Set boundary conditions
if (BoundaryCondition == 3){
ScaLBL_Comm->D3Q19_Pressure_BC_z(NeighborList, fq, din, timestep);
ScaLBL_Comm->D3Q19_Pressure_BC_Z(NeighborList, fq, dout, timestep);
}
else if (BoundaryCondition == 4){
din = ScaLBL_Comm->D3Q19_Flux_BC_z(NeighborList, fq, flux, timestep);
ScaLBL_Comm->D3Q19_Pressure_BC_Z(NeighborList, fq, dout, timestep);
}
2018-07-02 12:32:25 -05:00
ScaLBL_D3Q19_AAeven_Color(dvcMap, fq, Aq, Bq, Den, Phi, Velocity, rhoA, rhoB, tauA, tauB,
2018-07-28 15:01:24 -05:00
alpha, beta, Fx, Fy, Fz, Nx, Nx*Ny, 0, ScaLBL_Comm->LastExterior(), Np);
2018-07-01 16:13:27 -05:00
ScaLBL_DeviceBarrier(); MPI_Barrier(comm);
//************************************************************************
2018-07-02 12:32:25 -05:00
2018-07-01 16:13:27 -05:00
MPI_Barrier(comm);
PROFILE_STOP("Update");
// Run the analysis
2018-07-06 08:21:29 -05:00
analysis.run( timestep, *Averages, Phi, Pressure, Velocity, fq, Den );
2018-07-02 12:32:25 -05:00
2018-07-01 16:13:27 -05:00
}
2018-07-06 08:21:29 -05:00
analysis.finish();
2018-07-01 16:13:27 -05:00
PROFILE_STOP("Loop");
PROFILE_SAVE("lbpm_color_simulator",1);
//************************************************************************
ScaLBL_DeviceBarrier();
MPI_Barrier(comm);
stoptime = MPI_Wtime();
if (rank==0) printf("-------------------------------------------------------------------\n");
// Compute the walltime per timestep
cputime = (stoptime - starttime)/timestep;
// Performance obtained from each node
double MLUPS = double(Np)/cputime/1000000;
2018-07-02 12:32:25 -05:00
2018-07-01 16:13:27 -05:00
if (rank==0) printf("********************************************************\n");
if (rank==0) printf("CPU time = %f \n", cputime);
if (rank==0) printf("Lattice update rate (per core)= %f MLUPS \n", MLUPS);
MLUPS *= nprocs;
if (rank==0) printf("Lattice update rate (total)= %f MLUPS \n", MLUPS);
if (rank==0) printf("********************************************************\n");
// ************************************************************************
2018-05-16 13:40:38 -05:00
}
2018-05-18 16:24:17 -05:00
void ScaLBL_ColorModel::WriteDebug(){
// Copy back final phase indicator field and convert to regular layout
DoubleArray PhaseField(Nx,Ny,Nz);
2018-07-02 12:32:25 -05:00
//ScaLBL_Comm->RegularLayout(Map,Phi,PhaseField);
ScaLBL_CopyToHost(PhaseField.data(), Phi, sizeof(double)*N);
2018-05-18 16:24:17 -05:00
FILE *OUTFILE;
sprintf(LocalRankFilename,"Phase.%05i.raw",rank);
OUTFILE = fopen(LocalRankFilename,"wb");
fwrite(PhaseField.data(),8,N,OUTFILE);
fclose(OUTFILE);
2018-05-19 05:39:44 -05:00
}