Skip to content

Commit

Permalink
Fixed columns in output_displacements_at_select_locations
Browse files Browse the repository at this point in the history
  • Loading branch information
javieralmonacid committed Apr 24, 2024
1 parent cdde227 commit ad1e6a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dynamic-muscle.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5105,7 +5105,6 @@ namespace Flexodeal
{
output.open(filename.str());
output << "Time [s]"
<< "," << "Activation (%)"
<< "," << "u left x [m]"
<< "," << "u left y [m]"
<< "," << "u left z [m]"
Expand All @@ -5130,7 +5129,8 @@ namespace Flexodeal
<< "," << u_mid[2]
<< "," << u_right[0]
<< "," << u_right[1]
<< "," << u_right[2] << "\n";
<< "," << u_right[2]
<< "," << parameters.length << "\n";
}

} // namespace Flexodeal
Expand Down

0 comments on commit ad1e6a1

Please sign in to comment.