Skip to content

Commit

Permalink
Improving precision in array retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Apr 1, 2024
1 parent 1a72095 commit 8329da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/mapdl/core/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def _get_parameter_array(self, parm_name, shape):
"""
escaped = False
for each_format_number in [20, 30, 40, 64, 100]:
format_str = f"(1F{each_format_number}.12)"
format_str = f"(1E{each_format_number}.12)"
with self._mapdl.non_interactive:
# use C ordering
self._mapdl.mwrite(parm_name.upper(), label="kji")
Expand Down

0 comments on commit 8329da9

Please sign in to comment.