This commit is contained in:
James E McClure 2018-05-16 14:50:40 -04:00
parent 0663492d02
commit a66ad99380
2 changed files with 3 additions and 16 deletions

View File

@ -1,20 +1,7 @@
/*
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"
#include "models/ColorModel.h"
ScaLBL_ColorModel::ScaLBL_ColorModel(string filename){
// read the input database

View File

@ -18,7 +18,7 @@ Implementation of color lattice boltzmann model
class ScaLBL_ColorModel{
public:
ScaLBL_ColorModel();
ScaLBL_ColorModel(string filename);
~ScaLBL_ColorModel();
// functions in they should be run
@ -27,7 +27,7 @@ public:
void Initialize();
void Run();
bool Restart
bool Restart;
int timestep,timestepMax;
double tauA,tauB,rhoA,rhoB,alpha,beta;
double Fx,Fy,Fz,flux;