summaryrefslogtreecommitdiff
path: root/ckt0.sh
diff options
context:
space:
mode:
authorwukong <wukong@longaeva>2026-08-10 13:15:17 -0700
committerwukong <wukong@longaeva>2026-08-10 13:15:17 -0700
commitffa420cc9ecccc284510cac40456146be5c918a9 (patch)
tree0b172f98960e80e7142a4de7c0e544cf3fc3c787 /ckt0.sh
parente53e3207c8f4a1de89712ff31b9e9abb4b3ff0ac (diff)
increased loop iterations and sleep parameters in ckt0.sh;HEADmaster
Diffstat (limited to '')
-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