Skip to content

Commit

Permalink
Fixup: change .txt tp .csv
Browse files Browse the repository at this point in the history
The PastEvolution file was changed to output a csv.
  • Loading branch information
joaorebelo-megum committed Aug 27, 2024
1 parent a966601 commit cf2602e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1770,7 +1770,7 @@ void BinaryWithGravitationalWaves::integrate_hamiltonian_system() {
void BinaryWithGravitationalWaves::write_evolution_to_file() const {
if (write_evolution_option()) {
std::ofstream file;
file.open("PastHistoryEvolution.txt");
file.open("PastHistoryEvolution.csv");
file << "time, position_left_x, position_left_y, position_left_z, "
"momentum_left_x, momentum_left_y, momentum_left_z, "
"position_right_x, position_right_y, position_right_z, "
Expand Down

0 comments on commit cf2602e

Please sign in to comment.