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 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
|
% This file was created with JabRef 2.6.
% Encoding: ANSI_X3.4-1968
@STRING{cjp = {Can. J. Phys.}}
@STRING{nim = {Nucl. Instr. Meth.}}
@STRING{nn = {Neutron News}}
@STRING{pb = {Physica B}}
@TECHREPORT{tas1_report,
author = {A. Abrahamsen and N. B. Christensen and E. Lauridsen},
title = {{McStas} simulations of the {TAS1} spectrometer},
institution = {Niels Bohr Institute, University of Copenhagen},
year = {1998},
type = {Student's report}
}
@ARTICLE{Ageron89,
author = {P. Ageron},
journal = {Nucl. Inst. Meth. A},
year = {1989},
volume = {284},
pages = {197}
}
@ARTICLE{Alianelli04,
author = {L. Alianelli},
journal = {J. Appl. Cryst.},
year = {2004},
volume = {37},
pages = {732}
}
@BOOK{bacon,
title = {Neutron Diffraction},
publisher = {Oxford University Press},
year = {1975},
author = {G.E. Bacon}
}
@ARTICLE{blanc83,
author = {Y. Blanc},
journal = {ILL Report},
year = {1983},
volume = {83BL21G}
}
@ARTICLE{Clark66,
author = {C.D. Clark and E.W.J. Mitchell and D.W. Palmer and I.H. Wilson},
journal = {J. Sci. Instrum.},
year = {1966},
volume = {43},
pages = {1}
}
@ARTICLE{pb_241_50,
author = {K. N. Clausen and D. F. McMorrow and K. Lefmann and G. Aeppli and
T. E. Mason and A. Schr{\"o}der and M. Issikii and M. Nohara and
H. Takagi},
title = {The {RITA} spectrometer at {R}is{\o} - design considerations and
recent results},
journal = pb,
year = {1998},
volume = {241-243},
pages = {50-55}
}
@ARTICLE{Copley03,
author = {J.R.D. Copley},
journal = {Nucl. Instr. Meth.},
year = {2003},
volume = {A510},
pages = {318}
}
@ARTICLE{Copley93,
author = {J.R.D. Copley},
journal = {J. Neut. Research},
year = {1993},
volume = {1},
pages = {21}
}
@ARTICLE{mscat,
author = {J.R.D Copley},
journal = {Comput. Phys. Commun.},
year = {1974},
volume = {7},
pages = {289}
}
@ARTICLE{Copley86,
author = {J. R. D. Copley and P. Verkerk and A. A. van Well and H. Fredrikze},
title = {Improved Monte Carlo calculation of multiple scattering effects in
thermal neutron scattering experiments},
journal = {Comput. Phys. Commun.},
year = {1986},
volume = {40},
pages = {337},
doi = {http://dx.doi.org/10.1016/0010-4655(86)90118-9},
issn = {0010-4655}
}
@ARTICLE{Cussen03,
author = {L. D. Cussen},
journal = {J. Appl. Cryst.},
year = {2003},
volume = {36},
pages = {1204}
}
@BOOK{ILLblue,
title = {ILL Neutron Data Booklet},
publisher = {OCP Science},
year = {2003},
author = {A.-J. Dianoux and G. Lander}
}
@BOOK{Egelstaff67,
title = {An introduction to the liquid state},
publisher = {Academic Press, London},
year = {1967},
author = {P.A. Egelstaff}
}
@ARTICLE{Farhi02,
author = {E. Farhi and T. Hansen and A. Wildes and R. Ghosh and K. Lefmann},
journal = {Appl. Phys.},
year = {2002},
volume = {A 74},
pages = {S1471}
}
@ARTICLE{Fermi47,
author = {E. Fermi and J. Marshall and L. Marshall},
journal = {Phys. Rev.},
year = {1947},
volume = {72},
pages = {193}
}
@ARTICLE{msc,
author = {Bischoff FG and Yeater ML and Moore WE},
journal = {Nuclear Science and Engineering},
year = {1972},
volume = {48},
pages = {266}
}
@ARTICLE{fischer05,
author = {H.E. Fischer and A.C. Barnes and P.S. Salmon},
journal = {Rep. Prog. Phys.},
year = {2006},
volume = {69},
pages = {233}
}
@ARTICLE{Freund83,
author = {A.K. Freund},
journal = {Nucl. Instr. Meth.},
year = {1983},
volume = {213},
pages = {495}
}
@BOOK{Grimmett92,
title = {Probability and Random Processes, 2nd Edition},
publisher = {Clarendon Press, Oxford},
year = {1992},
author = {Grimmett and G. R. and Stirzakerand D. R.}
}
@ARTICLE{James80,
author = {F. James},
journal = {Rep.\ Prog.\ Phys.},
year = {1980},
volume = {43},
pages = {1145}
}
@ARTICLE{discus,
author = {M.W. Johnson},
journal = {Harwell report},
year = {March 1974},
volume = {AERE - R 7682}
}
@ARTICLE{IDEAS,
author = {W.-T. Lee and X.-L. Wang},
journal = nn,
year = {2002},
volume = {13},
pages = {30},
note = {See website http://www.sns.gov/ideas/}
}
@ARTICLE{pb_283_343,
author = {K. Lefmann and D. F. McMorrow and H. M. R{\o}nnow and K. Nielsen
and K. N. Clausen and B. Lake and G. Aeppli},
title = {Added flexibility in triple axis spectrometers: the two RITAs at
Ris{\o}},
journal = pb,
year = {2000},
volume = {283},
pages = {343-354}
}
@ARTICLE{nn_10_20,
author = {K. Lefmann and K. Nielsen},
title = {McStas, a general software package for neutron ray-tracing simulations},
journal = {Neutron News},
year = {1999},
volume = {10},
pages = {20-23},
doi = {10.1080/10448639908233684}
}
@ARTICLE{Lieutenant05,
author = {K. Lieutenant},
journal = {J. Phys.: Condens. Matter},
year = {2005},
volume = {17},
pages = {S167}
}
@BOOK{lovesey84,
title = {Theory of neutron scattering from condensed matter},
publisher = {Oxford Clarendon Press},
year = {1984},
author = {S.W. Lovesey}
}
@ARTICLE{Lowde60,
author = {R.A. Lowde},
journal = {J. Nucl. Energy, Part A: Reactor Sci.},
year = {1960},
volume = {11},
pages = {69}
}
@ARTICLE{Leibnitz63,
author = {H. Maier-Leibnitz and T. Springer},
journal = {Reactor Sci. Technol.},
year = {1963},
volume = {17},
pages = {217}
}
@ARTICLE{Manzin04,
author = {G. Manzin and B. Guerard and F.A.F. Fraga and L.M.S. Margato},
journal = {Nucl. Instr. Meth.},
year = {2004},
volume = {A535},
pages = {102}
}
@ARTICLE{cjp_73_697,
author = {T. E. Mason and K. N. Clausen and G. Aeppli and D. F. McMorrow and
J. K. Kjems},
title = {{RITA}: {T}he reinvented triple axis spectrometer},
journal = cjp,
year = {1995},
volume = {73},
pages = {697-702}
}
@ARTICLE{Mildner90,
author = {D.F.R. Mildner},
journal = {Nucl. Instr. Meth.},
year = {1990},
volume = {A290},
pages = {189}
}
@ARTICLE{Mildner77,
author = {D.F.R. Mildner and C.A. Pellizari and J.M. Carpenter},
journal = {Acta. Cryst. A},
year = {1977},
volume = {33},
pages = {954}
}
@ARTICLE{neldermead,
author = {J.A. Nelder and R. Mead},
journal = {Computer Journal},
year = {1965},
volume = {7},
pages = {308-313}
}
@ARTICLE{Charpak89,
author = {V. Peskov and G. Charpak and W. Dominik and F. Sauli},
journal = {Nucl. Instr. and Meth.},
year = {1989},
volume = {A277},
pages = {547}
}
@ARTICLE{Peters05,
author = {J. Peters},
journal = {Nucl. Instr. Meth.},
year = {2005},
volume = {A540},
pages = {419}
}
@BOOK{NumRecip,
title = {Numerical Recipes (2nd Edition)},
publisher = {Cambridge University Press},
year = {2002},
author = {W.H. Press and S.A. Teukolsky and W.T. Vetterling and B.P. Flannery}
}
@BOOK{num_rep,
title = {Numerical {R}ecipes in {C}},
publisher = {Cambridge University Press},
year = {1986},
author = {W. H. Press and S. A. Teukolsky and W. T. Vetterling and B. P. Flannery}
}
@ARTICLE{Radeka74,
author = {V. Radeka},
journal = {IEEE Trans. Nucl. Sci.},
year = {1974},
volume = {NS-21},
pages = {51}
}
@ARTICLE{Restrax,
author = {J. Saroun and J. Kulda},
journal = pb,
year = {1997},
volume = {234},
pages = {1102},
note = {See website http://omega.ujf.cas.cz/restrax/}
}
@ARTICLE{Schanzer04,
author = {C. Schanzer and P. Boni and U. Filges and T. Hils},
journal = {Nucl. Instr. Meth.},
year = {2004},
volume = {A 529},
pages = {63}
}
@ARTICLE{Sears97,
author = {V.F. Sears},
journal = {Acta Cryst.},
year = {1997},
volume = {A53},
pages = {35}
}
@ARTICLE{Sears75,
author = {V.F. Sears},
journal = {Adv. Phys.},
year = {1975},
volume = {24},
pages = {1}
}
@ARTICLE{pol_seeger,
author = {P. A. Seeger and L. L. Daemen},
title = {Numerical Solution of Bloch's Equation for Neutron Spin Precession},
journal = nim,
year = {2001},
volume = {457},
pages = {338}
}
@ARTICLE{NISP,
author = {P. A. Seeger and L. L. Daemen and T. G. Thelliez and R. P. Hjelm},
journal = pb,
year = {2000},
volume = {283},
pages = {433}
}
@BOOK{Shirane02,
title = {Neutron Scattering with a Triple-Axis Spectrometer},
publisher = {Cambridge University Press},
year = {2002},
author = {G. Shirane and S.M. Shapiro and J.M. Tranquada}
}
@BOOK{squires,
title = {Thermal Neutron Scattering},
publisher = {Cambridge University Press},
year = {1978},
author = {G.L. Squires}
}
@ARTICLE{Vitess,
author = {D. Wechsler and G. Zsigmond and F. Streffer and F. Mezei},
journal = nn,
year = {2000},
volume = {25},
pages = {11}
}
@ARTICLE{mcstas_pb,
author = {P. Willendrup and E. Farhi and K. Lefmann},
journal = pb,
year = {2004},
volume = {350},
pages = {735}
}
@BOOK{mcstasmanual,
title = {User and Programmers Guide to the Neutron Ray-Tracing Package McStas,
Version 1.9},
publisher = {Risoe Report},
year = {2005},
author = {Peter Willendrup and Emmanuel Farhi and Kim Lefmann and Klaus Lieutenant}
}
@book{mcxtracemanual,
title={Users' and Programmers' Guide to the X-ray tracing Package McXtrace, version 1.2},
publisher = {DTU Physics},
year = {2014},
author = {Knudsen, E. B. and Willendrup, P. and Farhi, E. and Lefmann, K. and Schmidt, S.}
}
@BOOK{gavin,
title = {Polarized Neutrons},
publisher = {Oxford Clarendon Press},
year = {1988},
author = {W.~Gavin~Williams}
}
@ARTICLE{Zsigmond04,
author = {G. Zsigmond and K. Lieutenant and S. Manoshin et al.},
journal = nim,
year = {2004},
volume = {A 529},
pages = {218}
}
@MISC{mcstas_webpage,
note = {See http://www.mcstas.org}
}
@MISC{mcxtrace_webpage,
note = {See http://www.mcxtrace.org}
}
@MISC{strawberry,
note = {See http://www.strawberryperl.com}
}
@MISC{shadow_website,
note = {See http://www.esrf.eu/computing/scientific/raytracing/}
}
@MISC{RAY_website,
note = {See https://www.helmholtz-berlin.de/pubbin/vkart.pl?v=kquyy}
}
@incollection{schafers2008bessy,
title={The BESSY raytrace program RAY},
author={Sch{\"a}fers, Franz},
booktitle={Modern Developments in X-Ray and Neutron Optics},
pages={9--41},
year={2008},
publisher={Springer}
}
@MISC{trac_webpage,
note = {See http://trac.edgewall.com}
}
@misc{mccode_trac_webpage,
note = {See http://trac.mccode.org}
}
@MISC{Xtrace_website,
note = {See https://www.anka.kit.edu/1921_746.php}
}
@article{bauer2007simulation,
title={Simulation of X-ray beamlines with the new ray tracing tool< i> X</i> Trace},
author={Bauer, Sondes Trabelsi and Bauer, Martin and Steininger, Ralph and Baumbach, Tilo},
journal={Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
volume={582},
number={1},
pages={90--92},
year={2007},
publisher={Elsevier}
}
@MISC{active_state_webpage,
note = {See http://www.activestate.com}
}
@MISC{crystallographica,
note = {Crystallographica, Oxford Cryosystem, 1998. See http://www.crystallographica.com}
}
@MISC{debian_webpage,
note = {See http://www.debian.org/}
}
@MISC{dev_cpp_webpage,
note = {See http://www.bloodshed.net/devcpp.html}
}
@MISC{ess_webpage,
note = {See http://www.ess-europe.de}
}
@MISC{Fullprof,
note = {Fullprof powder refinement. See http://www-llb.cea.fr/fullweb/fp2k/fp2k.htm}
}
@MISC{IB_webpage,
note = {See http://neutrons-dev.ornl.gov/eqsans/software/ib/}
}
@MISC{icsd_ill,
note = {ICSD, Inorganic Crystal Structure Database. See http://icsd.ill.fr}
}
@MISC{mcnp_webpage,
note = {See http://mcnpx.lanl.gov/ and http://mcnp.lanl.gov/}
}
@MISC{mcnsi_webpage,
note = {See http://mcnsi.risoe.dk/}
}
@MISC{mczilla_webpage,
note = {See http://trac.mccode.org/report}
}
@MISC{NADS_webpage,
note = {http://code.google.com/p/jnads/}
}
@MISC{nexus_webpage,
note = {See http://www.neutron.anl.gov/nexus/}
}
@MISC{nisp_webpage,
note = {See http://strider.lansce.lanl.gov/NISP/Welcome.html}
}
@MISC{nmi3_webpage,
note = {See http://neutron-eu.net/en/}
}
@MISC{scilab_webpage,
note = {See http://www-rocq.inria.fr/scilab/}
}
@MISC{sns_webpage,
note = {See http://www.sns.gov/}
}
@MISC{tripoli_webpage,
note = {See http://www.nea.fr/html/dbprog/tripoli-abs.html}
}
@MISC{ts2_webpage,
note = {See http://ts-2.isis.rl.ac.uk/}
}
@MISC{ts2_webpage_ess,
note = {See http://www.ess-scandinavia.eu/}
}
@MISC{vitess_webpage,
note = {See http://www.hmi.de/projects/ess/vitess/}
}
@misc{NIST-ffast,
note = {See http://www.nist.gov/pml/data/ffast/index.cfm}
}
@misc{lcls,
howpublished = {\url{https://slacportal.slac.stanford.edu/sites/lcls\_public/Pages/Default.aspx}},
title = {{SLAC Linac Coherent Light Source}},
author={LCLS},
year = {2012}
}
@misc{sacla,
howpublished = {\url{http://xfel.riken.jp/eng/index.html}},
title = {{SPring-8 Angstrom Compact free electron laser}},
author ={SACLA},
year = {2012}
}
@misc{xfel,
howpublished = {\url{http://www.xfel.eu}},
title = {{European XFEL}},
author = {XFEL},
year = {2012}
}
@article{bearden1967x,
author = {Bearden, J A},
journal = {Reviews of Modern Physics},
number = {1},
pages = {78},
publisher = {APS},
title = {{X-ray wavelengths}},
volume = {39},
year = {1967}
}
@article{bearden1967reevaluation,
author = {Bearden, J A and Burr, A F},
journal = {Reviews of Modern Physics},
number = {1},
pages = {125},
publisher = {APS},
title = {{Reevaluation of X-ray atomic energy levels}},
volume = {39},
year = {1967}
}
@inproceedings{chubar1998accurate,
author = {Chubar, O and Elleaume, P},
booktitle = {Proc. of the EPAC98 Conference},
pages = {1177--1179},
title = {{Accurate and efficient computation of synchrotron radiation in the near field region}},
year = {1998}
}
@article{schaefers2008bessy,
author = {Sch\"{a}fers, F},
journal = {Modern Developments in X-Ray and Neutron Optics},
pages = {9--41},
publisher = {Springer},
title = {{The BESSY raytrace program RAY}},
year = {2008}
}
@article{zsigmond2002monte,
author = {Zsigmond, G and Lieutenant, K and Mezei, F},
journal = {Neutron News},
number = {4},
pages = {11--14},
publisher = {Taylor \& Francis},
title = {{Monte Carlo simulations of neutron scattering instruments by VITESS: virtual instrumentation tool for ESS}},
volume = {13},
year = {2002}
}
@article{wechsler2000vitess,
author = {Wechsler, D and Zsigmond, G and Streffer, F and Mezei, F},
journal = {Neutron News},
number = {4},
pages = {25--28},
publisher = {Taylor \& Francis},
title = {{VITESS: virtual instrumentation tool for pulsed and continuous sources}},
volume = {11},
year = {2000}
}
@inproceedings{seeger2004neutron,
author = {Seeger, P A and Daemen, L L},
booktitle = {Proc. SPIE},
pages = {109},
title = {{The neutron instrument simulation package, NISP}},
volume = {5536},
year = {2004}
}
@article{saroun1997restrax,
author = {Saroun, J and Kulda, J},
journal = {Physica B: Condensed Matter},
pages = {1102--1104},
publisher = {Elsevier},
title = {{RESTRAX--a program for TAS resolution calculation and scan profile simulation}},
volume = {234},
year = {1997}
}
@book{wall2000programming,
author = {Wall, L and Christiansen, T and Orwant, J},
publisher = {O'Reilly Media},
title = {{Programming Perl}},
year = {2000}
}
@inproceedings{catlett2002philosophy,
author = {Catlett, C},
booktitle = {Cluster Computing and the Grid, 2002. 2nd IEEE/ACM International Symposium on},
organization = {IEEE},
pages = {8},
title = {{The philosophy of TeraGrid: building an open, extensible, distributed TeraScale facility}},
year = {2002}
}
@book{kernighan1988c,
author = {Kernighan, B W and Ritchie, D M},
publisher = {Prentice Hall},
title = {The C Programming Language},
year = {1988},
isbn={0-13-110370-9},
}
@book{als2011elements,
author = {Als-Nielsen, J and McMorrow, D},
publisher = {Wiley},
title = {{Elements of modern X-ray physics}},
year = {2011}
}
@article{welnak1994shadow,
author = {Welnak, C and Chen, G J and Cerrina, F},
journal = {Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
number = {1-3},
pages = {344--347},
publisher = {Elsevier},
title = {{SHADOW: A synchrotron radiation and X-ray optics simulation tool}},
volume = {347},
year = {1994}
}
@article{sanchez2011shadow3,
author = {Sanchez del Rio, M and Canestrari, N and Jiang, F and Cerrina, F},
journal = {Journal of Synchrotron Radiation},
number = {5},
pages = {0},
publisher = {International Union of Crystallography},
title = {{SHADOW3: a new version of the synchrotron X-ray optics modelling package}},
volume = {18},
year = {2011}
}
@article{metropolis1949monte,
author = {Metropolis, N and Ulam, S},
journal = {Journal of the American statistical association},
number = {247},
pages = {335--341},
title = {{The monte carlo method}},
volume = {44},
year = {1949}
}
@article{chantler1995theoretical,
author = {Chantler, C T},
journal = {Journal of Physical and Chemical Reference Data},
pages = {71},
title = {{Theoretical form factor, attenuation, and scattering tabulation for Z= 1--92 from E= 1--10 eV to E= 0.4--1.0 MeV}},
volume = {24},
year = {1995}
}
@article{chantler2000detailed,
author = {Chantler, C T},
journal = {Journal of Physical and Chemical Reference Data},
number = {4},
pages = {597},
publisher = {[New York, etc.]: American Chemical Society, 1972-},
title = {{Detailed tabulation of atomic form factors, photoelectric absorption and scattering cross section, and mass attenuation coefficients in the vicinity of absorption edges in the soft x-ray (Z= 30-36, Z= 60-89, E= 0.1 keV-10 keV), addressing convergence issu}},
volume = {29},
year = {2000}
}
@article{kramers1923,
author = {Kramers, H. A.},
doi = {10.1080/14786442308565244},
issn = {1941-5982},
journal = {Philosophical Magazine Series 6},
month = nov,
number = {275},
pages = {836--871},
publisher = {Taylor \& Francis},
title = {{XCIII. On the theory of X-ray absorption and of the continuous X-ray spectrum}},
url = {http://dx.doi.org/10.1080/14786442308565244},
volume = {46},
year = {1923}
}
@article{nyquist1928certain,
author = {Nyquist, H},
journal = {American Institute of Electrical Engineers, Transactions of the},
number = {2},
pages = {617--644},
publisher = {IEEE},
title = {{Certain topics in telegraph transmission theory}},
volume = {47},
year = {1928}
}
@inproceedings{chavanne2003vacuum,
title={In-vacuum undulators at ESRF},
author={Chavanne, J. and Penel, C. and Plan, B. and Revol, F.},
booktitle={Particle Accelerator Conference, 2003. PAC 2003. Proceedings of the},
volume={1},
pages={253--255},
year={2003},
organization={IEEE}
}
@article{snigirev1996,
author = {Snigirev, A and Kohn, V and Snigireva, I},
file = {:home/erkn/Documents/papers/xray/snigirev\_96.pdf:pdf},
journal = {Nature},
title = {{A compound refractive lens for focusing high-energy X-rays}},
url = {http://www.institut2b.physik.rwth-aachen.de/xray/references/nat96.pdf},
year = {1996}
}
@article{vaughan2011x,
abstract = {This paper describes a tunable X-ray focusing apparatus, referred to as a transfocator, based on compound refractive lenses. By varying the number of lenses in the beam, the X-ray energy focused and the focal length can be varied continuously throughout a large range of energies and distances. The instrument can be used in both white and monochromatic beams to focus, pre-focus or collimate the beam. The transfocator can be used with other monochromators and/or other focusing elements, leading to significant increases in flux. Furthermore, the chromatic nature of the focusing means the transfocator suppresses harmonics and can also be used as an extremely high flux broad-band-pass monochromator. These devices have been installed in the first optics and second experimental hutches at the ID11 beamline at the ESRF.},
author = {Vaughan, Gavin B M and Wright, Jonathan P and Bytchkov, Aleksei and Rossat, Michel and Gleyzolle, Henri and Snigireva, Irina and Snigirev, Anatoly},
doi = {10.1107/S0909049510044365},
file = {:home/erkn/Documents/papers/xray/vaughan\_10\_JoSR.pdf:pdf},
issn = {1600-5775},
journal = {Journal of synchrotron radiation},
keywords = {compound refractive lens,microfocus,monochromator,x-ray optics},
month = mar,
number = {Pt 2},
pages = {125--33},
pmid = {21335897},
title = {{X-ray transfocators: focusing devices based on compound refractive lenses.}},
url = {http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=3267637\&tool=pmcentrez\&rendertype=abstract},
volume = {18},
year = {2011}
}
@article{james1980monte,
author = {James, F},
file = {:home/erkn/Documents/papers/mc/james\_80.pdf:pdf},
journal = {Reports on Progress in Physics},
title = {{Monte Carlo theory and practice}},
url = {http://iopscience.iop.org/0034-4885/43/9/002},
volume = {1145},
year = {1980}
}
@article{knudsen2011mcxtrace,
abstract = {We present the developments of the McXtrace project, a free, open source software package based on Monte Carlo ray tracing for simulations and optimisation of complete X-ray instruments. The methodology of building a simulation is presented through an example beamline, namely Beamline 811 at MAX-lab, Lund, Sweden - a beamline dedicated to materials science. © 2011 COPYRIGHT Society of Photo-Optical Instrumentation Engineers (SPIE). Downloading of the abstract is permitted for personal use only.},
annote = {Presented at: Advances in Computational Methods for X-Ray Optics
II : San Diego (US), 21 - 25 Aug, 2011},
author = {{Bergb\"{a}ck Knudsen}, Erik and Prodi, A and Willendrup, Peter Kj{\ae}r and Lefmann, Kim and Baltser, J and Gundlach, C and {Sanchez del Rio}, M and Ferrero, C and Feidenhans'l, Robert},
issn = {0277-786X},
journal = {Proceedings of SPIE, the International Society for Optical Engineering},
keywords = {Engineering,Materialekarakterisering og modellering,Materials characterization and modelling,McXtrace,Monte Carlo,Optics,Physics,X-ray simulations,ray tracing},
number = {1},
title = {{McXtrace: A modern ray-tracing package for X-ray instrumentation}},
volume = {8141},
year = {2011}
}
@article{lefmann2008virtual,
title={Virtual experiments: the ultimate aim of neutron ray-tracing simulations},
author={Lefmann, K. and Willendrup, PK and Udby, L. and Lebech, B. and Mortensen, K. and Birk, J. O. and Klen{\o}, K. and Knudsen, E. and Christiansen, P. and Saroun, J. and others},
journal={Journal of Neutron Research},
volume={16},
number={3-4},
pages={97--111},
year={2008},
publisher={Taylor \& Francis}
}
@article{dulong1999overview,
title={An overview of the Intel IA-64 compiler},
author={Dulong, C. and Krishnaiyer, R. and Kulkarni, D.},
year={1999},
publisher={Citeseer}
}
@misc{msvc,
howpublished={\url{http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express}},
title={Visual C++ 2010 Express},
author = {Microsoft},
year={2010}
}
@misc{intelc,
howpublished={\url{http://software.intel.com/en-us/articles/c-compilers/}},
title={C Compiler \& C++ Compiler Suite from Intel},
author = {Intel},
year={2012}
}
@misc{mcstas,
howpublished={\url{http://www.mcstas.org}},
title={McStas - A neutron ray-trace simulation package},
author = {McStas},
year={2012}
}
@misc{mcxtrace,
howpublished={\url{http://www.mcxtrace.org}},
author={McXtrace},
title={McXtrace - Monte Carlo Xray Tracing},
year={2012}
}
@article{kirkpatrick1948formation,
title={Formation of optical images by x-rays},
author={Kirkpatrick, P. and Baez, AV},
journal={JOSA},
volume={38},
number={9},
pages={766--773},
year={1948},
publisher={Optical Society of America}
}
@book{roe2001probability,
title={Probability and statistics in experimental physics},
author={Roe, B.P.},
year={2001},
publisher={Springer Verlag}
}
@book{mcxtrace-manual,
howpublished={\url{http://download.mcxtrace.org/manual/mcxtrace-1.0-manual.pdf}},
title={User and Programmer's Guide to the X-Ray-Tracing Package McXtrace, Version 1.0},
author={Bergb\"{a}ck Knudsen, Erik and Prodi, Andrea and Willendrup, Peter Kj{\ae}r and Lefmann, Kim},
year={2012}
}
@book{mcxtrace-comp-manual,
howpublished={\url{http://download.mcxtrace.org/manual/mcxtrace-1.0-component-manual.pdf}},
title={Component Manual for the X-ray-Tracing Package McXtrace, Version 1.0},
author={Bergb\"{a}ck Knudsen, Erik and Prodi, Andrea and Willendrup, Peter Kj{\ae}r and Lefmann, Kim},
year={2012}
}
@article{knudsen2013mcxtrace,
title = {McXtrace},
language = {English},
publisher = {WILEY-BLACKWELL},
author = {Bergbäck Knudsen, Erik and Prodi, Andrea and Baltser, Jana and Thomsen, Maria and Willendrup, Peter Kjær and Sanchez Del Rio, Manuel and Ferrero, Claudio and Farhi, Emmanuel and Haldrup, Martin Kristoffer and Vickery, Anette and Feidenhans'l, Robert and Mortensen, Kell and Nielsen, Martin Meedom and Poulsen, Henning Friis and Schmidt, Søren and Lefmann, Kim},
journal = {Journal of Applied Crystallography},
volume = {46},
number = {3},
pages = {679-696},
year = {2013},
issn = {00218898, 16005767},
abstract = {This article presents the Monte Carlo simulation package McXtrace, intended for optimizing X-ray beam instrumentation and performing virtual X-ray experiments for data analysis. The system shares a structure and code base with the popular neutron simulation code McStas and is a good complement to the standard X-ray simulation software SHADOW. McXtrace is open source, licensed under the General Public License, and does not require the user to have access to any proprietary software for its operation. The structure of the software is described in detail, and various examples are given to showcase the versatility of the McXtrace procedure and outline a possible route to using Monte Carlo simulations in data analysis to gain new scientific insights. The studies performed span a range of X-ray experimental techniques: absorption tomography, powder diffraction, single-crystal diffraction and pump-and-probe experiments. Simulation studies are compared with experimental data and theoretical calculations. Furthermore,the simulation capabilities for computing coherent X-ray beam properties and a comparison with basic diffraction theory are presented. © 2013 International Union of Crystallography.},
doi = {10.1107/S0021889813007991}
}
@inproceedings{baltser2011advanced,
title={Advanced simulations of x-ray beam propagation through CRL transfocators using ray-tracing and wavefront propagation methods},
author={Baltser, J. and Knudsen, E. and Vickery, A. and Chubar, O. and Snigirev, A. and Vaughan, G. and Feidenhans'l, R. and Lefmann, K.},
booktitle={Proceedings of SPIE},
volume={8141},
pages={814111},
year={2011}
}
@inproceedings{prodi2011monte,
title={A Monte Carlo approach for simulating the propagation of partially coherent x-ray beams},
author={Prodi, A. and Knudsen, E. and Willendrup, P. and Schmitt, S. and Ferrero, C. and Lefmann, K. and others},
booktitle={Proceedings of SPIE},
volume={8141},
pages={814108},
year={2011}
}
@article{honkimaki1990characteristic,
title={Characteristic X-ray flux from sealed Cr, Cu, Mo, Ag and W tubes},
author={Honkimaki, V. and Sleight, J. and Suortti, P.},
journal={Journal of Applied Crystallography},
volume={23},
number={5},
pages={412--417},
year={1990},
publisher={International Union of Crystallography}
}
@article{krause1979natural,
title={Natural widths of atomic K and L levels, Ka X-ray lines and several KLL Auger lines},
author={Krause, MO and Oliver, JH},
journal={J. Phys. Chem. Ref. Data},
volume={8},
pages={329--338},
year={1979}
}
@article{kraft2009characterization,
title={Characterization and calibration of PILATUS detectors},
author={Kraft, P. and Bergamaschi, A. and Bronnimann, C. and Dinapoli, R. and Eikenberry, EF and Graafsma, H. and Henrich, B. and Johnson, I. and Kobas, M. and Mozzanica, A. and others},
journal={Nuclear Science, IEEE Transactions on},
volume={56},
number={3},
pages={758--764},
year={2009},
publisher={IEEE}
}
@inproceedings{bahrdt2011phase,
title={PHASE: a universal software package for the propagation of time-dependent coherent light pulses along grazing incidence optics},
author={Bahrdt, J. and Flechsig, U. and Gerhardt, S. and Schneider, I.},
booktitle={Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
volume={8141},
pages={153},
year={2011}
}
@article{thomsen2013prediction,
author={Thomsen, Maria et. al.},
journal={In Preparation},
year={2013}
}
@book{warren1990x,
title={X-ray Diffraction},
author={Warren, B.E.},
year={1990},
publisher={Dover Publications}
}
@article{cerenius2000crystallography,
title={The crystallography beamline I711 at MAX II},
author={Cerenius, Y. and Stahl, K. and Svensson, LA and Ursby, T. and Oskarsson, {\AA}. and Albertsson, J. and Liljas, A.},
journal={Journal of Synchrotron Radiation},
volume={7},
number={4},
pages={203--208},
year={2000},
publisher={International Union of Crystallography}
}
@book{shvyd2004x,
title={X-ray optics: high-energy-resolution applications},
author={Shvyd'ko, Y.},
volume={98},
year={2004},
publisher={Springer Verlag}
}
@article{grehk2001design,
title={The design of the material science beamline, I811, at MAX-II},
author={Grehk, TM and Nilsson, PO},
journal={Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
volume={467},
pages={635--638},
year={2001},
publisher={Elsevier}
}
@article{carlson2006xafs,
title={XAFS experiments at beamline I811, MAX-lab synchrotron source, Sweden},
author={Carlson, S. and Claus{\'e}n, M. and Gridneva, L. and Sommarin, B. and Svensson, C.},
journal={Journal of synchrotron radiation},
volume={13},
number={5},
pages={359--364},
year={2006},
publisher={International Union of Crystallography}
}
@article{gutt2012single,
title = {Single Shot Spatial and Temporal Coherence Properties of the SLAC Linac Coherent Light Source in the Hard X-Ray Regime},
author = {Gutt, C. and Wochner, P. and Fischer, B. and Conrad, H. and Castro-Colin, M. and Lee, S. and Lehmk\"uhler, F. and Steinke, I. and Sprung, M. and Roseker, W. and Zhu, D. and Lemke, H. and Bogle, S. and Fuoss, P. H. and Stephenson, G. B. and Cammarata, M. and Fritz, D. M. and Robert, A. and Gr\"ubel, G.},
journal = {Phys. Rev. Lett.},
volume = {108},
issue = {2},
pages = {024801},
numpages = {5},
year = {2012},
month = {Jan},
doi = {10.1103/PhysRevLett.108.024801},
url = {http://link.aps.org/doi/10.1103/PhysRevLett.108.024801},
publisher = {American Physical Society}
}
@article{hugouvieux2007structure,
title={Structure and dynamics of l-Ge: Neutron scattering experiments and ab initio molecular dynamics simulations},
author={Hugouvieux, V. and Farhi, E. and Johnson, M.R. and Juranyi, F. and Bourges, P. and Kob, W.},
journal={Physical Review B},
volume={75},
number={10},
pages={104208},
year={2007},
publisher={APS}
}
@article{seeger2002monte,
title={Monte carlo code comparisons for a model instrument},
author={Seeger, PA and Daemen, LL and Farhi, E. and Lee, W.T. and Wang, X.L. and Passell, L. and {\v{S}}aroun, J. and Zsigmond, G.},
journal={Neutron News},
volume={13},
number={4},
pages={24--29},
year={2002},
publisher={Taylor \& Francis}
}
@article{udby2011analysing,
title={Analysing neutron scattering data using McStas virtual experiments},
author={Udby, L. and Willendrup, P.K. and Knudsen, E. and Niedermayer, C. and Filges, U. and Christensen, N.B. and Farhi, E. and Wells, BO and Lefmann, K.},
journal={Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
volume={634},
number={1},
pages={S138--S143},
year={2011},
publisher={Elsevier}
}
@book{feynman1964feynman,
title={The Feynman Lectures On Physics, Volume I: Mainly Mechanics, Radiation, and Heat},
author={Feynman, R.P. and Leighton, R.B. and Sands, M.},
year={1963},
publisher={Addison Wesley, Reading, Mass}
}
@article{lynch2008sns,
title={SNS-NSTG Collaborative Software Development},
author={Lynch, V.E. and Chen, ML and Cobb, J.W. and Farhi, E. and Kohl, J.A. and Miller, S.D. and Peterson, P.F. and Reuter, M.A. and Travierso, J.A. and Vazhkudai, S.S.},
journal={Proceedings of NOBUGS 2008},
year={2008}
}
@article{coll1986structure,
author = "Coll, M. and Solans, X. and Font-Altaba, M. and Subirana, J. A.",
title = "{Structure of {\sc l}-leucine: a redetermination}",
journal = "Acta Crystallographica Section C",
year = "1986",
volume = "42",
number = "5",
pages = "599--601",
month = "May",
doi = {10.1107/S0108270186095240},
url = {http://dx.doi.org/10.1107/S0108270186095240},
}
@article{farhi2009virtual,
title={Virtual experiments: Combining realistic neutron scattering instrument and sample simulations},
author={Farhi, E. and Hugouvieux, V. and Johnson, MR and Kob, W.},
journal={Journal of Computational Physics},
volume={228},
number={14},
pages={5251--5261},
year={2009},
publisher={Elsevier}
}
@article{farhi,
title="Advanced sources and optical components for the McStas neutron scattering instrument
simulation package",
author="Farhi, E. and Monzat, C. and Arnerin, R. and van~Vuure, T. and C. Castán-Guerrero1 C. and Hennane, C. and Harraud, P. A. and Campioni, G. and Fuard, S. and Ollivier, J. and Willendrup, P.",
journal={Journal of Neutron Research},
year={\noop{9012}In Press}
}
@misc{fermi,
howpublished = {\url{http://www.hpc.cineca.it/content/fermi-7th-most-powerful-supercomputer-worldwide}},
title = {FERMI: the 7th most powerful supercomputer worldwide},
author ={CINECA},
year = {2012}
}
@article{lengeler2002parabolic,
title={Parabolic refractive X-ray lenses},
author={Lengeler, B. and Schroer, C.G. and Benner, B. and Gerhardus, A. and Gunzler, TF and Kuhlmann, M. and Meyer, J. and Zimprich, C.},
journal={Journal of synchrotron radiation},
volume={9},
number={3},
pages={119--124},
year={2002},
publisher={International Union of Crystallography}
}
@article {debye1915scattering,
author = {Debye},
title = {Scattering of x-rays},
journal = {Annalen der Physik},
volume = {46},
number = {6},
pages = {809-823},
year = {1915},
issn = {00033804, 15213889},
abstract = {A mathematical paper dealing with the following points: (1) The energy scattered from a very large number of electrons. (2) Scattering produced by a large number of molecules with rings of electrons. (3) Discussion on the distribution of intensity of the scattered radiation and its relation to Friedrich's interference.}
}
@article{lefmann1999mcstas,
title={McStas, a general software package for neutron ray-tracing simulations},
author={Lefmann, K. and Nielsen, K.},
journal={Neutron News},
volume={10},
number={3},
pages={20--23},
year={1999},
publisher={Taylor \& Francis}
}
@inproceedings{svensson1998automatic,
title={Automatic alignment of a synchrotron radiation source beamline using intelligent systems},
author={Svensson, SO and Pugliese, Roberto},
booktitle={Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
volume={3455},
pages={85--92},
year={1998}
}
@article{haldrup2012guest,
title={Guest-Host Interactions Investigated by Time-Resolved X-ray Spectroscopies and Scattering at MHz Rates: Solvation Dynamics and Photoinduced Spin Transition in Aqueous Fe (bipy) 32+},
author={Haldrup, Kristoffer and Vank{\'o}, Gy{\"o}rgy and Gawelda, Wojciech and Galler, Andreas and Doumy, Gilles and March, Anne Marie and Kanter, Elliot P and Bordage, Amelie and Dohn, Asmus and Van Driel, Tim Brandt and Kjaer, K. S. and Lemke, H. T. and Canton, S. E. and
Uhlig, J. and Sundstrom, V. and Young, L. and Southworth, S. H. and Nielsen, M. M. and Bressler, C},
journal={The Journal of Physical Chemistry A},
year={2012},
publisher={ACS Publications}
}
@article{haldrup2010analysis,
title={Analysis of time-resolved X-ray scattering data from solution-state systems},
author={Haldrup, Kristoffer and Christensen, Morten and Meedom Nielsen, Martin},
journal={Acta Crystallographica Section A: Foundations of Crystallography},
volume={66},
number={2},
pages={261--269},
year={2010},
publisher={International Union of Crystallography}
}
Hvis man skal prale med, at tidsopløsningen med 100 ps pulser kan forbedres ned til ~10 ps niveau:
@article{haldrup2011bond,
Author = {Haldrup, Kristoffer and Harlang, Tobias and Christensen, Morten and
Dohn, Asmus and van Driel, Tim Brandt and Kjaer, Kasper Skov and Harrit,
Niels and Vibenholt, Johan and Guerin, Laurent and Wulff, Michael and
Nielsen, Martin Meedom},
Title = {{Bond Shortening (1.4 angstrom) in the Singlet and Triplet Excited States
of {[}Ir-2(dimen)(4)](2+) in Solution Determined by Time-Resolved X-ray
Scattering}},
Journal = {{INORGANIC CHEMISTRY}},
Year = {{2011}},
Volume = {{50}},
Number = {{19}},
Pages = {{9329-9336}},
Month = {{OCT 3}},
DOI = {{10.1021/ic2006875}},
ISSN = {{0020-1669}},
ResearcherID-Numbers = {{van Driel, Tim/K-3013-2012
Nielsen, Martin/A-5133-2009}},
Times-Cited = {{3}},
Unique-ID = {{ISI:000295115000019}},
}
@article{vartanyants2010coherence,
title={Coherence properties of hard x-ray synchrotron sources and x-ray free-electron lasers},
author={Vartanyants, I A and Singer, A},
journal={New Journal of Physics},
volume={12},
number={3},
pages={035004},
year={2010},
publisher={IOP Publishing}
}
@article{chubar2011application,
title={Application of partially coherent wavefront propagation calculations for design of coherence-preserving synchrotron radiation beamlines},
author={Chubar, Oleg and Chu, Yong S and Kaznatcheev, Konstantine and Yan, Hanfei},
journal={Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
volume={649},
number={1},
pages={118--122},
year={2011},
publisher={Elsevier}
}
@article{willendrup2011using,
title={Using McStas for modelling complex optics, using simple building bricks},
author={Willendrup, Peter K and Udby, Linda and Knudsen, Erik and Farhi, Emmanuel and Lefmann, Kim},
journal={Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
volume={634},
number={1},
pages={S150--S155},
year={2011},
publisher={Elsevier}
}
@article{spectra,
author = "Tanaka, Takashi and Kitamura, Hideo",
title = "{\textit{SPECTRA}: a synchrotron radiation calculation code}",
journal = "Journal of Synchrotron Radiation",
year = "2001",
volume = "8",
number = "6",
pages = "1221--1228",
month = "Nov",
doi = {10.1107/S090904950101425X},
url = {http://dx.doi.org/10.1107/S090904950101425X},
}
@article{matsumoto1998mersenne,
title={Mersenne twister: a 623-dimensionally equidistributed uniform pseudo-random number generator},
author={Matsumoto, Makoto and Nishimura, Takuji},
journal={ACM Transactions on Modeling and Computer Simulation (TOMACS)},
volume={8},
number={1},
pages={3--30},
year={1998},
publisher={ACM}
}
|