From 8ea48af56212f4a632d81e35edeebbe5c57ab424 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Thu, 20 Mar 2025 15:43:57 -0300 Subject: Changed filename written to use log of timestep --- walk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/walk.cpp b/walk.cpp index 0e9675b..ded191a 100644 --- a/walk.cpp +++ b/walk.cpp @@ -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ᵢ; -- cgit v1.2.3-70-g09d2