FEM: abaqus writer, fix precision

This commit is contained in:
Bernd Hahnebach
2017-06-06 16:56:04 +01:00
committed by Yorik van Havre
parent cd0014b16c
commit 1ca27a2f9d

View File

@@ -1188,7 +1188,7 @@ void FemMesh::writeABAQUS(const std::string &Filename) const
std::ofstream anABAQUS_Output;
anABAQUS_Output.open(Filename.c_str());
anABAQUS_Output.precision(15);
anABAQUS_Output.precision(13); // https://forum.freecadweb.org/viewtopic.php?f=18&t=22759#p176669
// add some text
anABAQUS_Output << "** written by FreeCAD inp file writer for CalculiX,Abaqus meshes" << std::endl << std::endl;