FEM: remove trailing spaces and newlines when writing input files for solvers
This commit is contained in:
@@ -2360,10 +2360,12 @@ void FemMesh::writeABAQUS(const std::string& Filename,
|
||||
}
|
||||
else {
|
||||
if (first_line) {
|
||||
anABAQUS_Output << "," << std::endl;
|
||||
anABAQUS_Output << "," << std::endl << *kt;
|
||||
first_line = false;
|
||||
}
|
||||
anABAQUS_Output << *kt << ", ";
|
||||
else {
|
||||
anABAQUS_Output << ", " << *kt;
|
||||
}
|
||||
}
|
||||
}
|
||||
anABAQUS_Output << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user