clean up for morphological algorithm

This commit is contained in:
James E McClure 2019-03-08 11:58:40 -05:00
parent f7869e3df4
commit b01c1329d4

View File

@ -412,11 +412,11 @@ void ScaLBL_ColorModel::Run(){
bool SET_CAPILLARY_NUMBER = false;
bool MORPH_ADAPT = false;
bool USE_MORPH = false;
int analysis_interval = 1000; // number of timesteps in between in situ analysis
int MAX_MORPH_TIMESTEPS = 50000; // maximum number of LBM timesteps to spend in morphological adaptation routine
int CURRENT_MORPH_TIMESTEPS=0; // counter for number of timesteps spent in morphological adaptation routine (reset each time)
int RAMP_TIMESTEPS = 50000; // number of timesteps to run initially (to get a reasonable velocity field before other pieces kick in)
int morph_interval = 1000000;
int analysis_interval = 1000; // number of timesteps in between in situ analysis
int CURRENT_MORPH_TIMESTEPS=0; // counter for number of timesteps spent in morphological adaptation routine (reset each time)
double morph_delta = 0.0;
int morph_timesteps = 0;
double capillary_number = 0.0;