color model tweaks

This commit is contained in:
James McClure 2021-05-28 10:20:13 -04:00
parent 44c45d277f
commit 9b0b5d2262
2 changed files with 2 additions and 2 deletions

View File

@ -2158,7 +2158,7 @@ void FlowAdaptor::Flatten(ScaLBL_ColorModel &M){
double FlowAdaptor::MoveInterface(ScaLBL_ColorModel &M){
double INTERFACE_CUTOFF = M.color_db->getWithDefault<double>( "move_interface_cutoff", 0.975 );
double INTERFACE_CUTOFF = M.color_db->getWithDefault<double>( "move_interface_cutoff", 0.1 );
double MOVE_INTERFACE_FACTOR = M.color_db->getWithDefault<double>( "move_interface_factor", 10.0 );
ScaLBL_CopyToHost( phi.data(), M.Phi, Nx*Ny*Nz* sizeof( double ) );

View File

@ -100,7 +100,7 @@ int main( int argc, char **argv )
Adapt.MoveInterface(ColorModel);
skip_time += ANALYSIS_INTERVAL;
}
Adapt.Flatten(ColorModel);
//Adapt.Flatten(ColorModel);
}
ColorModel.WriteDebug();