forked from CY-Zhang/MultisliceCPP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstemslic.cpp
More file actions
885 lines (717 loc) · 30.2 KB
/
Copy pathstemslic.cpp
File metadata and controls
885 lines (717 loc) · 30.2 KB
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
/* *** stemslic(e).cpp ***
------------------------------------------------------------------------
Copyright 1998-2013 Earl J. Kirkland
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
---------------------- NO WARRANTY ------------------
THIS PROGRAM IS PROVIDED AS-IS WITH ABSOLUTELY NO WARRANTY
OR GUARANTEE OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
IN NO EVENT SHALL THE AUTHOR BE LIABLE
FOR DAMAGES RESULTING FROM THE USE OR INABILITY TO USE THIS
PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR
THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH
ANY OTHER PROGRAM).
------------------------------------------------------------------------
stemslic takes one argument that is the number of threads to use in
FFTW. If no argument is prsent then it defaults to NTHREADS_FFTW=4.
ANSI-C and TIFF version
this version uses FFTW 3 (net about a factor of 2X faster)
FFTW choses an optimum form of the FFT at run time so there
is some variation in execution speed depending on what else
the CPU is doing during this planning stage
see: www.fftw.org
on Windows file libfftw3f-3.dll must be in the PATH
on Linux build as:
gcc -O -o stemslic stemslic.c slicelib.o cfpix.o
tiffsubs.o -lfftw3f_threads -lfftw3f -lm
Calculate STEM image using repetitive multislice
this file is formatted for a tab size of 4 characters
rewritten in C, summer 1995 E. Kirkland
removed declaration of unused var. 1-june-1995 ejk
switch to TIFF file I/O 26-may-1996 ejk
modified pointer arithmetic in STEMsignal() 22-jun-1996 ejk
move layer expansion out of here and into atompot 4-aug-1996 ejk
removed commas from input format and fixed minor bugs in
image mode 21-jul-1997 ejk
small cosmetic changes 17-jan-1998 ejk
add astigmatism 4-feb-1998 ejk
fix minor bug in astigmatism input, 1D comments
and bad position error message 20-jul-1998 ejk
updated memory allocator functions 14-nov-1999 ejk
change void main() to int main() for better portability
22-jan-2000 ejk
update data type of nxl,nyl to be consistent with new tiffsubs
18-jul-2007 ejk
convert to GPL 3-jul-2008 ejk
start conversion to FFTW3 on 8-mar-2010 ejk
add Cs5 on 14-mar-2010 ejk
get return value of scanf() to remove warnings from gcc 4.4
14-mar-2010 ejk
add FFTW multithreaded calls 17-mar-2010 ejk
fix opposite sign convention in fftw 21-mar-2010 ejk
add eleapsed time clock (for multithreading) 16-apr-2010 ejk
convert to C++ and floatTIFF.cpp 22-apr-2012 ejk
convert to cfpix/fftw class from raw fftw 14-oct-2012 to 30-oct-2012 ejk
update Cs3,5 parameters saved to file to be in Angstroms
to be consistent with other programs 30-apr-2013 ejk
*/
#include <cstdio> /* ANSI C libraries used */
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <ctime>
#include "cfpix.hpp" /* complex image handler with FFT */
#include "slicelib.hpp" /* misc. routines for multislice */
#include "floatTIFF.hpp" /* file I/O routines in TIFF format */
const float BW= (2.0F/3.0F); /* antialiasing bandwidth limit factor */
const double ABERR= 1.0e-5; /* max error for a,b */
const int NSMAX= 1000; /* maximum number of total slices */
const int NCMAX= 132; /* max number of characters per line */
const int NCINMAX= 500; /* max number of characters in stacking spec */
const int NLMAX= 52; /* maximum number of layers */
/* global specimen and probe parameters to share */
float **propxr, **propxi; /* complex propagator vs x */
float **propyr, **propyi; /* complex propagator vs y */
cfpix probe, *trans; // complex probe and transmission functions
/* default number of threads for FFTW to use */
const int NTHREADS_FFTW= 4;
int nx, ny, nxprobe, nyprobe, nslice, ndetect;
int *layer;
float *kx, *ky, *kx2, *ky2, *kxp, *kyp, *kxp2, *kyp2;
float *rmin, *rmax;
double ax, by, wavlen, k2maxp, Cs3, Cs5 ,df,apert1, apert2, pi;
float dfa2, dfa2phi, dfa3, dfa3phi; /* astigmatism parameters */
double *almin, *almax, *k2max, *k2min, *detect;
/* define functions at end of this file (i.e. so main can be 1st) */
void STEMsignal( double x, double y, double *detect, double* sum );
int main( int argc, char *argv[ ] )
{
//char datetime[24];
char *cin, *cin2, **filein, **fileout;
const char version[] = "30-apr-2013 (ejk)";
int ix, iy, nx2, ny2, i, islice, idetect, ip,
nout, nxout, nyout, ilayer, nlayer, l1d,
npix, ns, NPARAM, nthreads;
long nbeamt, nbeamp, nxl, nyl;
float *x2, *y2, *param, *cz, ***pixr;
double scale, v0, vz, mm0, x,y, ax2,by2, sum, k2, w,
tctx, tcty, xi,xf, yi,yf, dx, dy, cztot, totmin, totmax,
ctiltx, ctilty, CPUtime, etime;
time_t InitTime, EndTime, pt;
floatTIFF myFile;
FILE *fp;
/* set up symbolic mapping
this must be the same as in parlay */
const char cname[] =
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
/* find number of threads option */
if( argc < 2 ) nthreads = NTHREADS_FFTW;
else ns = sscanf( argv[1], "%d", &nthreads );
/* start by announcing version etc. */
printf("stemslic(e) version dated %s\n", version );
printf("Copyright (C) 1998-2012 Earl J. Kirkland\n" );
printf( "This program is provided AS-IS with ABSOLUTELY NO WARRANTY\n "
" under the GNU general public license\n\n" );
printf("perform STEM multislice using FFTW with %d thread(s)\n", nthreads );
printf( "\n" );
pi = 4.0 * atan( 1.0 );
/* read in the layer stacking sequence and parse it
multiple line continuation is signified with a trailing '-'
a trailing '/echo' displays the results of parsing
*/
cin2 = cin = (char*) malloc( NCINMAX * sizeof( char ) );
if( cin == NULL ) {
printf("cannot allocate stacking sequence storage.\n");
exit(0);
}
for(i=0; i<NCINMAX; i++) cin[i] = 0;
printf("Type in the stacking sequence :\n");
do {
ns = scanf("%s", cin2 );
}while( ( (cin2=strchr(cin,'-')) != NULL )
&& ( strlen(cin) < (NCINMAX-80) ) );
layer = (int*) malloc1D( NSMAX, sizeof(int), "layer" );
if( parlay( cin, layer, NSMAX, NLMAX, &nslice, 1)
< 0 ) exit( 0 );
/* Find total number of layers */
nlayer = 0;
for( i=0; i<nslice; i++)
if( layer[i] > nlayer ) nlayer = layer[i];
nlayer += 1;
/* Get input file name etc. */
printf("\nType in the name of %d atomic potential layers :\n\n",
nlayer);
filein = (char**) malloc2D( nlayer, NCMAX, sizeof(char), "filein" );
for( i=0; i<nlayer; i++) {
printf("Name of file with input atomic potential %c :\n",
cname[i]);
ns = scanf("%s", filein[i] );
}
/* get more parameter etc */
printf("STEM probe parameters, V0(kv), Cs3(mm), Cs5(mm),"
" df(Angstroms), apert1,2(mrad) :\n");
ns = scanf("%lg %lg %lg %lg %lg %lg",
&v0, &Cs3, &Cs5, &df, &apert1, &apert2);
printf( "Magnitude and angle of 2-fold astigmatism"
" (in Ang. and degrees):\n");
ns = scanf( "%f %f", &dfa2, &dfa2phi);
dfa2phi = (float) (dfa2phi * pi /180.0F);
printf( "Magnitude and angle of 3-fold astigmatism"
" (in Ang. and degrees):\n");
ns = scanf( "%f %f", &dfa3, &dfa3phi);
dfa3phi = (float) (dfa3phi * pi /180.0F);
mm0 = 1.0F + v0/511.0F;
wavlen = wavelength( v0 );
printf("wavelength = %f Angstroms\n", wavlen);
if( apert1 > apert2 ) {
printf("Bad probe aperture specification.\n");
printf("apert1 must be less than apert2.\n");
printf("apert1=%f, apert2 = %f\n", apert1, apert2);
exit( 0 );
}
printf("Size of probe wavefunction"
" Nx,Ny in pixels : \n");
ns = scanf("%d %d", &nxprobe, &nyprobe);
printf("Crystal tilt x,y in mrad. :\n");
ns = scanf( "%lf %lf", &ctiltx, &ctilty );
ctiltx = ctiltx * 0.001;
ctilty = ctilty * 0.001;
l1d = askYN("Do you want to calculate a 1D line scan");
printf("Number of detector geometries :\n");
do ns = scanf( "%d", &ndetect );
while (ndetect <= 0);
almin = (double*) malloc1D( ndetect, sizeof(double), "almin" );
almax = (double*) malloc1D( ndetect, sizeof(double), "almax" );
fileout = (char**) malloc2D( ndetect, NCMAX, sizeof(char), "fileout" );
for( idetect=0; idetect<ndetect; idetect++) {
if( (l1d == 1) && (idetect==0) ) {
printf("Name of file to get output"
" of 1D STEM multislice result :\n");
ns = scanf("%s", fileout[idetect]);
}
printf("Detector %3d: Type, min,max angles(mrad)"
" of collector :\n", idetect+1);
ns = scanf("%lg %lg",
&almin[idetect], &almax[idetect] );
if( l1d == 0 ) {
printf("Name of file to get output"
" of result for this detector:\n");
ns = scanf("%s", fileout[idetect]);
}
} /* end for(idetect=.. */
if( l1d == 1 ) {
printf("xi, xf, yi, yf, nout :\n");
ns = scanf("%lg %lg %lg %lg %d", &xi, &xf, &yi, &yf, &nout);
}else {
printf("xi,xf,yi,yf, nxout,nyout :\n");
ns = scanf("%lg %lg %lg %lg %d %d",
&xi, &xf, &yi, &yf, &nxout, &nyout);
}
/* read in atomic potential and specimen parameters
and calculate specimen transmission function
for a single slice in transr,i
*/
CPUtime = cputim(); /* get initial CPU time */
InitTime = time( &pt ); /* get initial wall time (test multithreading) */
NPARAM = myFile.maxParam();
param = (float*) malloc1D( NPARAM, sizeof(float), "param" );
for( i=0; i<NPARAM; i++) param[i] = 0.0F;
trans = (cfpix*) malloc( nlayer* sizeof( cfpix ) );
if( NULL == trans ) {
printf("Cannot allocate transmission function memory\n");
exit( 0 );
}
cz = (float*) malloc1D( nlayer, sizeof(float), "cz" );
for( ilayer=0; ilayer<nlayer; ilayer++ ) {
if( myFile.read( filein[ilayer] ) != 1 ) {
printf("Cannot open file %s.\n", filein[ilayer] );
exit( 0 );
}
nx2 = myFile.nx();
ny2 = myFile.ny();
npix = myFile.getnpix();
trans[ilayer].resize( nx2, ny2 );
if( 0 == ilayer ) trans[ilayer].init( 0, nthreads);
else trans[ilayer].copyInit( trans[0] );
for( ip=0; ip<NPARAM; ip++) param[ip] = myFile.getParam(ip);
if( npix != 1 ) {
printf("Input potential file %s is not real.\n",
filein[ilayer] );
exit( 0 );
}
cz[ilayer] = param[pC];
printf("layer %c, cz = %f\n", cname[ilayer], cz[ilayer]);
if ( ilayer != 0 ) { /* ???? should be before read */
if ( (nx!=nx2) || (ny!=ny2) ) {
printf("pix size incompatible.\n");
printf("old size = %d, %d\n", nx, ny);
printf("new size = %d, %d\n", nx2, ny2 );
printf("layer = %1c\n", cname[ilayer]);
exit( 0 );
}
ax2 = param[pDX] * nx;
by2 = param[pDY] * ny;
if( ( fabs( ax-ax2 ) > fabs(ABERR*ax) ) ||
( fabs( by-by2 ) > fabs(ABERR*by) ) ) {
printf("incompatible lattice constants\n");
printf("potential a,b,c = %g, %g, %g",
ax2,by2,cz[ilayer] );
printf("previous pix a,b = %g, %g\n",
ax,by);
printf(" layer = %1c\n", cname[ilayer] );
exit( 0 );
}
} else {
nx = nx2;
ny = ny2;
ax = param[pDX] * nx;
by = param[pDY] * ny;
} /* end if ( ilayer != 0 ) */
scale = wavlen * mm0;
for( ix=0; ix<nx; ix++) {
for( iy=0; iy<ny; iy++) {
vz= scale * myFile(ix,iy);
trans[ilayer].re(ix,iy) = (float) cos(vz);
trans[ilayer].im(ix,iy) = (float) sin(vz);
}
}
} /* end for(ilayer=... */
printf("Size in pixels Nx x Ny = %d x %d = %ld"
" total pixels, \n lattice constants a,b = %f x %f\n",
nx,ny, ((long)nx)*((long)ny), ax, by);
/* check for valid scan coordinates */
if( (xi < 0.0) || (xi > ax) ||
(xf < 0.0) || (xf > ax) ||
(yi < 0.0) || (yi > by) ||
(yf < 0.0) || (yf > by) ) {
printf("Coordinates out of range please try again.\n");
exit( 0 );
}
/* calculate the total specimen thickness and echo */
cztot = 0.0F;
for( islice=0; islice<nslice; islice++)
cztot += cz[ layer[islice] ];
printf("Total specimen thickness = %g Angstroms\n", cztot);
/* check that requested probe size is not bigger
than transmission function size (or too small)
*/
if( (nxprobe > nx) || (nxprobe < 2) ) {
nxprobe = nx;
printf("Probe size reset to nx = %d\n", nxprobe);
}
if( (nyprobe > ny) || (nyprobe < 2) ) {
nyprobe = ny;
printf("probe size reset to ny = %d\n", nyprobe);
}
/* calculate spatial frequencies for future use
(one set for transmission function and one for probe
wavefunction)
NOTE: zero freg is in the bottom left corner and
expands into all other corners - not in the center
this is required for FFT - don't waste time rearranging
remember : the x values are the same for both sets
x2, y2 are not used anywhere else - just for freqn()
*/
kxp = (float*) malloc1D( nxprobe, sizeof(float), "kxp" );
kyp = (float*) malloc1D( nyprobe, sizeof(float), "kyp" );
kxp2 = (float*) malloc1D( nxprobe, sizeof(float), "kxp2" );
kyp2 = (float*) malloc1D( nyprobe, sizeof(float), "kyp2" );
x2 = (float*) malloc1D( nx, sizeof(float), "x2" );
y2 = (float*) malloc1D( ny, sizeof(float), "y2" );
freqn( kxp, kxp2, x2, nxprobe, ax*((double)nxprobe)/nx );
freqn( kyp, kyp2, y2, nyprobe, by*((double)nyprobe)/ny );
kx = (float*) malloc1D( nx, sizeof(float), "kx" );
ky = (float*) malloc1D( ny, sizeof(float), "ky" );
kx2 = (float*) malloc1D( nx, sizeof(float), "kx2" );
ky2 = (float*) malloc1D( ny, sizeof(float), "ky2" );
freqn( kx, kx2, x2, nx, ax );
freqn( ky, ky2, y2, ny, by );
free( x2 );
free( y2 );
/* impose anti-aliasing bandwidth limit on transmission functions */
sum = ((double)nx)/(2.0*ax);
k2maxp = ((double)ny)/(2.0*by);
if( sum < k2maxp ) k2maxp = sum;
k2maxp= BW * k2maxp;
k2maxp = k2maxp * k2maxp;
nxl = (long) nx;
nyl = (long) ny;
for( ilayer=0; ilayer<nlayer;ilayer++) {
trans[ilayer].fft();
nbeamt = 0;
for( ix=0; ix<nx; ix++ )
for( iy=0; iy<ny; iy++) {
k2 = ky2[iy] + kx2[ix];
if( k2 < k2maxp ) nbeamt++;
else {
trans[ilayer].re(ix,iy) = 0.0F; // real
trans[ilayer].im(ix,iy) = 0.0F; // imag
}
} /* end for(iy... ) */
trans[ilayer].ifft();
} /* end for( ilayer */
printf("Number of symmetrical anti-aliasing "
"beams in trans. function = %ld\n", nbeamt);
printf(" with a resolution of %g Angstroms.\n",
1.0/sqrt(k2maxp));
/* calculate propagator functions with probe sample size
impose anti-aliasing bandwidth limit
*/
propxr = (float**) malloc2D( nlayer, nxprobe,
sizeof(float), "propxr" );
propxi = (float**) malloc2D( nlayer, nxprobe,
sizeof(float), "propxi" );
propyr = (float**) malloc2D( nlayer, nyprobe,
sizeof(float), "propyr" );
propyi = (float**) malloc2D( nlayer, nyprobe,
sizeof(float), "propyi" );
tctx = 2.0 * tan(ctiltx);
tcty = 2.0 * tan(ctilty);
for( ilayer=0; ilayer<nlayer; ilayer++) {
scale = cz[ilayer];
for( ix=0; ix<nxprobe; ix++) {
w = pi * scale *
( kxp2[ix] * wavlen - kxp[ix]*tctx );
propxr[ilayer][ix]= (float) cos(w);
propxi[ilayer][ix]= (float) -sin(w);
}
for( iy=0; iy<nyprobe; iy++) {
w = pi * scale *
( kyp2[iy] * wavlen - kyp[iy]*tcty );
propyr[ilayer][iy]= (float) cos(w);
propyi[ilayer][iy]= (float) -sin(w);
}
} /* end for(ilayer..) */
nbeamp = 0;
for( iy=0; iy<nyprobe; iy++)
for( ix=0; ix<nxprobe; ix++) {
if( (kyp2[iy] + kxp2[ix]) < k2maxp ) nbeamp++;
}
printf("Number of symmetrical anti-aliasing "
"beams in probe = %ld\n", nbeamp);
/* convert aperture dimensions */
k2min = (double*) malloc1D( ndetect, sizeof(double), "k2min" );
k2max = (double*) malloc1D( ndetect, sizeof(double), "k2max" );
for( idetect=0; idetect<ndetect; idetect++) {
k2max[idetect] = 0.001 * almax[idetect]/wavlen;
k2max[idetect] = k2max[idetect] * k2max[idetect];
k2min[idetect] = 0.001 * almin[idetect]/wavlen;
k2min[idetect] = k2min[idetect] * k2min[idetect];
}
/* init the min/max record of total integrated intensity */
totmin = 10.0;
totmax = -10.0;
detect = (double*) malloc1D( ndetect, sizeof(double), "detect" );
rmin = (float*) malloc1D( ndetect, sizeof(float), "rmin" );
rmax = (float*) malloc1D( ndetect, sizeof(float), "rmax" );
/* ----- probe wavefunction ----- */
probe.resize( nxprobe, nyprobe );
probe.init();
/* ---- start here for a full image output ---- */
if( l1d == 0 ) {
printf("output file size in pixels is %d x %d\n",
nxout, nyout );
pixr = (float***) malloc( ndetect * sizeof(float**) );
if( pixr == NULL ) {
printf("Cannot allocate pixr memory.\n");
exit( 0 );
}
for( i=0; i<ndetect; i++) pixr[i] =
(float**) malloc2D( nxout, nyout, sizeof(float), "pixr" );
/* iterate the multislice algorithm proper for each position of
the focused probe */
dx = (xf-xi)/((double)(nxout-1));
dy = (yf-yi)/((double)(nyout-1));
for( iy=0; iy<nyout; iy++) {
y = yi + dy * ((double)iy);
for( ix=0; ix<nxout; ix++) {
x = xi + dx * ((double) ix);
STEMsignal( x, y, detect, &sum );
if( sum < totmin ) totmin = sum;
if( sum > totmax ) totmax = sum;
for( i=0; i<ndetect; i++) {
pixr[i][ix][iy] = (float) detect[i];
if( (ix==0) && (iy==0) )
rmin[i] = rmax[i] = (float) detect[i];
else {
if( detect[i] < rmin[i] )
rmin[i] = (float) detect[i];
if( detect[i] > rmax[i] )
rmax[i] = (float) detect[i];
}
} /* end for(i..) */
if( sum < 0.9 ) printf("Warning: "
"integrated intensity too small, = %g, %d, %d\n",
sum, ix, iy );
if( sum > 1.1 ) printf("Warning: "
"integrated intensity too big, = %g, %d, %d\n",
sum, ix, iy );
} /* end for(ix...) */
printf("iy= %d, min[0]= %f, max[0]= %f\n",
iy, rmin[0], rmax[0] );
} /* end for(iy... ) */
/* store min and max */
param[pIMAX] = 0.0F;
param[pIMIN] = 0.0F;
param[pXCTILT] = (float) ctiltx;
param[pYCTILT] = (float) ctilty;
param[pDEFOCUS] = (float) df;
param[pDX] = (float) dx;
param[pDY] = (float) dy;
param[pENERGY] = (float) v0;
param[pOAPERT] = (float) apert2;
param[pCS] = (float) (Cs3 * 1.0e7); // convert to Angstroms
param[pWAVEL] = (float) wavlen;
param[pNSLICES] = (float) nslice;
param[35] = (float) (Cs5 * 1.0e7); // convert to Angstroms
// copy back - not very efficient but...
for( ip=0; ip<NPARAM; ip++) myFile.setParam( ip, param[ip] );
myFile.resize( nxout, nyout );
for( i=0; i<ndetect; i++) {
printf("output pix range : %g to %g\n", rmin[i], rmax[i]);
for( ix=0; ix<nxout; ix++) for( iy=0; iy<nyout; iy++)
myFile( ix, iy ) = pixr[i][ix][iy];
myFile.setParam(pRMAX, rmax[i] );
myFile.setParam(pRMIN, rmin[i]);
myFile.setParam(pMINDET, (float) ( almin[i] * 0.001 ) );
myFile.setParam(pMAXDET, (float) ( almax[i] * 0.001) );
if( myFile.write( fileout[i], rmin[i], rmax[i], 0.0F, 0.0F,
(float) dx, (float) dy ) != 1 ) {
printf("Cannot write output file %s.\n", fileout[i] );
}
}
/* ---- start here for 1d line scan ---- */
} else if ( l1d == 1 ) {
dx = (xf-xi)/((double)(nout-1));
dy = (yf-yi)/((double)(nout-1));
x = xi;
y = yi;
fp = fopen( fileout[0], "w+" );
if( fp == NULL ) {
printf("Cannot open output file %s.\n", fileout[0] );
exit( 0 );
}
fprintf(fp, "C\n");
fprintf(fp, "C output of stemslice version %s\n", version);
fprintf(fp, "C\n");
fprintf(fp, "C nslice= %d\n", nslice);
for( i=0; i<nlayer; i++)
fprintf(fp,"cz= %g, file in= %s\n",
cz[i], filein[i] );
fprintf(fp, "V0= %g, Cs3= %g, Cs5= %g, df= %g\n", v0, Cs3, Cs5, df );
fprintf(fp, "Apert= %g mrad to %g mrad\n", apert1, apert2 );
fprintf(fp, "Crystal tilt x,y= %lg, %lg\n", ctiltx,ctilty);
for( idetect=0; idetect<ndetect; idetect++) {
fprintf(fp, "Detector %d, Almin= %g mrad, Almax= %g mrad\n",
idetect, almin[idetect], almax[idetect] );
}
fprintf(fp, "ax= %g A, by= %g A\n", ax,by);
fprintf(fp, "Number of symmetrical anti-aliasing "
"beams in trans. function= %ld\n", nbeamt );
fprintf(fp, "with a resolution (in Angstroms) = %g\n",
1.0/sqrt(k2maxp) );
fprintf(fp, "Number of symmetrical anti-aliasing "
"beams in probe = %ld\n", nbeamp );
fprintf(fp, "C x y signal\n");
for( ix=0; ix<nout; ix++) {
x = xi + dx * ((double)ix);
y = yi + dy * ((double)ix);
STEMsignal( x, y, detect, &sum );
if( sum < totmin ) totmin = sum;
if( sum > totmax ) totmax = sum;
if( sum < 0.9)
printf("Warning integrated intensity too small, = %g\n",
sum );
if( sum > 1.1)
printf("Warning integrated intensity too large, = %g\n",
sum );
printf("%5d %14.7g %14.7g", ix+1, x, y);
for(i=0; i<ndetect; i++)
printf("%14.7g", detect[i] );
printf("\n");
fprintf(fp, "%14.7g %14.7g", x, y);
for(i=0; i<ndetect; i++)
fprintf(fp, "%14.7g", detect[i] );
fprintf(fp, "\n");
}
fclose( fp );
} /* end if( l1d.. ) */
/* echo min/max of total integrated intensity */
printf("The total integrated intensity range was:\n");
printf(" %g to %g\n\n", totmin, totmax );
CPUtime = cputim() - CPUtime; /* include all CPU's */
printf("CPU time = %g sec.\n", CPUtime );
EndTime = time( &pt );
etime = difftime( EndTime, InitTime );
printf("elapsed time = %g sec.\n", etime );
return EXIT_SUCCESS;
} /* end main() */
/*------------------------ STEMsignal() ---------------------*/
/*
subroutine to calculate the stem signal arising from a given
probe position
iterate the multislice algorithm proper for each position of
the focused probe
note zero freg is in the bottom left corner and
expands into all other corners - not in the center
this is required for fft - don't waste time rearranging
x,y = real position of the incident probe
detect[] = real array to get signal into each detector
sum = real total integrated intensity
the assumed global variables are:
nxprobe,nyprobe = int size of probe wavefunction in pixels
nx,ny = int size of transmission function in pixels
ndetect = int number of detector geometries
nslice = int number of slices
layer[] = int array with slice layer indecies
probe = float complex probe wavefunction
trans = float complex transmission function
propxr[][], propxi[][] = float real,imag propagator vs x
propyr[][], propyi[][] = float real,imag propagator vs y
ax,by = float unit cell size in Angs
kxp[], kyp[] = float spatial frequencies vs x, y
kxp2[], kyp2[] = float square of kxp[], kyp[]
apert1, apert2 = double min,max objective aperture (mrad)
k2maxp = double max spatial freq of probe squared
pi = double constant PI
wavlen = double electron wavelength in Angs
df = double defocus (in Ang)
Cs3,5 = double spherical aberration (in mm)
*/
void STEMsignal( double x, double y, double *detect, double *sum )
{
int ix, iy, ixt, iyt, islice, ilayer,
idetect, ixoff, iyoff, ixmid, iymid;
long nxprobel, nyprobel;
float scale, prr, pri, tr, ti;
double xoff,yoff, chi1, chi2, chi3, k2maxa, k2maxb, chi,
w, k2, phi;
double sum0, delta;
/* make sure x,y are ok */
if( (x < 0.0) || (x > ax) ||
(y < 0.0) || (y > by) ) {
*sum = -1.2345;
printf("bad x=%f,y=%f in STEMsignal()\n", x, y);
return;
}
/* generate a probe at position x,y which must be inside the
0->ax and 0->by region
normalize to have unit integrated intensity
probe position (x,y) = (0,0) = lower left corner
NOTE: The probe wavefunction is nxprobe x nyprobe which may
be smaller than the transmission function.
Position the probe near the center of the nxprobe x nyprobe
region because it does not wrap around properly
(i.e. manually wrap around in the nx x ny region if
the probe is near a boundary of the nx x ny region))
*/
ixmid = nxprobe/2;
ixoff = (int) floor( x*((double)nx) / ax ) - ixmid;
xoff = x - ax*((double)ixoff)/((double)nx);
iymid = nyprobe/2;
iyoff = (int) floor( y*((double)ny) / by ) - iymid;
yoff = y - by*((double)iyoff)/((double)ny);
chi1 = pi * wavlen;
chi2 = 0.5 * Cs3 * 1.e7*wavlen*wavlen;
chi3 = Cs5 * 1.0e7 * wavlen*wavlen*wavlen*wavlen /3.0;
k2maxa = apert1 * 0.001/wavlen;
k2maxa = k2maxa *k2maxa;
k2maxb = apert2 * 0.001/wavlen;
k2maxb = k2maxb * k2maxb;
sum0 = 0.0;
for( ix=0; ix<nxprobe; ix++)
for( iy=0; iy<nyprobe; iy++) {
k2 = kxp2[ix] + kyp2[iy];
if( (k2 >= k2maxa) && (k2 <= k2maxb) ) {
w = 2.*pi* ( xoff*kxp[ix] + yoff*kyp[iy] );
phi = atan2( ky[iy], kx[ix] );
chi = chi1*k2* ( (chi2 + chi3*k2)*k2 - df
+ dfa2*sin( 2.0*(phi-dfa2phi) )
+ 2.0F*dfa3*wavlen*sqrt(k2)*
sin( 3.0*(phi-dfa3phi) )/3.0 );
chi= - chi + w;
probe.re(ix,iy) = tr = (float) cos( chi ); /* real */
probe.im(ix,iy) = ti = (float) sin( chi ); /* imag */
sum0 += (double) (tr*tr + ti*ti);
} else {
probe.re(ix,iy) = 0.0F;
probe.im(ix,iy) = 0.0F;
}
}
scale = (float) ( 1.0/sqrt(sum0) );
for( ix=0; ix<nxprobe; ix++)
for( iy=0; iy<nyprobe; iy++) {
probe.re(ix,iy) *= scale;
probe.im(ix,iy) *= scale;
}
/* transmit thru nslice layers
beware ixoff,iyoff must be with one nx,ny
of the array bounds
*/
nxprobel = (long) nxprobe;
nyprobel = (long) nyprobe;
for( islice=0; islice<nslice; islice++) {
probe.ifft();
ilayer = layer[islice];
for( ix=0; ix<nxprobe; ix++) { // transmit probe thru this layer
ixt = ix + ixoff;
if( ixt >= nx ) ixt = ixt - nx;
else if( ixt < 0 ) ixt = ixt + nx;
for( iy=0; iy<nyprobe; iy++) {
iyt = iy + iyoff;
if( iyt >= ny ) iyt = iyt - ny;
else if( iyt < 0 ) iyt = iyt + ny;
prr = probe.re(ix,iy);
pri = probe.im(ix,iy);
probe.re(ix,iy) = prr*trans[ilayer].re(ixt,iyt)
- pri*trans[ilayer].im(ixt,iyt);
probe.im(ix,iy) = prr*trans[ilayer].im(ixt,iyt)
+ pri*trans[ilayer].re(ixt,iyt);
} /* end for(iy...) */
} /* end for(ix...) */
probe.fft();
/* multiplied by the propagator function */
propagate( probe, propxr[ilayer], propxi[ilayer],
propyr[ilayer], propyi[ilayer],
kxp2, kyp2, (float)k2maxp, nxprobe, nyprobe );
} /* end for( islice...) */
/* at this point the probe could be padded with zeros
(in real space) and transformed back to get better
sampling in reciprocal space but initial tests with
this embedding technique did not indicate that it improved
matters (26-jan-1995 ejk)
this should be tested further sometime
*/
/* zero sum count */
sum0 = 0.0;
for(ix=0; ix<ndetect; ix++) detect[ix] = 0.0;
/* sum intensity incident on the detector
and calculate total integrated intensity
normal mode
*/
for( ix=0; ix<nxprobe; ix++)
for( iy=0; iy<nyprobe; iy++) {
prr = probe.re(ix,iy);
pri = probe.im(ix,iy);
delta = prr*prr + pri*pri;
sum0 += delta;
k2 = kxp2[ix] + kyp2[iy];
for( idetect=0; idetect<ndetect; idetect++) {
if( (k2 >= k2min[idetect] ) &&
(k2 <= k2max[idetect] ) )
detect[idetect] += delta;
}
} /* end for(ix..) */
*sum = sum0;
}/* end STEMsignal() */