Corrected gain variation results, and added a helper script to automate plotting all results.

This commit is contained in:
Luke 2018-07-23 17:55:19 -07:00
parent 5c3f6902cc
commit 581a05201e
4 changed files with 176 additions and 55 deletions

16
runAll.sh Normal file
View file

@ -0,0 +1,16 @@
#!/bin/bash
MAX_JOBS=4
echo "Starting:"
for n in 1 2 3 4 5 6; do
while [[ $MAX_JOBS -le $(jobs -l | wc -l) ]]; do sleep 0.1; done
(
echo " start $n"
./tankPlot.py -n $n -sq &>/dev/null
./tankPlot.py -n $n -rq &>/dev/null
echo " 止 end $n"
) &
done
while [[ $(jobs -l | wc -l) -gt 1 ]]; do sleep 0.1; done
echo "DONE!"