MPAS-JEDI
plot_cost_grad.py
Go to the documentation of this file.
1 #!/usr/bin/python
2 import matplotlib
3 matplotlib.use('AGG')
4 import matplotlib.cm as cm
5 import matplotlib.colors as colors
6 import matplotlib.pyplot as plt
7 from mpl_toolkits.axes_grid1 import make_axes_locatable
8 import matplotlib.axes as maxes
9 import numpy
10 import numpy as np
11 import os
12 import fnmatch
13 
14 '''
15 Directory Structure:
16 test/
17  ├── testoutput/
18  │   ├── 3dvar.run
19  │   ├── 3denvar_2stream_bumploc_unsinterp.run
20  │   ├── ...
21  ├── graphics/
22  │   ├── plot_cost_grad.py
23  │   ├── ...
24 '''
25 
26 VAR1=os.getenv('VAR1','Quadratic cost function')
27 #VAR2=os.getenv('VAR2','Gradient reduction')
28 VAR2=os.getenv('VAR2','Norm reduction')
29 file_name = 'costgrad.txt' # output from grep and paste command
30 
31 def integers(a, b):
32  return list(range(a, b+1))
33 
34 def readdata():
35 
36  dalogfiles = []
37  for files in os.listdir('../testoutput/'):
38  if fnmatch.fnmatch(files, '?d*.run'):
39  dalogfiles.append('../testoutput/'+files)
40  #print(dalogfiles)
41 
42  for dalogfile in dalogfiles:
43  print('check dalogfile=',dalogfile,dalogfile[14:][:-4])
44  file_name = 'costgrad_'+dalogfile[14:][:-4]+'.txt'
45 
46  exists = os.path.isfile(file_name)
47  if exists:
48  os.system('rm '+ file_name)
49 
50  #grep iterations and cost function.
51  cmd = 'grep "'+VAR1+': J " '+ dalogfile +' \
52  | grep -o -P "(\‍(\K[^\‍)]+)|(=\K.+)" |paste -d " " - - > cost.txt'
53  os.system(cmd)
54 
55  cmd = 'grep "'+VAR2+'" '+ dalogfile +' \
56  | grep -o -P "=\K.+" > gradorig.txt'
57  os.system(cmd)
58 
59  nLineCost = int(os.popen('wc -l < cost.txt').read())
60  nLineGrad = int(os.popen('wc -l < gradorig.txt').read())
61 
62  #some outputs included GMRESR, remove 'Gradient reduction' or 'Norm reduction' from it.
63  if nLineCost != nLineGrad:
64  cmd = 'head -n '+str(nLineCost)+' gradorig.txt > grad.txt'
65  else:
66  cmd = 'cp gradorig.txt grad.txt'
67  os.system(cmd)
68  #combine cost and grad:
69  cmd = 'paste cost.txt grad.txt > '+ file_name +' ; rm cost.txt grad.txt gradorig.txt'
70  os.system(cmd)
71 
72  alist = open(file_name).read().split()
73  iters = numpy.asarray(alist[0::3])
74  cost = numpy.asarray(alist[1::3]).astype(np.float)
75  grad = numpy.asarray(alist[2::3]).astype(np.float)
76  forx=integers(1,len(iters))
77  plot(forx,cost,iters,VAR1,dalogfile[14:])
78  plot(forx,grad,iters,VAR2,dalogfile[14:])
79 
80 def plot(forx,value,iters,VAR,expname):
81  fig, ax1 = plt.subplots()
82 
83  ax1.set_xlabel('Iterations',fontsize=16)
84  ax1.set_xticks(forx[::2])
85  ax1.set_xticklabels(iters.astype(np.int)[::2]) #,rotation=45)
86  ax1.set_ylabel('%s'%VAR,fontsize=16)
87  plt.plot(forx,value,'r.-')
88  plt.ticklabel_format(style='sci', axis='y', scilimits=(0,4))
89  plt.grid(True)
90  plt.savefig('%s_%s.png'%(VAR[:4],expname[:-4]),dpi=200,bbox_inches='tight')
91  plt.close()
92 
93 def main():
94  readdata()
95 
96 if __name__ == '__main__': main()
def plot(forx, value, iters, VAR, expname)
def integers(a, b)