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 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
|
package Demeter::Atoms;
=for Copyright
.
Copyright (c) 2006-2019 Bruce Ravel (http://bruceravel.github.io/home).
All rights reserved.
.
This file is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See The Perl
Artistic License.
.
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.
=cut
use autodie qw(open close);
use Moose;
extends 'Demeter';
with 'Demeter::Tools';
with 'Demeter::Atoms::Absorption';
with 'Demeter::Atoms::Cif' if $Demeter::STAR_Parser_exists;
use Demeter::StrTypes qw( Element
Edge
AtomsLattice
AtomsGas
AtomsObsolete
SpaceGroup
FileName
Empty
);
use Demeter::NumTypes qw( Natural
PosInt
PosNum
NonNeg
OneToFour
FeffVersions
);
#use diagnostics;
use Carp;
use Chemistry::Elements qw(get_Z);
use File::Basename;
use List::Util qw(min max reduce);
use List::MoreUtils qw(any);
#use Math::Cephes::Fraction qw(fract);
use POSIX qw(ceil);
use Safe;
use Scalar::Util qw(looks_like_number);
use Text::Template;
use Xray::Absorption;
use Xray::Crystal;
use Demeter::Constants qw($NUMBER $SEPARATOR $EPSILON4 $FEFFNOTOK);
use Const::Fast;
const my $FRAC => 100000;
const my %EDGE_INDEX => (k =>1, l1=>2, l2=>3, l3=>4,
m1=>5, m2=>6, m3=>7, m4=>8, m5=>9,
n1=>10, n2=>11, n3=>12, n4=>13, n5=>14, n6=>15, n7=>16,
);
#has 'cell' => (is => 'rw', isa =>Empty.'|Xray::Crystal::Cell', default=> q{});
has 'cell' => (is => 'rw', isa =>'Any', default=> sub{Xray::Crystal::Cell->new;},
);
has 'message_buffer' => (is => 'rw', isa => 'Str', default => q{});
has 'space' => (is => 'rw', isa => 'Str', default => sub{q{}},
trigger => sub{ my ($self, $new) = @_;
return if not $new;
$new = $self->colon_in_group($new);
$self -> cell -> space_group($new);
$self->is_populated(0);
$self->absorption_done(0);
$self->mcmaster_done(0);
$self->i0_done(0);
$self->self_done(0);
});
has $_ => (is => 'rw', isa => 'Bool', default => 0,)
foreach (qw(is_rhomb is_hex is_first is_second));
has 'a' => (is => 'rw', isa => NonNeg, default=> 0,
trigger => sub{ my ($self, $new) = @_;
return if not $new;
$self->is_populated(0);
$self->absorption_done(0);
$self->mcmaster_done(0);
$self->i0_done(0);
$self->self_done(0);
});
has 'b' => (is => 'rw', isa => NonNeg, default=> 0,
trigger => sub{ my ($self, $new) = @_;
return if not $new;
$self->is_populated(0);
$self->absorption_done(0);
$self->mcmaster_done(0);
$self->i0_done(0);
$self->self_done(0);
});
has 'c' => (is => 'rw', isa => NonNeg, default=> 0,
trigger => sub{ my ($self, $new) = @_;
return if not $new;
$self->is_populated(0);
$self->absorption_done(0);
$self->mcmaster_done(0);
$self->i0_done(0);
$self->self_done(0);
});
has 'alpha' => (is => 'rw', isa => NonNeg, default=> 90,
trigger => sub{ my ($self, $new) = @_;
return if not $new;
$self->is_populated(0);
$self->absorption_done(0);
$self->mcmaster_done(0);
$self->i0_done(0);
$self->self_done(0);
});
has 'beta' => (is => 'rw', isa => NonNeg, default=> 90,
trigger => sub{ my ($self, $new) = @_;
return if not $new;
$self->is_populated(0);
$self->absorption_done(0);
$self->mcmaster_done(0);
$self->i0_done(0);
$self->self_done(0);
});
has 'gamma' => (is => 'rw', isa => NonNeg, default=> 90,
trigger => sub{ my ($self, $new) = @_;
return if not $new;
$self->is_populated(0);
$self->absorption_done(0);
$self->mcmaster_done(0);
$self->i0_done(0);
$self->self_done(0);
});
has 'rmax' => (is => 'rw', isa => NonNeg, default=> sub{ shift->co->default("atoms", "rmax") || 8},
trigger => sub{ my ($self, $new) = @_; $self->is_expanded(0) if $new});
has 'rpath' => (is => 'rw', isa => NonNeg, default=> sub{ shift->co->default("atoms", "rpath") || 5},
trigger => sub{ my ($self, $new) = @_; $self->is_expanded(0) if $new});
has 'rscf' => (is => 'rw', isa => NonNeg, default=> sub{ shift->co->default("atoms", "rscf") || 5},);
has 'do_scf' => (is => 'rw', isa =>'Bool', default=> 1);
has 'do_xanes' => (is => 'rw', isa =>'Bool', default=> 0);
has 'rss' => (is => 'rw', isa => NonNeg, default=> 0);
has 'edge' => (is => 'rw', isa => Empty.'|'.Edge, coerce => 1, default=> q{},
trigger => sub{ my ($self, $new) = @_;
if (exists($EDGE_INDEX{lc($new)})) {
my ($central, $xcenter, $ycenter, $zcenter) = $self -> cell -> central($self->core);
$self->iedge($EDGE_INDEX{lc($new)});
$self->eedge(Xray::Absorption->get_energy($central->element, $new)) if ($central =~ m{Site});
} else {
$self->iedge(0);
$self->eedge(0);
};
});
has 'iedge' => (is => 'rw', isa => Natural, default=> 1);
has 'eedge' => (is => 'rw', isa => NonNeg, default=> 0);
has 'core' => (is => 'rw', isa =>'Str', default=> q{});
has 'corel' => (is => 'rw', isa =>'Str', default=> q{});
has 'partial_occupancy' => (is => 'rw', isa =>'Bool', default=> 0);
has 'shiftvec' => (
traits => ['Array'],
is => 'rw',
isa => 'ArrayRef',
default => sub { [0, 0, 0] },
handles => {
'push_shiftvec' => 'push',
'pop_shiftvec' => 'pop',
'clear_shiftvec' => 'clear',
}
);
has 'polarization' => (
traits => ['Array'],
is => 'rw',
isa => 'ArrayRef',
default => sub { [0, 0, 0] },
handles => {
'push_polarization' => 'push',
'pop_polarization' => 'pop',
'clear_polarization' => 'clear',
}
);
has 'ellipticity' => (
traits => ['Array'],
is => 'rw',
isa => 'ArrayRef',
default => sub { [0, 0, 0] },
handles => {
'push_ellipticity' => 'push',
'pop_ellipticity' => 'pop',
'clear_ellipticity' => 'clear',
}
);
has 'file' => (is => 'rw', isa =>FileName, default=> q{},
trigger => sub{ my ($self, $new) = @_;
if ($new) {
$self->read_inp;
#$self->update_edge;
};
});
has 'cif' => (is => 'rw', isa =>FileName, default=> q{},
trigger => sub{ my ($self, $new) = @_;
if ($new) {
if (not $Demeter::STAR_Parser_exists) {
warn "STAR::Parser is not available, so CIF files cannot be imported";
return;
};
$self->read_cif;
#$self->update_edge;
};
});
has 'record' => (is => 'rw', isa => NonNeg, default=> 0,
trigger => sub{ my ($self, $new) = @_;
if (not $Demeter::STAR_Parser_exists) {
warn "STAR::Parser is not available, so CIF files cannot be imported";
return;
};
$self->read_cif if ($self->cif);
});
has 'titles' => (
traits => ['Array'],
is => 'rw',
isa => 'ArrayRef[Str]',
default => sub { [] },
handles => {
'push_titles' => 'push',
'pop_titles' => 'pop',
'clear_titles' => 'clear',
}
);
has 'ipot_style' => (is => 'rw', isa =>'Str', default=> sub{ shift->mo->config->default("atoms","ipot_style") || 'elements'},
trigger => sub{ my ($self, $new) = @_; $self->is_ipots_set(0) if $new});
has 'feff_version' => (is => 'rw', isa => FeffVersions, default=>sub{ shift->mo->config->default("atoms","feff_version") || 6});
has 'nitrogen' => (is => 'rw', isa => NonNeg, default=> 0,
trigger => sub{ my ($self, $new) = @_; ($new) ? $self->gases_set(1) : $self->gases_set(0) });
has 'argon' => (is => 'rw', isa => NonNeg, default=> 0,
trigger => sub{ my ($self, $new) = @_; ($new) ? $self->gases_set(1) : $self->gases_set(0) });
has 'xenon' => (is => 'rw', isa => NonNeg, default=> 0,
trigger => sub{ my ($self, $new) = @_; ($new) ? $self->gases_set(1) : $self->gases_set(0) });
has 'krypton' => (is => 'rw', isa => NonNeg, default=> 0,
trigger => sub{ my ($self, $new) = @_; ($new) ? $self->gases_set(1) : $self->gases_set(0) });
has 'helium' => (is => 'rw', isa => NonNeg, default=> 0,
trigger => sub{ my ($self, $new) = @_; ($new) ? $self->gases_set(1) : $self->gases_set(0) });
has 'gases_set' => (is => 'rw', isa =>'Bool', default=> 0);
has 'xsec' => (is => 'rw', isa =>'LaxNum', default=> 0);
has 'deltamu' => (is => 'rw', isa =>'LaxNum', default=> 0);
has 'density' => (is => 'rw', isa =>'LaxNum', default=> 0);
has 'mcmaster' => (is => 'rw', isa =>'LaxNum', default=> 0,
trigger => sub{ my ($self, $new) = @_; my $n= $self->netsig; $self->netsig($n+$new); });
has 'i0' => (is => 'rw', isa =>'LaxNum', default=> 0,
trigger => sub{ my ($self, $new) = @_; my $n= $self->netsig; $self->netsig($n+$new); });
has 'selfamp' => (is => 'rw', isa =>'LaxNum', default=> 0);
has 'selfsig' => (is => 'rw', isa =>'LaxNum', default=> 0,
trigger => sub{ my ($self, $new) = @_; my $n= $self->netsig; $self->netsig($n+$new); });
has 'netsig' => (is => 'rw', isa =>'LaxNum', default=> 0);
has 'is_imported' => (is => 'rw', isa =>'Bool', default=> 0,
trigger => sub{ my ($self, $new) = @_; $self->is_populated(0) if ($new==0); });
has 'is_populated' => (is => 'rw', isa =>'Bool', default=> 0,
trigger => sub{ my ($self, $new) = @_; $self->is_ipots_set(0) if ($new==0); });
has 'is_ipots_set' => (is => 'rw', isa =>'Bool', default=> 0,
trigger => sub{ my ($self, $new) = @_; $self->is_expanded(0) if ($new==0); });
has 'is_expanded' => (is => 'rw', isa =>'Bool', default=> 0);
has 'absorption_done' => (is => 'rw', isa =>'Bool', default=> 0);
has 'mcmaster_done' => (is => 'rw', isa =>'Bool', default=> 0);
has 'i0_done' => (is => 'rw', isa =>'Bool', default=> 0);
has 'self_done' => (is => 'rw', isa =>'Bool', default=> 0);
has 'sites' => (
traits => ['Array'],
is => 'rw',
isa => 'ArrayRef',
default => sub { [] },
handles => {
'push_sites' => 'push',
'pop_sites' => 'pop',
'clear_sites' => 'clear',
}
);
has 'cluster' => (
traits => ['Array'],
is => 'rw',
isa => 'ArrayRef',
default => sub { [] },
handles => {
'push_cluster' => 'push',
'pop_cluster' => 'pop',
'clear_cluster' => 'clear',
}
);
has 'nclus' => (is => 'rw', isa =>'Str', default=> 0);
sub BUILD {
my ($self, @params) = @_;
$self->mo->push_Atoms($self);
};
sub DEMOLISH {
my ($self) = @_;
$self->alldone;
};
sub refresh {
my ($self) = @_;
$self->is_populated(0);
};
sub out {
my ($self, $key) = @_;
my $format = $self->co->default("atoms", "precision") || "9.5f";
$format = '%' . $format;
my $val = sprintf("$format", $self->$key);
return $val;
};
sub clear {
my ($self) = @_;
$self->$_(0) foreach (qw(a b c nitrogen argon xenon helium krypton gases_set rss eedge));
$self->$_(0) foreach (qw(is_rhomb is_hex is_first is_second do_xanes));
$self->$_(1) foreach (qw(do_scf iedge));
$self->rmax( Demeter->co->default('atoms', 'rmax') );
$self->rpath(Demeter->co->default('atoms', 'rpath'));
$self->rscf( Demeter->co->default('atoms', 'rscf') );
$self->$_(90) foreach (qw(alpha beta gamma));
$self->space(q{});
$self->edge(q{});
$self->core(q{});
$self->corel(q{});
$self->clear_sites;
$self->clear_cluster;
$self->shiftvec([0,0,0]);
$self->polarization([0,0,0]);
$self->ellipticity([0,0,0]);
$self->clear_titles;
$self->cell(Xray::Crystal::Cell->new);
$self->is_imported(0);
$self->is_populated(0);
$self->is_ipots_set(0);
$self->is_expanded(0);
$self->absorption_done(0);
$self->mcmaster_done(0);
$self->i0_done(0);
$self->self_done(0);
};
sub read_inp {
my ($self) = @_;
my $reading_atoms_list = 0;
$self->clear;
my $file = $self->file;
croak("Atoms: no input file provided") if (not $file);
croak("Atoms: \"$file\" does not exist") if (not -e $file);
croak("Atoms: \"$file\" could not be read") if (not -r $file);
#$self->set(file=>$file);
open(my $INP, $file);
while (my $line = (<$INP>)) {
next if ($line =~ m{\A\s*\z});
next if ($line =~ m{\A\s*[\#\%\!\*]});
next if ($line =~ m{\A\s*-{2,}});
chomp $line;
$line =~ s{^\s+}{};
$line =~ s{\s+$}{};
($reading_atoms_list) and do {
$self->parse_atoms_line($line);
next;
};
($line =~ m{\A\s*title}) and do {
$line =~ s{\A\s*title\s*=?\s*}{};
$self->push_titles($line);
next;
};
($line =~ m{\A\s*atoms?}) and do {
# read the remaining lines as the atoms list
$reading_atoms_list = 1;
next;
};
## parse each line
$self->parse_line($line);
};
close $INP;
if (not $self->core) {
my $maxz = 0;
foreach my $site (@{$self->sites}) {
my @list = split(/\|/, $site);
if (get_Z($list[0]) > $maxz) {
$maxz = get_Z($list[0]);
$self->core($list[4]);
};
};
};
$self->is_imported(1);
return $self;
};
sub parse_line {
my ($self, $line) = @_;
#return if not $line;
my $file = $self->file;
my @words = split(/$SEPARATOR/, $line);
my $key = shift @words;
(my $rest = $line) =~ s{\A$key$SEPARATOR}{};
if ($key =~ m{space(?:group)?}i) {
my $end = (length($rest) < 13) ? length($rest) : 13;
my $sg = substr($rest, 0, $end);
$self->space($sg);
$self->alpha($self->cell->alpha);
$self->beta ($self->cell->beta );
$self->gamma($self->cell->gamma);
$rest = substr($rest, $end, -1);
} else {
@words = split(/$SEPARATOR/, $rest);
my $val = shift @words;
$rest =~ s{$val(?:$SEPARATOR)?}{};
my $vv = ($key =~ m{\bout}) ? shift @words : q{};
$rest =~ s{$vv(?:$SEPARATOR)?}{};
my $vvv = ($key =~ m{shi|daf|qve|ref|pol|ell}) ? shift @words : q{};
$rest =~ s{$vvv(?:$SEPARATOR)?}{};
my $vvvv = ($key =~ m{shi|daf|qve|ref|pol|ell}) ? shift @words : q{};
$rest =~ s{$vvvv(?:$SEPARATOR)?}{};
return if ($key =~ m{\#});
$key = lc($key);
my $kk = ($key =~ m{shi}) ? 'shiftvec'
: ($key =~ m{pol}) ? 'polarization'
: $key;
if (($self->meta->has_method($kk)) and ($key =~ m{shi|daf|qve|ref|pol|ell})) {
if ((not looks_like_number($val)) or (not looks_like_number($val)) or (not looks_like_number($val))) {
carp("\"$key\" takes three numbers as its value\nfound \"$key = $val $vvv $vvvv\"\n($file line $.)\n\n");
return $self;
} else {
$self->$kk([$val, $vvv, $vvvv]);
}
} elsif ($self->meta->has_method($key)) {
if ((any {$key eq $_} (qw(a b c alpha beta gamma rmax rpath rscf nitrogen argon xenon krypton helium)))
and (not looks_like_number($val))) {
carp("\"$key\" takes a number as its value\nfound \"$key = $val\"\n($file line $.)\n\n");
return $self;
} else {
$self->$key(lc($val));
};
} elsif (is_AtomsObsolete($key)) {
carp("\"$key\" is a deprecated Atoms keyword ($file line $.)\n\n");
return $self;
} else {
carp("\"$key\" is not an Atoms keyword ($file line $.)\n\n");
return $self;
};
};
$self->parse_line($rest) if (($rest !~ m{\A\s*\z}) and ($rest !~ m{\A\s*[\#\%\!\*]}));
return $self;
};
sub parse_atoms_line {
my ($self, $line) = @_;
return 0 if ($line =~ m{\A\s*[\#\%\!\*]});
my ($el, $x, $y, $z, $tag) = split(" ", $line);
$tag ||= $el;
($tag = $el) if ($tag =~ m{\A$NUMBER\z});
$tag =~ s{$FEFFNOTOK}{}g; # scrub characters that will confuse Feff
my $this = join("|",$el, $x, $y, $z, $tag);
$self->push_sites($this);
return $self;
};
sub colon_in_group {
my ($self, $group) = @_;
if ($group =~ m{:\s*([12hHrR])\s*\z}) {
my $colon = $1;
(my $stripped = $group) =~ s{\s*:\s*[12hHrR]\s*\z}{};
$self->is_rhomb(1) if (lc($colon) eq 'r');
$self->is_hex(1) if (lc($colon) eq 'h');
$self->is_first(1) if ($colon eq '1');
$self->is_second(1) if ($colon eq '2');
return $stripped;
} else {
return $group;
};
};
sub populate {
my ($self) = @_;
my @sites;
my $ra = $self->sites;
foreach my $s (@$ra) {
my ($el, $x, $y, $z, $tag) = split(/\|/, $s);
croak("$el is not a valid element symbol\n") if not is_Element($el);
next if (lc($el) =~ m{\Anu});
push @sites, Xray::Crystal::Site->new(element=>$el, x=>_interpret($x), y=>_interpret($y), z=>_interpret($z), tag=>$tag);
};
### creating and populating cell
return $self if not $self->space;
$self -> cell -> space_group($self->space);
$self -> handle_colon;
foreach my $key (qw(a b c alpha beta gamma)) {
my $val = $self->$key;
$self -> cell->$key($val) if $val;
};
## Group: $cell->get(qw(given_group space_group class setting))
## Bravais: $cell->get('bravais')
$self -> cell -> shiftvec($self->shiftvec);
$self -> cell -> populate(\@sites);
foreach my $key (qw(a b c alpha beta gamma)) {
$self->$key($self->cell->$key);
};
my ($central, $xcenter, $ycenter, $zcenter) = $self -> cell -> central($self->core);
$self->update_edge;
$self->set(is_populated => 1,
corel => ucfirst(lc($central->element)),
);
return $self;
};
sub element_check {
my ($self, $sym) = @_;
return is_Element($sym);
};
sub _interpret {
my ($str) = @_;
my $cpt = new Safe;
my $retval = $cpt->reval($str);
return $retval;
};
sub build_cluster {
my ($self) = @_;
$self->populate if (not $self->is_populated);
my ($cell, $core) = $self->get("cell", "core");
my @sites = @{ $cell->sites };
map { $_ -> in_cluster(0) } @sites;
#Demeter->pjoin('build_cluster',$self->get(qw(a b c alpha beta gamma)));
#Demeter->pjoin('build_cluster',$self->cell->get(qw(txx tyx tyz tzx tzz)));
my $rmax = $self->rmax;
my @cluster = ();
my ($central, $xcenter, $ycenter, $zcenter) = $cell -> central($core);
my $setting = $cell->group->setting;
my $crystal_class = $cell->group->class;
my $do_tetr = ($crystal_class eq "tetragonal" ) && ($setting);
#### here
my ($aa, $bb, $cc) = $cell -> get("a", "b", "c");
my $xup = ceil($rmax/$aa - 1 + $xcenter);
my $xdn = ceil($rmax/$aa - $xcenter);
my $yup = ceil($rmax/$bb - 1 + $ycenter);
my $ydn = ceil($rmax/$bb - $ycenter);
my $zup = ceil($rmax/$cc - 1 + $zcenter);
my $zdn = ceil($rmax/$cc - $zcenter);
##print join(" ", "up,dn", $xup, $xdn, $yup, $ydn, $zup, $zdn), $/;
#my $num_z = int($rmax/$cc) + 1; # |
my $rmax_squared = $rmax**2; # (sprintf "%9.5f", $rmax**2);
my ($contents) = $cell -> contents;
foreach my $nz (-$zdn .. $zup) {
foreach my $ny (-$ydn .. $yup) {
foreach my $nx (-$xdn .. $xup) {
foreach my $pos (@{$contents}) {
my ($x, $y, $z) = ($$pos[1]+$nx, $$pos[2]+$ny, $$pos[3]+$nz);
($x, $y, $z) = ($x-$xcenter, $y-$ycenter, $z-$zcenter);
($x, $y, $z) = $cell -> metric($x, $y, $z);
($do_tetr) and ($x, $y) = (($x+$y)/sqrt(2), ($x-$y)/sqrt(2));
#my ($fx, $fy, $fz) = &rectify_formula(@$pos[4..6], $nx, $ny, $nz);
#printf "out: %25s %25s %25s\n\n", $fx, $fy, $fz;
my $r_squared = sprintf "%9.5f", $x**2 + $y**2 + $z**2;
if ($r_squared < $rmax_squared) {
my $this_site = [$x, $y, $z, $$pos[0],
$r_squared, # cache the
(sprintf "%11.7f", $x), # stuff needed
(sprintf "%11.7f", $y), # for sorting
(sprintf "%11.7f", $z),
#$fx, $fy, $fz,
];
$$pos[0] -> in_cluster(1);
push @cluster, $this_site;
## (push @neutral, $this_site);
};
};
};
};
};
## =============================== sort the cluster (& neutral clus.)
@cluster = sort {
($a->[4] cmp $b->[4]) # sort by distance squared or ...
or
($a->[3] cmp $b->[3]) # by tag alphabetically (using string coercion) or ...
or
($a->[7] cmp $b->[7]) # by z value or ...
or
($a->[6] cmp $b->[6]) # by y value or ...
or
($a->[5] cmp $b->[5]) # by x value
## or
## ($ {$b->[3]}->{Host} <=> $ {$a->[3]}->{Host}); # hosts before dopants
} @cluster;
if ($#cluster > 499) {
carp(sprintf('Your cluster has more than 500 atoms, which is the hard-wired limit for Feff6L.
Feff6L was run using only the first 500 atoms.
You might want to reduce the value of the cluster size (Rmax = %.2f).\n', $self->rmax));
};
if ($#cluster <= 0) {
carp sprintf('You have specified crystal data resulting in 0 scattering atoms.
Possible reasons include:
* One or more lattice constant is very large
* The cluster size (Rmax = %.2f) is too small
* You have used cartesian coordinates for sites rather
than fractional coordinates
', $self->rmax);
return $self;
};
$self->set(cluster => \@cluster,
nclus => $#cluster+1,
rss => sprintf('%'.$self->co->default("atoms", "precision"),
$cluster[1]->[4]*$self->co->default("atoms", "smallsphere")),
);
# ## final adjustment to the formulas, store the formulas for the
# ## central atom ...
# $keys -> {cformulas} =
# [$$r_cluster[0][8], $$r_cluster[0][9], $$r_cluster[0][10]];
# ## ## ... subtract the central atom coordinates from each site ...
# ## foreach my $site (reverse(@$r_cluster)) {
# ## (@$site[8..10]) =
# ## ($$site[8] . " - Xc", $$site[9] . " - Yc", $$site[10] . " - Zc");
# ## };
# ## ## ... and set the central atom to an empty string
# ## ($$r_cluster[0][8], $$r_cluster[0][9], $$r_cluster[0][10]) = ("", "", "");
## if this is a tetragonal crystal in the C or F setting , rotate
## all the coordinates back to the original setting
if ($do_tetr) {
my ($a, $b) = $cell->get("a", "b");
$cell->b($a*sqrt(2));
$cell->b($b*sqrt(2));
};
$self->is_expanded(1);
return $self;
};
sub set_ipots {
my ($self) = @_;
$self->build_cluster if (not $self->is_expanded);
if ($#{$self->cluster} == 0) {
carp("You have no scattering atoms in the cluster.\n\n");
return -1;
};
my ($cell, $how) = $self->get("cell", "ipot_style");
my @sites = @{ $cell->sites };
my $i = 1;
my %seen = ();
if ($how =~ m{\Ata}) {
foreach my $s (@sites) {
if ($s->in_cluster) {
my $tag = lc($s->tag);
$seen{$tag} = $i++ if (not $seen{$tag});
$s -> ipot($seen{$tag});
};
};
} elsif ($how =~ m{\Ael}) {
foreach my $s (@sites) {
if ($s->in_cluster) {
my $el = lc($s->element);
$seen{$el} = $i++ if (not $seen{$el});
$s -> ipot($seen{$el});
};
};
} else { ## sites
foreach my $s (@sites) {
if ($s->in_cluster) {
$s -> ipot($i);
++$i
};
};
};
## get the reduced stoichiometry for feff8's potentials list
my @count = (0,0,0,0,0,0,0,0);
my $top = -999;
foreach my $s (@sites) {
my $ipot = $s->ipot;
$count[$ipot] += $s->in_cell;
$top = max($top, $ipot);
};
## get greatest common divisor (thanks to Demeter::Tools for
## "euclid" (which was swiped from Math::Numbers) and List::Util for
## "reduce")
if ($self->co->default("atoms", "gcd")) {
my $gcd = reduce { ($self->euclid($a,$b))[0] } @count[1..$top];
foreach my $s (1 .. $top) {
$count[$s] /= $gcd;
};
};
foreach my $s (@sites) {
my $ipot = $s->ipot;
$s->stoi($count[$ipot]);
};
$self->is_ipots_set(1);
if (--$i > 7) {
my $ii = $i+1;
carp("You have $ii unique potentials, but Feff only allows 7.\n\n");
return -1;
};
return 0;
};
override 'template' => sub {
my ($self, $file, $rhash) = @_;
my $cell = $self->cell;
my $tmpl = File::Spec->catfile(dirname($INC{"Demeter.pm"}),
"Demeter",
"templates",
"atoms",
"$file.tmpl");
croak("Unknown Atoms template file -- type $file: $tmpl") if (not -e $tmpl);
my $template = Text::Template->new(TYPE => 'file', SOURCE => $tmpl)
or croak("Couldn't construct template: $Text::Template::ERROR");
$rhash ||= {};
my $string = $template->fill_in(HASH => {A => \$self,
C => \$cell,
%$rhash},
PACKAGE => "Demeter::Templates");
$string ||= q{};
$string =~ s{^\s+}{}; # remove leading white space
$string =~ s{\n(?:[ \t]+\n)+}{\n}; # regularize white space between blocks of text
$string =~ s{\s+$}{\n}; # remove trailing white space
$string =~ s{<<->>\n}{}g; # convert newline token into a real newline
$string =~ s{<<nl>>}{\n}g; # convert newline token into a real newline
$string =~ s{<<( *)>>}{$1}g; #} # convert white space token into real white space
return $string;
};
sub cluster_list {
my ($self, $pattern) = @_;
$pattern ||= " %9.5f %9.5f %9.5f %d %-10s %9.5f\n";
$self->set_ipots if (not $self->is_ipots_set);
my $string = q{};
my @list = @ {$self->cluster };
my $abs = shift @list; # absorber must be ipot 0
$string .= sprintf($pattern,
$abs->[0], $abs->[1], $abs->[2],
0, $abs->[3]->tag, sqrt($abs->[4])
);
my %seen; # index tags by shell
foreach my $pos (@list) {
if (not defined($seen{$pos->[3]->tag})) {
$seen{$pos->[3]->tag} = [1, sqrt($pos->[4])];
};
++$seen{$pos->[3]->tag}->[0] if (sqrt($pos->[4]) - $seen{$pos->[3]->tag}->[1] > $EPSILON4); # increment index if R has increased
my $tag = join(".", $pos->[3]->tag, $seen{$pos->[3]->tag}->[0]);
$string .= sprintf($pattern,
$pos->[0], $pos->[1], $pos->[2],
$pos->[3]->ipot, $tag, sqrt($pos->[4])
);
$seen{$pos->[3]->tag}->[1] = sqrt($pos->[4]);
};
return $string;
};
sub xyz_list {
my ($self, $pattern) = @_;
$pattern ||= " %-10s %9.5f %9.5f %9.5f\n";
my $string = q{};
my @list = @ {$self->cluster };
foreach my $pos (@list) {
$string .= sprintf($pattern, $pos->[3]->element, $pos->[0], $pos->[1], $pos->[2]);
};
return $string;
};
sub alchemy_list {
my ($self, $pattern) = @_;
$pattern ||= " %4d %-2s %9.5f %9.5f %9.5f 0.00\n";
my $string = q{};
my @list = @ {$self->cluster };
my $count = 1;
foreach my $pos (@list) {
$string .= sprintf($pattern, $count, $pos->[3]->element, $pos->[0], $pos->[1], $pos->[2]);
++$count;
};
return $string;
};
sub R {
my ($self, $x, $y, $z) = @_;
return sqrt($x**2 + $y**2 + $z**2);
};
sub potentials_list {
my ($self, $pattern) = @_;
$self->set_ipots if (not $self->is_ipots_set);
$pattern ||= " %d %-2d %-10s\n";
my $is_feff8 = 0;
my @list = split(" ", $pattern);
$is_feff8 = 2 if ($#list > 3);
my ($cell, $core) = $self->get("cell", "core");
my @sites = @{ $cell->sites };
my $string = q{};
my %seen = ();
my ($abs) = $cell->central($core);
my $l = Xray::Absorption->get_l($abs->element);
@list = ($is_feff8) ? (0, get_Z($abs->element), $abs->element, $l, $l, 0.001) : (0, get_Z($abs->element), $abs->element);
$string .= sprintf($pattern, @list);
foreach my $s (sort {$a->ipot <=> $b->ipot} @sites) {
next if not $s->ipot;
next if $seen{$s->ipot};
$l = Xray::Absorption->get_l($s->element);
@list = ($is_feff8) ? ($s->ipot, get_Z($s->element), $s->element, $l, $l, $s->stoi) : ($s->ipot, get_Z($s->element), $s->element);
$string .= sprintf($pattern, @list);
$seen{$s->ipot} = 1;
};
return $string;
};
sub sites_list {
my ($self, $rhash) = @_;
$self->populate if (not $self->is_populated);
my $prec = '%'.$self->co->default("atoms", "precision");
$rhash->{pattern} ||= " %-2s $prec $prec $prec %-10s\n";
$rhash->{prefix} ||= q{};
my $cell = $self->cell;
my $rlist = $cell->sites;
my $string = q{};
foreach my $l (@$rlist) {
$string .= $rhash->{prefix} . sprintf($rhash->{pattern},
ucfirst(lc($l->element)),
$l->x, $l->y, $l->z, $l->tag);
};
return $string;
};
sub p1_list {
my ($self, $rhash) = @_;
$self->populate if (not $self->is_populated);
my $prec = '%'.$self->co->default("atoms", "precision");
$rhash->{pattern} ||= " %-2s $prec $prec $prec %-10s\n";
$rhash->{prefix} ||= q{};
$rhash->{cartesian} ||= 0;
my $cell = $self->cell;
my $rlist = $cell->contents;
my $string = q{};
foreach my $l (@$rlist) {
if ($rhash->{cartesian}) {
my @list = $cell->metric($$l[1], $$l[2], $$l[3]);
$string .= $rhash->{prefix} . sprintf($rhash->{pattern},
ucfirst(lc($l->[0]->element)),
@list, $l->[0]->tag)
} else {
$string .= $rhash->{prefix} . sprintf($rhash->{pattern},
ucfirst(lc($l->[0]->element)),
$$l[1], $$l[2], $$l[3], $l->[0]->tag)
};
};
return $string;
};
sub sg {
my ($self, $which, $pattern) = @_;
$self->populate if (not $self->is_populated);
($which = "shorthand") if ($which eq 'nicknames');
my $cell = $self->cell;
my $rhash = $cell->group->data;
$pattern ||= " %-8s %-8s %-8s\n";
my ($prefix, $postfix) = ($which =~ m{(?:bravais|shiftvec)})
? (" ", $/)
: (q{}, q{});
## typo?
return q{} if (not is_SpaceGroup($which));
## ---------------------------------
## number of positions
if ($which eq "npos") {
my @positions;
if (defined($$rhash{positions})) {
@positions = @ {$$rhash{positions}};
} else {
@positions = @ {$$rhash{$cell->group->{setting}}};
}
return $#positions + 1;
};
## ---------------------------------
## number or symbol
#return $$rhash{$which} if ($which =~ m{(?:number|full|newsymbol|thirtyfive)});
if (($which =~ m{(?:number|newsymbol|thirtyfive)})) {
return ucfirst($self->cell->group->$which) || '<none>';
};
if ($which eq 'full') {
return ucfirst($self->cell->group->full);
};
## ---------------------------------
## key is absent from this entry in database
return "$prefix<none>$postfix" if ((not exists($$rhash{$which})) and ($which ne "bravais") and ($which ne "positions"));
## ---------------------------------
## schoenflies
return ucfirst($$rhash{schoenflies}) if ($which eq "schoenflies");
## ---------------------------------
## nicknames
return join(", ", @{$$rhash{shorthand}}) if ($which eq "shorthand");
## ---------------------------------
## shift vector from Int'l Tables
if ($which eq "shiftvec") {
#my @shift = map {fract($FRAC*$_, $FRAC)} @{ $$rhash{shiftvec} };
#return sprintf($pattern, map {$_->as_mixed_string} @shift);
my @shift = map {$self->fract($_)} @{ $$rhash{shiftvec} };
return sprintf($pattern, @shift);
};
## ---------------------------------
## Bravais translations
if ($which eq "bravais") {
my @bravais = @{ $cell->group->bravais };
my $string = q{};
while (@bravais) {
#my @vec = (fract($FRAC*shift(@bravais), $FRAC),
# fract($FRAC*shift(@bravais), $FRAC),
# fract($FRAC*shift(@bravais), $FRAC),
# );
#$string .= sprintf($pattern, map {$_->as_mixed_string} @vec);
my @vec = ($self->fract(shift(@bravais)),
$self->fract(shift(@bravais)),
$self->fract(shift(@bravais)),
);
$string .= sprintf($pattern, @vec);
};
return $string;
};
## ---------------------------------
## symetric positions
if ($which eq "positions") {
my @positions;
if (defined($$rhash{positions})) {
@positions = @ {$$rhash{positions}};
} else {
@positions = @ {$$rhash{$cell->group->{setting}}};
}
my $string = q{};
my $npos = $#positions + 1;
#$string .= " $npos positions:\n";
foreach my $pos (@positions) {
my @this = @{ $pos };
map { $this[$_] =~ s{\$}{}g } (0 .. 2);
$string .= sprintf($pattern, map {($_ =~ m{\A\-}) ? $_ : " $_"} @this);
};
return $string;
};
return q{};
};
sub all_titles {
my ($self, $prefix) = @_;
$prefix ||= " TITLE ";
my @titles = @{ $self->titles };
my $string = q{};
foreach my $t (@titles) {
$string .= $prefix . $t . $/;
};
return $string;
};
sub update_absorption {
my ($self) = @_;
$self->_absorption if not $self->absorption_done;
$self->_mcmaster if not $self->mcmaster_done;
$self->_i0 if (($self->gases_set) and not $self->i0_done);
$self->_self if (($self->gases_set) and not $self->self_done);
return $self;
};
sub update_edge {
my ($self) = @_;
my $edge = $self->edge;
my ($central, $xcenter, $ycenter, $zcenter) = $self -> cell -> central($self->core);
##print $self->core, $/;
##print $central, $/;
##print join(" ", $central->meta->get_attribute_list), $/;
#Demeter->trace;
if ($edge) {
$self->edge($edge); # be sure to trigger assignment of eedge
} else {
my $z = get_Z( $central->element );
($z > 57) ? $self->edge('l3') : $self->edge('k');
};
return $self;
};
sub handle_colon {
my ($self) = @_;
my $g = $self->space;
if ($self->is_first) {
## remove :1 from the space group symbol
$g =~ s{:[12]}{};
$self->space($g);
## set the shift vector according to the entry in the space group database
$self->shiftvec($self->cell->group->shiftvec);
} elsif ($self->is_second) {
## remove :2 from the space group symbol
$g =~ s{:[12]}{};
$self->space($g);
};
return $self;
};
sub Write {
my ($self, $type) = @_;
$type ||= "feff6";
$type = lc($type);
($type = 'feff6') if ($type eq 'feff');
$self->update_absorption;
return $self->atoms_file if ($type eq 'atoms');
return $self->atoms_file('p1') if ($type eq 'p1');
return $self->template('overfull') if ($type eq 'overfull');
return $self->template("absorption") if (($type eq 'absorption') and $self->gases_set);
return $self->template("mcmaster") if (($type eq 'absorption') and not $self->gases_set);
if ($type eq 'spacegroup') {
$self->populate if (not $self->is_populated);
return $self->spacegroup_file(0, '# ');
};
return $self->Write_feff($type) if ($type =~ m{feff|xyz|alc});
## still need: overfull, p1_cartesian, gnxas
## fallback
return $self->Write_feff('feff6');
};
sub Write_feff {
my ($self, $type) = @_;
$self->build_cluster if (not $self->is_expanded);
return q{} if ($#{$self->cluster} == -1);
return q{} if ($#{$self->cluster} == 0);
my $string = q{};
if ($type =~ m{feff}) { # none of this header stuff for xyz or alchemy or the like
$string .= $self->template('copyright', {type=> $type, prefix => ' * '});
if ($self->co->default("atoms", "atoms_in_feff")) {
$string .= $self->template('prettyline', {prefix => ' * '});
$string .= $self->atoms_file('feff', ' * ');
$string .= $self->template('prettyline', {prefix => ' * '});
$string .= $/;
}
if ($self->gases_set) {
$string .= $self->template('absorption', {prefix => ' * '});
} else {
$string .= $self->template('mcmaster', {prefix => ' * '});
};
};
$string .= $self->template($type);
return $string;
};
sub atoms_file {
my ($self, $is_p1, $prefix) = @_;
$is_p1 ||= 0;
$prefix ||= q{};
$self->populate if (not $self->is_populated);
my $cell = $self -> cell;
my $string = q{};
my $type = ($is_p1 eq 'p1') ? 'P1'
: ($is_p1) ? q{}
: 'Atoms';
$string .= $self->template("copyright", {prefix=>$prefix, type=>$type}) if $type;
$string .= $self->template("atoms_header", {prefix=>$prefix, is_p1=>($type eq 'P1')});
$string .= ($type eq 'P1') ? $self->p1_list({prefix=>$prefix}) : $self->sites_list({prefix=>$prefix});
return $string;
};
sub overfull_list {
my ($self, $nclus) = @_;
$self->populate if (not $self->is_populated);
my $cell = $self -> cell;
my $p1cell = $self->p1_list();
my $string = q{};
my $count = 0;
foreach my $line (split($/, $p1cell)) {
my ($elem, $x, $y, $z, $tag) = split(" ", $line);
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x, $y, $z));
++$count;
## atoms with a near-0 coordinate
if (abs($x) < Demeter->co->default('atoms', 'overfull_margin')) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x+1, $y, $z));
++$count;
};
if (abs($y) < Demeter->co->default('atoms', 'overfull_margin')) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x, $y+1, $z));
++$count;
};
if (abs($z) < Demeter->co->default('atoms', 'overfull_margin')) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x, $y, $z+1));
++$count;
};
if ((abs($x) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs($y) < Demeter->co->default('atoms', 'overfull_margin'))) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x+1, $y+1, $z));
++$count;
};
if ((abs($x) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs($z) < Demeter->co->default('atoms', 'overfull_margin'))) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x+1, $y, $z+1));
++$count;
};
if ((abs($y) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs($z) < Demeter->co->default('atoms', 'overfull_margin'))) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x, $y+1, $z+1));
++$count;
};
if ((abs($x) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs($y) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs($z) < Demeter->co->default('atoms', 'overfull_margin'))) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x+1, $y+1, $z+1));
++$count;
};
## atoms with a near-1 coordinate
if (abs(1-$x) < Demeter->co->default('atoms', 'overfull_margin')) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x-1, $y, $z));
++$count;
};
if (abs(1-$y) < Demeter->co->default('atoms', 'overfull_margin')) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x, $y-1, $z));
++$count;
};
if (abs(1-$z) < Demeter->co->default('atoms', 'overfull_margin')) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x, $y, $z-1));
++$count;
};
if ((abs(1-$x) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs(1-$y) < Demeter->co->default('atoms', 'overfull_margin'))) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x-1, $y-1, $z));
++$count;
};
if ((abs(1-$x) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs(1-$z) < Demeter->co->default('atoms', 'overfull_margin'))) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x-1, $y, $z-1));
++$count;
};
if ((abs(1-$y) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs(1-$z) < Demeter->co->default('atoms', 'overfull_margin'))) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x, $y-1, $z-1));
++$count;
};
if ((abs(1-$x) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs(1-$y) < Demeter->co->default('atoms', 'overfull_margin')) and
(abs(1-$z) < Demeter->co->default('atoms', 'overfull_margin'))) {
$string .= sprintf(" %-2s %9.5f %9.5f %9.5f\n", $elem, $cell->metric($x-1, $y-1, $z-1));
++$count;
};
};
$self->nclus($count);
$string = $count . $/ . $string if ($nclus);
return $string;
};
sub spacegroup_file {
my ($self) = @_;
my $prefix = '# ';
my $string = $self->template("copyright", {prefix=>$prefix, type=>"space group"});
$string .= $self->template("atoms_header", {prefix=>$prefix});
$string .= $self->sites_list({prefix=>$prefix});
$string .= $/;
$string .= $self->template("spacegroup");
return $string;
};
sub is_polarization {
my ($self, $token) = @_;
return '' if (($self->polarization->[0]>$EPSILON4) or ($self->polarization->[1]>$EPSILON4) or ($self->polarization->[2]>$EPSILON4));
return $token || '';
};
override serialization => sub {
my ($self) = @_;
my %cards = ();
foreach my $key (qw(space a b c alpha beta gamma rmax rpath rss edge iedge eedge core corel partial_occupancy
shiftvec cif record titles ipot_style nitrogen argon krypton xenon helium gases_set
xsec deltamu density mcmaster i0 selfamp selfsig netsig is_imported is_populated
is_ipots_set is_expanded is_rhomb is_hex is_first is_second
absorption_done mcmaster_done i0_done self_done nclus polarization ellipticity
sites)) { # sites cluster
$cards{$key} = $self->$key;
};
my $text = YAML::Tiny::Dump(\%cards);
return $text;
};
__PACKAGE__->meta->make_immutable;
1;
=head1 NAME
Demeter::Atoms - Convert crystallographic data to atomic lists
=head1 VERSION
This documentation refers to Demeter version 0.9.26.
=head1 SYNOPSIS
These lines behave much like any other version of Atoms:
use Demeter;
my $atoms = Demeter::Atoms -> new()
-> read_inp($ARGV[0]||"atoms.inp")
-> Write('feff6');
=head1 DESCRIPTION
This module implements Atoms in the Demeter system. The purpose of
Atoms is to convert crystallographic data into a list of atomic
coordinates of the sort used by Feff as input data. This greatly
simplifies the chore of making Feff input files for crystalline
materials.
=head1 ATTRIBUTES
The following are the attributes of the Data object. Attempting to
access an attribute not on this list will throw an exception.
The type of argument expected in given in parentheses. i.e. number,
integer, string, and so on. The default value, if one exists, is
given in square brackets.
=head2 Input parameters
=over 4
=item C<space> (string)
The space group ofthe crystal. This can be in any form recognized by
L<Xray::Crystal::Cell>, including Hermann-Maguin, Schoenflies, number,
or one of a few nicknames.
=item C<a> (real)
The length of the A lattice constant in Angstroms.
=item C<b> (real)
The length of the B lattice constant in Angstroms.
=item C<c> (real)
The length of the C lattice constant in Angstroms.
=item C<alpha> (real)
The angle between B and C, in degrees.
=item C<beta> (real)
The angle between A and C, in degrees.
=item C<gamma> (real)
The angle between A and B, in degrees.
=item C<rmax> (real)
The extent of the cluster generated from the input crystal data.
=item C<rpath> (real)
The value used for the RMAX keyword in the F<feff.inp> file. This is
the length of the longest path to be calculated by the pathfinder. A
value much larger than about 6 will bog down Demeter's pathfinder in
its current form.
=item C<edge> (string) [k or l3 depending on Z-number]
The edge of the absorber.
=item C<core> (string) [first sitin the list]
The identifier of the absorber. This should be one of the site tags.
=item C<shiftvec> (vector) [0,0,0]
The value of the shift vector, should one be necessary.
=item C<file> (filename)
The name of an atoms input file.
=item C<cif> (filename)
The name of a CIF file.
=item C<record> (string) [0]
The record to import from a multi-record CIF file. The default is to
read the first record. Note that this is zero-based while you user
interface probably should be one-based.
=item C<titles> (array of strings)
An array of strings containing the title lines read from the input
data.
=item C<template> (output template) [feff6]
The output template.
=item C<ipot_style> (string) [elements]
The style for generating the potentials list in a Feff input file.
The choices are sites, elements, and tags.
=back
=head2 Progress flags
=over 4
=item C<is_imported> (boolean) [false]
This is set to true when data is imported from a file.
=item C<is_populated> (boolean) [false]
This is set to true when the cell is populated.
=item C<is_expanded> (boolean) [false]
This is set to true when the populated cell is expanded into a cluster.
=item C<is_ipots_set> (boolean) [false]
This is set to true when the unique potentials are assigned.
=item C<partial_occupancy>
This is set to true if the input crystal data includes sites with
partial occupancy.
=back
=head2 Crystallography
=over 4
=item C<sites> (list of Site objects)
This is a reference to the array of Site objects in the cluster.
=item C<cell> (reference to Cell object)
This is a reference to the Cell object associated with this Atoms
object.
=item C<cluster> (list)
This is a list containing the expanded cluster. Need to describe each
list entry.
=item C<is_rhomb>, C<is_hex>, C<is_first>, C<is_second> (boolean)
Occassionally, modifiers to the space group symbol are used to
explicitly specify the setting of the crystal.
Trigonal space groups with symbols beginning with C<R> (numbers 146,
148, 155, 160, 161, 166, and 167) can be expressed in rhombohedral or
hexagonal settings. While it is possible to figure out the setting
from the specified parameters -- the rhombohedral setting has a=b=c,
alpha!=90, and alpha=beta=gamma, while the hexagonal setting has
a=b!=c, alpha=beta=90, and gamma=120 -- CIF file authors and others
may modify the space group symbol with C<:R> or C<:H> to indicated the
setting.
Some orthoganal groups (numbers 48, 50, 59, 68, 70), tetragonal groups
(85, 86, 88, 125, 126, 129, 130, 133, 134, 137, 138, 141, 142), and
cubic groups (201, 203, 222, 224, 227, 228) are given in the
International Tables referenced to two centers of symmetry. In
general, it is difficult to know which center is used before expanding
the unit cell and examining its contents. To remove this ambiguity
some CIF file authors and others will modify the space group symbol
with C<:1> or C<:2> to indicated which center has been used. Demeter
assumes the second setting, so if C<:1> is specified, it is likely
that a shift vector will be needed.
When a space group symbol uses one of these modifiers, the
corresponding boolean parameter will be set to C<1>.
=back
=head1 METHODS
Various methods for populating the cell, explanding the cluster, and
other chores are not documented here. These things will happen as
needed when any of the output generating methods are called.
=head2 Accessor methods
=over 4
=item C<set>
Set attributes. This takes a single argument which is a reference to
a hash of attribute values. The keys of that hash are any of the
valid object attributes listed above.
$atoms -> set(a => 3.81, rmax => 6);
=item C<get>
Retrieve attribute values. This works in scalar and list context.
$a = $atoms -> get("a");
@cell_constants = $atoms -> get(qw(a b c alpha beta gamma));
=back
=head2 Main methods
=over 4
=item C<read_inp>
Import crystal data from an Atoms input file.
$atoms -> read_inp("atoms.inp");
=item C<read_cif>
Import crystal data from a CIF file.
$atoms -> read_cif("your_data.cif");
See L<Demeter::Atoms::Cif> for more details.
=item C<atoms_file>
Generate text suitable for an atoms input file.
print $atoms -> atoms_file;
=item C<Write>
Write out an output file using a specified output template.
print $atoms->Write($template);
Several types are already defined, see L</TEMPLATES>.
=back
=head2 Methods for doing absorption calculations
=over 4
=item C<xsec>
Return the length in microns of the sample required for a total
absorption length of 1.
=item C<deltamu>
Return the length in microns of the sample required for an edge step
of 1.
=item C<density>
Return the density as a unitless specific gravity. The density os
computed from the unit cell volume and the mass of the contents of the
cell.
=item C<mcmaster>
Return an approximation of the effect of unit normalization on the
sigma^2 values measured in an EXAFS analysis.
=item C<i0>
Return an approximation of the effect of the energy response of the I0
detector on the sigma^2 values in a fluorescence EXAFS measurement.
=item C<selfsig>
Return an approximation of the effect of self-absorption on the
sigma^2 values in a fluorescence EXAFS measurement.
=item C<selfamp>
Return an approximation of the effect of self-absorption on the
amplitude in a fluorescence EXAFS measurement.
=item C<netsig>
Return the sum of the three sigma^2 corrections.
=back
=head1 TEMPLATES
Atoms templates use the syntax of L<Text::Template>. This is a simple
templating language which has snippets of perl code interspersed among
plain text.
=over 4
=item *
B<atoms>: An input file for atoms. Calling the C<Write> method with
C<atoms> as the argument is identical to calling the C<atoms_file>
method.
=item *
B<p1>: The entrie contents of the fully decorated unit cell, written
as an input file for atoms using the C<P1> space group.
=item *
B<feff6>: An input file for feff6.
=item *
B<feff7>: An input file for feff7.
=item *
B<feff8>: An input file for feff8.
=item *
B<absorption>: Text with the results of various caluclations using
tables of xray absorption coefficients.
=item *
B<spacegroup>: A brief description of the space group, including
alternate symbols and a list of equivalent positions.
=back
New output types can be defined by writing new template files. Any
template files found on your system can be used as the argument to the
C<Write> method.
=head1 DIAGNOSTICS
=over 4
=item C<Atoms: \"$file\" does not exist">
Your atoms input file or CIF file could not be found.
=item C<Atoms: \"$file\" could not be read">
Your atoms input file or CIF file could not be read,probably due to a
permissions problem.
=item C<Unknown Atoms template file -- type $file: $tmpl">
The template file specified in the call to the C<Write> method could
not located.
=item C<"$key" is not a valid Demeter::Atoms parameter>
You have attempted to set an unrecognized keyword.
=item C<You have $i unique potentials, but Feff only allows 7.>
Your choice of ipot style has resulted in more than 7 unique
potentials being defined. Feff will refuse to run with that many.
=item C<"$key" is a deprecated Atoms keyword ($file line $.)>
While reading an Atoms input file, you have come across a keyword that
was recognized in an earlier version of Atoms, but which is no longer
supported. It's value was ignored.
=item C<"$key" is not an Atoms keyword ($file line $.)>
While reading an Atoms input file, you have come across a keyword that
is not an Atoms keyword. It's value was ignored.
=back
=head1 SERIALIZATION AND DESERIALIZATION
The atoms input file is used for serialization of input data. Output
data should be associated with a Feff object and serialization of the
output should be handled as a Feff object.
=head1 CONFIGURATION AND ENVIRONMENT
See L<Demeter::Config> for a description of the configuration system.
Atoms uses the C<atoms> configuration group.
=head1 DEPENDENCIES
The dependencies of the Demeter system are in the
F<Build.PL> file.
=head1 BUGS AND LIMITATIONS
=over 4
=item *
Need to implement a feff.inp parser for OpenBabel to enable a much
broader range of output formats.
=item *
Neutral (parallelipiped) cluster?
=item *
Need overfull, p1_cartesian, gnxas outout.
=item *
Location in user space for user-defined templates.
=item *
Need more testing of spacegroups and database.
=back
Please report problems to the Ifeffit Mailing List
(L<http://cars9.uchicago.edu/mailman/listinfo/ifeffit/>)
Patches are welcome.
=head1 AUTHOR
Bruce Ravel, L<http://bruceravel.github.io/home>
L<http://bruceravel.github.io/demeter>
=head1 LICENCE AND COPYRIGHT
Copyright (c) 2006-2019 Bruce Ravel (L<http://bruceravel.github.io/home>). All
rights reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See L<perlgpl>.
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.
=cut
|