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
|
# Tests of the quasiisothermaldf module
import numpy
from galpy.actionAngle import actionAngleAdiabatic, actionAngleStaeckel
from galpy.df import quasiisothermaldf
# fiducial setup uses these
from galpy.potential import MWPotential, epifreq, omegac, vcirc, verticalfreq
aAA = actionAngleAdiabatic(pot=MWPotential, c=True)
aAS = actionAngleStaeckel(pot=MWPotential, c=True, delta=0.5)
def test_meanvR_adiabatic_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
# In the mid-plane
assert numpy.fabs(qdf.meanvR(0.9, 0.0, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
# higher up
assert numpy.fabs(qdf.meanvR(0.9, 0.2, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
assert numpy.fabs(qdf.meanvR(0.9, -0.25, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
return None
def test_meanvR_adiabatic_mc():
numpy.random.seed(1)
# test nested list of potentials
qdf = quasiisothermaldf(
1.0 / 4.0,
0.2,
0.1,
1.0,
1.0,
pot=[MWPotential[0], MWPotential[1:]],
aA=aAA,
cutcounter=True,
)
# In the mid-plane
assert numpy.fabs(qdf.meanvR(0.9, 0.0, mc=True)) < 0.01, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
# higher up
assert numpy.fabs(qdf.meanvR(0.9, 0.2, mc=True)) < 0.05, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
assert numpy.fabs(qdf.meanvR(0.9, -0.25, mc=True)) < 0.05, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
return None
def test_meanvR_adiabatic_gl_center():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
# In the mid-plane
assert numpy.fabs(qdf.meanvR(0.001, 0.0, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
return None
def test_meanvR_staeckel_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
assert numpy.fabs(qdf.meanvR(0.9, 0.0, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
# higher up
assert numpy.fabs(qdf.meanvR(0.9, 0.2, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
assert numpy.fabs(qdf.meanvR(0.9, -0.25, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
return None
def test_meanvR_staeckel_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
assert numpy.fabs(qdf.meanvR(0.9, 0.0, mc=True)) < 0.01, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
# higher up
assert numpy.fabs(qdf.meanvR(0.9, 0.2, mc=True)) < 0.05, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
assert numpy.fabs(qdf.meanvR(0.9, -0.25, mc=True)) < 0.05, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
return None
def test_meanvT_adiabatic_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
from galpy.df import dehnendf # baseline
dfc = dehnendf(profileParams=(1.0 / 4.0, 1.0, 0.2), beta=0.0, correct=False)
# In the mid-plane
vtp9 = qdf.meanvT(0.9, 0.0, gl=True)
assert numpy.fabs(vtp9 - dfc.meanvT(0.9)) < 0.05, (
"qdf's meanvT is not close to that of dehnendf"
)
assert vtp9 < vcirc(MWPotential, 0.9), (
"qdf's meanvT is not less than the circular velocity (which we expect)"
)
# higher up
assert qdf.meanvR(0.9, 0.2, gl=True) < vtp9, (
"qdf's meanvT above the plane is not less than in the plane (which we expect)"
)
assert qdf.meanvR(0.9, -0.25, gl=True) < vtp9, (
"qdf's meanvT above the plane is not less than in the plane (which we expect)"
)
return None
def test_meanvT_adiabatic_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
from galpy.df import dehnendf # baseline
dfc = dehnendf(profileParams=(1.0 / 4.0, 1.0, 0.2), beta=0.0, correct=False)
# In the mid-plane
vtp9 = qdf.meanvT(0.9, 0.0, mc=True)
assert numpy.fabs(vtp9 - dfc.meanvT(0.9)) < 0.05, (
"qdf's meanvT is not close to that of dehnendf"
)
assert vtp9 < vcirc(MWPotential, 0.9), (
"qdf's meanvT is not less than the circular velocity (which we expect)"
)
# higher up
assert qdf.meanvR(0.9, 0.2, mc=True) < vtp9, (
"qdf's meanvT above the plane is not less than in the plane (which we expect)"
)
assert qdf.meanvR(0.9, -0.25, mc=True) < vtp9, (
"qdf's meanvT above the plane is not less than in the plane (which we expect)"
)
return None
def test_meanvT_staeckel_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
from galpy.df import dehnendf # baseline
dfc = dehnendf(profileParams=(1.0 / 4.0, 1.0, 0.2), beta=0.0, correct=False)
# In the mid-plane
vtp9 = qdf.meanvT(0.9, 0.0, gl=True)
assert numpy.fabs(vtp9 - dfc.meanvT(0.9)) < 0.05, (
"qdf's meanvT is not close to that of dehnendf"
)
assert vtp9 < vcirc(MWPotential, 0.9), (
"qdf's meanvT is not less than the circular velocity (which we expect)"
)
# higher up
assert qdf.meanvR(0.9, 0.2, gl=True) < vtp9, (
"qdf's meanvT above the plane is not less than in the plane (which we expect)"
)
assert qdf.meanvR(0.9, -0.25, gl=True) < vtp9, (
"qdf's meanvT above the plane is not less than in the plane (which we expect)"
)
return None
def test_meanvT_staeckel_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
from galpy.df import dehnendf # baseline
dfc = dehnendf(profileParams=(1.0 / 4.0, 1.0, 0.2), beta=0.0, correct=False)
# In the mid-plane
vtp9 = qdf.meanvT(0.9, 0.0, mc=True)
assert numpy.fabs(vtp9 - dfc.meanvT(0.9)) < 0.05, (
"qdf's meanvT is not close to that of dehnendf"
)
assert vtp9 < vcirc(MWPotential, 0.9), (
"qdf's meanvT is not less than the circular velocity (which we expect)"
)
# higher up
assert qdf.meanvR(0.9, 0.2, mc=True) < vtp9, (
"qdf's meanvT above the plane is not less than in the plane (which we expect)"
)
assert qdf.meanvR(0.9, -0.25, mc=True) < vtp9, (
"qdf's meanvT above the plane is not less than in the plane (which we expect)"
)
return None
def test_meanvz_adiabatic_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
# In the mid-plane
assert numpy.fabs(qdf.meanvz(0.9, 0.0, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
# higher up
assert numpy.fabs(qdf.meanvz(0.9, 0.2, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
assert numpy.fabs(qdf.meanvz(0.9, -0.25, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
return None
def test_meanvz_adiabatic_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
# In the mid-plane
assert numpy.fabs(qdf.meanvz(0.9, 0.0, mc=True)) < 0.01, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
# higher up
assert numpy.fabs(qdf.meanvz(0.9, 0.2, mc=True)) < 0.05, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
assert numpy.fabs(qdf.meanvz(0.9, -0.25, mc=True)) < 0.05, (
"qdf's meanvr is not equal to zero for adiabatic approx."
)
return None
def test_meanvz_staeckel_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
assert numpy.fabs(qdf.meanvz(0.9, 0.0, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
# higher up
assert numpy.fabs(qdf.meanvz(0.9, 0.2, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
assert numpy.fabs(qdf.meanvz(0.9, -0.25, gl=True)) < 0.01, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
return None
def test_meanvz_staeckel_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
assert numpy.fabs(qdf.meanvz(0.9, 0.0, mc=True)) < 0.01, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
# higher up
assert numpy.fabs(qdf.meanvz(0.9, 0.2, mc=True)) < 0.05, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
assert numpy.fabs(qdf.meanvz(0.9, -0.25, mc=True)) < 0.05, (
"qdf's meanvr is not equal to zero for staeckel approx."
)
return None
def test_sigmar_staeckel_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
assert (
numpy.fabs(
numpy.log(qdf.sigmaR2(0.9, 0.0, gl=True)) - 2.0 * numpy.log(0.2) - 0.2
)
< 0.2
), "qdf's sigmaR2 deviates more than expected from input for staeckel approx."
# higher up, also w/ different ngl
assert (
numpy.fabs(
numpy.log(qdf.sigmaR2(0.9, 0.2, gl=True, ngl=20))
- 2.0 * numpy.log(0.2)
- 0.2
)
< 0.3
), "qdf's sigmaR2 deviates more than expected from input for staeckel approx."
assert (
numpy.fabs(
numpy.log(qdf.sigmaR2(0.9, -0.25, gl=True, ngl=24))
- 2.0 * numpy.log(0.2)
- 0.2
)
< 0.3
), "qdf's sigmaR2 deviates more than expected from input for staeckel approx."
return None
def test_sigmar_staeckel_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
assert (
numpy.fabs(
numpy.log(qdf.sigmaR2(0.9, 0.0, mc=True)) - 2.0 * numpy.log(0.2) - 0.2
)
< 0.2
), "qdf's sigmaR2 deviates more than expected from input for staeckel approx."
# higher up
assert (
numpy.fabs(
numpy.log(qdf.sigmaR2(0.9, 0.2, mc=True)) - 2.0 * numpy.log(0.2) - 0.2
)
< 0.4
), "qdf's sigmaR2 deviates more than expected from input for staeckel approx."
assert (
numpy.fabs(
numpy.log(qdf.sigmaR2(0.9, -0.25, mc=True)) - 2.0 * numpy.log(0.2) - 0.2
)
< 0.3
), "qdf's sigmaR2 deviates more than expected from input for staeckel approx."
return None
def test_sigmat_staeckel_gl():
# colder, st closer to epicycle expectation
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
gamma = 2.0 * omegac(MWPotential, 0.9) / epifreq(MWPotential, 0.9)
assert (
numpy.fabs(
numpy.log(qdf.sigmaT2(0.9, 0.0, gl=True) / qdf.sigmaR2(0.9, 0.0, gl=True))
+ 2.0 * numpy.log(gamma)
)
< 0.3
), (
"qdf's sigmaT2/sigmaR2 deviates more than expected from input for staeckel approx."
)
# higher up
assert (
numpy.fabs(
numpy.log(qdf.sigmaT2(0.9, 0.2, gl=True) / qdf.sigmaR2(0.9, 0.2, gl=True))
+ 2.0 * numpy.log(gamma)
)
< 0.3
), (
"qdf's sigmaT2/sigmaR2 deviates more than expected from input for staeckel approx."
)
return None
def test_sigmat_staeckel_mc():
numpy.random.seed(2)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
gamma = 2.0 * omegac(MWPotential, 0.9) / epifreq(MWPotential, 0.9)
assert (
numpy.fabs(
numpy.log(qdf.sigmaT2(0.9, 0.0, mc=True) / qdf.sigmaR2(0.9, 0.0, mc=True))
+ 2.0 * numpy.log(gamma)
)
< 0.3
), (
"qdf's sigmaT2/sigmaR2 deviates more than expected from input for staeckel approx."
)
# higher up
assert (
numpy.fabs(
numpy.log(qdf.sigmaT2(0.9, 0.2, mc=True) / qdf.sigmaR2(0.9, 0.2, mc=True))
+ 2.0 * numpy.log(gamma)
)
< 0.3
), (
"qdf's sigmaT2/sigmaR2 deviates more than expected from input for staeckel approx."
)
return None
def test_sigmaz_staeckel_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
assert (
numpy.fabs(
numpy.log(qdf.sigmaz2(0.9, 0.0, gl=True)) - 2.0 * numpy.log(0.1) - 0.2
)
< 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
# from Bovy & Rix 2013, we know that this has to be smaller
assert (
numpy.log(qdf.sigmaz2(0.9, 0.0, gl=True)) < 2.0 * numpy.log(0.1) + 0.2 < 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
# higher up
assert (
numpy.fabs(
numpy.log(qdf.sigmaz2(0.9, 0.2, gl=True)) - 2.0 * numpy.log(0.1) - 0.2
)
< 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
assert (
numpy.log(qdf.sigmaz2(0.9, 0.2, gl=True)) < 2.0 * numpy.log(0.1) + 0.2 < 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
assert (
numpy.fabs(
numpy.log(qdf.sigmaz2(0.9, -0.25, gl=True)) - 2.0 * numpy.log(0.1) - 0.2
)
< 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
assert (
numpy.log(qdf.sigmaz2(0.9, -0.25, gl=True)) < 2.0 * numpy.log(0.1) + 0.2 < 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
return None
def test_sigmaz_staeckel_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane
assert (
numpy.fabs(
numpy.log(qdf.sigmaz2(0.9, 0.0, mc=True)) - 2.0 * numpy.log(0.1) - 0.2
)
< 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
# from Bovy & Rix 2013, we know that this has to be smaller
assert (
numpy.log(qdf.sigmaz2(0.9, 0.0, mc=True)) < 2.0 * numpy.log(0.1) + 0.2 < 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
# higher up
assert (
numpy.fabs(
numpy.log(qdf.sigmaz2(0.9, 0.2, mc=True)) - 2.0 * numpy.log(0.1) - 0.2
)
< 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
assert (
numpy.log(qdf.sigmaz2(0.9, 0.2, mc=True)) < 2.0 * numpy.log(0.1) + 0.2 < 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
assert (
numpy.fabs(
numpy.log(qdf.sigmaz2(0.9, -0.25, mc=True)) - 2.0 * numpy.log(0.1) - 0.2
)
< 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
assert (
numpy.log(qdf.sigmaz2(0.9, -0.25, mc=True)) < 2.0 * numpy.log(0.1) + 0.2 < 0.5
), "qdf's sigmaz2 deviates more than expected from input for staeckel approx."
return None
def test_sigmarz_adiabatic_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
# In the mid-plane, should be zero
assert numpy.fabs(qdf.sigmaRz(0.9, 0.0, gl=True)) < 0.05, (
"qdf's sigmaRz deviates more than expected from zero in the mid-plane for adiabatic approx."
)
return None
def test_sigmarz_adiabatic_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
# In the mid-plane, should be zero
assert numpy.fabs(qdf.sigmaRz(0.9, 0.0, mc=True)) < 0.05, (
"qdf's sigmaRz deviates more than expected from zero in the mid-plane for adiabatic approx."
)
return None
def test_sigmarz_staeckel_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane, should be zero
assert numpy.fabs(qdf.sigmaRz(0.9, 0.0, gl=True)) < 0.05, (
"qdf's sigmaRz deviates more than expected from zero in the mid-plane for staeckel approx."
)
return None
def test_sigmarz_staeckel_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# In the mid-plane, should be zero
assert numpy.fabs(qdf.sigmaRz(0.9, 0.0, mc=True)) < 0.05, (
"qdf's sigmaRz deviates more than expected from zero in the mid-plane for staeckel approx."
)
return None
def test_tilt_adiabatic_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
# should be zero everywhere
assert numpy.fabs(qdf.tilt(0.9, 0.0, gl=True)) < 0.05 / 180.0 * numpy.pi, (
"qdf's tilt deviates more than expected from zero for adiabatic approx."
)
assert numpy.fabs(qdf.tilt(0.9, 0.2, gl=True)) < 0.05 / 180.0 * numpy.pi, (
"qdf's tilt deviates more than expected from zero for adiabatic approx."
)
assert numpy.fabs(qdf.tilt(0.9, -0.25, gl=True)) < 0.05 / 180.0 * numpy.pi, (
"qdf's tilt deviates more than expected from zero for adiabatic approx."
)
return None
def test_tilt_adiabatic_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
# should be zero everywhere
assert numpy.fabs(qdf.tilt(0.9, 0.0, mc=True)) < 0.05 / 180.0 * numpy.pi, (
"qdf's tilt deviates more than expected from zero for adiabatic approx."
)
assert numpy.fabs(qdf.tilt(0.9, 0.2, mc=True)) < 0.05 / 180.0 * numpy.pi, (
"qdf's tilt deviates more than expected from zero for adiabatic approx."
)
assert numpy.fabs(qdf.tilt(0.9, -0.25, mc=True)) < 0.05 / 180.0 * numpy.pi, (
"qdf's tilt deviates more than expected from zero for adiabatic approx."
)
return None
def test_tilt_staeckel_gl():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# should be zero in the mid-plane and roughly toward the GC elsewhere
assert numpy.fabs(qdf.tilt(0.9, 0.0, gl=True)) < 0.05 / 180.0 * numpy.pi, (
"qdf's tilt deviates more than expected from zero in the mid-plane for staeckel approx."
)
assert (
numpy.fabs(qdf.tilt(0.9, 0.1, gl=True) - numpy.arctan(0.1 / 0.9))
< 2.0 / 180.0 * numpy.pi
), "qdf's tilt deviates more than expected from expected for staeckel approx."
assert (
numpy.fabs(qdf.tilt(0.9, -0.15, gl=True) - numpy.arctan(-0.15 / 0.9))
< 2.5 / 180.0 * numpy.pi
), "qdf's tilt deviates more than expected from expected for staeckel approx."
assert (
numpy.fabs(qdf.tilt(0.9, -0.25, gl=True) - numpy.arctan(-0.25 / 0.9))
< 4.0 / 180.0 * numpy.pi
), "qdf's tilt deviates more than expected from expected for staeckel approx."
return None
def test_tilt_staeckel_mc():
numpy.random.seed(1)
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# should be zero in the mid-plane and roughly toward the GC elsewhere
assert numpy.fabs(qdf.tilt(0.9, 0.0, mc=True)) < 1.0 / 180.0 * numpy.pi, (
"qdf's tilt deviates more than expected from zero in the mid-plane for staeckel approx."
) # this is tough
assert (
numpy.fabs(qdf.tilt(0.9, 0.1, mc=True) - numpy.arctan(0.1 / 0.9))
< 3.0 / 180.0 * numpy.pi
), "qdf's tilt deviates more than expected from expected for staeckel approx."
return None
def test_estimate_hr():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
assert numpy.fabs((qdf.estimate_hr(0.9, z=0.0) - 0.25) / 0.25) < 0.1, (
"estimated scale length deviates more from input scale length than expected"
)
# Another one
qdf = quasiisothermaldf(
1.0 / 2.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
assert numpy.fabs((qdf.estimate_hr(0.9, z=None) - 0.5) / 0.5) < 0.15, (
"estimated scale length deviates more from input scale length than expected"
)
# Another one
qdf = quasiisothermaldf(
1.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
assert (
numpy.fabs((qdf.estimate_hr(0.9, z=None, fixed_quad=False) - 1.0) / 1.0) < 0.3
), "estimated scale length deviates more from input scale length than expected"
return None
def test_estimate_hz():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
from scipy import integrate
from galpy.potential import evaluateDensities
expec_hz = (
0.1**2.0
/ 2.0
/ integrate.quad(lambda x: evaluateDensities(MWPotential, 0.9, x), 0.0, 0.125)[
0
]
/ 2.0
/ numpy.pi
)
assert numpy.fabs((qdf.estimate_hz(0.9, z=0.125) - expec_hz) / expec_hz) < 0.1, (
"estimated scale height not as expected"
)
assert qdf.estimate_hz(0.9, z=0.0) > 1.0, (
"estimated scale height at z=0 not very large"
)
# Another one
qdf = quasiisothermaldf(
1.0 / 4.0, 0.3, 0.2, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
expec_hz = (
0.2**2.0
/ 2.0
/ integrate.quad(lambda x: evaluateDensities(MWPotential, 0.9, x), 0.0, 0.125)[
0
]
/ 2.0
/ numpy.pi
)
assert numpy.fabs((qdf.estimate_hz(0.9, z=0.125) - expec_hz) / expec_hz) < 0.15, (
"estimated scale height not as expected"
)
return None
def test_estimate_hsr():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
assert numpy.fabs((qdf.estimate_hsr(0.9, z=0.0) - 1.0) / 1.0) < 0.25, (
"estimated radial-dispersion scale length deviates more from input scale length than expected"
)
# Another one
qdf = quasiisothermaldf(
1.0 / 2.0, 0.2, 0.1, 2.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
assert numpy.fabs((qdf.estimate_hsr(0.9, z=0.05) - 2.0) / 2.0) < 0.25, (
"estimated radial-dispersion scale length deviates more from input scale length than expected"
)
return None
def test_estimate_hsz():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
assert numpy.fabs((qdf.estimate_hsz(0.9, z=0.0) - 1.0) / 1.0) < 0.25, (
"estimated vertical-dispersion scale length deviates more from input scale length than expected"
)
# Another one
qdf = quasiisothermaldf(
1.0 / 2.0, 0.2, 0.1, 1.0, 2.0, pot=MWPotential, aA=aAS, cutcounter=True
)
assert numpy.fabs((qdf.estimate_hsz(0.9, z=0.05) - 2.0) / 2.0) < 0.25, (
"estimated vertical-dispersion scale length deviates more from input scale length than expected"
)
return None
def test_meanjr():
# This is a *very* rough test against a rough estimate of the mean
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
assert (
numpy.fabs(
numpy.log(qdf.meanjr(0.9, 0.0, mc=True))
- 2.0 * numpy.log(0.2)
- 0.2
+ numpy.log(epifreq(MWPotential, 0.9))
)
< 0.4
), "meanjr is not what is expected"
assert (
numpy.fabs(
numpy.log(qdf.meanjr(0.5, 0.0, mc=True))
- 2.0 * numpy.log(0.2)
- 1.0
+ numpy.log(epifreq(MWPotential, 0.5))
)
< 0.4
), "meanjr is not what is expected"
return None
def test_meanjr_center():
# Just checking that this isn't NaN!
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
assert not numpy.isnan(qdf.meanjr(0.001, 0.0, mc=True)), (
"meanjr at the center is NaN"
)
return None
def test_meanlz():
# This is a *very* rough test against a rough estimate of the mean
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
from galpy.df import dehnendf # baseline
dfc = dehnendf(profileParams=(1.0 / 4.0, 1.0, 0.2), beta=0.0, correct=False)
assert (
numpy.fabs(
numpy.log(qdf.meanlz(0.9, 0.0, mc=True)) - numpy.log(0.9 * dfc.meanvT(0.9))
)
< 0.1
), "meanlz is not what is expected"
assert (
numpy.fabs(
numpy.log(qdf.meanlz(0.5, 0.0, mc=True)) - numpy.log(0.5 * dfc.meanvT(0.5))
)
< 0.2
), "meanlz is not what is expected"
return None
def test_meanjz():
# This is a *very* rough test against a rough estimate of the mean
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
ldiff = (
numpy.log(qdf.meanjz(0.9, 0.0, mc=True))
- 2.0 * numpy.log(0.1)
- 0.2
+ numpy.log(verticalfreq(MWPotential, 0.9))
)
# expect this to be smaller than the rough estimate, but not by more than an order of magnitude
assert ldiff > -1.0 and ldiff < 0.0, "meanjz is not what is expected"
ldiff = (
numpy.log(qdf.meanjz(0.5, 0.0, mc=True))
- 2.0 * numpy.log(0.1)
- 1.0
+ numpy.log(verticalfreq(MWPotential, 0.5))
)
assert ldiff > -1.0 and ldiff < 0.0, "meanjz is not what is expected"
return None
def test_sampleV():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
numpy.random.seed(1)
samples = qdf.sampleV(0.8, 0.1, n=1000)
# test vR
assert numpy.fabs(numpy.mean(samples[:, 0])) < 0.02, "sampleV vR mean is not zero"
assert (
numpy.fabs(
numpy.log(numpy.std(samples[:, 0])) - 0.5 * numpy.log(qdf.sigmaR2(0.8, 0.1))
)
< 0.05
), "sampleV vR stddev is not equal to sigmaR"
# test vT
assert numpy.fabs(numpy.mean(samples[:, 1] - qdf.meanvT(0.8, 0.1))) < 0.015, (
"sampleV vT mean is not equal to meanvT"
)
assert (
numpy.fabs(
numpy.log(numpy.std(samples[:, 1])) - 0.5 * numpy.log(qdf.sigmaT2(0.8, 0.1))
)
< 0.05
), "sampleV vT stddev is not equal to sigmaT"
# test vz
assert numpy.fabs(numpy.mean(samples[:, 2])) < 0.01, "sampleV vz mean is not zero"
assert (
numpy.fabs(
numpy.log(numpy.std(samples[:, 2])) - 0.5 * numpy.log(qdf.sigmaz2(0.8, 0.1))
)
< 0.05
), "sampleV vz stddev is not equal to sigmaz"
return None
def test_sampleV_physical():
# Test physical output of sampleV
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
numpy.random.seed(1)
vo = 225.0
samples = qdf.sampleV(0.8, 0.1, n=1000, vo=vo)
# test vR
assert numpy.fabs(numpy.mean(samples[:, 0])) < 0.02 * vo, (
"sampleV vR mean is not zero"
)
assert (
numpy.fabs(
numpy.log(numpy.std(samples[:, 0]))
- 0.5 * numpy.log(qdf.sigmaR2(0.8, 0.1, vo=vo))
)
< 0.05
), "sampleV vR stddev is not equal to sigmaR"
# test vT
assert (
numpy.fabs(numpy.mean(samples[:, 1] - qdf.meanvT(0.8, 0.1, vo=vo))) < 0.015 * vo
), "sampleV vT mean is not equal to meanvT"
assert (
numpy.fabs(
numpy.log(numpy.std(samples[:, 1]))
- 0.5 * numpy.log(qdf.sigmaT2(0.8, 0.1, vo=vo))
)
< 0.05
), "sampleV vT stddev is not equal to sigmaT"
# test vz
assert numpy.fabs(numpy.mean(samples[:, 2])) < 0.01 * vo, (
"sampleV vz mean is not zero"
)
assert (
numpy.fabs(
numpy.log(numpy.std(samples[:, 2]))
- 0.5 * numpy.log(qdf.sigmaz2(0.8, 0.1, vo=vo))
)
< 0.05
), "sampleV vz stddev is not equal to sigmaz"
return None
def test_sampleV_interpolate():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
vo = 225.0
numpy.random.seed(3)
def Rz_array(R_array, z_array, num_std=3, R_min=None, R_max=None, z_max=None):
R = numpy.hstack([i * numpy.ones(1000) for i in R_array])
z = numpy.hstack([i * numpy.ones(1000) for i in z_array])
# add outlier
R = numpy.append(R, 8.0)
z = numpy.append(z, 5.0)
# apply sample V interpolate
samples = qdf.sampleV_interpolate(
R=R,
z=z,
R_pixel=0.07,
z_pixel=0.07,
num_std=num_std,
R_min=R_min,
R_max=R_max,
z_max=z_max,
)
samples = samples[1000:2000, :]
# test vR
assert numpy.fabs(numpy.mean(samples[:, 0])) < 0.02, (
"sampleV interpolate vR mean is not zero"
)
assert (
numpy.fabs(
numpy.log(numpy.std(samples[:, 0]))
- 0.5 * numpy.log(qdf.sigmaR2(0.8, 0.1))
)
< 0.05
), "sampleV interpolate vR stddev is not equal to sigmaR"
# test vT
assert numpy.fabs(numpy.mean(samples[:, 1] - qdf.meanvT(0.8, 0.1))) < 0.015, (
"sampleV interpolate vT mean is not equal to meanvT"
)
assert (
numpy.fabs(
numpy.log(numpy.std(samples[:, 1]))
- 0.5 * numpy.log(qdf.sigmaT2(0.8, 0.1))
)
< 0.05
), "sampleV interpolate vT stddev is not equal to sigmaT"
# test vz
assert numpy.fabs(numpy.mean(samples[:, 2])) < 0.01, (
"sampleV interpolate vz mean is not zero"
)
assert (
numpy.fabs(
numpy.log(numpy.std(samples[:, 2]))
- 0.5 * numpy.log(qdf.sigmaz2(0.8, 0.1))
)
< 0.05
), "sampleV vz interpolate stddev is not equal to sigmaz"
return None
# test the sampling at (0.8,0.1) with different order of interpolation
# which is determined by R_number and z_number
Rz_array([0.7, 0.8, 0.9], [0.0, 0.1, 0.2]) # R_number=2, z_number=2
Rz_array([0.7, 0.8, 0.9, 1.0], [0.0, 0.1, 0.2, 0.3]) # R_number=4, z_number=4
Rz_array([0.8, 0.8, 0.9, 1.0], [0.0, 0.1, 0.2, 0.3]) # R_number=2, z_number=4
Rz_array([0.7, 0.8, 0.9, 1.0], [0.0, 0.1, 0.2, 0.2]) # R_number=4, z_number=2
# test saved hash and interpolation object
Rz_array([0.7, 0.8, 0.9, 1.0], [-0.3, 0.1, 0.2, 0.3])
hash1 = qdf._maxVT_hash
ip1 = qdf._maxVT_ip
Rz_array([0.7, 0.8, 0.9, 1.0], [-0.3, 0.1, 0.2, 0.3])
hash2 = qdf._maxVT_hash
ip2 = qdf._maxVT_ip
Rz_array([0.6, 0.8, 0.9, 1.0], [-0.3, 0.1, 0.2, 0.3])
hash3 = qdf._maxVT_hash
ip3 = qdf._maxVT_ip
assert hash1 == hash2, "sampleV interpolate hash is changed unexpectedly"
assert ip1 == ip2, (
"sampleV interpolate interpolation object is changed unexpectedly"
)
assert hash3 != hash2, "sampleV interpolate hash did not changed as expected"
assert ip3 != ip2, (
"sampleV interpolate interpolation object did not changed as expected"
)
# test user-specified grid edges
# since num_std is set so high, the extra outlier of (8,5) is not covered
# by it. So in order for this function to run in a reasonable time, it must
# be that the user-specified grid edges are doing their job
Rz_array(
[0.7, 0.8, 0.9, 1.0],
[0.0, 0.1, 0.2, 0.3],
num_std=10,
R_min=0.7,
R_max=1.0,
z_max=0.3,
)
# test absolute value, also test non-astropy unit-support
numpy.random.seed(1)
pos = qdf.sampleV_interpolate(
numpy.array([0.7, 0.8, 0.9, 1.0]),
numpy.array([0.1, 0.2, 0.3, 0.4]),
R_pixel=0.07,
z_pixel=0.07,
vo=vo,
)
numpy.random.seed(1)
neg = qdf.sampleV_interpolate(
numpy.array([0.7, 0.8, 0.9, 1.0]),
numpy.array([-0.1, -0.2, 0.3, -0.4]),
R_pixel=0.07,
z_pixel=0.07,
vo=vo,
)
assert numpy.all(numpy.fabs(pos - neg) / vo < 10.0**-8.0), (
"sampleV interpolate absolute value of z is incorrect"
)
return None
def test_pvR_adiabatic():
# Test pvR by calculating its mean and stddev by Riemann sum
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
R, z = 0.8, 0.1
vRs = numpy.linspace(-1.0, 1.0, 51)
pvR = numpy.array([qdf.pvR(vr, R, z) for vr in vRs])
mvR = numpy.sum(vRs * pvR) / numpy.sum(pvR)
svR = numpy.sqrt(numpy.sum(vRs**2.0 * pvR) / numpy.sum(pvR) - mvR**2.0)
assert numpy.fabs(mvR) < 0.01, (
"mean vR calculated from pvR not equal to zero for adiabatic actions"
)
assert numpy.fabs(numpy.log(svR) - 0.5 * numpy.log(qdf.sigmaR2(R, z))) < 0.01, (
"sigma vR calculated from pvR not equal to that from sigmaR2 for adiabatic actions"
)
return None
def test_pvR_staeckel():
# Test pvR by calculating its mean and stddev by Riemann sum
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
R, z = 0.8, 0.1
vRs = numpy.linspace(-1.0, 1.0, 51)
pvR = numpy.array([qdf.pvR(vr, R, z) for vr in vRs])
mvR = numpy.sum(vRs * pvR) / numpy.sum(pvR)
svR = numpy.sqrt(numpy.sum(vRs**2.0 * pvR) / numpy.sum(pvR) - mvR**2.0)
assert numpy.fabs(mvR) < 0.01, (
"mean vR calculated from pvR not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svR) - 0.5 * numpy.log(qdf.sigmaR2(R, z))) < 0.01, (
"sigma vR calculated from pvR not equal to that from sigmaR2 for staeckel actions"
)
return None
def test_pvR_staeckel_diffngl():
# Test pvR by calculating its mean and stddev by Riemann sum
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
R, z = 0.8, 0.1
vRs = numpy.linspace(-1.0, 1.0, 51)
# ngl=10
pvR = numpy.array([qdf.pvR(vr, R, z, ngl=10) for vr in vRs])
mvR = numpy.sum(vRs * pvR) / numpy.sum(pvR)
svR = numpy.sqrt(numpy.sum(vRs**2.0 * pvR) / numpy.sum(pvR) - mvR**2.0)
assert numpy.fabs(mvR) < 0.01, (
"mean vR calculated from pvR not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svR) - 0.5 * numpy.log(qdf.sigmaR2(R, z))) < 0.01, (
"sigma vR calculated from pvR not equal to that from sigmaR2 for staeckel actions"
)
# ngl=40
pvR = numpy.array([qdf.pvR(vr, R, z, ngl=40) for vr in vRs])
mvR = numpy.sum(vRs * pvR) / numpy.sum(pvR)
svR = numpy.sqrt(numpy.sum(vRs**2.0 * pvR) / numpy.sum(pvR) - mvR**2.0)
assert numpy.fabs(mvR) < 0.01, (
"mean vR calculated from pvR not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svR) - 0.5 * numpy.log(qdf.sigmaR2(R, z))) < 0.01, (
"sigma vR calculated from pvR not equal to that from sigmaR2 for staeckel actions"
)
# ngl=11, shouldn't work
try:
pvR = numpy.array([qdf.pvR(vr, R, z, ngl=11) for vr in vRs])
except ValueError:
pass
else:
raise AssertionError("pvR w/ ngl=odd did not raise ValueError")
return None
def test_pvT_adiabatic():
# Test pvT by calculating its mean and stddev by Riemann sum
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
R, z = 0.8, 0.1
vTs = numpy.linspace(0.0, 1.5, 101)
pvT = numpy.array([qdf.pvT(vt, R, z) for vt in vTs])
mvT = numpy.sum(vTs * pvT) / numpy.sum(pvT)
svT = numpy.sqrt(numpy.sum(vTs**2.0 * pvT) / numpy.sum(pvT) - mvT**2.0)
assert numpy.fabs(mvT - qdf.meanvT(R, z)) < 0.01, (
"mean vT calculated from pvT not equal to zero for adiabatic actions"
)
assert numpy.fabs(numpy.log(svT) - 0.5 * numpy.log(qdf.sigmaT2(R, z))) < 0.01, (
"sigma vT calculated from pvT not equal to that from sigmaT2 for adiabatic actions"
)
return None
def test_pvT_staeckel():
# Test pvT by calculating its mean and stddev by Riemann sum
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
R, z = 0.8, 0.1
vTs = numpy.linspace(0.0, 1.5, 101)
pvT = numpy.array([qdf.pvT(vt, R, z) for vt in vTs])
mvT = numpy.sum(vTs * pvT) / numpy.sum(pvT)
svT = numpy.sqrt(numpy.sum(vTs**2.0 * pvT) / numpy.sum(pvT) - mvT**2.0)
assert numpy.fabs(mvT - qdf.meanvT(R, z)) < 0.01, (
"mean vT calculated from pvT not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svT) - 0.5 * numpy.log(qdf.sigmaT2(R, z))) < 0.01, (
"sigma vT calculated from pvT not equal to that from sigmaT2 for staeckel actions"
)
return None
def test_pvT_staeckel_diffngl():
# Test pvT by calculating its mean and stddev by Riemann sum
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
R, z = 0.8, 0.1
vTs = numpy.linspace(0.0, 1.5, 101)
# ngl=10
pvT = numpy.array([qdf.pvT(vt, R, z, ngl=10) for vt in vTs])
mvT = numpy.sum(vTs * pvT) / numpy.sum(pvT)
svT = numpy.sqrt(numpy.sum(vTs**2.0 * pvT) / numpy.sum(pvT) - mvT**2.0)
assert numpy.fabs(mvT - qdf.meanvT(R, z)) < 0.01, (
"mean vT calculated from pvT not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svT) - 0.5 * numpy.log(qdf.sigmaT2(R, z))) < 0.01, (
"sigma vT calculated from pvT not equal to that from sigmaT2 for staeckel actions"
)
# ngl=40
pvT = numpy.array([qdf.pvT(vt, R, z, ngl=40) for vt in vTs])
mvT = numpy.sum(vTs * pvT) / numpy.sum(pvT)
svT = numpy.sqrt(numpy.sum(vTs**2.0 * pvT) / numpy.sum(pvT) - mvT**2.0)
assert numpy.fabs(mvT - qdf.meanvT(R, z)) < 0.01, (
"mean vT calculated from pvT not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svT) - 0.5 * numpy.log(qdf.sigmaT2(R, z))) < 0.01, (
"sigma vT calculated from pvT not equal to that from sigmaT2 for staeckel actions"
)
# ngl=11, shouldn't work
try:
pvT = numpy.array([qdf.pvT(vt, R, z, ngl=11) for vt in vTs])
except ValueError:
pass
else:
raise AssertionError("pvT w/ ngl=odd did not raise ValueError")
return None
def test_pvz_adiabatic():
# Test pvz by calculating its mean and stddev by Riemann sum
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAA, cutcounter=True
)
R, z = 0.8, 0.1
vzs = numpy.linspace(-1.0, 1.0, 51)
pvz = numpy.array([qdf.pvz(vz, R, z) for vz in vzs])
mvz = numpy.sum(vzs * pvz) / numpy.sum(pvz)
svz = numpy.sqrt(numpy.sum(vzs**2.0 * pvz) / numpy.sum(pvz) - mvz**2.0)
assert numpy.fabs(mvz) < 0.01, (
"mean vz calculated from pvz not equal to zero for adiabatic actions"
)
assert numpy.fabs(numpy.log(svz) - 0.5 * numpy.log(qdf.sigmaz2(R, z))) < 0.01, (
"sigma vz calculated from pvz not equal to that from sigmaz2 for adiabatic actions"
)
return None
def test_pvz_staeckel():
# Test pvz by calculating its mean and stddev by Riemann sum
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
R, z = 0.8, 0.1
vzs = numpy.linspace(-1.0, 1.0, 51)
pvz = numpy.array([qdf.pvz(vz, R, z) for vz in vzs])
mvz = numpy.sum(vzs * pvz) / numpy.sum(pvz)
svz = numpy.sqrt(numpy.sum(vzs**2.0 * pvz) / numpy.sum(pvz) - mvz**2.0)
assert numpy.fabs(mvz) < 0.01, (
"mean vz calculated from pvz not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svz) - 0.5 * numpy.log(qdf.sigmaz2(R, z))) < 0.01, (
"sigma vz calculated from pvz not equal to that from sigmaz2 for staeckel actions"
)
# same w/ explicit sigmaR input
pvz = numpy.array(
[qdf.pvz(vz, R, z, _sigmaR1=0.95 * numpy.sqrt(qdf.sigmaR2(R, z))) for vz in vzs]
)
mvz = numpy.sum(vzs * pvz) / numpy.sum(pvz)
svz = numpy.sqrt(numpy.sum(vzs**2.0 * pvz) / numpy.sum(pvz) - mvz**2.0)
assert numpy.fabs(mvz) < 0.01, (
"mean vz calculated from pvz not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svz) - 0.5 * numpy.log(qdf.sigmaz2(R, z))) < 0.01, (
"sigma vz calculated from pvz not equal to that from sigmaz2 for staeckel actions"
)
return None
def test_pvz_staeckel_diffngl():
# Test pvz by calculating its mean and stddev by Riemann sum
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
R, z = 0.8, 0.1
vzs = numpy.linspace(-1.0, 1.0, 51)
# ngl=10
pvz = numpy.array([qdf.pvz(vz, R, z, ngl=10) for vz in vzs])
mvz = numpy.sum(vzs * pvz) / numpy.sum(pvz)
svz = numpy.sqrt(numpy.sum(vzs**2.0 * pvz) / numpy.sum(pvz) - mvz**2.0)
assert numpy.fabs(mvz) < 0.01, (
"mean vz calculated from pvz not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svz) - 0.5 * numpy.log(qdf.sigmaz2(R, z))) < 0.01, (
"sigma vz calculated from pvz not equal to that from sigmaz2 for staeckel actions"
)
# ngl=40
pvz = numpy.array([qdf.pvz(vz, R, z, ngl=40) for vz in vzs])
mvz = numpy.sum(vzs * pvz) / numpy.sum(pvz)
svz = numpy.sqrt(numpy.sum(vzs**2.0 * pvz) / numpy.sum(pvz) - mvz**2.0)
assert numpy.fabs(mvz) < 0.01, (
"mean vz calculated from pvz not equal to zero for staeckel actions"
)
assert numpy.fabs(numpy.log(svz) - 0.5 * numpy.log(qdf.sigmaz2(R, z))) < 0.01, (
"sigma vz calculated from pvz not equal to that from sigmaz2 for staeckel actions"
)
# ngl=11, shouldn't work
try:
pvz = numpy.array([qdf.pvz(vz, R, z, ngl=11) for vz in vzs])
except ValueError:
pass
else:
raise AssertionError("pvz w/ ngl=odd did not raise ValueError")
return None
def test_pvz_staeckel_arrayin():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
R, z = 0.8, 0.1
pvz = qdf.pvz(0.05 * numpy.ones(2), R * numpy.ones(2), z * numpy.ones(2))
assert numpy.all(
numpy.fabs(numpy.log(pvz) - numpy.log(qdf.pvz(0.05, R, z))) < 10.0**-10.0
), (
"pvz calculated with R and z array input does not equal to calculated with scalar input"
)
return None
def test_setup_diffsetups():
# Test the different ways to setup a qdf object
# Test errors
try:
qdf = quasiisothermaldf(1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, aA=aAS, cutcounter=True)
except OSError:
pass
else:
raise AssertionError("qdf setup w/o pot set did not raise exception")
try:
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, cutcounter=True
)
except OSError:
pass
else:
raise AssertionError("qdf setup w/o aA set did not raise exception")
from galpy.potential import LogarithmicHaloPotential
try:
qdf = quasiisothermaldf(
1.0 / 4.0,
0.2,
0.1,
1.0,
1.0,
pot=LogarithmicHaloPotential(),
aA=aAS,
cutcounter=True,
)
except OSError:
pass
else:
raise AssertionError(
"qdf setup w/ aA potential different from pot= did not raise exception"
)
# qdf setup with an actionAngleIsochrone instance (issue #190)
from galpy.actionAngle import actionAngleIsochrone
from galpy.potential import IsochronePotential
ip = IsochronePotential(normalize=1.0, b=2.0)
try:
qdf = quasiisothermaldf(
1.0 / 4.0,
0.2,
0.1,
1.0,
1.0,
pot=ip,
aA=actionAngleIsochrone(ip=ip),
cutcounter=True,
)
except:
raise
raise AssertionError(
"quasi-isothermaldf setup w/ an actionAngleIsochrone instance failed"
)
# qdf setup with an actionAngleIsochrone instance should raise error if potentials are not the same
ip = IsochronePotential(normalize=1.0, b=2.0)
try:
qdf = quasiisothermaldf(
1.0 / 4.0,
0.2,
0.1,
1.0,
1.0,
pot=ip,
aA=actionAngleIsochrone(ip=IsochronePotential(normalize=1.0, b=2.5)),
cutcounter=True,
)
except OSError:
pass
else:
raise AssertionError(
"qdf setup w/ aA potential different from pot= did not raise exception"
)
# precompute
qdf = quasiisothermaldf(
1.0 / 4.0,
0.2,
0.1,
1.0,
1.0,
pot=MWPotential,
aA=aAS,
cutcounter=True,
_precomputerg=True,
)
qdfnpc = quasiisothermaldf(
1.0 / 4.0,
0.2,
0.1,
1.0,
1.0,
pot=MWPotential,
aA=aAS,
cutcounter=True,
_precomputerg=False,
)
assert numpy.fabs(qdf._rg(1.1) - qdfnpc._rg(1.1)) < 10.0**-5.0, (
"rg calculated from qdf instance w/ precomputerg set is not the same as that computed from an instance w/o it set"
)
def test_call_diffinoutputs():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# when specifying rg etc., first get these from a previous output
val, trg, tkappa, tnu, tOmega = qdf((0.03, 0.9, 0.02), _return_freqs=True)
# First check that just supplying these again works
assert (
numpy.fabs(
val - qdf((0.03, 0.9, 0.02), rg=trg, kappa=tkappa, nu=tnu, Omega=tOmega)
)
< 10.0**-8.0
), "qdf calls w/ rg, and frequencies specified and w/ not specified do not agrees"
# Also calculate the frequencies
assert (
numpy.fabs(
val
- qdf(
(0.03, 0.9, 0.02),
rg=trg,
kappa=epifreq(MWPotential, trg),
nu=verticalfreq(MWPotential, trg),
Omega=omegac(MWPotential, trg),
)
)
< 10.0**-8.0
), "qdf calls w/ rg, and frequencies specified and w/ not specified do not agrees"
# Also test _return_actions
val, jr, lz, jz = qdf(0.9, 0.1, 0.95, 0.1, 0.08, _return_actions=True)
assert numpy.fabs(val - qdf((jr, lz, jz))) < 10.0**-8.0, (
"qdf call w/ R,vR,... and actions specified do not agree"
)
acs = aAS(0.9, 0.1, 0.95, 0.1, 0.08)
assert numpy.fabs(acs[0] - jr) < 10.0**-8.0, (
"direct calculation of jr and that returned from qdf.__call__ does not agree"
)
assert numpy.fabs(acs[1] - lz) < 10.0**-8.0, (
"direct calculation of lz and that returned from qdf.__call__ does not agree"
)
assert numpy.fabs(acs[2] - jz) < 10.0**-8.0, (
"direct calculation of jz and that returned from qdf.__call__ does not agree"
)
# Test unbound orbits
# Find unbound orbit, new qdf s.t. we can get UnboundError (only with
taAS = actionAngleStaeckel(pot=MWPotential, c=False, delta=0.5)
qdfnc = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=taAS, cutcounter=True
)
from galpy.actionAngle import UnboundError
try:
acs = taAS(0.9, 10.0, -20.0, 0.1, 10.0)
except UnboundError:
pass
else:
print(acs)
raise AssertionError("Test orbit in qdf that is supposed to be unbound is not")
assert qdfnc(0.9, 10.0, -20.0, 0.1, 10.0) < 10.0**-10.0, (
"unbound orbit does not return qdf equal to zero"
)
assert qdfnc(0.9, 10.0, -20.0, 0.1, 10.0, log=True) < -10.0 * numpy.log(10.0), (
"unbound orbit does not return qdf equal to zero"
)
# Test negative lz
assert qdf((0.03, -0.1, 0.02)) < 10.0**-8.0, (
"qdf w/ cutcounter=True and negative lz does not return 0"
)
assert (
qdf((0.03, -0.1, 0.02), log=True)
<= numpy.finfo(numpy.dtype(numpy.float64)).min + 1.0
), "qdf w/ cutcounter=True and negative lz does not return 0"
# Test func
val = qdf((0.03, 0.9, 0.02))
fval = qdf(
(0.03, 0.9, 0.02),
func=lambda x, y, z: numpy.sin(x) * numpy.cos(y) * numpy.exp(z),
)
assert (
numpy.fabs(val * numpy.sin(0.03) * numpy.cos(0.9) * numpy.exp(0.02) - fval)
< 10.0**-8
), "qdf __call__ w/ func does not work as expected"
lfval = qdf(
(0.03, 0.9, 0.02),
func=lambda x, y, z: numpy.sin(x) * numpy.cos(y) * numpy.exp(z),
log=True,
)
assert (
numpy.fabs(
numpy.log(val)
+ numpy.log(numpy.sin(0.03) * numpy.cos(0.9) * numpy.exp(0.02))
- lfval
)
< 10.0**-8
), "qdf __call__ w/ func does not work as expected"
return None
def test_vmomentdensity_diffinoutputs():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# Test that we can input use different ngl
R, z = 0.8, 0.1
sigmar2 = qdf.sigmaR2(R, z, gl=True)
assert (
numpy.fabs(
numpy.log(
qdf.sigmaR2(
R,
z,
gl=True,
_sigmaR1=0.95 * numpy.sqrt(qdf.sigmaR2(R, z)),
_sigmaz1=0.95 * numpy.sqrt(qdf.sigmaz2(R, z)),
)
)
- numpy.log(sigmar2)
)
< 0.01
), "sigmaR2 calculated w/ explicit sigmaR1 and sigmaz1 do not agree"
# Test ngl inputs further
try:
qdf.vmomentdensity(R, z, 0, 0, 0, gl=True, ngl=11)
except ValueError:
pass
else:
raise AssertionError(
"qdf.vmomentdensity w/ ngl == odd does not raise ValueError"
)
surfmass, glqeval = qdf.vmomentdensity(R, z, 0.0, 0.0, 0.0, gl=True, _returngl=True)
# This shouldn't reuse gleval, but should work nonetheless
assert (
numpy.fabs(
numpy.log(surfmass)
- numpy.log(
qdf.vmomentdensity(
R, z, 0.0, 0.0, 0.0, gl=True, _glqeval=glqeval, ngl=30
)
)
)
< 0.05
), "vmomentsurfmass w/ wrong glqeval input does not work"
# Test that we can reuse jr, etc.
surfmass, jr, lz, jz = qdf.vmomentdensity(
R, z, 0.0, 0.0, 0.0, gl=True, _return_actions=True
)
assert (
numpy.fabs(
numpy.log(surfmass)
- numpy.log(
qdf.vmomentdensity(R, z, 0.0, 0.0, 0.0, gl=True, _jr=jr, _lz=lz, _jz=jz)
)
)
< 0.01
), "surfacemass calculated from reused actions does not agree with that before"
surfmass, jr, lz, jz, rg, kappa, nu, Omega = qdf.vmomentdensity(
R, z, 0.0, 0.0, 0.0, gl=True, _return_actions=True, _return_freqs=True
)
assert (
numpy.fabs(
numpy.log(surfmass)
- numpy.log(
qdf.vmomentdensity(
R,
z,
0.0,
0.0,
0.0,
gl=True,
_jr=jr,
_lz=lz,
_jz=jz,
_rg=rg,
_kappa=kappa,
_nu=nu,
_Omega=Omega,
)
)
)
< 0.01
), "surfacemass calculated from reused actions does not agree with that before"
# Some tests of mc=True
surfmass, vrs, vts, vzs = qdf.vmomentdensity(
R, z, 0.0, 0.0, 0.0, mc=True, gl=False, _rawgausssamples=True, _returnmc=True
)
assert (
numpy.fabs(
numpy.log(surfmass)
- numpy.log(
qdf.vmomentdensity(
R,
z,
0.0,
0.0,
0.0,
mc=True,
gl=False,
_rawgausssamples=True,
_vrs=vrs,
_vts=vts,
_vzs=vzs,
)
)
)
< 0.0001
), (
"qdf.vmomentdensity w/ rawgausssamples and mc=True does not agree with that w/o rawgausssamples"
)
return None
def test_vmomentdensity_physical():
# Test physical output of vmomentdensity
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
R, z = 0.8, 0.1
ro, vo = 7.0, 230.0
assert (
numpy.fabs(
qdf.vmomentdensity(R, z, 0, 0, 0, gl=True, ngl=12, ro=ro, vo=vo)
- qdf.vmomentdensity(R, z, 0, 0, 0, gl=True, ngl=12) / ro**3
)
< 10.0**-8.0
), (
"vmomentdensity with use_physical does not correspond to vmomentdensity without physical"
)
assert (
numpy.fabs(
qdf.vmomentdensity(R, z, 0, 1, 0, gl=True, ngl=12, ro=ro, vo=vo)
- qdf.vmomentdensity(R, z, 0, 1, 0, gl=True, ngl=12) * vo / ro**3
)
< 10.0**-8.0
), (
"vmomentdensity with use_physical does not correspond to vmomentdensity without physical"
)
return None
def test_jmomentdensity_diffinoutputs():
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# Some tests of mc=True
R, z = 0.8, 0.1
jr2surfmass, vrs, vts, vzs = qdf.jmomentdensity(
R, z, 2.0, 0.0, 0.0, mc=True, _returnmc=True
)
assert (
numpy.fabs(
numpy.log(jr2surfmass)
- numpy.log(
qdf.jmomentdensity(
R, z, 2.0, 0.0, 0.0, mc=True, _vrs=vrs, _vts=vts, _vzs=vzs
)
)
)
< 0.0001
), (
"qdf.jmomentdensity w/ rawgausssamples and mc=True does not agree with that w/o rawgausssamples"
)
return None
def test_jmomentdensity_physical():
# Test physical output of jmomentdensity
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
ro, vo = 7.0, 230.0
assert (
numpy.fabs(
qdf.jmomentdensity(1.1, 0.1, 0, 0, 0, nmc=100000, ro=ro, vo=vo)
- qdf.jmomentdensity(1.1, 0.1, 0, 0, 0, nmc=100000) / ro**3 * (ro * vo) ** 0
)
< 10.0**-4.0
), "quasiisothermaldf method jmomentdensity does not return correct Quantity"
assert (
numpy.fabs(
qdf.jmomentdensity(
1.1, 0.1, 1, 0, 0, nmc=100000, ro=ro, vo=vo, use_physical=True
)
- qdf.jmomentdensity(1.1, 0.1, 1, 0, 0, nmc=100000) / ro**3 * (ro * vo) ** 1
)
< 10.0**-2.0
), "quasiisothermaldf method jmomentdensity does not return correct Quantity"
return None
def test_pvz_diffinoutput():
# pvz, similarly to vmomentdensity, can output certain intermediate results
qdf = quasiisothermaldf(
1.0 / 4.0, 0.2, 0.1, 1.0, 1.0, pot=MWPotential, aA=aAS, cutcounter=True
)
# test reusing the actions
R, z = 0.8, 0.1
tpvz, jr, lz, jz = qdf.pvz(0.1, R, z, _return_actions=True)
assert (
numpy.fabs(
numpy.log(qdf.pvz(0.1, R, z, _jr=jr, _lz=lz, _jz=jz)) - numpy.log(tpvz)
)
< 0.001
), "qdf.pvz does not return the same result when reusing the actions"
# test reusing the frequencies
tpvz, rg, kappa, nu, Omega = qdf.pvz(0.1, R, z, _return_freqs=True)
assert (
numpy.fabs(
numpy.log(qdf.pvz(0.1, R, z, _rg=rg, _kappa=kappa, _nu=nu, _Omega=Omega))
- numpy.log(tpvz)
)
< 0.001
), "qdf.pvz does not return the same result when reusing the frequencies"
# test reusing the actions and the frequencies
tpvz, jr, lz, jz, rg, kappa, nu, Omega = qdf.pvz(
0.1, R, z, _return_actions=True, _return_freqs=True
)
assert (
numpy.fabs(
numpy.log(
qdf.pvz(
0.1,
R,
z,
_jr=jr,
_lz=lz,
_jz=jz,
_rg=rg,
_kappa=kappa,
_nu=nu,
_Omega=Omega,
)
)
- numpy.log(tpvz)
)
< 0.001
), (
"qdf.pvz does not return the same result when reusing the actions and the frequencies"
)
return None
def test_meanjz_noaac_issue300():
# Test of issue 300 reported by Ruth Angus: failure of qdf.meanjz when not using C integration for action-angle calculations
taA = actionAngleAdiabatic(pot=MWPotential, c=False)
hr = 1 / 3.0
sr = 0.2
sz = 0.1
hsr = 1.0
hsz = 1.0
qdf = quasiisothermaldf(
hr, sr, sz, hsr, hsz, pot=MWPotential, aA=taA, cutcounter=True
)
assert numpy.fabs(qdf.meanjz(1.0, 0.125, nmc=100) - 0.0157468008111) < 0.01, (
"Mean Jz computed using MC with Python actionAngleAdiabatic integration fails"
)
return None
|