1c4762a1bSJed Brown#!/bin/bash 2c4762a1bSJed Browntotal=64 3c4762a1bSJed Brownfor (( i=1; i<=$total; i++ )) 4c4762a1bSJed Browndo 5*bcd4bb4aSBarry Smith tend=$(echo 0.25*$i/$total | bc -l) 6*bcd4bb4aSBarry Smith echo "$tend" 7*bcd4bb4aSBarry Smith ./ex1adj -pc_type lu -ts_event_tol 1e-10 -tend "$tend" 8c4762a1bSJed Browndone 9c4762a1bSJed Brown 10c4762a1bSJed Brown./ex1fwd -pc_type lu -ts_event_tol 1e-10 -tend 0.25 11