From c31ff11157e4369ed316de295437c8fd9818f1dd Mon Sep 17 00:00:00 2001 From: James E McClure Date: Thu, 29 Mar 2018 22:54:36 -0400 Subject: [PATCH] Added BGK to ScaLBL.h --- common/ScaLBL.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common/ScaLBL.h b/common/ScaLBL.h index 56596bb4..fea8775f 100644 --- a/common/ScaLBL.h +++ b/common/ScaLBL.h @@ -41,6 +41,11 @@ extern "C" void ScaLBL_D3Q19_Momentum(double *dist, double *vel, int Np); extern "C" void ScaLBL_D3Q19_Pressure(double *dist, double *press, int Np); +// BGK MODEL +extern "C" void ScaLBL_D3Q19_AAeven_BGK(double *dist, int start, int finish, int Np, double rlx, double Fx, double Fy, double Fz); + +extern "C" void ScaLBL_D3Q19_AAodd_BGK(int *neighborList, double *dist, int start, int finish, int Np, double rlx, double Fx, double Fy, double Fz); + // MRT MODEL extern "C" void ScaLBL_D3Q19_AAeven_MRT(double *dist, int start, int finish, int Np, double rlx_setA, double rlx_setB, double Fx, double Fy, double Fz);