-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdx.tcl
422 lines (343 loc) · 11.7 KB
/
dx.tcl
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
## Read an opendx file into memory and manipulate the data
## Useful for volmap extraction and manipulation
# object 1 class gridpositions counts nx ny nz
# origin xmin ymin zmin
# delta hx 0.0 0.0
# delta 0.0 hy 0.0
# delta 0.0 0.0 hz
# object 2 class gridconnections counts nx ny nz
# object 3 class array type double rank 0 times n
# u(0,0,0) u(0,0,1) u(0,0,2)
# ...
# u(0,0,nz-3) u(0,0,nz-2) u(0,0,nz-1)
# u(0,1,0) u(0,1,1) u(0,1,2)
# ...
# u(0,1,nz-3) u(0,1,nz-2) u(0,1,nz-1)
# ...
# u(0,ny-3,nz-3) u(0,ny-2,nz-2) u(0,ny-1,nz-1)
# u(1,0,0) u(1,0,1) u(1,0,2)
# ...
# attribute "dep" string "positions"
# object "regular positions regular connections" class field
# component "positions" value 1
# component "connections" value 2
# component "data" value 3
## Read Opendx file
proc read_dx {fname data} {
upvar 1 $data dx_data
## Unset array holding any current dx data
catch {[array unset dx_data]}
##open file
set fid [open $fname "r"]
array set dx_data {}
set temp {}
## Loop over file, read line-by-line, match
while {[gets $fid line] >= 0} {
switch -regex $line {
## Comments
{\#} {
lappend dx_data(comments) $line
}
object*1* {
scan $line "object 1 class gridpositions counts %i %i %i"\
dx_data(nx) dx_data(ny) dx_data(nz)
continue
}
origin* {
scan $line "origin %e %e %e"\
dx_data(xmin) dx_data(ymin) dx_data(zmin)
continue
}
delta* {
scan $line "delta %e %e %e" hx hy hz
lappend delta $hx $hy $hz
continue
}
{[-+]?([0-9]+\.?[0-9]*|\.[0-9]+)([eE][-+]?[0-9]+)?} {
## Look for lines starting with some floatingpoints
scan $line "%e %e %e" u1 u2 u3
lappend temp $u1 $u2 $u3
continue
}
default {continue}
}
}
close $fid
set dx_data(hx) [lindex $delta 0]
set dx_data(hy) [lindex $delta 4]
set dx_data(hz) [lindex $delta 8]
## Transpose u so that x dimension
## changes fastest, then y then z.
## Convert from kT/e =0.0256 V
upvar 0 dx_data(nx) nx
upvar 0 dx_data(ny) ny
upvar 0 dx_data(nz) nz
set nyz [expr {$ny * $nz}]
for {set k 0} {$k < $nz} {incr k} {
for {set j 0} {$j < $ny} {incr j} {
for {set i 0} {$i < $nx} {incr i} {
set idx [expr {$i * $nyz + $j * $nz + $k}]
#lappend dx_data(u) [expr {[lindex $temp $idx] * 0.0256}]
lappend dx_data(u) [lindex $temp $idx]
}
}
}
#puts "Read [llength $temp] potential values"
#puts "Read [llength $dx_data(u)] potential values"
unset temp
return -code ok
}
## Average along a 2D contour
proc ex_dx_avg {data {along X} {fname stdout}} {
## Load the math library if we need it
if {[llength [array names ::env VMD*]] == 0} {
if {[catch {load $::env(HOME)/pkg/lib/libtm.so} msg]} {
puts "error: can't load libtm library: $msg"
return 0
}
}
upvar $data dx_data
set fid "stdout"
if {$fname != "stdout"} {
if {[catch {open $fname w} fid]} {
puts "Unable to open $fname for writing"
return 0
}
}
## Create temporary references to data
## e.g. upvar 0 dx_data(nx) nx
foreach x [array names dx_data *] {
upvar 0 dx_data($x) $x
}
switch -exact $along {
x -
X {
set pot {}; set grid {}
set ndim1 $nz; set ndim2 $ny
## Grid
for {set i 0} {$i < $nz} {incr i} {
set off [expr {$i * $nx * $ny}]
for {set j 0} {$j < $ny} {incr j} {
lappend grid [expr {$ymin + $j * $hy}] [expr {$zmin + $i * $hz}]
}
}
## Average over dimension
for {set k 0} {$k < $nx} {incr k} {
set temp {}
for {set i 0} {$i < $nz} {incr i} {
set off [expr {$i * $nx * $ny}]
for {set j 0} {$j < $ny} {incr j} {
lappend temp [lindex $u [expr {$off + $j * $nx + $k}]]
}
}
lappend pot $temp
}
set pot_avg [vecadd {*}$pot]
set pot_avg [vecscale [expr {1.0 / $nx}] $pot_avg]
}
y -
Y {
set pot {}; set grid {}
set ndim1 $nz; set ndim2 $nx
## Grid
for {set i 0} {$i < $nz} {incr i} {
set off [expr {$i * $nx * $ny}]
for {set j 0} {$j < $nx} {incr j} {
lappend grid [expr {$xmin + $j * $hx}] [expr {$zmin + $i * $hz}]
}
}
## Average over dimension
for {set k 0} {$k < $ny} {incr k} {
set temp {}
set offset [expr {$k * $nx}]
for {set i 0} {$i < $nz} {incr i} {
set off [expr {$i * $nx * $ny}]
for {set j 0} {$j < $nx} {incr j} {
lappend temp [lindex $u [expr {$offset + $off + $j}]]
}
}
lappend pot $temp
}
set pot_avg [vecadd {*}$pot]
set pot_avg [vecscale [expr {1.0 / $ny}] $pot_avg]
}
z -
Z {
set pot {}; set grid {}
set ndim1 $ny; set ndim2 $nx
## Grid
for {set i 0} {$i < $ny} {incr i} {
set off [expr {$i * $nx}]
for {set j 0} {$j < $nx} {incr j} {
lappend grid [expr {$xmin + $j * $hx}] [expr {$ymin + $i * $hy}]
}
}
## Average over dimension
for {set k 0} {$k < $nz} {incr k} {
set offset [expr {$k * $nx * $ny}]
set temp {}
for {set i 0} {$i < $ny} {incr i} {
set off [expr {$i * $nx}]
for {set j 0} {$j < $nx} {incr j} {
lappend temp [lindex $u [expr {$offset + $off + $j}]]
}
}
lappend pot $temp
}
set pot_avg [vecadd {*}$pot]
set pot_avg [vecscale [expr {1.0 / $nz}] $pot_avg]
}
default {puts "unknown option $along"; return -code error }
}
## Output into something gnuplot understands
set i 0
foreach p $pot_avg {x y} $grid {
puts $fid [format "%10.4g %10.4g %10.4g" $x $y $p]
incr i
if {[expr {$i % $ndim2}] == 0} {puts -nonewline $fid "\n"}
}
if {$fname != "stdout"} {close $fid}
return -code ok
}
## Extract 2D contour from dx dataset for a particular slice
proc ex_dx {data {along X} {fname stdout} {slice_offset 0.5}} {
upvar $data dx_data
if {[expr {$slice_offset > 1 || $slice_offset < 0}]} {
return -code error
}
set fid "stdout"
if {$fname != "stdout"} {
if {[catch {open $fname w} fid]} {
puts "Unable to open $fname for writing"
return 0
}
}
## Create temporary references to data
## e.g. upvar 0 dx_data(nx) nx
foreach x [array names dx_data *] {
upvar 0 dx_data($x) $x
}
set pot {}
set grid {}
switch -exact $along {
x -
X {
set ndim1 $nz; set ndim2 $ny
set iso [expr {int($nx * $slice_offset)}]
for {set i 0} {$i < $nz} {incr i} {
set off [expr {$i * $nx * $ny}]
for {set j 0} {$j < $ny} {incr j} {
lappend pot [lindex $u [expr {$off + $j * $nx + $iso}]]
lappend grid [expr {$ymin + $j * $hy}] [expr {$zmin + $i * $hz}]
}
}
}
y -
Y {
set ndim1 $nz; set ndim2 $nx
set iso [expr {int($ny * $slice_offset)}]
set offset [expr {$iso * $nx}]
for {set i 0} {$i < $nz} {incr i} {
set off [expr {$i * $nx * $ny}]
for {set j 0} {$j < $nx} {incr j} {
lappend pot [lindex $u [expr {$offset + $off + $j}]]
lappend grid [expr {$xmin + $j * $hx}] [expr {$zmin + $i * $hz}]
}
}
}
z -
Z {
set ndim1 $ny; set ndim2 $nx
set iso [expr {int($nz * $slice_offset)}]
set offset [expr {$iso * $nx * $ny}]
for {set i 0} {$i < $ny} {incr i} {
set off [expr {$i * $nx}]
for {set j 0} {$j < $nx} {incr j} {
lappend pot [lindex $u [expr {$offset + $off + $j}]]
lappend grid [expr {$xmin + $j * $hx}] [expr {$ymin + $i * $hy}]
}
}
}
default {puts "unknown option $along"; return -code error }
}
## Output into something gnuplot understands
set i 0
foreach p $pot {x y} $grid {
puts $fid [format "%10.4g %10.4g %10.4g" $x $y $p]
incr i
if {[expr {$i % $ndim2}] == 0} {puts -nonewline $fid "\n"}
}
if {$fname != "stdout"} {close $fid}
return -code ok
}
## Extract 1D plot from dx datax
proc ex_dx_1D {data {along X} {offset_dim1 0.5} {offset_dim2 0.5}} {
upvar $data dx_data
## Make sure offsets along dim1 and 2 are [0,1]
if {[expr {$offset_dim1 > 1 || $offset_dim1 < 0\
|| $offset_dim2 > 1 || $offset_dim2 < 0 }]} {
return -code error
}
## Create temporary references to data
## e.g. upvar 0 dx_data(nx) nx
foreach x [array names dx_data *] {
upvar 0 dx_data($x) $x
}
set pot {}
set grid {}
switch -exact $along {
x -
X {
set iso1 [expr {int($nz * $offset_dim1)}]
set iso2 [expr {int($ny * $offset_dim2)}]
set off1 [expr {$iso1 * $nx * $ny}]
set off2 [expr {$iso2 * $nx}]
for {set j 0} {$j < $nx} {incr j} {
lappend pot [lindex $u [expr {$off1 + $off2 + $j}]]
lappend grid [expr {$xmin + $j * $hx}]
}
}
y -
Y {
set iso1 [expr {int($nx * $offset_dim1)}]
set iso2 [expr {int($nz * $offset_dim2)}]
set off [expr {$iso2 * $nx * $ny}]
for {set j 0} {$j < $ny} {incr j} {
lappend pot [lindex $u [expr {$off + $j * $nx + $iso1}]]
lappend grid [expr {$ymin + $j * $hy}]
}
}
z -
Z {
set iso1 [expr {int($nx * $offset_dim1)}]
set iso2 [expr {int($ny * $offset_dim2)}]
for {set i 0} {$i < $nz} {incr i} {
set off [expr {$i * $nx * $ny}]
lappend pot [lindex $u [expr {$off + $iso2 + $iso1}]]
lappend grid [expr {$zmin + $i * $hz}]
}
}
default {puts "unknown option $along"; return -code error }
}
## Output into something gnuplot understands
foreach p $pot x $grid {
puts [format " %10.4g %10.4g" $x $p]
}
return -code ok
}
## Only run from command line
if {![info exists env(VMDDIR)]} {
## Testing - Contours
if {0} {
lassign $argv fname along offset
read_dx $fname dx
ex_dx dx $along $offset
}
## Testing - 1D
if {0} {
lassign $argv fname along offset1 offset2
read_dx $fname dx
ex_dx_1D dx $along $offset1 $offset2
}
## Average along a slice
}