Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Messing around with documentation and loop bounds.
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Jay Billings <billingsjj@ornl.gov>
  • Loading branch information
Jay Jay Billings committed Feb 23, 2015
1 parent 5f679ae commit e4c4728
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -333,7 +333,6 @@ public void getInterfacialProfile(int numRough, double[] zInt,
for (j = numRough / 2 - 1; j >= 0; j--) {
dist = dist - step;
zInt[j] = Math.log((1.0 + dist) / (1.0 - dist)) / (2.0 * cE);
System.out.println("Line = " + j + " " + zInt[j]);
rufInt[j] = Erf.erf(cE * zInt[j]);
}

Expand All @@ -359,7 +358,6 @@ public void getInterfacialProfile(int numRough, double[] zInt,
zInt[j] = oHalfstep + 0.5 * (zInt[j + 1] - zInt[j]);
zInt[numRough - j] = zInt[j];
oHalfstep = 0.5 * (zInt[j + 1] - zTemp);
System.out.println(j + " " + zInt[j] + " " + zTemp);
}

return;
Expand Down

0 comments on commit e4c4728

Please sign in to comment.