Refactoring lbpm_uCT_pp.cpp

This commit is contained in:
Mark Berrill
2016-06-27 11:15:42 -04:00
parent 7a6f35bd45
commit 1e8ca14d85
10 changed files with 732 additions and 571 deletions

View File

@@ -18,6 +18,14 @@
using namespace std;
//! Read the domain information file
void read_domain( int rank, int nprocs, MPI_Comm comm,
int& nprocx, int& nprocy, int& nprocz, int& nx, int& ny, int& nz,
int& nspheres, double& Lx, double& Ly, double& Lz );
//! Class to hold domain info
struct Domain{
// Default constructor
Domain(int nx, int ny, int nz, int rnk, int npx, int npy, int npz,