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 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430
|
Validation
==========
Test case 1: Cogeneration
-------------------------
This test-case originates from [ProtoOTGUI2014]_ and can be found in python/test/t_Cogeneration_std.py.
The purpose of this example is to check:
- The Central tendency analysis using the Taylor Expansions;
- the default values calculated for the parameters of a parametric analysis.
The obtained results must be equal to the analytical values.
.. literalinclude:: ../../t_Cogeneration_std.py
1- Problem statement
````````````````````
1-1 Inputs
''''''''''
- Stochastic variables:
====== ======================== ==================
Name Description Distribution
====== ======================== ==================
Q Primary energy Normal(10200, 100)
E Produced electric energy Normal(3000, 15)
C Valued thermal energy Normal(4000, 60)
====== ======================== ==================
1-2 Output
''''''''''
Primary energy savings :math:`E_p`
.. math::
Ep = 1-\frac{Q}{\frac{E}{0.54(1-0.05)}+\frac{C}{0.8}}
2- Central tendency analysis
````````````````````````````
2-1 Inputs
''''''''''
The central tendency analysis is performed with the Taylor Expansions method.
3-1 Results
'''''''''''
3-1-1 Values
************
================ ================= ================== ===========
First order mean Second order mean Standard deviation Variance
================ ================= ================== ===========
0.0597305 0.0596787 0.0115612 0.000133661
================ ================= ================== ===========
3- Deterministic parametric analysis
````````````````````````````````````
3-1 Inputs
''''''''''
The minimum and the maximum values are computed automatically thanks to
the distribution of the variables. The minimum value is the quantile at the
probability of 0.05 and the maximum one is the quantile at the probability of
0.95. The number of used values per variable is by default 2.
======== ======= ======= ================
Variable Min Max Number of values
======== ======= ======= ================
Q 10035.5 10364.5 2
E 2975.33 3024.67 2
C 3901.31 4098.69 2
======== ======= ======= ================
3-2 Results
'''''''''''
3-2-1 Values
************
======= ======= ======= =========
Q E C Ep
======= ======= ======= =========
10035.5 2975.33 3901.31 0.0600385
10364.5 2975.33 3901.31 0.0292232
10035.5 3024.67 3901.31 0.0684305
10364.5 3024.67 3901.31 0.0378903
10035.5 2975.33 4098.69 0.0812696
10364.5 2975.33 4098.69 0.0511503
10035.5 3024.67 4098.69 0.0892884
10364.5 3024.67 4098.69 0.059432
======= ======= ======= =========
The points are generated according to the structure of a box design of experiments.
This deterministic design of experiments has 8 points obtained by regularly discretizing
the pavement :math:`[10035.5, 10364.5] \times [2975.33, 3024.67] \times [3901.31, 4098.69]`.
The minimum value of :math:`Ep` is 0.0292239 with X=[10364.5 2975.33 3901.31].
The maximum value of :math:`Ep` is 0.0892877 with X=[10035.5 3024.67 4098.69].
3-2-1 Figures
*************
.. image:: min_max_result_cogeneration.png
:width: 443px
:align: center
:height: 340px
.. image:: result_cogeneration_ep_vs_q.png
:width: 443px
:align: center
:height: 340px
4- Reference
````````````
Test case 2: Flood
------------------
This test-case originates from [ProtoOTGUI2014]_ and can be found in python/test/t_Crue_std.py.
.. literalinclude:: ../../t_Crue_std.py
1- Problem statement
````````````````````
1-1 Inputs
''''''''''
- Stochastic variables:
====== ======================== ===================================
Name Description Distribution
====== ======================== ===================================
Q River flow Gumbel(beta=0.00179211, gamma=1013)
Ks Manning-Strickler factor Normal(30, 7.5) truncated at 0
Zm River's depth upstream Uniform(54,56)
Zv River's depth downstream Uniform(49, 51)
====== ======================== ===================================
1-2 Output
''''''''''
Difference between the dike height and the water level :math:`S`
.. math::
S = \left(\frac{Q}{Ks\times300\times\sqrt{(Zm-Zv)/5000}}\right)^{(3/5)} +Zv-55.5-3
2- Reliability analysis (MonteCarlo)
````````````````````````````````````
2-1 Inputs
''''''''''
The limit state is defined by
.. math::
S > -1
The analysis is performed with the Monte Carlo method with the following parameters:
================================ ========
Name Value
================================ ========
Maximum calls 10000
Maximum coefficient of variation 0.01
Seed 0
Block size 1
================================ ========
2-2 Results
'''''''''''
2-2-1 Values
************
=================== ======================== =============================================
Failure probability Coefficient of variation Confidence interval at 95%
=================== ======================== =============================================
0.0001 0.99995 :math:`\left[0; 0.000295987\right]`
=================== ======================== =============================================
2-2-2 Figures
*************
.. image:: result_crue_MC_histo_S.png
:width: 443px
:align: center
:height: 340px
.. image:: result_crue_MC_convergence.png
:width: 443px
:align: center
:height: 340px
3- Reliability analysis (Importance Sampling)
`````````````````````````````````````````````
3-1 Inputs
''''''''''
The limit state is defined by
.. math::
S > -1
The analysis is performed with the Monte Carlo method with the following parameters:
================================ ====================
Name Value
================================ ====================
Maximum calls 10000
Maximum coefficient of variation 0.01
Seed 0
Block size 1000
-------------------------------- --------------------
Algorithm Abdo-Rackwitz
Physical starting point 1013; 30.001; 55; 50
Number of evaluations 1000
Errors (abs., rel., res., con.) 1e-05
================================ ====================
3-2 Results
'''''''''''
3-2-1 Values
************
=================== ======================== =============================================
Failure probability Coefficient of variation Confidence interval at 95%
=================== ======================== =============================================
0.000218778 0.0204222 :math:`\left[0.00021021, 0.000227535\right]`
=================== ======================== =============================================
3-2-2 Figures
*************
.. image:: result_crue_IS_histo_S.png
:width: 443px
:align: center
:height: 340px
.. image:: result_crue_IS_convergence.png
:width: 443px
:align: center
:height: 340px
Graphical validation
--------------------
Find here the procedure to validate the graphical interface
Open
``````
- open persalys
- there are a Menu bar, a Tool bar, a Python console, a status bar
- a window with 3 buttons (New study/Open study/Import Python script) appears
.. image:: /developer_manual/validation/welcomeWindow.png
:align: center
Python Console
````````````````
- open persalys
- click Menu->Tools->Python Console
- console shown
- click Menu->Tools->Python Console
- console hidden
- click Menu->Tools->Python Console
- console shown
- check console right-click menu commands description and behavior
- close the console
- console hidden
- check nopip is working properly on Linux
- remove the directory ~/.persalys_base
- type the following in the Python console
.. code-block:: python
from nopip import install
install.modules(["coolprop", "--user"], verbose=True)
import CoolProp
- check nopip is working properly on Windows
- remove the directory %LOCALAPPDATA%\\Roaming\\Persalys
- type the following in the Python console
.. code-block:: python
from nopip import install
install.modules(["coolprop", "--user"], verbose=True)
import CoolProp
Open documentation
``````````````````
- click Menu->Help->User's manual
- the documentation is opened in a web browser
About
`````
- click Menu->Help->About Persalys
- a popup displays:
- a link to the website and copyright info
- the dependencies librairies and their versions
New Study
```````````
- click on button New study in the mid Area
- item Study_0 appears in the tree view
- a 'study' window with 7(+2) buttons appears:
- Symbolic model
- Python model
- Coupling
- Python model on cluster (optional)
- FMI model (optional)
- Symbolic Field Model
- Python Field Model
- Data set
- Field data set
- click Menu->File->New
- item Study_1 appears in the tree view
- the item is associated with a 'study' window
- click icon New Study in the Tool bar
- item Study_2 appears in the tree view
- the item is associated with a 'study' window
- press keys CTRL + N
- item Study_3 appears in the tree view
- the item is associated with a 'study' window
.. image:: /developer_manual/validation/otstudyWindow.png
:align: center
Rename Study
``````````````
- double click on Study_1 item, rename Study_1 as myOTStudy, press enter
- the item is renamed
- right click on Study_2 item, on the context menu which appears click on Rename, rename Study_2 as myOTStudy2, press enter
- the item is renamed
- left-click select Study_3, press F2, rename Study_3 as myOTStudy3, press enter
- rename Study_0 as myOTStudy. A pop-up opens to inform you the name is already taken. Close the pop-up. The name stays Study_0
Save/open Study
````````````````````
- Close myOTStudy2 and myOTStudy3
- save myOTStudy with Menu->File->save, close with Menu->File->close, reopen with Menu->File->open
- right click on myOTStudy, choose Rename, rename myOTStudy by myOTStudy1,
save myOTStudy1 with the icon of the tool bar, close with right click + close,
reopen with the icon of the tool bar
- rename myOTStudy1 by myOTStudy2, save myOTStudy2 in pressing CTRL + S, close with right click + close, reopen with press keys CTRL + O
- rename myOTStudy2 by myOTStudy3, save myOTStudy3 with right click + save, close with right click + close, reopen with press keys CTRL + O
Export/Import Study
`````````````````````
- export myOTStudy3 with right click + Export Python, name the file test.py
- close the interface with Menu->File->Exit
- close without saving all the studies (except myOTStudy3)
- open the interface
- click on button Import Python script in the mdiArea
- choose test.py
- click on the icon Import Python of the tool bar
- a message box appears to close opened studies, click OK
- a message box appears to save the current study, click close without saving
- choose the script test.py
- close myOTStudy3
- click on Menu->File->Import Python...
- choose test.py
- close the interface in pressing CTRL + Q
- close without saving
Models
```````
- open the interface
.. code-block:: console
cd persalys_dir/build_dir
./persalys.sh
- Import the file ../python/test/t_deterministic_analyses.py
- Right click on 'symbolicModel'
- Rename, Define (greyed out), Duplicate, Remove
- click on 'Definition' child item of 'symbolicModel' item
.. image:: /developer_manual/validation/model1.png
:align: center
- click on 'Evaluate model' button below the outputs table
- fake_var is not evaluated
- click on 'Evaluate gradient'
- View switches to Differentiation tab
- Check values
.. image:: /developer_manual/validation/model1grad.png
:align: center
- click on 'Evaluate model'
- View switches back to 'Definition' tab
- select lines 1 of the outputs table
- first header item is checked
- click on 'Evaluate model' button
- fake_var is evaluated
- change x2 value to 1.5 + press enter
- outputs values and gradient table are reinitialized
- unselect all outputs
- click on 'Evaluate model' button
- nothing appends
- check fake_var + change its formula to 'x1 +'
- click on 'Evaluate model' button
- error message 'Errors found when parsing expression etc.'
- unselect fake_var + select y0, fake_y0 and y1, evaluate
- error message is cleared
- change x2 value to 1.2 + press enter
- check the doc link
- Right click on 'pythonModel'
- Rename, Define (greyed out), Duplicate, Remove, Properties
- Click Properties
- Change the value then press OK
- Save the study as a new study, close it and re-open it
- Open 'pythonModel' properties again.
- click on 'Definition' child item of 'pythonModel' item
.. image:: /developer_manual/validation/model2.png
:align: center
- check the doc link
- click on 'Definition' child item of 'couplingModel' item
- click on 'Input' tab
- Edit any input value and associated format
- click on 'Check template' button
- expand 'Template/Input comparison' group box and visually
confirm the template has been correctly read and values have
been correctly replaced
.. image:: /developer_manual/validation/model5.png
:align: center
- click on 'Output' tab
- click on check output button
- select ../python/test/coupling_model/beam_output.txt
- check that the value is correctly displayed below the button
- click on 'Evaluate model' button
- check that the output value for deviation has been updated in the table
- remove the coupling step by clicking 'X' on the step tab
- confirm variables removal
- click on 'Run Ansys wizard'
- a wizard appears
- click on '...' in the model file field
- select the ansys project python/test/ansysConnector/BEAM.wbpj
- select the ansys solver build_dir/python/test/dummyAnsys
- check the wizard displays:
.. image:: /developer_manual/validation/ansysWizardFilled.png
:align: center
- click the checkbox in the table header: all variables are unchecked
- click 'Continue': the message 'Please select at least one variable' appears in red
- modify the ansys solver dummyAnsys -> dummyAnsys2
- click 'Continue': the message 'Cannot find the ansys solver' appears in red
- Revert the changes made to the ansys solver
- Select one by one inputs and outputs, the header is checked
- Click on 'Continue'
- The following page appears:
.. image:: /developer_manual/validation/ansysWizardPage2.png
:align: center
- Deselect the system, click on 'Finish': the message 'Please select at least one system' appears in red
- select the system
- click on 'Finish'
- Check the correctness of the different tabs
- Command:
.. image:: /developer_manual/validation/ansysWizardCommand.png
:align: center
- Input: after clicking on 'Check template file' and expanding Input/template comparison
.. image:: /developer_manual/validation/ansysWizardInputs.png
:align: center
- Resource: empty
- Output: empty
- Additional processing
.. image:: /developer_manual/validation/ansysWizardPP.png
:align: center
- Evaluate the model and check the summary tab:
.. image:: /developer_manual/validation/ansysWizardSummary.png
:align: center
- check the doc link
- click on 'Definition' child item of 'fixedDataModel' item
.. image:: /developer_manual/validation/model4.png
:align: center
- click on reload button: nothing appends
- click on 'Definition' child item of 'importDataModel' item
.. image:: /developer_manual/validation/model3.png
:align: center
- a message stating the sample contains invalid values should be displayed
- right-click on 'Definition' child item of 'importDataModel' item
- click Quantile analysis
- a message stating the sample contains invalid values should be displayed
- find the troublesome line at the end of the sample, select it then
right-click on it and delete it using the popup menu
- the message should disappear
- click on reload button: the troublesome line is back, along with the message
- run the data cleaning wizard using the popup right click menu
- choose one of the replacement/removing feature
- the troublesome line and message are gone
- right-click on 'Definition' child item of 'importDataModel' item
- click Quantile analysis
- check the doc link
- Continue
- the page shows an error message : Sample size is too small to ensure quantile validity...
- set default target probability to 0.05 : the message disappears
- go back
- choose GDP, click continue
- click the lower header check box : all lower checkboxes are checked
- edit the default value line edit : only numbers are accepted
- set default target probability to 0.05
- edit one of the marginal target probability line edit : only numbers are accepted
- click on one of the '...' button
- check add/remove buttons behave appropriately
- cancel
- click continue
- the column lower shows red values with a message 'Chosen CDF threshold must be greater than the target probability.'
- change all lower/upper CDF thresholds to 0.1/0.9
- check that if you change one of the threshold/cdf threshold, the other values are updated
- click mean excess tab : check that the plots are
correctly displayed and the drop down menu changes the
current plot
- click Finsih then run the analysis
- check the results
.. image:: /developer_manual/validation/validationQuantile1.png
:align: center
.. image:: /developer_manual/validation/validationQuantile2.png
:align: center
- check the doc link
- save the study as a new study of your choice
- a .xml file along a .h5 file are created
- rename one of the file and try reloading the study
- the following message appears:
.. image:: /developer_manual/validation/error.png
:align: center
- revert the renaming of the file
- the study loads successfully
Deterministic analyses
``````````````````````
- Each analysis item is associated with a window with a table of parameters (optional), a progress bar and a button 'Run' and a disabled button 'Stop'
- Import the file python/test/t_deterministic_analyses.py
- Check all the analyses wizards -> Right click on each item and choose Modify:
- Evaluation: item evaluation1
.. image:: /developer_manual/validation/evaluation_wizard.png
:align: center
- deselect fake_y0
- check the values: [0.2, 1.2, 1]
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
.. image:: /developer_manual/validation/evaluation_window.png
:align: center
- check result window
.. image:: /developer_manual/validation/evaluation_result.png
:align: center
- results only for y0 and y1
- Optimization: item optim
- First page check the values:
- x1 and x2 checked
- type: Continuous
- starting point: [0.2, 1.2, 1.]
- check table behavior:
- unselect line: lower and upper bounds columns are disabled
- unselect a lower bound: -inf symbol
- unselect an upper bound: +inf symbol
- if lower > upper bound: variable name in red, tooltip on the name and can not validate the page
- if upper < lower bound: variable name in red, tooltip on the name and can not validate the page
- if starting point not in the interval [lower bound, upper bound]: variable name in red, tooltip on the name and can not validate the page
- set lower bounds: [0, 0, 0.9]
- set upper bounds: [10, 10, 1.1]
.. image:: /developer_manual/validation/optimization_wizard_2nd_page.png
:align: center
- Second page table is empty:
- Continue
- Third page check the values:
.. image:: /developer_manual/validation/optimization_wizard_1st_page.png
:align: center
- selected output: y1
- method: TNC
- change "Locality = Global"
- TNC no longer available algorithm changed to "lbfgs"
- revert "Locality" to "Any" and reselect "TNC"
- click on "doc" in the line containing "TNC"
- web browser opens a link to "TNC" documentation
- continue
- Fourth page check the values:
.. image:: /developer_manual/validation/optimization_wizard_3rd_page.png
:align: center
- Problem type: Minimization
- Number of function evaluations: 150
- Absolute/Relative/Residual/Constraint error: 1e-6
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/optimization_result.png
:align: center
- left side: 1 variable in the list view
- right side, tabs: Result - Convergence - Parameters - Model
- Convergence tab: 2 tabs: Optimal value - Error
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- Morris: aMorris item
- First page check the values:
.. image:: /developer_manual/validation/morris_wizard_1st_page.png
:align: center
- selected output: y0
- method: Morris
- continue
- Second page check the values:
- 3 lines
- check table behavior:
- if lower > upper bound: variable name in red, tooltip on the name and can not validate the page
- if upper < lower bound: variable name in red, tooltip on the name and can not validate the page
- set lower bounds: [0, 0, 0.9]
- set upper bounds: [10, 10, 1.1]
.. image:: /developer_manual/validation/morris_wizard_2nd_page.png
:align: center
- Third page check the values:
.. image:: /developer_manual/validation/morris_wizard_3rd_page.png
:align: center
- Number of trajectories: 10
- Level: 4
- Seed: 2
- Blocksize: 1
- Number of simulations: 40
- check page behavior:
- if Number of trajectories: 11 -> Number of simulations: 44
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/morris_result.png
:align: center
- left side: 1 variable in the list view
- right side, tabs: Elementary effects - Table - Parallel coordinates plot - Plot matrix - Scatter plots - Parameters - Model
- Elementary effects tab: 2 tabs: Graph (mu*, sigma) - Graph (mu*, mu)
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check the tabs (Table - Parallel coordinates plot - Plot matrix - Scatter plots) are linked:
do several selections in a tab and check the selection is the same in the others tabs
- check Elementary effects tab behavior:
- selection of points in the graphs (right click + draw rectangle): a context menu appears with items: De/select the points
- slider below the plot: moves the green vertical line. Check the line's position is synchronized on the two graphs
- all points at the left of the green line on the graphs correspond to the lines of the table with a cross in the No effect column
- the blue points on the graphs correspond to the selected lines of the table
- the red points on the graphs correspond to the unselected lines of the table
- check the reuse of the Morris result by the Probabilistic model:
- create a Probabilistic model for symbolicModel (right click on Definition item below symbolicModel)
- On the window which appears, select all variables of the table
.. image:: /developer_manual/validation/probaModelAll.png
:align: center
- Click on the 'Import Morris result' button below the table
- a wizard appears
.. image:: /developer_manual/validation/morrisResultWizard.png
:align: center
- check the table is read-only
- click on Finish
- check that x_3 is unselected, x_1 and x_2 distribution parameters are unchanged
- uncheck x_2
- Multi-objective optimization: item mooptim
- Check analysis parameters values:
.. image:: /developer_manual/validation/mooptim_param_page.png
- Modify the analysis item:
- 1st page:
- check values and checked/enabled states:
.. image:: /developer_manual/validation/mooptim-inputtable.png
:align: center
- uncheck all rows: header unchecked, 5th and 6th columns disabled, 4th column enabled
- check header: all rows checked, 5th and 6th columns enabled, 4th column disabled
- set value -0.22 in first row, 6th column
- click continue: row text color changes to red, message appears "The lower bounds must be less than the upper bounds"
- set value -0.22 back to 0.22, message disappears
- click continue
- 2nd page:
- table has one line: "y0 > 2"
- click "Add": a new line "fake_var > 0" appears
- edit first line "y0 < 2"
- click on first line: selection should appear
- click on remove: first line is removed, 2nd line remains
- click again on remove: table is empty
- add back the constraint "y0 > 2"
- continue
- 3rd page:
- y0 and y1 as selected outputs.
- nsga2 as selected algorithm
- un-select y0, click on "Continue": Error message appears: "At least 2 outputs must be selected"
- select back y0, message disappears,
- continue
- 4th page:
- y0: minimization, y1: minimization
- continue
- 5th page:
- check values: Number of generations = 12, Initial population size = 60, Seed = 0, Constraint error = 1e-05
- Check that all spinboxes only support non-signed integers
- Finish
- Run the analysis and check the result:
.. image:: /developer_manual/validation/mooptim_result1.png
:align: center
.. image:: /developer_manual/validation/mooptim_result2.png
:align: center
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check the export and copy/paste features on the table tab
- check that the parameters are unchanged
- check that selection is synchronised between paraview tabs
- Calibration: item calibration
- First page check the values:
.. image:: /developer_manual/validation/calibrationWizard_1stPage.png
:align: center
- Observations: observations
- Observed variables: [x1, y0]
- Number of observations: 100
- method: Non linear Gaussian
- continue
- Second page check the values:
.. image:: /developer_manual/validation/calibrationWizard_2ndPage.png
:align: center
- x2 checked, x3 unchecked
- values: [1.2, 1.1]
- continue
- Third page check the values:
.. image:: /developer_manual/validation/calibrationWizard_3rdPage.png
:align: center
- only x2 in the table.
- the mean is disabled
- the mean is 1.2 and sigma is 0.12
- continue
- Fourth page:
.. image:: /developer_manual/validation/calibrationWizard_4thPage.png
:align: center
- only y0 in the table
- the mean is disabled
- continue
- Fifth page:
.. image:: /developer_manual/validation/calibrationWizard_5thPage.png
:align: center
- confidence interval length: 0.99
- estimation by Bootstrap resampling: checked
- sample size: 25
- Number of evaluations: 50
- Errors: 1e-6
- Maximum number of evaluations: 1250
- click on the Back button 3 times to go on the second page:
- select x3
- change the value of x2 to 1.3
- click on Continue button
- the table of the third page has 2 rows: x2 and x3
- the mean of x2 is 1.3 and sigma is 0.13
- click on the Back button 2 times to go on the first page:
- select Linear Gaussian method
- continue
- the table of the second page has not been changed
- continue
- the third and fourth pages are the same
- continue
- the next page is:
.. image:: /developer_manual/validation/calibrationWizard_lastPage_linear.png
:align: center
- click on the Back button 4 times to go on the first page:
- select Linear least squares method
- continue
- the table of the second page has not been changed
- the next page is the last one:
.. image:: /developer_manual/validation/calibrationWizard_lastPage_linear.png
:align: center
- confidence interval length: 0.99
- click on the Back button 2 times to go on the first page:
- select Nonlinear least squares method
- continue
- the table of the second page has not been changed
- the next page is the last one:
.. image:: /developer_manual/validation/calibrationWizard_5thPage.png
:align: center
- click on the Cancel button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/calibration_result_optimal.png
:align: center
- left side: 1 variable in the list view
- right side, tabs: theta - Prediction - Parameters - Model
- theta tab: 2 tabs: Optimal - PDF
- Prediction tab: 5 tabs: Table - vs Observations - vs Inputs - Residuals - Residuals QQ-plot
- check the 3 first tabs with Paraview graphs are linked (do several selections in a tab and check the selection is the same in the others tabs)
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
Designs of experiments
''''''''''''''''''''''
- Import again the file python/test/t_deterministic_analyses.py
- check the wizards:
- right click on fixedDesign and choose Modify:
- First page:
.. image:: /developer_manual/validation/design_1_wizard_1st_page.png
:align: center
- type: Full factorial design
Probabilistic design is disabled
- check the doc link (Help button)
- continue
- Second page:
.. image:: /developer_manual/validation/design_1_wizard_2nd_page.png
:align: center
- no selected line
- first and second columns are not editable
- the bounds and levels are disabled
- all levels are equal to 1
- check wizard behavior:
- sixth column items: change combo box item to Delta
- values changed: all deltas values are '-'
- first header item: check all
- third column is disabled
- other columns are enabled
- the Deltas are [0.04, 0.24, 0.2]
- sixth column items: change combo box item to Levels
- values changed: all levels values are equal to 2
- first header item: uncheck all
- check second line
- line 2: change lower bound to 10, press enter
- 'x2' is red and its tooltip is: 'The lower bound must be less than the upper bound'
- line 2: change upper bound to 0, press enter
- 'x2' is red and its tooltip is: 'The lower bound must be less than the upper bound'
- sixth column items: change combo box item to Delta
- all deltas values are '-'
- line 2: change upper bound to 20 and Delta to 15, press enter
- error message: The delta must be greater or equal to 0 and less than the interval length
- line 2: change delta to 0.5, press enter
- size of the design of experiments: 21
- check all lines one by one:
- first header item is checked
- size of the design of experiments: 84
- click on Finish button:
- the window is updated: check the sample size is 84
- the Evaluation item is removed
- right click on grid and choose Modify:
- First page:
- type: Full factorial design
- continue
- Second page:
.. image:: /developer_manual/validation/design_2_wizard_2nd_page.png
:align: center
- x1 and x2 checked
- lower bounds: [0.5, 0.5]
- upper bounds: [9.5, 9.5]
- levels: [7, 7]
- sixth column items: change combo box item to Delta
- deltas: [1.5, 1.5]
- size of the design of experiments: 49
- cancel
- right click on importDesign and choose Modify:
- First page:
- type: Imported design
- continue
- Second page:
.. image:: /developer_manual/validation/design_3_wizard_2nd_page.png
:align: center
- Data file: data_da.csv
- header items: ['x1', '', 'x2', 'x3']
- when changing a combo box item: the error message 'Each variable must be associated with one column' appears
- set the second header item to 'x2' and the third one to ''
- finish
- check the design of experiments window is updated: check the values of x2 have changed
- check the evaluation result window:
- right click on importDesign, choose Evaluate:
.. image:: /developer_manual/validation/design_3_evaluation_wizard.png
:align: center
- deselect fake_y0
- click on the Finish button
- an item 'Evaluation' appears in the tree view
- a window appears with a progress bar and 2 buttons 'Run' and 'Stop'
- click on the run button
- the evaluation is launched
- check result window:
.. image:: /developer_manual/validation/design_3_Table.png
:align: center
- 10 tabs: Summary - PDF/CDF - Boxplots - Dependence - Table - Parallel coordinates plot - Plot matrix - Scatter plot - Parameters - Model
- Summary and PDF/CDF tabs:
- when changing the variable, the tabs are updated
- when changing either Probability or Empirical quantile spinboxes values both are updated
- when changing confidence interval level spinbox value, CI length is updated
- PDF, CDF and survival function are available in Graph settings widget from PDF/CDF tab plots
- Other Plots tabs and Table tab:
- when clicking on the tab, the list view has been hidden
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check the tabs with Paraview graphs are linked (do several selections in a tab and check the selection is the same in the others tabs)
- check that copying/pasting a few lines in the table works correctly
- right click on onePointDesign, choose Evaluate:
- a wizard appears, click on the Finish button
- an item 'Evaluation' appears in the tree view
- a window appears with a progress bar and 2 buttons 'Run' and 'Stop'
- click on 'Run' button
- check result window:
.. image:: /developer_manual/validation/DOE_result_model2_one_point.png
:align: center
- 4 tabs: Summary - Table - Parameters - Model
- Summary tab:
- a list view with a variable appears at the left side of the window
- right click on twoPointsDesign, choose Evaluate:
- a wizard appears, click on the Finish button
- an item 'Evaluation' appears in the tree view
- a window appears with a progress bar and 2 buttons 'Run' and 'Stop'
- click on 'Run' button
- check result window:
.. image:: /developer_manual/validation/DOE_result_model2_two_points.png
:align: center
- 4 tabs: Summary - Table - Parameters - Model
- Summary tab:
- a list view with a variable appears at the left side of the window
- Table tab has 4 tabs: Table - Failed points - Error messages - Parallel coordinates plot
- check the parallel coordinates plot has 2 columns. The last one is named 'Status 0: failed; 1: ok'.
- check that Error messages tab table displays the failed point with the 'math domain error' message
- additional columns can be displayed by checking them in the graph setting widget in the window bottom left corner
- Click on symbolicModel definition item, select only y0:
- right click on importDesign and choose Modify:
- First page:
- type: Imported design
- continue
- Second page:
.. image:: /developer_manual/validation/design_3_wizard_2nd_page_eval.png
:align: center
- Data file: data_da.csv
- header items: ['x1', 'y0', 'x2', 'x3']
- finish
- check the evaluation is done and y0 has been evaluated
- save the study, close it, reopen it, check all windows are correctly build, close the study.
Probabilistic analyses
``````````````````````
- Import the file python/test/t_probabilistic_analyses.py
- Check the dependency copula in probabilisitc model definition
.. image:: /developer_manual/validation/proba_model_copula.png
:align: center
- If the parametrization combo box index changes, the correlation matrix gets updated
- The copula graph shows 10 contour levels with the "Rainbow" palette
- Re-run evaluation item in probaDesgin, check the model has the copula with the correct correlation matrix
.. image:: /developer_manual/validation/proba_design_eval_model.png
:align: center
- Each analysis item is associated with a window with a table of parameters (optional), a progress bar and a button 'Run' and a disabled button 'Stop'
- Check all the analyses wizards -> Right click on each item and choose Modify:
- Monte Carlo: MonteCarlo item
- First page check the values:
.. image:: /developer_manual/validation/monteCarlo_central_tendency_wizard_1st_page.png
:align: center
- method: Monte-Carlo
- selected outputs: y0 and y1
- continue
- Second page check the values:
.. image:: /developer_manual/validation/monteCarlo_central_tendency_wizard_2nd_page.png
:align: center
- accuracy - CV disabled: 0.01
- CI length disabled: 0.01
- max time: 16m40s
- max calls: 1000
- block size: 100
- confidence interval disabled: 0.95
- seed: 2
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/monteCarlo_central_tendency_result.png
:align: center
- left side: 4 variables in the list view
- right side, tabs: Summary - PDF/CDF - Box plots - Table - Parallel coordinates plot - Plot matrix - Scatter plots - Parameters - Model
- when changing the variable, the tabs are updated
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check the tabs (Table - Parallel coordinates plot - Plot matrix - Scatter plots) are linked:
do several selections in a tab and check the selection is the same in the others tabs
- Summary tab:
- 2 types of extrema tables: one for the outputs y0 and y1 and one for the inputs x1 and x2
.. image:: /developer_manual/validation/monteCarlo_central_tendency_result_input_table.png
:align: center
- Moments estimates table has only 2 columns: Estimate and Value
- check on the tabs (Table - Parallel coordinates plot - Plot matrix - Scatter plots - Parameters - Model): the list view is hidden
- check tables are well drawn
- Taylor: Taylor item
.. image:: /developer_manual/validation/taylor_central_tendency_wizard.png
:align: center
- check the values:
- selected outputs: y1 and y0
- method: Taylor expansion
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/taylor_central_tendency_result.png
:align: center
- left side: 2 variables in the list view
- right side: 1 Summary tab
- check table is well drawn
- when changing the variable, the tabs are updated
- Monte Carlo reliability: MonteCarloReliability item
- First page check the values:
.. image:: /developer_manual/validation/monteCarlo_reliability_wizard_1st_page.png
:align: center
- limit state: aLimitState
- method: Monte-Carlo
- continue
- Second page check the values:
.. image:: /developer_manual/validation/monteCarlo_reliability_wizard_2nd_page.png
:align: center
- Accuracy is disabled: 0.01
- max time: 16m40s
- max calls: 1000
- block size: 100
- seed: 2
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/monteCarlo_reliability_result.png
:align: center
- left side: 1 variable in the list view
- right side, tabs: Summary - Histogram - Convergence graph - Parameters - Model
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check tables are well drawn
- FORM IS reliability: FORM_IS item
- First page check the values:
.. image:: /developer_manual/validation/FORM_IS_reliability_1st_page.png
:align: center
- method: FORM - Importance sampling
- continue
- Second page check the values:
.. image:: /developer_manual/validation/FORM_IS_reliability_2nd_page.png
:align: center
- Accuracy is disabled: 0.01
- max time: 16m40s
- max calls: 1000
- block size: 100
- seed: 2
- continue
- Third page check the values:
.. image:: /developer_manual/validation/FORM_IS_reliability_3rd_page.png
:align: center
- Algorithm: Abdo-Rackwitz
- Physical starting point: 5; 5
- click on button '...'
- set the value of x2 to 5.5
- press Finish button
- Physical starting point: 5; 5.5
.. image:: /developer_manual/validation/FORM_IS_reliability_starting_point_wizard.png
:align: center
- Maximum number of evaluations: 1000
- Absolute error: 0.001
- Relative/Residual/Constraint error: 1e-5
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/FORM_IS_reliability_result.png
:align: center
- left side: 1 variable in the list view
- right side, tabs: Summary - Histogram - Convergence graph - FORM results - Parameters- Model
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- FORM results tab :
.. image:: /developer_manual/validation/FORM_IS_reliability_FORM_results_tab.png
:align: center
- 4 sub-tabs: Summary - Design point - Sensitivities - Parameters
- check tables are well drawn
- FORM: FORM item
- First page check the values:
.. image:: /developer_manual/validation/FORM_wizard_1st_page.png
:align: center
- method: FORM
- continue
- Second page check the values:
.. image:: /developer_manual/validation/FORM_wizard_2nd_page.png
:align: center
- Algorithm: Abdo-Rackwitz
- Physical starting point: 5; 5
- Maximum number of evaluations: 1000
- Absolute error: 0.001
- Relative/Residual/Constraint error: 1e-5
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/FORM_result.png
:align: center
- left side: 1 variable in the list view
- right side, tabs: Summary - Design point - Sensitivities - Parameters - Model
- check tables are well drawn
- SORM: SORM item
- First page check the values:
.. image:: /developer_manual/validation/SORM_wizard_1st_page.png
:align: center
- method: SORM
- continue
- Second page check the values:
.. image:: /developer_manual/validation/FORM_wizard_2nd_page.png
:align: center
- Algorithm: Abdo-Rackwitz
- Physical starting point: 5; 5
- Maximum number of evaluations: 1000
- Absolute error: 0.001
- Relative/Residual/Constraint error: 1e-5
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/SORM_result.png
:align: center
- left side: 1 variable in the list view
- right side, tabs: Summary - Design point - Sensitivities - Parameters - Model
- check tables are well drawn
- Sobol: Sobol item
- Pop-up with an error message appears: 'The model must have an independent copula etc'
- click on the 'Probabilistic model' item
- click on the 'Dependence' tab of the window which appears
- remove x1-x2 copula from the list on the right
- click on the Sobol item, right click on it and choose Modify
- First page check the values:
.. image:: /developer_manual/validation/sobol_wizard_1st_page.png
:align: center
- selected outputs: y0 and y1
- method: Sobol
- continue
- Second page check the values:
.. image:: /developer_manual/validation/sobol_wizard_2nd_page.png
:align: center
- max confidence interval length disabled: 0.01
- max time: 16m40s
- max calls: 1000
- replication size: 100
- block size: 100
- number of calls by iteration: 400
- confidence level: 0.95
- seed: 2
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/sobol_result.png
:align: center
- left side: 2 variables in the list view
- right side, tabs: Indices - Aggregated Indices - Stopping criteria - Parameters - Model
- when changing the variable, the Indices tab is updated
- when indices plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- Indices tab:
- can not zoom the plot
- Click on the 2 table header sections to sort according to first/total order indices:
- the table values are sorted
- the plot is updated
- check tables are well drawn
- SRC: SRC item
- First page check the values:
.. image:: /developer_manual/validation/src_wizard_1st_page.png
:align: center
- selected outputs: y0 and y1
- method: SRC
- continue
- Second page check the values:
.. image:: /developer_manual/validation/src_wizard_2nd_page.png
:align: center
- sample size: 200
- block size: 1
- seed: 2
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/src_result.png
:align: center
- left side: 2 variables in the list view
- right side, tabs: Indices - Parameters - Model
- when changing the variable, the Indices tab is updated
- when indices plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- Indices tab:
- can not zoom the plot
- click on the 'Input'/'Squared SRC'/'SRC' section headers of the table:
- the table values are sorted
- the plot is updated
- Linear regression: linreg item
- First page check selected outputs: y0, y1
- Second page check degree=2, interaction=False
- Third page check all methods are checked
- Run, check the result window:
- check 7 tabs: Results - Adequation - Validation - Residual - Error - Parameters - Model
- on results tab formula: y0 = 1.64684 -0.668623 * x1 +0.0519163 * x1^2
- on residual/PDF tab sigma= 0.67442
- tabs are updated on output variable selection
- error tab warns about failure during validation
- Gaussian Process: kriging item
- First page check the values:
.. image:: /developer_manual/validation/kriging_wizard_1st_page.png
:align: center
- design of experiments: probaDesign
- selected outputs: y0, y1
- method: Gaussian Process
- continue
- Second page check the values:
.. image:: /developer_manual/validation/kriging_wizard_2nd_page.png
:align: center
- covariance model: Matern
- nu: 1.5
- trend: Linear
- optimize covariance model parameters: checked
- scale: 1; 1
- amplitude: 1
- on the line Scale click on the button '...'
- a wizard appears: stochastic inputs x1 and x2 are listed
- change the scale value of x1 to 2, then finish
- change the amplitude value to 2
.. image:: /developer_manual/validation/kriging_wizard_scale_amplitude_updated.png
:align: center
- continue
- Third page check the values:
.. image:: /developer_manual/validation/kriging_wizard_3rd_page.png
:align: center
- all methods are checked
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check the Gaussian Process result window:
.. image:: /developer_manual/validation/kriging_result.png
:align: center
- left side: 2 variables in the list view
- right side, tabs: Results - Adequation - Validation - Parameters - Model
- when changing the variable, the tabs are updated
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check tables are well drawn
- Validation tab has 3 tabs: Analytical, Test sample, K-Fold
.. image:: /developer_manual/validation/kriging_validation_result.png
:align: center
- right click on the kriging item: choose 'Export metamodel'
- default file name is kriging.py
- click on 'Save'
- check kriging.py file content
.. code-block:: python
#!/usr/bin/env python
import openturns as ot
import os
metamodel = ot.Function()
study = ot.Study()
dirname = os.path.dirname(__file__)
fn = os.path.join(dirname, "kriging.xml")
study.setStorageManager(ot.XMLStorageManager(fn))
study.load()
study.fillObject("metamodel", metamodel)
- right click on the kriging item: choose 'Convert metamodel into physical model'
- a new item kriging appears in the tree view
- click on its sub-item named 'Definition'
- change the value of x2 to 1.6
- click on the Evaluate model button
.. image:: /developer_manual/validation/kriging_new_model.png
:align: center
- right click on the physical model 'kriging' that got created
- click on 'Remove'
- click on model1 item, the diagram is displayed
- click on 'export as model'
- select 'kriging', analysis parameters are displayed
- click on 'Finish'
- a new item kriging appears in the tree view
.. image:: /developer_manual/validation/metamodel_export_wizard.png
:align: center
- right click on the kriging item: choose 'Convert metamodel into python model'
- a new item named 'Python_kriging' appears in the tree view
- click on its sub-item named 'Definition'
- change the value of x2 to 1.6
- click on the Evaluate model button
- right click on the sub-item of design_3 named 'Evaluation' and choose New metamodel
- choose the Gaussian Process method, select all the output variables, continue:
.. image:: /developer_manual/validation/design_3_kriging_wizard.png
:align: center
- default GP parameters: Squared exponential covariance model, Constant trend basis type, optimize covariance model parameters checked, Scale 1;1;1, Amplitude 1, continue
- metamodel validation: for the computation of the predictivity factor Q2, only 'Leave-one-out via analytical method' is checked, finish
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button and click immediately on the Stop button
- The Result window does not contain the Validation tab
- Functional chaos: chaos_1 item
- First page check the values:
.. image:: /developer_manual/validation/chaos_1_wizard_1st_page.png
:align: center
- design of experiments: probaDesign
- selected outputs: y1
- method: Functional chaos
- continue
- Second page check the values:
.. image:: /developer_manual/validation/chaos_1_wizard_2nd_page.png
:align: center
- degree: 7
- sparse: checked
- uncheck sparse, full basis -> basis, check sparse
- change degree to 8, basis size gets updated, change degree back to 7
- continue
- Third page check the values:
.. image:: /developer_manual/validation/kriging_wizard_3rd_page.png
:align: center
- all validation methods are checked
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/chaos_result.png
:align: center
- left side: 1 variable in the list view
- right side, tabs: Results - Adequation - Sobol indices - Validation - Error - Parameters - Model
- when metamodel plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check tables are well drawn
- Validation tab has 2 tabs: Test sample, K-Fold
- Erro tab shows message: Analytical validation failed: ...
- chaos_2
- click on the 'Run' button
- error message: 'No results are available...'
- right click on the item design_2 and choose Evaluate
- a wizard appears, deselect fake_y0, click one the Finish button
- a window appears, click on the 'Run' button
- right click on the item chaos_2 and click on Modify
.. image:: /developer_manual/validation/chaos_2_wizard.png
:align: center
- First page check the values:
- design of experiments: design_2
- selected outputs: y0, y1
- method: Functional chaos
- Second page check the values:
- degree: 2
- full basis size: 6
- sparse: checked
- continue
- Third page check the values:
- only 'Leave-one-out via analytical method' is checked
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/chaos_2_result.png
:align: center
- left side: 2 variables in the list view
- right side: tabs Results - Adequation - Sobol indices - Error - Parameters - Model
- when changing the variable, the tabs are updated
- when metamodel plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check tables are well drawn
- Data analysis: DataAnalysis item
- the item is associated with a window with a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/data_analysis_result.png
:align: center
- left side: 4 variables in the list view
- x_1 the output is the first item of the list
- right side, tabs: Summary - PDF/CDF - Box plots - Dependence - Table - Parallel coordinates plot - Plot matrix - Scatter plots
- when changing the variable, the tabs (Summary - PDF/CDF) are updated
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check the tabs (Table - Parallel coordinates plot - Plot matrix - Scatter plots) are linked:
do several selections in a tab and check the selection is the same in the others tabs
- check on the tabs (Table - Parallel coordinates plot - Plot matrix - Scatter plots - Parameters): the list view is hidden
- Summary tab:
- check tables are well drawn
- 2 types of extrema tables: one for the output x_1 and one for inputs x_0, x_2 and x_3
- Moments estimates table has the columns: Estimate - Value - Confidence interval at 95%
- there are bounds only for Mean and Standard deviation
- check probability and quantile spinboxes behavior
- Inference analysis: inference item
.. image:: /developer_manual/validation/inference_wizard.png
:align: center
- right click on the item 'inference' and choose 'Modify'. Check the wizard behavior:
- check all / uncheck all
- no wheel event on Add button
- an uncheck line == right side of the wizard disabled
- choose item 'All' in the list of Add button => add all distributions in the list
- remove items in the distributions table: use ctrl key (to select items one by one), use shift key (to select adjacent items)
- select a variable + empty the distributions list + click on Finish
- error message 'At least one distribution etc.'
- unselect all
- select x_0 and add all the distributions
- select x_1 and add the Beta distribution
- in advanced parameters, check estimate parameters confidence interval
- Change test type to Lilliefors, Lilliefors advanced parameters are enabled, change back to KS
- click on the Finish button
- a window appears with a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/inference_result.png
:align: center
- left side: 2 variables in the list view
- right side, tab: Summary
- when changing the variable, the tabs are updated
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- the right side of the window contains 2 parts: a distributions list and 3 tabs PDF/CDF - Q-Q Plot - Parameters
- when selecting a distribution, the tab widget is updated, confidence level on distribution aprameters are displayed next to parameters values in Parameters tab
- check tables are well drawn
- select x_0
- select InverseNormal/LogUniform:
- PDF/CDF and Q-Q Plot tabs are disabled
- the Parameters tab contains an error message
.. image:: /developer_manual/validation/inference_result_error.png
:align: center
- check the reuse of the inference result by the Probabilistic model:
- go on the Probabilistic model window of model1, tab 'Marginals'
- select the x3 variable
- choose Inference result in the combo box of the variable x3
- a wizard appears, check its behavior (update of the tables when changing the items selection, etc.)
.. image:: /developer_manual/validation/inferenceResultWizard.png
:align: center
- choose inference/x_0/WeibullMin, click on Finish
- check that the distribution of x3 is WeibullMin now
- unselect x3
- Copula inference: copulaInference item
.. image:: /developer_manual/validation/copula_inference_wizard.png
:align: center
- right click on the item 'copulaInference' and choose 'Modify'. Check the wizard behavior:
- check all / uncheck all + left/right arrow buttons
- no wheel event on Add button
- choose item 'All' in the list of Add button => add all copulas in the list
- remove items in the copulas table: use ctrl key (to select items one by one), use shift key (to select adjacent items)
- add/remove groups with the arrows
- if there are at least 3 variables in a group: only the Normal/Student/Independent copulas are proposed
- select a variable + empty the copulas list + click on Finish
- error message 'At least one copula etc.'
- unselect all
- select [x_0,x_3] and add the Normal and Gumbel copulas
- select [x_2,x_3] and add all the copulas
- click on the Finish button
- a window appears with a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/copula_inference_result.png
:align: center
- left side: 1 set of variables in the list view
- right side, 1 tab: Summary
- the right side of the window contains 2 parts: a copulas list and 3 tabs: PDF/CDF - Kendall Plot - Parameters
- when selecting a copula, the tab widget is updated
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check tables are well drawn
- select [x_2,x_3]
- select Ali-Mikhail-Haq / Farlie-Gumbel-Morgenstern:
- PDF/CDF and Kendall Plot tabs are disabled
- the Parameters tab contains an error message
.. image:: /developer_manual/validation/copula_inference_resultError.png
:align: center
- check the reuse of the copula inference result by the Probabilistic model:
- go on the Probabilistic model window of model1, tab 'Dependence'
- choose Inference result in the combo box of the [x_1,x_2] group
- a wizard appears, check its behavior (update of the tables when changing the items selection, etc.)
.. image:: /developer_manual/validation/copulaInferenceResultWizard.png
:align: center
- choose copulaInference/[x_2, x_3]/Gumbel, click on Finish
- check that the copula is Gumbel now
Designs of experiments
''''''''''''''''''''''
- check the wizard:
- right click on probaDesign and choose Modify:
- First page:
- type: Probabilistic design
- continue
- Second page:
.. image:: /developer_manual/validation/design_4_wizard_2nd_page.png
:align: center
- Monte Carlo selected
- A warning appears under LHS: LHS is designed for independent variables.
- sample size: 100
- seed: 0
- cancel
- save the study, close it, reopen it, check all windows are correctly built, close the study.
Field analyses
``````````````
- Import the file python/test/t_field_analyses.py
- Each analysis item is associated with a window with a table of parameters (optional), a progress bar and a button 'Run' and a disabled button 'Stop'
- Check all the analyses wizards -> Right click on each item and choose Modify:
- Monte Carlo: mcAnalysis item
- First page check the values:
.. image:: /developer_manual/validation/fieldMonteCarlo_Wizard.png
:align: center
- selected output: z
- max time: 16m40s
- max calls: 10
- block size: 5
- Karhunen-Loeve threshold: 2e-5
- seed: 2
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window:
.. image:: /developer_manual/validation/fieldMonteCarlo_result.png
:align: center
- left side: 1 variable in the list view
- right side, tabs: Result - Input - Decomposition - Correlation - Parameters - Model
- Result tab, tabs: Trajectories - Mean trajectory - Functional bag chart - Bag chart - Table
- Input tab, tabs: Table - Plot matrix
- Decomposition tab, tabs: Modes - Eigenvalues - xi
- xi tab, tabs: PDF - Plot matrix
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- check the tabs (Trajectories - Functional bag chart - Bag chart - Table) are linked:
do several selections in a tab and check the selection is the same in the others tabs
- right-click on analysis item, "Extract data at nodes", select only t0, it must create a new data model with the selected data
- Evaluation: item evaluation
.. image:: /developer_manual/validation/fieldEvaluation_Wizard.png
:align: center
- selected outputs: z, z2
- check the values: [100, 55, 80, 16]
- click on the Finish button
- a window appears with a table of parameters, a progress bar and 2 buttons 'Run' and 'Stop'
- click on the 'Run' button
- check result window
.. image:: /developer_manual/validation/fieldEvaluation_result.png
:align: center
- left side: 2 variables in the list view
- right side, tabs: Result - Input - Parameters - Model
- Result tab, tabs: Trajectory - Table
- Input tab, tabs: Table
- when a plot is displayed, a Graph setting widget appears at the bottom of the tree view: check its behavior
- dataFieldModel item
- Three subitems Mesh, Definition, myAnalysis
- Click on Mesh
- The mesh has 12 nodes
- You can't change the number of nodes
- Click on Definition
- Edit one of the table cells to 'inf'
- A message appears: "The model is not valid. Check data and/or mesh numerical validity."
- Running the anlaysis wont do anything
- Right click on the table > Clean > Remove > Finish
- The message disappears
- Reload the 'elNino.csv' file
- The message disappears
- Run the analysis
- Three tabs: Result, Decomposition, Correlation
- Result has 5 sub-tabs: Trajectories, Mean trajectory, Functionnal bag chart, Bag chart, Table
- Check that the slection is syncrhonized betwwen the sub-tabs
- Decomposition has 3 sub-tabs: Modes, Eigenvalues, xi (with 2 sub-sub-tabs: PDF, Plot matrix)
- Check the eigenvalues tab table values:
==== ========== =====================
Mode Eigenvalue Cumulative eigenvalue
==== ========== =====================
0 0.752877 0.638103
1 0.271008 0.868474
2 0.0794474 0.93581
3 0.0183561 0.951368
4 0.0167266 0.965545
5 0.0110566 0.974916
6 0.00996778 0.983364
7 0.00611909 0.98855
8 0.00466819 0.992507
9 0.00391995 0.995829
10 0.00290543 0.998292
11 0.00201561 1
==== ========== =====================
- save the study, close it, reopen it, check all windows are correctly built, close the study.
Diagrams
````````
Physical model
''''''''''''''
- open the interface
- create a new Study
- click on 'Symbolic model' button of the window of myOTStudy
- the item SymbolicModel_0 appears in the tree view
- a new Physical model diagram window appears in the mid Area, check its behavior (cursor, arrow colors, buttons availability, messages text)
- only the 'Model definition' button is enabled
.. image:: /developer_manual/validation/physicalModelDiagramWindow.png
:align: center
- click on 'Model definition' button of the diagram: an item 'Definition' appears
- add an input: the 'Design of experiments creation' and 'Probabilistic model definition' buttons of the diagram are enabled
- add an output, set its formula to X0: the 'Model evaluation', 'Optimization' buttons of the diagram are enabled
- click on the 'Model evaluation' button of the diagram
- a wizard appears, click on Cancel
- In the model window: add a second input
- the 'Screening' and 'Observations' buttons of the diagram is enabled
- In the model window: add a second output
- the 'Multi-objective optimization' button is enabled
- click on the 'Multi-objective optimization' button of the diagram
- a wizard appears, click on Cancel
- click on the 'Screening' button of the diagram
- a wizard appears, click on Cancel
- click on the 'Optimization' button of the diagram
- a wizard appears, click on Cancel
- click on the 'Observations' button of the diagram
- a wizard appears, import a sample with at least 2 columns, click on Finish
- the 'Calibration' button of the diagram is enabled
- redo the previous action
- click on the 'Calibration' button of the diagram
- a wizard appears, there are 2 items in the combo box in Observations group box, click on Cancel
- click on the 'Design of experiments creation' button of the diagram
- a wizard appears, click on Continue button on the first page
- on the second page: select X0, set Levels = 20, click on Finish
- the 'Design of experiments evaluation' button of the diagram is enabled
- redo the previous action with Levels = 40
- click on the 'Design of experiments evaluation' button of the diagram
- a wizard appears, there are 2 items in the combo box in Design of experiments group box, click on Finish, an item 'Evaluation' appears, click on it
- click on the 'Run' button
- the 'MetaModel creation' button of the diagram is enabled
- click on the 'MetaModel creation' button of the diagram
- a wizard appears, click on Continue button several times then on Finish button, an item 'metaModel_0' appears, click on it
- click on the 'Run' button
- the 'Export as model' buttons is enabled
- redo the previous action
- click on the 'Export as model' button of the diagram
- a wizard appears, there are 2 items in the combo box
- right click then 'Remove' on 'metaModel_0' item
- right click then 'Modify' on 'metaModel_1' item
- go through all the wizard pages then finish
- do not run the MetaModel analysis, check that the 'Export as model' diagram button is greyed out
- click on the 'Probabilistic model definition' button of the diagram
- a window appears, select X0
- the 'Sensitivity', 'Central tendency' and 'Limit state definition' buttons of the diagram are enabled
- click on the 'Sensitivity' button of the diagram
- a wizard appears, click on Cancel
- click on the 'Central tendency' button of the diagram
- a wizard appears, click on Cancel
- click on the 'Limit state definition' button of the diagram
- a window appears
- the 'Reliability' button of the diagram is enabled
- redo the previous action
- click on the 'Reliability' button of the diagram
- a wizard appears, there are 2 items in the combo box in Limit state group box, click on Cancel
Data set
''''''''''
- click on 'Data set' button of the window of myOTStudy
- the item dataSet_0 appears in the tree view
- a new Data set diagram window appears in the midArea, check its behavior (cursor, arrow colors, buttons availability, messages text)
- only the 'Model definition' button is enabled
.. image:: /developer_manual/validation/dataModelDiagramWindow.png
:align: center
- click on 'Model definition' button of the diagram: an item 'Definition' appears
- click on the '...' button, import the file data.csv
- the first three columns are inputs and the last one is an output
- all the buttons are enabled in the diagram except 'export as model'
- check that 'Sensitivity analysis' button is enabled only if there are at least two inputs and one output
- check that 'Dependence inference' button is enabled only if there are more than one variable
- check that 'Metamodel creation' button is enabled only if there are at least one output and one input
- if all the columns are disabled, all the buttons of the diagram are disabled
- save the current study, reopen
- in the window of the 'Definition' item of the data set: click on the reload button
Field data set
''''''''''''''''
- click on 'Field data set' button of the window of myOTStudy
- the item FieldDataSet_0 appears in the tree view (with 2 items: Definition and Mesh)
- click on 'FieldDataSet_0': a new Data field model diagram window appears in the midArea,
check its behavior (cursor, arrow colors, buttons availability, messages text)
- only the 'Model definition' button is enabled, click it
- 'Definition' gets the focus
- click on the '...' button, import the file elNino.csv
- click on 'Mesh' item
- the number of nodes is set to 12, and a message warns you that the mesh has been overwritten
- 'Data analysis' button in the diagram window is activated
Field model
'''''''''''
- click on 'Symbolic Field model' button of the window of myOTStudy
- the item SymbolicModel_1 appears in the tree view
- a new model diagram window appears in the mdiArea, check its behavior (cursor, arrow colors, buttons availability, messages text)
- only the 'Model definition' button is enabled
.. image:: /developer_manual/validation/fieldModel_diagramWindow.png
:align: center
- click on 'Model definition' button of the diagram: an item 'Definition' appears
- add an input: the 'Probabilistic model definition' button of the diagram is enabled
- add an output: the 'Model evaluation' button of the diagram is enabled
- click on the 'Model evaluation' button of the diagram
- a wizard appears, click on Cancel
- click on the 'Probabilistic model definition' button of the diagram
- a window appears, select X0
- the 'Central tendency' button of the diagram is enabled
- click on the 'Central tendency' button of the diagram
- a wizard appears, click on Cancel
FMI model
'''''''''
- create a new study and add to it a FMI model
- load the FMU file at python/test/fmu/linux64/deviation.fmu
- there must be 4 input variables, 1 output
- change the value of F=33e3 and click on 'check model' button then y=14.32
.. image:: /developer_manual/validation/fmuModel.png
:align: center
- in the "Properties" tab the model type should be "Co-Simulation"
- same on windows, load the FMU file at python/test/fmu/win64/deviation.fmu
- select F as input, y as output, change the F value and evaluate
- load the FMU file at python/test/fmu/linux64/epid.fmu
- all variables are disabled
- set infection_rate and healing_rate as inputs, infected as output
- change the value of healing_rate=0.01 and click on 'check model' button then infected=430.300
- in the "Properties" tab the model type should be "Model Exchange"
- same on windows, load the FMU file at python/test/fmu/win64/epid.fmu
Python model on cluster
'''''''''''''''''''''''
- create a new study and add a Python physical model
- edit the model python code with:
.. code-block:: python
def _exec(X0, X1):
Y0 = X0 + 8*X1 + 3
return Y0
- change X0=1 and X1=2 values and check evaluation Y0=20 value almost instantly
- right-click Properties on the model node above the Definition node, then select HPC mode with 4 cores
- check evaluation Y0=20 value, must take roughly 5 seconds
- create a full factorial design of experiments with all 2 variables (4 points), block size set to 4
- right-click to evaluate it: it must take 5 seconds to evaluate the whole design at once
- create a probalistic model and a probablitic design of experiments:
- default size: 100
- evaluate the DoE,
- block size = sample size = 100
- click run and quickly detach the analysis
- a message says that the job has been detached.
- save the study, close persalys
- re-open persalys and relaunch the analysis
- the DoE gets evaluated almost instantly
SSH Coupling
''''''''''''
In CouplingPhysicalModel_std and CouplingPhysicalModel_logistic python tests,
change the ssh_hostname variable to the name of a server you can connect to by ssh without password (using ssh keys).
Then run the tests to validate the SSH coupling feature.
|