[Swift-commit] r5592 - SwiftApps/SciColSim
wilde at ci.uchicago.edu
wilde at ci.uchicago.edu
Sun Feb 12 16:05:56 CST 2012
Author: wilde
Date: 2012-02-12 16:05:56 -0600 (Sun, 12 Feb 2012)
New Revision: 5592
Added:
SwiftApps/SciColSim/getparamtrace.sh
Log:
add script to extract a trace of beta-gamma-delta values from successive calls to evolve
Added: SwiftApps/SciColSim/getparamtrace.sh
===================================================================
--- SwiftApps/SciColSim/getparamtrace.sh (rev 0)
+++ SwiftApps/SciColSim/getparamtrace.sh 2012-02-12 22:05:56 UTC (rev 5592)
@@ -0,0 +1,8 @@
+#! /bin/sh
+
+grep 'calling evolve' swift.out | grep ,58, |
+ sed -e 's/^.*\[//' \
+ -e 's/\]$//' \
+ -e 's/,/ /g' \
+ -e 's/\(\......\)[0-9]* /\1 /g' |
+ awk '{print $3, $4, $5}' | uniq
Property changes on: SwiftApps/SciColSim/getparamtrace.sh
___________________________________________________________________
Added: svn:executable
+ *
More information about the Swift-commit
mailing list