Skip to content

Commit

Permalink
Changed the default velocity to 5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Asger Nyman Christiansen committed Jul 25, 2013
1 parent e510b6d commit 593e9bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DEMO/average_function.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class AverageFunc: public VelocityFunc<MT> {
Creates a velocity function which smooths the interface.
*/
AverageFunc(double velocity, double accuracy, int max_time_steps = 500):
VelocityFunc<MT>(velocity/100., accuracy/100., max_time_steps)
VelocityFunc<MT>(velocity/10., accuracy/100., max_time_steps)
{

}
Expand Down
2 changes: 1 addition & 1 deletion DEMO/user_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ UI::UI(int &argc, char** argv)
ext.extract("alpha", ACCURACY);
}
else {
VELOCITY = 1.;
VELOCITY = 5.;
DISCRETIZATION = 25.;
ACCURACY = 5.;

Expand Down

0 comments on commit 593e9bf

Please sign in to comment.