diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-20 15:43:57 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-20 15:43:57 -0300 |
commit | 8ea48af56212f4a632d81e35edeebbe5c57ab424 (patch) | |
tree | caf284e8eaeac148aa340ed387ea95a5f5f50874 | |
parent | 61e845e2c747919096c80c2ad1f6f3ee420aa41b (diff) | |
download | code-8ea48af56212f4a632d81e35edeebbe5c57ab424.tar.gz code-8ea48af56212f4a632d81e35edeebbe5c57ab424.tar.bz2 code-8ea48af56212f4a632d81e35edeebbe5c57ab424.zip |
Changed filename written to use log of timestep
-rw-r--r-- | walk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -170,7 +170,7 @@ int main(int argc, char* argv[]) { Real timeSinceWrite = Δw; - std::ofstream outfile(std::to_string(N) + "_" + std::to_string(E) + "_" + std::to_string(Δt) + "_" + std::to_string(Δw) + ".dat", std::ios::out | std::ios::binary); + std::ofstream outfile(std::to_string(N) + "_" + std::to_string(E) + "_" + std::to_string(std::log10(Δt)) + "_" + std::to_string(Δw) + ".dat", std::ios::out | std::ios::binary); for (Real Jᵢ : model.J) { float Jif = Jᵢ; |