This commit is contained in:
Eisuke Kawashima
2020-03-14 12:38:28 +09:00
parent fa7085be07
commit 649a8cc01a
401 changed files with 617 additions and 617 deletions

View File

@ -82,7 +82,7 @@ ABFdata::ABFdata(const char *gradFileName)
pos[i] = 0;
for (unsigned int i = 0; i < scalar_dim; i++) {
// Here we do the Euclidian division iteratively
// Here we do the Euclidean division iteratively
for (int k = Nvars - 1; k > 0; k--) {
if (pos[k] == sizes[k]) {
pos[k] = 0;
@ -213,7 +213,7 @@ void ABFdata::write_histogram(const char *fileName)
pos[i] = 0;
for (index = 0; index < scalar_dim; index++) {
// Here we do the Euclidian division iteratively
// Here we do the Euclidean division iteratively
for (i = Nvars - 1; i > 0; i--) {
if (pos[i] == sizes[i]) {
pos[i] = 0;
@ -271,7 +271,7 @@ void ABFdata::write_bias(const char *fileName)
}
for (index = 0; index < scalar_dim; index++) {
// Here we do the Euclidian division iteratively
// Here we do the Euclidean division iteratively
for (i = Nvars - 1; i > 0; i--) {
if (pos[i] == sizes[i]) {
pos[i] = 0;
@ -316,7 +316,7 @@ void ABFdata::write_field(double *field, const char *fileName)
f = field;
for (index = 0; index < scalar_dim; index++) {
// Here we do the Euclidian division iteratively
// Here we do the Euclidean division iteratively
for (i = Nvars - 1; i > 0; i--) {
if (pos[i] == sizes[i]) {
pos[i] = 0;