git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5552 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp 2011-01-14 21:33:45 +00:00
parent 18b821f1d0
commit e969f7cd30
2 changed files with 4 additions and 4 deletions

View File

@ -1597,8 +1597,8 @@ double Variable::collapse_tree(Tree *tree)
if (tree->type == SIN) {
arg1 = collapse_tree(tree->left);
tree->type = VALUE;
if (tree->left->type != VALUE) return 0.0;
tree->type = VALUE;
tree->value = sin(arg1);
return tree->value;
}

View File

@ -356,21 +356,21 @@ void Velocity::set(int narg, char **arg)
xstr = new char[n];
strcpy(xstr,&arg[0][2]);
} else if (strcmp(arg[0],"NULL") == 0) xstyle = NONE;
else vx = xscale * atof(arg[0]);
else vx = atof(arg[0]);
if (strstr(arg[1],"v_") == arg[1]) {
int n = strlen(&arg[1][2]) + 1;
ystr = new char[n];
strcpy(ystr,&arg[1][2]);
} else if (strcmp(arg[1],"NULL") == 0) ystyle = NONE;
else vy = yscale * atof(arg[1]);
else vy = atof(arg[1]);
if (strstr(arg[2],"v_") == arg[2]) {
int n = strlen(&arg[2][2]) + 1;
zstr = new char[n];
strcpy(zstr,&arg[2][2]);
} else if (strcmp(arg[2],"NULL") == 0) zstyle = NONE;
else vz = zscale * atof(arg[2]);
else vz = atof(arg[2]);
// set and apply scale factors