Skip to content
Snippets Groups Projects
Commit 6f1a8130 authored by Andrew Heather's avatar Andrew Heather
Browse files

minor formatting changes

parent 11752041
Branches
Tags
No related merge requests found
...@@ -58,9 +58,9 @@ cat <<LABHELP ...@@ -58,9 +58,9 @@ cat <<LABHELP
The default is to extract for all the 'Solved for' variables the initial The default is to extract for all the 'Solved for' variables the initial
residual, the final residual and the number of iterations. Additionally, a residual, the final residual and the number of iterations. Additionally, a
(user editable) database is used to extract data for standard non-solved for (user editable) database is used to extract data for standard non-solved for
variables like Courant number, execution time. variables like Courant number, and execution time.
$PROGNAME -l lists all the possible variables without extract them. $PROGNAME -l lists all the possible variables without extracting them.
The program will generate and run an awk script which writes a set of files, The program will generate and run an awk script which writes a set of files,
logs/<var>_<subIter>, for every <var> specified, for every occurrence inside logs/<var>_<subIter>, for every <var> specified, for every occurrence inside
...@@ -69,7 +69,7 @@ a time step. ...@@ -69,7 +69,7 @@ a time step.
For variables that are 'Solved for', the initial residual name will be For variables that are 'Solved for', the initial residual name will be
<var>, the final residual receive the name <var>FinalRes, <var>, the final residual receive the name <var>FinalRes,
The files are a simple xy format with the first column Time (default) The files are output in a simple xy format with the first column Time (default)
and the second the extracted values. Option -n creates single column and the second the extracted values. Option -n creates single column
files with the extracted data only. files with the extracted data only.
...@@ -114,7 +114,6 @@ do ...@@ -114,7 +114,6 @@ do
done done
myEcho() { myEcho() {
if [ "$VERBOSE" ] if [ "$VERBOSE" ]
then then
...@@ -171,6 +170,7 @@ getSolveQueryList() { ...@@ -171,6 +170,7 @@ getSolveQueryList() {
done done
} }
# getAllQueries dbFile logFile # getAllQueries dbFile logFile
# Gets all queries from database and from logfile # Gets all queries from database and from logfile
getAllQueries() { getAllQueries() {
...@@ -202,6 +202,7 @@ getAllQueries() { ...@@ -202,6 +202,7 @@ getAllQueries() {
done | sort -u done | sort -u
} }
#----------------------------- #-----------------------------
# Main # Main
#----------------------------- #-----------------------------
...@@ -314,8 +315,6 @@ myEcho "" ...@@ -314,8 +315,6 @@ myEcho ""
# Generate Awk program # Generate Awk program
#----------------------------- #-----------------------------
#-- header #-- header
rm -f $AWKFILE; touch $AWKFILE rm -f $AWKFILE; touch $AWKFILE
...@@ -355,9 +354,6 @@ function extract(inLine,columnSel,outVar, ...@@ -355,9 +354,6 @@ function extract(inLine,columnSel,outVar,
LABEL LABEL
#-- Generate code for iteration separator (increments 'Iteration') #-- Generate code for iteration separator (increments 'Iteration')
getQueries $DBFILE 'Separator' getQueries $DBFILE 'Separator'
cat <<LABSEP >> $AWKFILE cat <<LABSEP >> $AWKFILE
...@@ -418,6 +414,7 @@ cat <<LABSOLVE >> $AWKFILE ...@@ -418,6 +414,7 @@ cat <<LABSOLVE >> $AWKFILE
LABSOLVE LABSOLVE
#-- generate code to process queries #-- generate code to process queries
for queryName in $QUERYNAMES for queryName in $QUERYNAMES
do do
...@@ -438,7 +435,6 @@ do ...@@ -438,7 +435,6 @@ do
done done
#----------------------------- #-----------------------------
# Run awk program on log # Run awk program on log
#----------------------------- #-----------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment