FEM: ccx writer, fix output number formating

This commit is contained in:
Bernd Hahnebach
2020-06-03 13:13:34 +02:00
committed by GitHub
parent 5fc0702d06
commit 7148485b91

View File

@@ -1733,7 +1733,7 @@ class FemInputWriterCcx(writerbase.FemInputWriter):
material,
section_type
)
section_nor = "{}, {}, {}\n".format(
section_nor = "{:f}, {:f}, {:f}\n".format(
normal[0],
normal[1],
normal[2]
@@ -1747,7 +1747,7 @@ class FemInputWriterCcx(writerbase.FemInputWriter):
material,
section_type
)
section_nor = "{}, {}, {}\n".format(
section_nor = "{:f}, {:f}, {:f}\n".format(
normal[0],
normal[1],
normal[2]
@@ -1762,7 +1762,7 @@ class FemInputWriterCcx(writerbase.FemInputWriter):
material,
section_type
)
section_nor = "{}, {}, {}\n".format(
section_nor = "{:f}, {:f}, {:f}\n".format(
normal[0],
normal[1],
normal[2]