-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmpiio2vtk.sh
executable file
·264 lines (231 loc) · 7.64 KB
/
mpiio2vtk.sh
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
#!/bin/bash
#-------------------------------------------------------------------------------
# convert files from mpi format to a PARAVIEW readable format
#-------------------------------------------------------------------------------
# usage:
# mpiio2vtk.script <NX> <NY> <NZ>
# where NX, NY, and NZ are the number of elements in each dimension
USAGE="mpiio2vtk.script <NX> <NY> <NZ>"
if [ "$1" == "" ]; then
echo "need to specify NX"
echo $USAGE
exit 1
fi
if [ "$2" == "" ]; then
echo "need to specify NY"
echo $USAGE
exit 1
fi
if [ "$3" == "" ]; then
echo "need to specify NZ"
echo $USAGE
exit 1
fi
NX=$1
NY=$2
NZ=$3
# Reset
Color_Off='\e[0m' # Text Reset
# Pretty colors
# Regular Colors
Black='\e[0;30m' # Black
Red='\e[0;31m' # Red
Green='\e[0;32m' # Green
Yellow='\e[0;33m' # Yellow
Blue='\e[0;34m' # Blue
Purple='\e[0;35m' # Purple
Cyan='\e[0;36m' # Cyan
White='\e[0;37m' # White
echo -e $Green "****************************" $Color_Off
echo -e $Green "** mpiio2vtk **" $Color_Off
echo -e $Green "****************************" $Color_Off
# make directory
echo "this script will use the subdirectory ./vtk/ asput directory."
echo -e $Cyan "any key to continue" $Color_Off
read dummy
ask_to_skip="yes"
if [ -d vtk/ ]
then
echo "subdirectory already exists"
echo -e $Cyan "do you want to clean it? (y/[n])" $Color_Off
read ask
if [ "$ask" == "y" ]
then
echo -e ${Red} "deleting" ${Color_Off}
rm -r vtk
mkdir vtk
ask_to_skip="no"
fi
else
echo "creating subdirectory..."
mkdir vtk
ask_to_skip="no"
fi
# ask what to do with existing *.vtk files
if [ "${ask_to_skip}" == "yes" ]; then
echo -e ${Cyan} "If a vtk file already exists, do you want to skip it? ([y],n)" ${Color_Off}
read skip
if [ "${skip}" == "" ]; then
skip="y"
fi
else
skip="y"
fi
# ask what mode to use
echo "You can either save all variables to ONE *.vtk file"
echo "or you can save each scalar to one file and all vector components to one file"
echo -e ${Cyan} "Do you want to use the several vtk-files mode? ([y],n)" ${Color_Off}
read mode
if [ "${mode}" == "" ]; then
mode="y"
fi
# ask what file ending to expect
echo -e ${Cyan} "What type of source files to you want to convert, *.binary or *.mpiio? (b,[m])" ${Color_Off}
read ending
if [ "${ending}" == "b" ]; then
ending="binary"
else
ending="mpiio"
fi
# find prefixes
# look through all the files whose names end with *.mpiio and put
# them in the items array, as well as in the list, where file names
# are separated with colons. N is the number of items in the list.
N=0
lastp=""
for F in `ls *.${ending}`
do
# as is the file name with everything after
p=$(echo ${F} | sed 's/_[^_]*$//')_
p=${p%%_}
if [ "$p" != "$lastp" ] ; then
lastp=$p
items[$N]=$p
N=$((N+1))
fi
done
echo -e "prefixes : " ${Blue} ${items[@]} ${Color_Off}
# Begin conversion
if [ "${mode}" == "n" ]
then
echo -e ${Cyan} "-----------------------" ${Color_Off}
echo -e ${Cyan} "ONE vtk file mode" ${Color_Off}
echo -e ${Cyan} "-----------------------" ${Color_Off}
lead_prefix=${items[0]}"_"
for file in ${lead_prefix}*.${ending}
# note: I suppose that you saved the mask
do
base=${file%%.${ending}} # remove trailing .mpiio
base=${base##${lead_prefix}} # remove leading ux_
# note program also works if one or more files are not present
if [ ${skip}=="y" ] && [ -f ./vtk/para_${base}.vtk ] ; then
echo "file ./vtk/para_"${base}".vtk exists. skipping..."
else
convert_mpiio2vtk_ALL ./vtk/para_${base}.vtk ${NX} ${NY} ${NZ} "ux_"${base}"."${ending} "uy_"${base}"."${ending} "uz_"${base}"."${ending} "vorx_"${base}"."${ending} "vory_"${base}"."${ending} "vorz_"${base}"."${ending} "p_"${base}"."${ending} "mask_"${base}"."${ending} "usx_"${base}"."${ending} "usy_"${base}"."${ending} "usz_"${base}"."${ending}
fi
done
else
echo -e ${Cyan} "-----------------------" ${Color_Off}
echo -e ${Cyan} "SEVERAL vtk files mode " ${Color_Off}
echo -e ${Cyan} "-----------------------" ${Color_Off}
# indentify vectors and scalars from the prefixes
# look through all prefixed in array items[] if a prefix ends with
# "x", it's assumed to be the x-component of a vector. the next 2
# indices then will contain "y" and "z" component. we remove them
# from the list items[] the prefix ending with "x" is then
# converted to its root (remove the trailing "x") and added to the
# list of vectors[] otherwise, we add the prefix to the list of
# scalars[]
N2=0
N3=0
for (( i=0; i<N; i++ ))
do
# the prefix
p=${items[i]}
if [ "${p:${#p}-1:${#p}}" == "x" ]; then
# is the last char an "x"? yes -> delete following entries
unset items[i+1]
# delete next two entrys (with y and z ending, hopefully)
unset items[i+2]
# the trailing "x" indicates a vector
vectors[N2]=${p%%x} # collect entries for vector fields
N2=$((N2+1))
else
# no? it's a scalar.
if [ "$p" != "" ]; then # note empty values are not scalars (they are uy, uz but unset because of ux)
scalars[N3]=${p}
N3=$((N3+1))
fi
fi
done
# print summary
echo -e "found scalars: " ${Cyan} ${scalars[@]} ${Color_Off}
echo -e "found vectors: " ${Cyan} ${vectors[@]} ${Color_Off}
echo -e $Cyan "any key to continue" $Color_Off
read dummy
# --------------------------
# SCALARS
# --------------------------
for (( i=0; i<N3; i++ ))
do
# the prefix
p=${scalars[i]}
# find the files that start with the prefix
FLIST=$( ls ${p}*.${ending} )
# loop over the files starting with the prefix and process
for F in ${FLIST}
do
vtk=${F%%${ending}}vtk
# check if target file exists in vtk/
if [ -f vtk/${vtk} ]; then
# if you shouldn't skip it, overwrite it.
if [ "${skip}" != "y" ]; then
echo -e $Green "file vtk/"${vtk} "exists, overwriting." $Color_Off
convert_mpiio2vtk ${NX} ${NY} ${NZ} -scalar ${F}
# currently, convert_mpiio2vtk creates the vtk file in the same directory. so move it.
mv ${vtk} vtk/
else
# file exists and no overwriting.
echo -e $Green "file vtk/"${vtk} "exists, skipping." $Color_Off
fi
else
# file does not exist, go for it.
convert_mpiio2vtk ${NX} ${NY} ${NZ} -scalar ${F}
# currently, convert_mpiio2vtk creates the vtk file in the same directory. so move it.
mv ${vtk} vtk/
fi
done
done
# VECTORS
for (( i=0; i<N2; i++ ))
do
# the prefix
p=${vectors[i]}
# find the files that start with the prefix + x-component
FLIST=$( ls ${p}x*.${ending} )
# loop over the files starting with the prefix and process with raw2vdf
for F in ${FLIST}
do
vtk=${p}${F##${p}x} # F=vorx_00010.mpiio vtk=vor_00010.mpiio
vtk=${vtk%%${ending}}vtk # vtk=vor_00010.vtk
# check if target file exists in vtk/
if [ -f vtk/${vtk} ]; then
# if you shouldn't skip it, overwrite it.
if [ "${skip}" != "y" ]; then
echo -e $Green "file vtk/"${vtk} "exists, overwriting." $Color_Off
convert_mpiio2vtk ${NX} ${NY} ${NZ} -vector ${F} ${p}y${F##${p}x} ${p}z${F##${p}x}
# currently, convert_mpiio2vtk creates the vtk file in the same directory. so move it.
mv ${vtk} vtk/
else
# file exists and no overwriting.
echo -e $Green "file vtk/"${vtk} "exists, skipping." $Color_Off
fi
else
# file does not exist, go for it.
convert_mpiio2vtk ${NX} ${NY} ${NZ} -vector ${F} ${p}y${F##${p}x} ${p}z${F##${p}x}
# currently, convert_mpiio2vtk creates the vtk file in the same directory. so move it.
mv ${vtk} vtk/
fi
done
done
fi