This commit is contained in:
James E McClure 2018-05-16 14:43:22 -04:00
parent 9c7eee30f7
commit 541dce4f63
2 changed files with 15 additions and 0 deletions

View File

@ -1,6 +1,20 @@
/*
color lattice boltzmann model
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <iostream>
#include <exception>
#include <stdexcept>
#include <fstream>
#include "common/Communication.h"
#include "analysis/TwoPhase.h"
#include "analysis/runAnalysis.h"
#include "common/MPI_Helpers.h"
#include "ProfilerApp.h"
#include "threadpool/thread_pool.h"
ScaLBL_ColorModel::ScaLBL_ColorModel(string filename){
// read the input database

View File

@ -68,6 +68,7 @@ private:
double *Gradient;
double *Pressure;
int rank;
};