Here’s a quick way to sort through Uintah RT failures:
- Go to the results directory (i.e. opt/local_RT)
- cd Wasatch-results (or whichever component you want to look at)
- grep -rnw . -e “Linf” | awk ‘$8 > 1e-11 {print $1 $8}’
This looks at the Linf norm and reports which files have norms > 1e-11 and prints said norm.
You can certainly add more verbosity to the awk.
0 Comments