mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
minor formatting changes
This commit is contained in:
16
bin/foamLog
16
bin/foamLog
@ -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.
|
|||||||
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
|
|||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
myEcho() {
|
myEcho() {
|
||||||
if [ "$VERBOSE" ]
|
if [ "$VERBOSE" ]
|
||||||
then
|
then
|
||||||
@ -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() {
|
|||||||
done | sort -u
|
done | sort -u
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#-----------------------------
|
#-----------------------------
|
||||||
# Main
|
# Main
|
||||||
#-----------------------------
|
#-----------------------------
|
||||||
@ -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,
|
|||||||
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
|
|||||||
|
|
||||||
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
|
|||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#-----------------------------
|
#-----------------------------
|
||||||
# Run awk program on log
|
# Run awk program on log
|
||||||
#-----------------------------
|
#-----------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user