{
int i,N=200;
double x=0, F=0;
- printf("#F (N)\tk (%% pop. per s)\n");
+ printf("#Distance (m)\tForce (N)\n");
for (i=0; i<=N; i++) {
x = Xmax*i/(double)N;
F = (*model->handler)(x, &tdata);
tension_models[tension_model].params);
printf("F(x) is calculated for a range of x and printed\n");
printf("For example:\n");
- printf(" #Distance (x)\tForce (N)\n");
+ printf(" #Distance (m)\tForce (N)\n");
printf(" 123.456\t7.89\n");
printf(" ...\n");
printf("-F\tSet the maximum F value for the standard mode F(x) output (currently %g)\n", Fmax);
- printf("-X\tSet the maximum x value for the standart mode F(x) output (currently %g)\n", Xmax);
+ printf("-X\tSet the maximum x value for the standard mode F(x) output (currently %g)\n", Xmax);
printf("-V\tChange output to verbose mode\n");
printf("-h\tPrint this help and exit\n");
printf("\n");