/* * Pre-processor to generate signed distance function from segmented data * segmented data should be stored in a raw binary file as 1-byte integer (type char) * will output distance functions for phases */ #include #include #include #include #include #include #include "common/Array.h" #include "common/Domain.h" int main(int argc, char **argv) { int rank=0; /* bool MULTINPUT=false; int NWP,SOLID,rank_offset; SOLID=atoi(argv[1]); NWP=atoi(argv[2]); if (rank==0){ printf("Solid Label: %i \n",SOLID); printf("NWP Label: %i \n",NWP); } if (argc > 3){ rank_offset = atoi(argv[3]); } else{ MULTINPUT=true; rank_offset=0; } */ string filename; if (argc > 1) filename=argv[1]; else{ ERROR("lbpm_serial_decomp: no in put database provided \n"); } int rank_offset=0; //....................................................................... // Reading the domain information file //....................................................................... int nprocs, nprocx, nprocy, nprocz, nx, ny, nz, nspheres; double Lx, Ly, Lz; int64_t Nx,Ny,Nz; int64_t i,j,k,n; int BC=0; int64_t xStart,yStart,zStart; // char fluidValue,solidValue; xStart=yStart=zStart=0; // read the input database auto db = std::make_shared( filename ); auto domain_db = db->getDatabase( "Domain" ); // Read domain parameters auto Filename = domain_db->getScalar( "Filename" ); auto L = domain_db->getVector( "L" ); auto size = domain_db->getVector( "n" ); auto SIZE = domain_db->getVector( "N" ); auto nproc = domain_db->getVector( "nproc" ); if (domain_db->keyExists( "offset" )){ auto offset = domain_db->getVector( "offset" ); xStart = offset[0]; yStart = offset[1]; zStart = offset[2]; } auto ReadValues = domain_db->getVector( "ReadValues" ); auto WriteValues = domain_db->getVector( "WriteValues" ); auto ReadType = domain_db->getScalar( "ReadType" ); if (ReadType == "8bit"){ } else if (ReadType == "16bit"){ } else{ printf("INPUT ERROR: Valid ReadType are 8bit, 16bit \n"); ReadType = "8bit"; } nx = size[0]; ny = size[1]; nz = size[2]; nprocx = nproc[0]; nprocy = nproc[1]; nprocz = nproc[2]; Nx = SIZE[0]; Ny = SIZE[1]; Nz = SIZE[2]; printf("Input media: %s\n",Filename.c_str()); printf("Relabeling %lu values\n",ReadValues.size()); for (int idx=0; idx LabelCount(ReadValues.size(),0); // Set up the sub-domains if (rank==0){ printf("Distributing subdomains across %i processors \n",nprocs); printf("Process grid: %i x %i x %i \n",nprocx,nprocy,nprocz); printf("Subdomain size: %i x %i x %i \n",nx,ny,nz); printf("Size of transition region: %ld \n", z_transition_size); for (int kp=0; kp