| 27 |
|
char * input_arg; /* input dump file. */ |
| 28 |
|
char * output_arg; /* output file prefix (default='hydro'). */ |
| 29 |
|
double viscosity_arg; /* viscosity of solvent. */ |
| 30 |
+ |
double temperature_arg; /* temperature of the system. */ |
| 31 |
|
double sigma_arg; /* diameter of beads(use with rough shell model). */ |
| 32 |
|
char * model_arg; /* hydrodynamics model (support RoughShell and BeadModel). */ |
| 33 |
|
|
| 36 |
|
int input_given ; /* Whether input was given. */ |
| 37 |
|
int output_given ; /* Whether output was given. */ |
| 38 |
|
int viscosity_given ; /* Whether viscosity was given. */ |
| 39 |
+ |
int temperature_given ; /* Whether temperature was given. */ |
| 40 |
|
int sigma_given ; /* Whether sigma was given. */ |
| 41 |
|
int model_given ; /* Whether model was given. */ |
| 42 |
|
|