summaryrefslogtreecommitdiff
path: root/ckt0.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ckt0.sh')
-rw-r--r--ckt0.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ckt0.sh b/ckt0.sh
index 3b62d92..b347662 100644
--- a/ckt0.sh
+++ b/ckt0.sh
@@ -20,12 +20,12 @@ if [ -f /tmp/t0_est.log ] ; then {
} fi
printf "n t_est t_unc t_up_est t_up_unc t0_est t0_unc\n" | column -t
-for N in $( seq 0 1440 ) ; do
+for N in $( seq 0 4320 ) ; do
printf "${N} ${t0_est}\n" | column -t
t0_est=$( awk -f ckt0.awk ${t0_est} | tail -n2 )
#awk -f ckt0.awk
- sleep $( echo $t0_est | awk '{print( sqrt($2^2.0 + $4^2.0 + $6^2.0 + rand()^2.0)%30.0 )}' )
+ sleep $( echo $t0_est | awk '{print( sqrt($2^2.0 + $4^2.0 + $6^2.0 + rand()^2.0)%120.0 )}' )
done