-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathani_spectra.py
executable file
·270 lines (253 loc) · 12 KB
/
ani_spectra.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
#!/usr/bin/env python3
''' AUTHOR: Neco Kriel
EXAMPLE:
ani_spectra.py
(required)
-base_path /Users/dukekriel/Documents/University/Year4Sem2/Summer-19/ANU-Turbulence-Dynamo/dyna288_Bk10
-pre_name dyna288_Bk10
(optional)
-debug False
-sub_folder spectFiles
-vis_folder visFiles
-ani_start 0
-ani_fps 40
-file_start 0
-file_end np.Inf
'''
##################################################################
## MODULES
##################################################################
import os
import argparse
import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mpl
##################################################################
## PREPARE TERMINAL/WORKSPACE/CODE
#################################################################
os.system('clear') # clear terminal window
plt.close('all') # close all pre-existing plots
mpl.style.use('classic') # plot in classic style
##################################################################
## FUNCTIONS
##################################################################
def str2bool(v):
'''
FROM:
https://stackoverflow.com/questions/15008758/parsing-boolean-values-with-argparse
'''
if isinstance(v, bool):
return v
if v.lower() in ('yes', 'true', 't', 'y', '1'):
return True
elif v.lower() in ('no', 'false', 'f', 'n', '0'):
return False
else:
raise argparse.ArgumentTypeError('Boolean value expected.')
def stringChop(var_string, var_remove):
''' stringChop
PURPOSE / OUTPUT:
Remove the occurance of the string 'var_remove' at both the start and end of the string 'var_string'.
'''
if var_string.endswith(var_remove):
var_string = var_string[:-len(var_remove)]
if var_string.startswith(var_remove):
var_string = var_string[len(var_remove):]
return var_string
def createFolder(folder_name):
''' createFolder
PURPOSE:
Create the folder passed as a filepath to inside the folder.
OUTPUT:
Commandline output of the success/failure status of creating the folder.
'''
if not(os.path.exists(folder_name)):
os.makedirs(folder_name)
print('SUCCESS: \n\tFolder created. \n\t' + folder_name)
print(' ')
else:
print('WARNING: \n\tFolder already exists (folder not created). \n\t' + folder_name)
print(' ')
def setupInfo(filepath):
''' setupInfo
PURPOSE:
Collect filenames that will be processedm and the number of these files
'''
global bool_debug_mode
## save the the filenames to process
file_names = list(filter(meetsCondition, sorted(os.listdir(filepath))))
## check files
if bool_debug_mode:
print('The files in the filepath:')
print('\t' + filepath)
print('\tthat satisfied meetCondition are the files:')
print('\t\t' + '\n\t\t'.join(file_names))
print(' ')
## return data
return [file_names, int(len(file_names)/2)]
def createFilePath(names):
''' creatFilePath
PURPOSE / OUTPUT:
Turn an ordered list of names and concatinate them into a filepath.
'''
return ('/'.join([x for x in names if x != '']))
def meetsCondition(element):
global bool_debug_mode, file_end, file_start
## accept files that look like: Turb_hdf5_plt_cnt_*(mags.dat or vels.dat)
if (element.startswith('Turb_hdf5_plt_cnt_') and (element.endswith('mags.dat') or element.endswith('vels.dat'))):
## check that the file meets the minimum file number requirement
bool_domain_upper = (int(element.split('_')[4]) >= file_start)
if bool_debug_mode:
## return the first 5 files
return bool(bool_domain_upper and (int(element.split('_')[4]) <= 5))
elif file_end != np.Inf:
## return the files in the domain [file_start, file_end]
return bool(bool_domain_upper and (int(element.split('_')[4]) <= file_end))
else:
## return every file with a number greater than file_start
return bool(bool_domain_upper)
return False
def loadData(directory):
global bool_debug_mode, var_x, var_y
filedata = open(directory).readlines() # load in data
header = filedata[5].split() # save the header
data = np.array([x.strip().split() for x in filedata[6:]]) # store all data. index: data[row, col]
if bool_debug_mode:
print('\nHeader names: for ' + directory.split('/')[-1])
print('\n'.join(header)) # print all header names (with index)
data_x = list(map(float, data[:, var_x]))
data_y = list(map(float, data[:, var_y]))
return data_x, data_y
##################################################################
## INPUT COMMAND LINE ARGUMENTS
##################################################################
global file_end, bool_debug_mode, filepath_base, file_start
ap = argparse.ArgumentParser(description='A bunch of input arguments')
## ------------------- DEFINE OPTIONAL ARGUMENTS
ap.add_argument('-debug', type=str2bool, default=False, required=False, help='Debug mode', nargs='?', const=True)
ap.add_argument('-sub_folder', type=str, default='spectFiles', required=False, help='Name of the folder where the data is stored')
ap.add_argument('-vis_folder', type=str, default='visFiles', required=False, help='Name of the plot folder')
ap.add_argument('-ani_start', type=str, default='0', required=False, help='First file number to animate')
ap.add_argument('-ani_fps', type=str, default='40', required=False, help='The animation frame rate')
ap.add_argument('-file_start', type=int, default=0, required=False, help='First file to process')
ap.add_argument('-file_end', type=int, default=np.Inf, required=False, help='Last file to process')
## ------------------- DEFINE REQUIRED ARGUMENTS
ap.add_argument('-base_path', type=str, required=True, help='Filepath to the base folder')
ap.add_argument('-pre_name', type=str, required=True, help='Name of figures')
## ---------------------------- OPEN ARGUMENTS
args = vars(ap.parse_args())
## ---------------------------- SAVE PARAMETERS
bool_debug_mode = args['debug'] # enable/disable debug mode
file_start = args['file_start'] # starting processing frame
file_end = args['file_end'] # the last file to process
ani_start = args['ani_start'] # starting animation frame
ani_fps = args['ani_fps'] # animation's fps
## ---------------------------- SAVE FILEPATH PARAMETERS
filepath_base = args['base_path'] # home directory
folder_vis = args['vis_folder'] # subfolder where animation and plots will be saved
folder_sub = args['sub_folder'] # sub-subfolder where data is stored's name
pre_name = args['pre_name'] # name of figures
## ---------------------------- ADJUST ARGUMENTS
## remove the trailing '/' from the input filepath and plot folder
if filepath_base.endswith('/'):
filepath_base = filepath_base[:-1]
## replace any '//' with '/'
filepath_base = filepath_base.replace('//', '/')
## remove '/' from variable names
folder_vis = stringChop(folder_vis, '/')
folder_sub = stringChop(folder_sub, '/')
pre_name = stringChop(pre_name, '/')
## ---------------------------- START CODE
print('Began running the spectra plotting code in base filepath: \n\t' + filepath_base)
print('Visualising folder: ' + folder_vis)
print('Figure name: ' + pre_name)
print(' ')
##################################################################
## USER VARIABLES
##################################################################
t_eddy = 10 # number of spectra files per eddy turnover # TODO: input?
## specify which variables you want to plot
global var_x, var_y
var_x = 1 # variable: wave number (k)
var_y = 15 # variable: power spectrum
label_kin = r'$\mathcal{P}_{k_{B}=10, \mathregular{kin}}$'
label_mag = r'$\mathcal{P}_{k_{B}=10, \mathregular{mag}}$'
## set the figure's axis limits
xlim_min = 1.0
xlim_max = 1.3e+02
ylim_min = 1.0e-25
ylim_max = 4.2e-03
##################################################################
## INITIALISING VARIABLES
##################################################################
filepath_data = createFilePath([filepath_base, folder_sub])
filepath_plot = createFilePath([filepath_base, folder_vis, 'plotSpectra']) # folder where plots will be saved
file_names, num_figs = setupInfo(filepath_data)
createFolder(filepath_plot) # create folder where plots are saved
for var_iter in range(num_figs):
#################### INITIALISE LOOP
####################################
fig = plt.figure(figsize=(10, 7), dpi=100)
var_time = var_iter/t_eddy # normalise time point by eddy-turnover time
print('Processing: %0.3f%% complete'%(100 * var_iter/num_figs))
#################### LOAD DATA
##############################
print('Loading data...')
name_file_kin = 'Turb_hdf5_plt_cnt_' + '{0:04}'.format(var_iter) + '_spect_vels.dat' # kinetic file
name_file_mag = 'Turb_hdf5_plt_cnt_' + '{0:04}'.format(var_iter) + '_spect_mags.dat' # magnetic file
data_x_kin, data_y_kin = loadData(filepath_data + '/' + name_file_kin) # kinetic power spectrum
data_x_mag, data_y_mag = loadData(filepath_data + '/' + name_file_mag) # magnetic power spectrum
#################### PLOT DATA
##############################
print('Plotting data...')
line_kin, = plt.plot(data_x_kin, data_y_kin, 'k', label=label_kin) # kinetic power spectrum
line_mag, = plt.plot(data_x_mag, data_y_mag, 'k--', label=label_mag) # magnetic power spectrum
#################### LABEL and ADJUST PLOT
##########################################
print('Labelling plot...')
## scale axies
plt.xscale('log')
plt.yscale('log')
## set axis limits
plt.xlim(xlim_min, xlim_max)
plt.ylim(ylim_min, ylim_max)
## annote time (eddy tunrover-time)
title = plt.annotate(r'$t/t_{\mathregular{eddy}} = $' + u'%0.2f'%(var_time),
xy=(0.5, 0.95),
fontsize=20, color='black',
ha='center', va='top', xycoords='axes fraction')
# label plots
plt.xlabel(r'$k$', fontsize=20)
plt.ylabel(r'$\mathcal{P}$', fontsize=20)
## major grid
plt.grid(which='major', linestyle='-', linewidth='0.5', color='black', alpha=0.35)
## minor grid
plt.grid(which='minor', linestyle='--', linewidth='0.5', color='black', alpha=0.2)
#################### SAVE IMAGE
###############################
print('Saving figure...')
temp_name = createFilePath([filepath_plot, (pre_name + '_spectra={0:06}'.format(int(var_time*10)) + '.png')])
plt.savefig(temp_name)
plt.close()
print('Figure saved: ' + temp_name)
print(' ')
## create animation
filepath_input = createFilePath([filepath_plot, (pre_name + '_spectra=%06d.png')])
filepath_output = createFilePath([filepath_plot, ('../' + pre_name + '_ani_spectra.mp4')])
ffmpeg_input = ('ffmpeg -start_number ' + ani_start +
' -i ' + filepath_input +
' -vb 40M -framerate ' + ani_fps +
' -vf scale=1440:-1 -vcodec mpeg4 ' + filepath_output)
if bool_debug_mode:
print('--------- Debug: Check FFMPEG input -----------------------------------')
print('Input: \n\t' + filepath_input)
print('Output: \n\t' + filepath_output)
print('FFMPEG input: \n\t' + ffmpeg_input)
print(' ')
else:
print('Animating plots...')
os.system(ffmpeg_input)
print('Animation finished: ' + filepath_output)
# eg. To check: execute the following within the visualising folder
# ffmpeg -start_number 0 -i ./plotSlices/dyna288_spectra=%06d.png -vb 40M -framerate 40 -vf scale=1440:-1 -vcodec mpeg4 ./dyna288_ani_spectra.mp4
## END OF PROGRAM