dbg
This commit is contained in:
parent
0663492d02
commit
a66ad99380
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user