We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just found that in epoch3d/src/parser/evaluator_blocks.F90, line 300-305, the code reads:
IF (parameters%use_grid_position) THEN CALL push_on_eval(& SQRT(x(parameters%pack_ix)**2 + y(parameters%pack_iy)**2 & + z(parameters%pack_iy)**2)) ELSE
the index of z might probably be parameters%pack_iz. Otherwise the parser would give a wrong r_xyz.
z
parameters%pack_iz
r_xyz
The text was updated successfully, but these errors were encountered:
@XiangyanAn thanks for bringing this to our attention. This has been fixed.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I just found that in epoch3d/src/parser/evaluator_blocks.F90, line 300-305, the code reads:
the index of
z
might probably beparameters%pack_iz
. Otherwise the parser would give a wrongr_xyz
.The text was updated successfully, but these errors were encountered: