From 6a7fee647f78052ec73c425c1efd9498714c9cd1 Mon Sep 17 00:00:00 2001 From: James E McClure Date: Tue, 8 Sep 2015 16:28:27 -0400 Subject: [PATCH] Forgot to print quantity --- common/TwoPhase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/TwoPhase.cpp b/common/TwoPhase.cpp index 4dc0b912..604533e2 100644 --- a/common/TwoPhase.cpp +++ b/common/TwoPhase.cpp @@ -1193,7 +1193,7 @@ void TwoPhase::PrintAll(int timestep) fprintf(TIMELOG,"%.5g %.5g %.5g %.5g %.5g %.5g ", Gws_global(0),Gws_global(1),Gws_global(2),Gws_global(3),Gws_global(4),Gws_global(5)); // orientation of ws interface fprintf(TIMELOG,"%.5g %.5g %.5g ",trawn_global, trJwn_global, trRwn_global); // Trimmed curvature - fprintf(TIMELOG,"%.5g %.5g %.5g\n",euler_global, Kn_global, Jn_global, An_global); // minkowski measures + fprintf(TIMELOG,"%.5g %.5g %.5g %.5g\n",euler_global, Kn_global, Jn_global, An_global); // minkowski measures fflush(TIMELOG); } }