From 8c0bb71d40761fda04a477458187a4415bcfd6bc Mon Sep 17 00:00:00 2001 From: James E McClure Date: Sat, 16 Feb 2019 11:17:37 -0500 Subject: [PATCH] adding checkerboard inlet option --- tests/lbpm_serial_decomp.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/lbpm_serial_decomp.cpp b/tests/lbpm_serial_decomp.cpp index 0b70977c..947eec38 100644 --- a/tests/lbpm_serial_decomp.cpp +++ b/tests/lbpm_serial_decomp.cpp @@ -53,8 +53,8 @@ int main(int argc, char **argv) int64_t i,j,k,n; int BC=0; int64_t xStart,yStart,zStart; - int64_t checkerSize; - int64_t inlet_count_x, inlet_count_y, inlet_count_z; + int checkerSize; + int inlet_count_x, inlet_count_y, inlet_count_z; // char fluidValue,solidValue; xStart=yStart=zStart=0; @@ -75,13 +75,13 @@ int main(int argc, char **argv) zStart = offset[2]; } if (domain_db->keyExists( "InletCount" )){ - auto InletCount = domain_db->getVector( "InletCount" ); + auto InletCount = domain_db->getVector( "InletCount" ); inlet_count_x = InletCount[0]; inlet_count_y = InletCount[1]; inlet_count_z = InletCount[2]; } if (domain_db->keyExists( "checkerSize" )){ - checkerSize = domain_db->getScalar( "checkerSize" ); + checkerSize = domain_db->getScalar( "checkerSize" ); } auto ReadValues = domain_db->getVector( "ReadValues" ); auto WriteValues = domain_db->getVector( "WriteValues" );