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 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533
|
=PAGE=
2.3 CASE CONTROL DECK
2.3.1 Data Selection
The Case Control cards that are used for selecting items from the Bulk Data
Deck are listed below in functional groups. A detailed description of each
card is given in Section 2.3.4. The first four characters of the mnemonic are
sufficient if unique.
The following Case Control cards are associated with the selection of
applied loads for both static and dynamic analysis:
1. DEFORM - selects element deformation set.
2. DLOAD - selects dynamic loading condition.
3. DSCOEFFICIENT - selects loading factor for normal modes with
differential stiffness.
4. LOAD - selects static structural loading condition or heat power and/or
flux.
5. NONLINEAR - selects nonlinear loading condition for transient response.
6. PLCOEFFICIENT - selects loading increments for piecewise linear
analysis.
The following case control cards are used for the selection of constraints:
1. AXISYMMETRIC - selects boundary conditions for conical shell and
axisymmetric solid elements; specifies the existence of fluid harmonics
for a hydroelastic problem; or the applied source magnetic field in
magnetostatic problem.
2. MPC - selects set of multipoint constraints for structural displacement
or heat transfer boundary temperature relationships.
3. SPC - selects set of single-point constraints for structural
displacements or heat transfer boundary temperatures.
The following case control cards are used for the selection of direct input
matrices:
1. B2PP - selects direct input structural damping or thermal capacitance
matrices.
2. K2PP - selects direct input structural stiffness or thermal conductance
matrices.
3. M2PP - selects direct input mass matrices.
4. TFL - selects transfer functions.
The following case control cards specify the conditions for dynamic
analyses:
1. CMETHOD - selects the conditions for complex eigenvalue extraction.
2. FREQUENCY - selects the frequencies to be used for frequency and random
response calculations.
3. IC - selects the initial conditions for direct transient response.
4. METHOD - selects the conditions for real eigenvalue analysis.
5. RANDOM - selects the power spectral density functions to be used in
random analysis.
6. SDAMPING - selects table to be used for determination of modal damping.
7. TSTEP - selects time steps to be used for integration in transient
response problems.
8. FMETHOD - selects method to be used in aeroelastic flutter analysis.
9. GUST - selects aerodynamic gust loading in aeroelastic response
analysis.
The following case control cards are associated with the use of thermal
fields:
1. TEMPERATURE(LOAD) - selects thermal field to be used for determining
equivalent static loads.
2. TEMPERATURE(MATERIAL) - selects thermal field to be used for determining
structural material properties or an estimate of the temperature
distribution for heat transfer iterations.
3. TEMPERATURE - selects thermal field for determining both equivalent
static loads and material properties.
2.3.2 Output Selection
Printer output requests may be grouped in packets following OUTPUT cards or
the individual requests may be placed anywhere in the Case Control Deck ahead
of any structure plotter or curve plotter requests. Plotter requests are
described in Section 4. The Case Control cards that are used for output
selection are listed below in functional groups. A detailed description of
each card is given in Section 2.3.4.
The following cards are associated with output control, titling and bulk
data echoes:
1. TITLE - defines a text to be printed on first line of each page of
output.
2. SUBTITLE - defines a text to be printed on second line of each page of
output.
3. LABEL - defines a text to be printed on third line of each page of
output.
4. LINE - sets the number of data lines per printed page, default is 50 for
11-Inch paper.
5. MAXLINES - sets the maximum number of output lines, default is 20000.
6. ECHO - selects echo options for Bulk Data Deck, default is a sorted bulk
data echo. Note: Echoes of the Executive Control and the Case Control
decks are automatically printed and cannot be suppressed.
The following cards are used in connection with some of the specific output
requests for calculated quantities:
1. SET - defines lists of point numbers, elements numbers, or frequencies
for use in output requests.
2. OFREQUENCY - selects a set of frequencies to be used for output requests
in frequency and aeroelastic response problems (default is all
frequencies) or flutter velocities.
3. TSTEP - selects a set of time steps to be used for output requests in
transient response problems.
4. OTIME - selects a set of times to be used for output requests in
transient analysis problems (default is all times).
The following cards are used to make output requests for the calculated
response of components in the SOLUTION set (components in the direct or modal
formulation of the general K system) for dynamics problems:
1. SACCELERATION - requests the acceleration of the independent components
for a selected set of points or modal coordinates.
2. SDISPLACEMENT - requests the displacements of the independent components
for a selected set of points or modal coordinates or the temperatures of
the independent components for a selected set of points in heat
transfer.
3. SVELOCITY - requests the velocities of the independent components for a
selected set of points or modal coordinates or the change in temperature
with respect to time of the independent components for a selected set of
points in heat transfer.
4. NLLOAD - requests the nonlinear loads for a selected set of physical
points (grid points and extra points introduced for dynamic analysis) in
transient response problems.
The following cards are used to make output requests for stresses and
forces, as well as calculated response of degrees of freedom used in the
model:
1. FORCE or ELFORCE - requests the forces in a set of structural elements
or the temperature gradients and fluxes in a set of structural or heat
elements in heat transfer.
2. STRESS or ELSTRESS - requests the stresses in a set of structural
elements or the velocity components in a fluid element in acoustic
cavity analysis.
3. SPCFORCES - requests the single-point forces of constraint at a set of
points or the thermal power transmitted to a selected set of points in
heat transfer.
4. OLOAD - selects a set of applied loads for output.
5. ACCELERATION - requests the accelerations for a selected set of PHYSICAL
points (grid, scalar and fluid points plus extra points introduced for
dynamic analysis).
6. DISPLACEMENT - requests the displacements for a selected set of PHYSICAL
points or the temperatures for a selected set of PHYSICAL points in heat
transfer or the pressures for a selected set of PHYSICAL points in
hydroelasticity.
7. VELOCITY - requests the velocities for a selected set of PHYSICAL points
or the change in temperatures with respect to time for a selected set of
PHYSICAL points in heat transfer.
8. HARMONICS - controls the number of harmonics that will be output for
requests associated with the conical shell, axisymmetric solids and
hydroelastic problems.
9. ESE - requests structural element strain energies in Rigid Format 1.
10. GPFORCE - requests grid point force balance due to element forces,
forces of single point constraint, and applied loads in Rigid Format
1.
11. THERMAL - requests temperatures for a set of PHYSICAL points in heat
transfer.
12. PRESSURE - requests pressures for a set of PHYSICAL points in
hydroelasticity.
13. VECTOR - requests displacements for a selected set of PHYSICAL
points.
14. MPCFORCE - requests multipoint forces of constraint at a set of
points in Rigid Formats 1, 2, 3, 14, and 15.
15. NCHECK - requests significant digits to indicate numerical accuracy
of element stress and force computations.
16. AEROF - requests frequency-dependent aerodynamic loads on
interconnection points in aeroelastic response analysis.
17. STRAIN - requests the strains/curvatures in a set of structural
elements (applicable to TRIA1, TRIA2, QUAD1, and QUAD2 only).
18. SCAN - SCANs output data and eliminates values that do not meet the
specification set by this SCAN card.
2.3.3 Subcase Definition
In general, a separate subcase is defined for each loading condition. In
statics problems separate subcases are also defined for each set of
constraints. In complex eigenvalue analysis and frequency response separate
subcases are defined for each unique set of direct input matrices. Subcases
may be used in connection with output requests, such as in requesting
different output for each mode in a real eigenvalue problem.
The Case Control Deck is structured so that a minimum amount of repetition
is required. Only one level of subcase definition is necessary. All items
placed above the subcase level (ahead of the first subcase) will be used for
all following subcases, unless overridden within the individual subcase.
In statics problems, subcases may be combined through the use of the SUBCOM
feature. Individual loads may be defined in separate subcases and then
combined by the SUBCOM. If the loads are mechanical, the responses are
combined as shown in example 2, which follows. If a thermal load is involved,
the responses due to mechanical and thermal loads may be recovered as shown in
example 1. By redefining the thermal load(s) at the SUBCOM level, stresses and
forces may be recovered.
In statics problems, provision has been made for the combination of the
results of several subcases. This is convenient for studying various
combinations of individual loading conditions and for the superposition of
solutions for symmetrical and antisymmetrical boundaries.
Typical examples of subcase definition are given following a brief
description of the cards used in subcase definitions.
The following case control cards are associated with subcase definition:
1. SUBCASE - defines the beginning of a subcase that is terminated by the
next subcase delimiters encountered.
2. SUBCOM - defines a combination of two or more immediately preceding
subcases in statics problems. Output requests above the subcase level
are used.
3. SUBSEQ - must appear in a subcase defined by SUBCOM to give the
coefficients for making the linear combination of the preceding
subcases.
4. SYM - defines a subcase in statics problems for which only output
requests within the subcase will be honored. Primarily for use with
symmetry problems where the individual parts of the solution may not be
of interest.
5. SYMCOM - defines a combination of two or more immediately preceding SYM
subcases in static problems. Output requests above the subcase level are
used.
6. SYMSEQ - may appear in a subcase defined by SYMCOM to give the
coefficient for making the linear combination of the preceding SYM
subcases. A default value of 1.0 is used if no SYMSEQ card appears.
7. REPCASE - defines a subcase in statics problems that is used to make
additional output requests for the previous real subcase. This card is
required because multiple output requests for the same item are not
permitted in the same subcase. Output requests above the subcase level
are still used. .
8. MODES - controls the output for a given subcase as specified by the
number of modes, otherwise all modes will be used.
The following examples of Case Control Decks indicate typical ways of
defining subcases:
1. Static analysis with multiple loads
OUTPUT
DISPLACEMENT = ALL
MPC = 3
SUBCASE 1
SPC = 2
TEMPERATURE(LOAD) = 101
LOAD = 11
SUBCASE 2
SPC = 2
DEFORM = 52
LOAD = 12
SUBCASE 3
SPC = 4
LOAD = 12
SUBCASE 4
MPC = 4
SPC = 4
Four subcases are defined in this example. The displacements at all grid
points will be printed for all four subcases. MPC = 3 will be used for the
first three subcases and will be overridden by MPC = 4 in the last subcase.
Since the constraints are the same for subcases 1 and 2 and the subcases are
contiguous, the static solutions will be performed simultaneously. In subcase
1, thermal load 101 and external load 11 are internally superimposed, as are
the external and deformation loads in subcase 2. In subcase 4 the static
loading will result entirely from enforced displacements of grid points.
2. Linear combination of subcases
SPC = 2
OUTPUT
SET 1 = 1 THRU 10,20,30
DISPLACEMENT = ALL
STRESS = 1
SUBCASE 1
LOAD = 101
OLOAD = ALL
SUBCASE 2
LOAD = 201
OLOAD = ALL
SUBCOM 51
SUBSEQ = 1.0,1.0
SUBCOM 52
SUBSEQ = 2.5,1.5
Two static loading conditions are defined in subcases 1 and 2. SUBCOM 51
defines the sum of subcases 1 and 2. SUBCOM 52 defines a linear combination
consisting of 2.5 times subcase 1 plus 1.5 times subcase 2. The displacements
at all grid points and the stresses for the element numbers in SET will be
printed for all four subcases. In addition, the nonzero components of the
static load vectors will be printed for subcases 1 and 2.
3. Statics problem with one plane of symmetry
OUTPUT
SET 1 = 1,11,21,31,51
SET 2 = 1 THRU 10, 101 THRU 110
DISPLACEMENT = 1
ELFORCE = 2
SYM 1
SPC = 11
LOAD = 21
OLOAD = ALL
SYM 2
SPC = 12
LOAD = 22
SYMCOM 3
SYMCOM 4
SYMSEQ 1.0,-1 .0
Two SYM subcases are defined in subcases 1 and 2. SYMCOM 3 defines the sum and
SYMCOM 4 the difference of the two SYM subcases. The nonzero components of the
static load will be printed for subcase 1 and no output is requested for
subcase 2. The displacements for the grid point numbers in set 1 and the
forces for elements in set 2 will be printed for subcases 3 and 4.
4. Use of REPCASE in statics problems
SET 1 = 1 THRU 10, 101 THRU 110, 201 THRU 210
SET 2 = 21 THRU 30, 121 THRU 130, 221 THRU 230
SET 3 = 31 THRU 40, 131 THRU 140, 231 THRU 240
SUBCASE 1
LOAD =10
SPC = 11
DISPLACEMENT = ALL
SPCFORCE = 1
ELFORCE = 1
REPCASE 2
ELFORCE = 2
REPCASE 3
ELFORCE = 3
This example defines one subcase for solution and two subcases for output
control. The displacements at all grid points and the nonzero components of
the single-point forces of constraint along with forces for the elements in
SET 1 will be printed for SUBCASE 1. The forces for elements in SET 2 will be
printed for REPCASE 2 and the forces for elements in SET 3 will be printed for
REPCASE 3.
5. Use of MODES in eigenvalue problems
METHOD = 2
SPC = 10
SUBCASE 1
DISPLACEMENT = ALL
STRESS = ALL
MODES = 2
SUBCASE 3
DISPLACEMENT = ALL
In this example the displacements at all grid points will be printed for all
modes. The stresses in all elements will be printed for the first two modes.
2.3.4 Case Control Card Descriptions
The format of the Case Control cards is free-field. In presenting general
formats for each card embodying all options, the following conventions are
used:
1. Upper-case letters and parentheses must be punched as shown.
2. Lower-case letters indicate that a substitution must be made.
3. Double brackets indicate that a choice of contents is mandatory.
4. Brackets contain an option that may be omitted or included by you.
5. First listed options or values are the default values.
6. Physical card consists of information punched in columns 1 through 72 of a
card. Most case control cards are limited to a single physical card.
7. Logical card may have more than 72 columns with the use of continuation
cards. A continuation card is honored by ending the preceding card with
a comma.
The structure plotter output request packet and the x-y output request
packet, while part of the Case Control Deck, are treated separately in
Sections 4.2 and 4.3, respectively.
=PAGE=
ACCELERATION - Acceleration Output Request
Description
Requests form and type of acceleration vector output.
Format and Example(s)
ACCELERATION ( SORT1 , PRINT , REAL ) = ALL
SORT2 PUNCH IMAG n
PHASE NONE
ACCELERATION = 5
ACCELERATION(SORT2, PHASE) = ALL
ACCELERATION(SORT1, PRINT, PUNCH, PHASE) = 17
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of frequency or time
for each grid point. SORT2 is available only in transient and
frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on frequency response
problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
frequency response problems.
ALL Accelerations for all points will be output.
n Set identification of a previously appearing SET card. Only
accelerations of points whose identification numbers appear on
this SET card will be output (Integer > 0).
NONE Accelerations for no points will be output.
Remarks
1.Both PRINT and PUNCH may be requested.
2.An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative to this would
be to define a SET of interest.
3.Acceleration output is only available for transient and frequency response
problems.
4.In a frequency response problem any request for SORT2 output causes all
output to be SORT2.
5.ACCELERATION = NONE allows overriding an overall output request.
=PAGE=
AEROF - Aerodynamic Force Output Request
Description
Requests the aerodynamic loads on the interconnection points.
Format and Example(s)
AEROF = n
AEROF = ALL
AEROF = 5
Option Meaning
n Set identification of a previously appearing SET card. Only
aerodynamic forces on points referenced will be output.
ALL Aerodynamic forces on all points will be output.
Remarks
1.Only frequency-dependent forces may be requested (frequency response or
random analysis).
2.The point identification numbers are the box or body element IDs.
3.The dimensions of the output are force (or moment) per unit dynamic
pressure.
=PAGE=
AXISYMMETRIC - Boundary Conditions, Hydroelastic Harmonics, or Magnetic Field
Description
Selects boundary conditions for problems containing CCONEAX, CTRAPAX, or
CTRIAAX elements; specifies the existence of fluid harmonics for hydroelastic
problems; or specifies the applied source magnetic field in the magnetostatics
problem.
Format and Example(s)
SINE
COSINE
FLUID
AXISYMMETRIC = ANOM
ANTIANOM
SYMM
ANTISYMM
SYMMANOM
AXISYMMETRIC = COSINE
Option Meaning
SINE Sine boundary conditions will be used.
COSINE Cosine boundary conditions will be used.
FLUID Existence of fluid harmonics.
SYMM, ANTISYMM, ANOM, ANTIANOM, SYMMANON Used in magnetostatics problems.
Remarks
1.This card is required for problems containing the elements named above.
2.If this card is used for hydroelastic problems, at least one harmonic must
be specified on the AXIF card.
3.See Section 1.3.6 of User's Manual for a discussion of the conical shell
problem.
4.See Section 1.3.7 of User's Manual for a discussion of the axisymmetric
solid problem.
5.See Section 1.7.1 of User's Manual for a discussion of the hydroelastic
formulation.
6.The sine boundary condition will constrain components 1, 3, and 5 at every
ring for the zero harmonic.
7.The cosine boundary condition will constrain components 2, 4, and 6 at
every ring for the zero harmonic.
8.SPC and MPC case control cards may also be used to apply additional
constraints.
9.See PROLATE bulk data card for magnetostatic problem involving the prolate
spheroidal surface harmonic expansion.
=PAGE=
BEGIN BULK - End of Case Control Deck
Description
Indicates the end of the Case Control Deck directives and controls. Cards
appearing after this card are assumed to be Bulk Data Deck cards.
Format and Example(s)
BEGIN BULK
=PAGE=
B2PP - Direct Input Damping Matrix Selection
Description
Selects a direct input damping matrix.
Format and Example(s)
B2PP = name
B2PP = BDMIG
B2PP = B2PP
Option Meaning
name BCD name of [B2pp] matrix that is input on the DMIG or DMIAX bulk
data card.
Remarks
1.B2PP is used only in dynamics problems.
2.DMIG and DMIAX matrices will not be used unless selected.
=PAGE=
CMETHOD - Complex Eigenvalue Extraction Method Selection
Description
Selects complex eigenvalue extraction data to be used by module CEAD.
Format and Example(s)
CMETHOD = n
CMETHOD = 77
Option Meaning
n Set identification of EIGC (and EIGP) card (Integer > 0).
Remarks
1.Eigenvalue extraction data must be selected when extracting complex
eigenvalues using functional module CEAD.
=PAGE=
DEFORM - Element Deformation Static Load
Description
Selects the element deformation set to be applied to the structural model.
Format and Example(s)
DEFORM = n
DEFORM = 27
Option Meaning
n Set identification of DEFORM cards (Integer > 0).
Remarks
1.DEFORM bulk data cards will not be used unless selected in the Case Control
Deck.
2.DEFORM is only applicable in statics, inertia relief, differential
stiffness, and buckling problems.
3.The total load applied will be the sum of external, (LOAD), thermal
(TEMP(LOAD)), element deformation (DEFORM), and constrained displacement
loads (SPC).
4.Static, thermal, and element deformation loads should have unique
identification numbers.
=PAGE=
DISPLACEMENT - Displacement Output Request
Description
Requests form and type of displacement vector output.
Format and Example(s)
DISPLACEMENT ( SORT1, PRINT, REAL ) ALL
SORT2 PUNCH IMAG = n
NOPRINT PHASE NONE
DISPLACEMENT = 5
DISPLACEMENT(REAL) = ALL
DISPLACEMENT(SORT2, PUNCH, REAL) = ALL
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency. eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of load, frequency,
or time for each grid point. SORT2 is available only in static
analysis, transient, and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
NOPRINT Displacement is calculated and saved on output file. The output
file will not be sent to the output device.
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Displacements for all points will be output.
NONE Displacements for no points will be output.
n Set identification of previously appearing SET card. Only
displacements of points whose identification numbers appear on
this SET card will be output (Integer > 0).
Remarks
1.Both PRINT and PUNCH may be requested.
2.An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative to this would
be to define a SET of interest.
3.In static analysis or frequency response problems, any request for SORT2
causes all output to be SORT2.
4.VECTOR, PRESSURE, and THERMAL are alternate forms and are entirely
equivalent to DISPLACEMENT.
5.DISPLACEMENT = NONE allows overriding an overall output request.
=PAGE=
DLOAD - Dynamic Load Set Selection
Description
Selects the dynamic load to be applied in a transient or frequency response
problem.
Format and Example(s)
DLOAD = n
DLOAD = 73
Option Meaning
n Set identification of a DLOAD, RLOAD1, RLOAD2, TLOAD1, or TLOAD2
card (Integer > 0).
Remarks
1.The above loads will not be used by NASTRAN unless selected in Case
Control.
2.RLOAD1 and RLOAD2 may only be selected in a frequency response problem.
3.TLOAD1 and TLOAD2 may only be selected in a transient response problem.
4.Either RLOAD or TLOAD (but not both) may be selected in an aeroelastic
response problem. If RLOAD is selected, a frequency response is calculated.
If TLOAD is selected, then transient response is computed by Fourier
transform.
=PAGE=
DSCOEFFICIENT - Differential Stiffness Coefficient Set
Description
Selects the coefficient set for a normal modes with differential stiffness
problem.
Format and Example(s)
DSCOEFF1C1ENT = DEFAULT
n
DSCOEF = 15
DSCOEF = DEFAULT
Option Meaning
DEFAULT A single default coefficient of value 1.0.
n Set identification of DSFACT card (Integer > 0).
Remarks
1.DSFACT cards will not be used unless selected.
2.DSCOEFFICIENT must appear in the second subcase of a normal modes with
differential stiffness problem.
=PAGE=
ECHO - Bulk Data Echo Request
Description
Requests echo of Bulk Data Deck.
Format and Example(s)
SORT
UNSORT
ECHO = BOTH (see Remark 1 for default values)
NONE
NONO
PUNCH
ECHO = BOTH
ECHO = PUNCH, SORT
Option Meaning
SORT Sorted echo will be printed.
UNSORT Unsorted echo will be printed.
BOTH Both sorted and unsorted echo will be printed.
NONE or NONO No echo will be printed.
PUNCH The sorted Bulk Data Deck will be punched onto cards.
Remarks
1.If no ECHO card appears, ECHO = BOTH is assumed for restart runs. For all
other runs, ECHO = SORT is assumed.
2.You are cautioned against suppressing the sorted echo in a checkpoint run
as it will be difficult to change the data in a subsequent restart run.
3.In a restart run, the unsorted echo lists only the new bulk data submitted
with the run, while the sorted echo lists the resequenced and renumbered
revised bulk data.
4.If CHKPNT YES is specified, a sorted echo will be printed unless ECHO =
NONE.
5.Unrecognizable options will be treated as SORT.
6.Any option overrides the default. Thus, for example, if both print and
punch are desired, both SORT and PUNCH must be requested on the same card.
7.The NONE option cannot be combined with the PUNCH option. If punch output
only is desired, ECHO = PUNCH will suffice.
8.In a restart run, ECHO = NONO suppresses also the printing of the NASTRAN
DMAP compiler source listing. Do not use ECHO = NONO and CHKPNT YES
together.
9.If ECHO = NONE or NONO, the resequencing cards SEQGP as generated by BANDIT
are not printed.
=PAGE=
ELFORCE - Element Force Output Request
Description
Requests form and type of element force output.
Format and Example(s)
( SORT1 , PRINT , REAL ) ALL
ELFORCE SORT2 PUNCH IMAG = n
NOPRINT PHASE NONE
ELFORCE = ALL
ELFORCE(REAL, PUNCH, PRINT) = 17
ELFORCE = 25
ELFORCE(SORT2,NOPRINT) = ALL
Option Meaning
SORT1 Output will be presented as a tabular listing of elements for each
load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of load, frequency,
or time for each element type. SORT2 is available only in static
analysis, transient and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
NOPRINT Force is calculated and saved on output file. The output file will
not be sent to the output device
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Forces for all elements will be output.
NONE Forces for no elements will be output.
n Set identification of a previously appearing SET card. Only forces
of elements whose identification numbers appear on this SET card
will be output (Integer > 0).
Remarks
1.Both PRINT and PUNCH may be requested.
2.An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative to this would
be to define a SET of interest.
3.In static analysis or frequency response problems, any request for SORT2
output causes all output to be SORT2.
4.FORCE is an alternate form and is entirely equivalent to ELFORCE.
5.ELFORCE = NONE allows overriding an overall request.
6.In heat transfer analysis, ELFORCE output consists of heat flow through and
out of the elements.
=PAGE=
ELSTRESS - Element Stress Output Request
Description
Requests form and type of element stress output.
Format and Example(s)
( SORT1 , PRINT , EXTREME , REAL ) ALL
ELSTRESS SORT2 PUNCH LAYER IMAG = n
NOPRINT PHASE NONE
ELSTRESS = 5
ELSTRESS = ALL
ELSTRESS(SORT1, PRINT, PUNCH, PHASE) = 15
Option Meaning
SORT1 Output will be presented as a tabular listing of elements for each
load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of load, frequency,
or time for each element type. SORT2 is available only in static
analysis, transient, and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
NOPRINT Stresses are calculated and saved on output file. The output file
will not be sent to the output device
EXTREME or LAYER Requests stresses to be calculated at the extreme (top and
bottom) fibers of a plate element or, for composites, the stresses
for each layer. (See Remarks 7 and 8)
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Stresses for all elements will be output.
n Set identification of a previously appearing SET card (Integer >
0). Only stresses for elements whose identification numbers appear
on this SET card will be output.
NONE Stresses for no elements will be output.
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative to this would
be to define a SET of interest.
3. In static analysis or frequency response problems, any request for SORT2
output causes all output to be SORT2.
4. ELSTRESS is an alternate form and is entirely equivalent to STRESS.
5. ELSTRESS = NONE allows overriding an overall request.
6. If element stresses in the material coordinate system are desired (only for
TRIA1, TRIA2, QUAD1, and QUAD2 elements and only in Rigid Format 1), the
parameter STRESS (see the description of the PARAM bulk data card in
Section 2.4.2) should be set to be a positive integer. If, in addition to
element stresses in the material coordinate system, stresses at the
connected grid points are also desired, the parameter STRESS should be set
to 0.
7. When LAYER is selected, individual layer stresses and/or failure indices
will be output.
8. The option EXTREME and LAYER is only applicable for the QUAD4 and TRIA3
elements.
=PAGE=
ESE - Element Strain Energy Output Request
Description
Requests strain energy output and per cent of total strain energy with respect
to all elements.
Format and Example(s)
( PRINT ) ALL
ESE PUNCH = n
NONE
ESE (PUNCH) = 5
ESE (PRINT,PUNCH) = ALL
Option Meaning
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
ALL Strain energies will be output for all elements for which
stiffness matrices exist.
NONE Strain energies for no elements will be output.
n Set identification of previously appearing SET card (Integer > 0).
Only strain energies for elements whose identification numbers
appear on this SET card will be output.
Remarks
1. Element strain energies are output from static analysis (Rigid Format 1)
only.
2. The output will be in SORT1 format.
3. Both PRINT and PUNCH may be requested.
4. ESE = NONE allows overriding an overall output request.
=PAGE=
FMETHOD - Flutter Analysis Method
Description
Selects the FLUTTER parameters to be used by the flutter module (FA1).
Format and Example(s)
FMETHOD = n
FMETHOD = 72
Option Meaning
n Set identification number of a FLUTTER card (integer > 0).
Remarks
1. An FMETHOD card is required for flutter analysis.
=PAGE=
FORCE - Element Force Output Request
Description
Requests form and type of element force output.
Format and Example(s)
( SORT1, PRINT, REAL ) ALL
FORCE SORT2 PUNCH IMAG = n
PHASE NONE
FORCE = ALL
FORCE(REAL, PUNCH, PRINT) = 17
FORCE = 25
Option Meaning
SORT1 Output will be presented as a tabular listing of elements for each
load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of load, frequency,
or time for each element type. SORT2 is available only in static
analysis, transient, and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary printout on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Forces for all elements will be output.
n Set identification of a previously appearing SET card. Only forces
whose element identification numbers appear on this SET card will
be output (Integer > 0).
NONE Forces for no elements will be output.
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative to this would
be to define a SET of interest.
3. In static analysis or frequency response problems, any request for SORT2
output causes all output to be SORT2.
4. ELFORCE is an alternate form and is entirely equivalent to FORCE.
5. FORCE = NONE allows overriding an overall request.
6. In heat transfer analysis, ELFORCE output consists of heat flow through and
out of the elements.
=PAGE=
FREQUENCY - Frequency Set Selection
Description
Selects the set of frequencies to be solved in frequency response problems.
Format and Example(s)
FREQUENCY = n
FREQUENCY = 17
Option Meaning
n Set identification of a FREQ, FREQ1, or FREQ2 type card (Integer >
0).
Remarks
1. The FREQ, FREQ1, or FREQ2 cards will not be used unless selected in Case
Control.
2. A frequency set selection is required for a frequency response problem.
3. A frequency set selection is required for transient response by Fourier
methods.
=PAGE=
GPFORCE - Grid Point Force Balance Output Request
Description
Requests grid point force balance output from applied loads, single-point
constraints, and element constraints.
Format and Example(s)
( PRINT ) ALL
GPFORCE PUNCH = n
NONE
Option Meaning
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
ALL Force balance will be output for all elements connected to grid
points or scalar points.
NONE Force balance for no grid points will be output.
n Set identification of previously appearing SET card (Integer > 0).
Only force balance for points whose identification numbers appear
on this SET card will be output.
Remarks
1. Grid point force balance is output from Statics Analysis (Rigid Format 1)
only.
2. The output will be in SORT1 format.
3. Both PRINT and PUNCH may be requested.
4. GPFORCE = NONE allows overriding an overall output request.
=PAGE=
GUST - Aerodynamic Gust Load Request
Description
Selects the gust field in an aeroelastic response problem.
Format and Example(s)
GUST = n
GUST = 73
Option Meaning
n Set identification of a GUST bulk data card (Integer > 0).
Remarks
1. The above GUST will not be used by NASTRAN unless selected in Case Control.
2. The choice of transient or frequency response gust depends upon the type of
TLOAD or RLOAD referenced on the selected GUST card.
=PAGE=
HARMONICS - Harmonic Printout Control
Description
Controls number of harmonics output for problems containing CCONEAX, CTRAPAX,
or CTRIAAX elements.
Format and Example(s)
0
HARMONICS = ALL
NONE
n
Option Meaning
ALL All harmonics will be output.
NONE No harmonics will be output.
n Available harmonics up to and including n will be output (Integer
>= 0).
Remarks
1. If no HARMONICS card appears in Case Control, only 0 harmonic output will
be printed.
=PAGE=
IC - Transient Initial Condition Set Selection
Description
To select the initial conditions for direct transient problems.
Format and Example(s)
IC = n
IC = 17
Option Meaning
n Set identification of TIC card (Integer > 0) for structural
analysis. Set identification of TEMP and/or TEMPD card (Integer >
0) for heat transfer analysis.
Remarks
1. TIC cards will not be used (hence no initial conditions) unless selected in
Case Control.
2. Initial conditions are not allowed in a modal transient problem.
=PAGE=
K2PP - Direct Input Stiffness Matrix Selection
Description
Selects a direct input stiffness matrix.
Format and Example(s)
K2PP = name
K2PP = KDMIG
K2PP = K2PP
Option Meaning
name BCD name of a [K22dpp] matrix that is input on the DMIG or DMIAX
bulk data card.
Remarks
1. K2PP is used only in dynamics problems.
2. DMIG and DMIAX matrices will not be used unless selected.
=PAGE=
LABEL - Output Label
Description
Defines a BCD (alphanumeric) label which will appear on the third heading line
of each page of NASTRAN printer output.
Format and Example(s)
LABEL = Any BCD data
LABEL = SAMPLE OF A LABEL CARD
Remarks
1. LABEL appearing at the subcase level will label output for that subcase
only.
2. LABEL appearing before all subcases will label any outputs which are not
subcase dependent.
3. If no LABEL card is supplied, the label line will be blank.
4. LABEL information is also placed on NASTRAN plotter output as applicable.
=PAGE=
LINE - Data Lines Per Page
Description
Defines the number of data lines per printed page.
Format and Example(s)
42
LINE = n CDC
55
LINE = n DEC VAX, IBM, and UNIVAC
Option Meaning
n Number of data lines per page (Integer >= 10).
Remarks
1. If no LINE card appears, the appropriate default is used.
2. For 11 inch paper, 50 is the recommended number; for 8-1/2 inch paper, 35
is the recommended number.
3. Alternatively, the number of data lines per printed page can also be
defined by means of the NLINES keyword on the NASTRAN card (see Section
2.1).
=PAGE=
LOAD - External Static Load Set Selection
Description
Selects the external static load set to be applied to the structural model.
Format and Example(s)
LOAD = n
LOAD = 15
Option Meaning
n Set identification of at least one external load card and hence
must appear on at least one FORCE, FORCE1, FORCE2, MOMENT,
MOMENT1, MOMENT2, GRAV, PLOAD, PLOAD2, PLOAD3, RFORCE, PRESAX,
FORCEAX, MOMAX, SLOAD, or LOAD card (Integer > 0).
Remarks
1. The above static load cards will not be used by NASTRAN unless selected in
Case Control.
2. A GRAV card cannot have the same set identification number as any of the
other loading card types. If it is desired to apply a gravity load along
with other static loads, a LOAD bulk data card must be used.
3. If n is to be the set identification number of a bulk data LOAD card (see
description in Section 2.4), then it must be different from the load set
identification numbers of all external static load sets in the Bulk Data
Deck.
4. LOAD is only applicable in statics, inertia relief, differential stiffness,
buckling, and piecewise linear problems.
5. The total load applied will be the sum of external (LOAD), thermal
(TEMP(LOAD)), element deformation (DEFORM), and constrained displacement
(SPC) Loads.
6. Static, thermal, and element deformation loads must have unique set
identification numbers.
7. The rigid formats that accept a static load card expect it to appear in the
Case Control deck in a certain place with respect to subcase definitions.
See Section 3 for specific instructions.
=PAGE=
M2PP - Direct input Mass Matrix Selection
Description
Selects a direct input mass matrix.
Format and Example(s)
M2PP = name
M2PP = MDMIG
M2PP = M2PP
Option Meaning
name BCD name of a [M22dpp] matrix that is input on the DMIG or DMIAX
bulk data card.
Remarks
1. M2PP is supported only in dynamics problems.
2. DMIG and DMIAX matrices will not be used unless selected.
=PAGE=
MAXLINES - Maximum Number of Output Lines
Description
Sets the maximum number of output lines to a given value.
Format and Example(s)
MAXLINES = 20000
n
MAXLINES = 50000
Option Meaning
n Maximum number of output lines (Integer > 0).
Remarks
1. Any time this number is exceeded, NASTRAN will terminate through PEXIT.
2. This card may or may not override system operating control cards. You
should check with the local operations staff.
3. Default is MAXLINES = 20000.
=PAGE=
METHOD - Real Eigenvalue Extraction Method Selection
Description
Selects the real eigenvalue parameters to be used by the READ module.
Format and Example(s)
METHOD = n
METHOD = 33
Option Meaning
n Set identification number of an EIGR card (normal modes or modal
formulation) or an EIGB card (buckling). (Integer > 0).
Remarks
1. An eigenvalue extraction method must be selected when extracting real
eigenvalues using functional module READ.
2. Each of the rigid formats that accepts an eigenvalue method card expects it
to appear in the Case Control Deck in a certain place with respect to
subcase definitions. See Section 3 for specific instructions.
=PAGE=
MODES - Duplicate Case Control
Description
Repeats case control MODES times, to allow control of output in eigenvalue
problems.
Format and Example(s)
MODES = n
MODES = 1
Option Meaning
n Number of modes, starting with the first and proceeding
sequentially upward, for which the case control or subcase control
is to apply. (Integer > 0).
Remarks
1. This card can be illustrated by an example. Suppose stress output is
desired for the first five modes only and displacements only thereafter.
The following example would accomplish this:
SUBCASE 1
MODES = 5
OUTPUT
STRESS = ALL
SUBCASE 6
OUTPUT
DISPLACEMENTS = ALL
BEGIN BULK
2. The MODES card causes the results for each eigenvalue to be considered as a
separate, successively numbered subcase, beginning with the subcase number
containing the MODES card.
3. If the MODES card is not used, eigenvalue results are considered to be a
part of a single subcase. Hence, any output requests for the single subcase
will apply for all eigenvalues.
4. All eigenvectors with mode numbers greater than the number of records in
Case Control are printed with the descriptors of the last Case Control
record. For example, to suppress all printout for modes beyond the first
three, the following Case Control deck could be used:
SUBCASE 1
MODES = 3
DISPLACEMENTS = ALL
SUBCASE 4
DISPLACEMENTS = NONE
BEGIN BULK
=PAGE=
MPC - Multipoint Constraint Set Selection
Description
Selects the multipoint constraint set to be applied to the structural model.
Format and Example(s)
MPC = n
MPC = 17
Option Meaning
n Set identification of a multipoint constraint set and hence must
appear on at least one MPC, MPCADD, MPCAX, or MPCS card. (Integer
> 0).
Remarks
1. MPC, MPCADD, MPCAX, or MPCS cards will not be used by NASTRAN unless
selected in Case Control.
=PAGE=
MPCFORCE - Multipoint Forces of Constraint Output Request
Description
Requests multipoint force of constraint vector output.
Format and Example(s)
ALL
MPCFORCE ( SORT1, PRINT ) = n
PUNCH NONE
MPCFORCE = 10
MPCFORCE(PRINT,PUNCH) = ALL
MPCFORCE = NONE
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each subcase or frequency, depending on the rigid format. SORT2 is
not available.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
ALL Multipoint forces of constraint for all points will be output
(only nonzero entries).
NONE Multipoint forces of constraint for no points will be output.
n Set identification of previously appearing SET card. Only
multipoint constraint forces for points whose identification
numbers appear on this SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. MPCFORCE = NONE allows overriding an overall output request.
3. MPCFORCE is only valid for statics and real eigenvalue analyses.
4. A request for MPCFORCE is not allowed for axisymmetric elements.
5. See the PARAM bulk data card for use of related parameters OPT and GRDEQ.
=PAGE=
NCHECK - Stress and Element Forces Numerical Accuracy Check
Description
Requests stress and element force numerical accuracy check.
Format and Example(s)
NCHECK [= n]
NCHECK
NCHECK = 6
Option Meaning
n A printout of the number of significant digits accuracy is issued
for each element having an entry with less than n significant
digits in the stress or force calculation.
Remarks
1. All the elements requested on the STRESS and/or FORCE card (or their
equivalent ELSTRESS and/or ELFORCE card) are checked.
2. The default for n is five (5) when n is not specified.
3. These checks measure the quality of the computations to obtain element
stresses and element forces. They do not measure the quality of the model
being analyzed.
4. See Theoretical Manual Section 3.7.2 for a description of the accuracy
check.
5. The printout identifies the element types, identification number and the
subcase. The entries checked are as follows.
ELEMENT TYPE ENTRIES
ROD,CONROD,TUBE FA,T,A,T
BAR FA,T,M1a,M1b,M2a,M2b,V1,V2,a
TRMEM,QDMEM,QDMEMl x,y,xy
TRPLT,QDPLT,TRIA1,TRIA2,QUAD1,QUAD2 x1,y1,xy1,x2,y2,xy2,Mx,My,Mxy,
TRBSC Vx,Vy
HEXA1,HEXA2,WEDGE,TETRA x,y,z,yz,xz,xy
SHEAR MAX,AVE, corner forces, kick
forces, and shears.
TWIST MAX,AVE,M1-3,M2-4
QDMEM2 x,y,xy, corner forces, kick
forces, and shears.
IHEX1, IHEX2, IHEX3 NORMAL, SHEAR, and PRINCIPAL for
each direction, grid point, and
centroid.
=PAGE=
NLLOAD - Nonlinear Load Output Request
Description
Requests form and type of nonlinear load output for transient problems.
Format and Example(s)
ALL
NLLOAD (PRINT) = n
PUNCH NONE
NLLOAD = ALL
Option Meaning
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
ALL Nonlinear loads for all solution points will be output.
NONE Nonlinear loads will not be output.
n Set identification of previously appearing SET card.(Integer > 0).
Only non-linear loads for points whose identification numbers
appear on this SET card will be output.
Remarks
1. Both PRINT and PUNCH may be used.
2. Nonlinear loads are output only in the solution (D or H) set.
3. The output format will be SORT2.
4. An output request for ALL in transient response problems generally produces
large amounts of printout. An alternative to this would be to define a SET
of interest.
5. THERMAL = NONE allows overriding an overall output request.
=PAGE=
NONLINEAR - Nonlinear Load Set Selection
Description
Selects nonlinear load for transient problems.
Format and Example(s)
NONLINEAR = n
NONLINEAR LOAD SET = 75
Option Meaning
n Set identification of NOLINi cards (Integer > 0).
Remarks
1. NOLINi cards will not be used unless selected in Case Control.
=PAGE=
OFREQUENCY - Output Frequency Set
Description
Selects from the solution set of frequencies a subset for output requests in
direct or modal frequency analysis. In flutter analysis, it selects a subset
of velocities.
Format and Example(s)
OFREQUENCY = ALL
n
OFREQUENCY = ALL
OFREQUENCY SET = 15
Option Meaning
ALL Output for all frequencies will be printed out.
n Set identification of previously appearing SET card (Integer > 0).
Output for frequencies closest to those given on this SET card
will be produced.
Remarks
1. OFREQUENCY is defaulted to ALL if it is not supplied.
2. In flutter analysis, the selected set lists velocities in input units. If
there are n velocities in the list, the n points with velocities closest to
those in the list will be selected for output.
3. This card is used in conjunction with the MODACC module to limit the
frequencies for which mode acceleration computations are performed.
4. In flutter analysis, the selected set refers to the imaginary part of the
complex eigenvalues.
K or KE method: Velocity (input units)
PK method: Frequency
5. In aeroelastic response (with RLOAD selection), the selected set refers to
the frequency (cycles per unit time).
=PAGE=
OLOAD - Applied Load Output Request
Description
Requests form and type of applied load vector output.
Format and Example(s)
OLOAD ( SORT1, PRINT, REAL ) ALL
SORT2 PUNCH IMAG = n
PHASE NONE
OLOAD = ALL
SLOAD(SORT1, PHASE) = 5
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of load, frequency,
or time for each grid point. SORT2 is available only in static
analysis, transient and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Applied loads for all points will be output. (SORT1 will only
output nonzero values.)
NONE Applied loads for no points will be output.
n Set identification of previously appearing SET card. Only loads on
points whose identification numbers appear on this SET card will
be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative would be to
define a SET of interest.
3. In static analysis or frequency response problems, any request for SORT2
output causes all output to be SORT2.
4. A request for SORT2 causes loads (zero and nonzero) to be output.
5. OLOAD = NONE allows overriding an overall output request.
=PAGE=
OTIME - Output Time Set
Description
Selects from the solution set of times a subset for output requests.
Format and Example(s)
OTIME = ALL
n
OTIME = ALL
OTIME = 15
Option Meaning
ALL Output for all times will be printed out.
n Set identification of previously appearing SET card. (Integer >
0). Output for times closest to those given on this SET card will
be output.
Remarks
1. OTIME is defaulted to ALL if it is not supplied.
2. The OTIME card is particularly useful for restarts to request a subset of
the output (that is, stresses at only peak times, etc.).
3. This card can be used in conjunction with the MODACC module to limit the
times for which mode acceleration computations are performed.
=PAGE=
OUTPUT - Output Packet Delimiter
Description
Delimits the various output packets, structure plotter, curve plotter, and
printer/punch.
Format and Example(s)
( PLOT )
OUTPUT XYOUT
XYPLOT
OUTPUT
OUTPUT(PLOT)
OUTPUT(XYOUT)
Option Meaning
No qualifier Beginning of printer output packet. This is not a required card.
PLOT Beginning of structure plotter packet. This card must precede all
structure plotter control cards.
XYOUT or XYPLOT Beginning of curve plotter packet. This card must precede all
curve plotter control cards. XYPLOT and XYOUT are entirely
equivalent.
Remarks
1. The structure plotter packet and the curve plotter packet must be at the
end of the Case Control Deck. Either may come first.
2. The delimiting of a printer packet is completely optional.
=PAGE=
PLCOEFFICIENT - Piecewise Linear Coefficient Set
Description
Selects the coefficient set for piecewise linear problems.
Format and Example(s)
PLCOEFFICIENT = n
PLCOEFFICIENT = 25
Option Meaning
n Set identification of PLFACT card (Integer > 0).
Remarks
1. PLFACT cards will not be used unless selected.
=PAGE=
PLOTID - Plotter Identification
Description
Defines BCD (alphanumeric) identification which will appear on the first frame
of any NASTRAN plotter output.
Format and Example(s)
PLOTID = Any BCD data
PLOTID = RETURN TO B.J. SMITH, ROOM.201, BLDG 85, ABC COMPANY
Remarks
1. PLOTID must appear before any OUTPUT(PLOT), OUTPUT(XYOUT), or
OUTPUT(XYPLOT) cards.
2. The presence of PLOTID causes a special header frame to be plotted with the
supplied identification plotted several times. This allows for easy
identification of the NASTRAN plotter output.
3. If no PLOTID card appears, no ID frame will be plotted.
4. The PLOTID header frame will not be generated for table plotters.
=PAGE=
PRESSURE - Hydroelastic Pressure Output Request
Description
Requests form and type of displacement and hydroelastic pressure vector
output.
Format and Example(s)
( SORT1, PRINT, REAL ) ALL
PRESSURE SORT2 PUNCH IMAG = n
PHASE NONE
PRESSURE = 5
PRESSURE(IMAG) = ALL
PRESSURE(SORT2, PUNCH, REAL) = ALL
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of frequency or time
for each grid point. SORT2 is available only in transient and
frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Displacements and pressures for all points will be output.
NONE Displacements and pressures for no points will be output.
n Set identification of previously appearing SET card. Only
displacements and pressures of points whose identification numbers
appear on this SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative would be to
define a SET of interest.
3. In a frequency response problem any request for SORT2 causes all output to
be SORT2.
4. DISPLACEMENT and VECTOR are alternate forms and are entirely equivalent to
PRESSURE.
5. PRESSURE = NONE allows overriding an overall output request.
=PAGE=
RANDOM - Random Analysis Set Selection
Description
Selects the RANDPS and RANDTi cards to be used in random analysis.
Format and Example(s)
RANDOM = n
RANDOM = 177
Option Meaning
n Set identification of RANDPS and RANDTi cards to be used in random
analysis (Integer > 0).
Remarks
1. RANDPS cards must be selected to do random analysis.
2. RANDPS must be selected in the first subcase of the current loop. RANDPS
may not reference subcases in a different loop.
=PAGE=
READFILE - Directive to Read Input Cards
Description
Defines a file that contains the input cards.
Format and Example(s)
Ä¿
,NOPRINT,
READFILE ,NOPRINT [ = ] filename
(NOPRINT)
READFILE ABC
READFILE NOPRINT ABC
READFILE, NOPRINT ABC
READFILE, NOPRINT, ABC
READFILE (NOPRINT) ABC
READFILE = ABC
READFILE NOPRINT = ABC
READFILE, NOPRINT = ABC
READFILE (NOPRINT) = ABC
Remarks
1. This card can be used in Executive, Case Control, and Bulk Data Decks.
2. Input cards are saved in the file named filename.
3. Comma, equal sign, and parentheses are not allowed in filename.
4. NOPRINT allows reading in the input cards, such as the DMAP alters or
restart dictionary, without printing them out. The default is to print
them.
5. Since this card can also be used in the Case Control Deck, an equal sign is
also allowed.
6. Nested READFILE is allowed.
7. See Sections 2.0.2.1 and 2.0.2.2 for more information.
=PAGE=
REPCASE - Repeat Case Subcase Delimiter
Description
Delimits and identifies a repeated subcase.
Format and Example(s)
REPCASE n
REPCASE 137
Option Meaning
n Subcase identification number (integer > 1).
Remarks
1. The subcase identification number, n, must be strictly increasing (that is,
greater than all previous subcase identification numbers).
2. This case will only re-output the previous real case. This allows
additional set specification.
3. REPCASE may only be used in statics or inertia relief.
4. One or more repeated subcases (REPCASEs) must immediately follow the
subcase (SUBCASE) to which they refer. (See example 4 in Section 2.3.3.)
=PAGE=
SACCELERATION - Solution Set Acceleration Output Request
Description
Requests form and type of solution set acceleration output.
Format and Example(s)
SACCELERATION ( SORT1, PRINT, REAL ) = ALL
SORT2 PUNCH IMAG n
PHASE NONE
SACCELERATION = ALL
SACCELERATION(PUNCH, IMAG) = 142
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of frequency or time
for each grid point (or mode number). SORT2 is available only in
transient and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on frequency response
problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
frequency response problems.
ALL Acceleration for all solution points (modes) will be output.
NONE Acceleration for no solution points (modes) will be output.
n Set identification of a previously appearing SET card. Only
accelerations of points whose identification numbers appear on
this SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative would be to
define a SET of interest.
3. Acceleration output is only available for transient and frequency response
problems.
4. In a frequency response problem any request for SORT2 output causes all
output to be SORT2.
5. SACCELERATION = NONE allows overriding an overall output request.
=PAGE=
SCAN - Output Scan Request
Description
Scan output data and eliminate values that do not meet the specification set
by this SCAN card.
Format and Example(s)
STRESS topn
SCAN ( FORCE , element, component ) = , SET i
HELP max,min
ON-LINE
SCAN (STRESS, CBAR, AXIAL) = 10
SCAN (STRESS, BAR, AXIAL, SA-MAX) = 15, SET 102
SCAN (FORCE, ROD, 2, 3) = 17
SCAN (FORCE, 3, CROD, 2) = +2000., -1500., SET 102
SCAN (ROD, AXIAL, FORCE, TORQUE) = 5000., 400.
SCAN (HELP)
Option Meaning
STRESS Request scan on stress file, of SORT1 or SORT2 format.
FORCE Request scan on force file, of SORT1 or SORT2 format.
element Any NASTRAN element name, with or without the leading letter "C"
(BCD).
component One or more components specified by keywords (BCD), or by numeric
codes (Integer > 0). The numeric codes are the field numbers on
the heading of the output page, whose values are to be scanned.
(Each element has its own page heading.) See Remark 11 for the
keywords and their corresponding field numbers.
topn The highest n values, and the lowest n values, found by SCAN in
the field(s) specified by component are printed out; for example,
top n tension and top n compression stresses (Integer > 0).
max,min Values greater than max and less than min, in the field(s)
specified by component, are printed out (Real).
i Element set identification of a previously appearing SET card
(Integer > 0). Only forces or stresses of elements whose
identification numbers appear on this SET card will be scanned for
output. (Default is all.)
HELP A table of the component keywords and their corresponding field
numbers will be printed immediately before the Bulk Data Deck, and
the job will continue.
ON-LINE Request SCAN operation to be run on-line under real-time
environment.
Remarks
1. Multiple SCAN cards can be requested in a NASTRAN run. They do not override
one another.
2. A SCAN card specifies only one element type; an element type can have more
than one SCAN card.
3. More than one component field can be requested in a SCAN card. However,
these fields will be scanned together as a group.
4. SCAN sorts and prints the scanned values in descending order. All fields of
the same output line are printed.
5. If the component keyword is misspelled, a list of the valid names and their
corresponding fields will be printed automatically and the job will be
flagged for fatal error termination.
6. Some component keywords imply multi-field scan; for example, "AXIAL" may
imply axial forces for grid points 1, 2, 3, etc.
7. Component numeric code specifies field numbers 1 through 62 only.
8. Normally, SCAN will scan only data already generated for the Output File
Processor (OFP). That is, SCAN cannot scan data that has not been created.
However, if no ELSTRESS (or STRESS) card is specified before a stress SCAN
card, a STRESS card is generated internally in the following form:
STRESS (SORT1, NOPRINT, REAL) = ALL
Forces are handled similarly.
9. The LABEL line (after TITLE and SUBTITLE) is limited to 36 characters. The
rest of the line is replaced by the SCAN header.
10. When the ON-LINE option is requested, the other input parameters are not
needed on the SCAN card. These parameters will be prompted for on the
CRT screen by the computer system when the SCAN module is executed.
11. The component keywords for stress and force, and their corresponding
output field numbers, are listed below. This table is printed by SCAN
(HELP).
FORCE/STRESS KEYWORD COMPONENT (OUTPUT FIELD NO.)
ROD, TUBE, CONROD
STRESS AXIAL 2
STRESS TORSIONAL 4
STRESS MARGIN 3, 5
FORCE AXIAL 2
FORCE TORQUE 3
SHEAR, TWIST
STRESS MAX-SHR 2
STRESS MARGIN 4
STRESS AVG 3
STRESS MAX 2
FORCE FORCE-1 2
FORCE FORCE-2 3
FORCE MOMENT-1 2
FORCE MOMENT-2 3
TRIA1, TRIA2, QUAD1, QUAD2, TRBSC, TRPLT, QDPLT
STRESS NORM-X 3, 11
STRESS NORM-Y 4, 12
STRESS SHEAR-XY 5, 13
STRESS MAJOR 7, 15
STRESS MINOR 8, 16
STRESS MAX-SHR 9, 17
FORCE MOMENT-X 2
FORCE MOMENT-Y 3
FORCE SHEAR-X 5
FORCE SHEAR-Y 6
FORCE TWIST 4
TRMEM, QDMEM, QDMEM1, QDMEM2
STRESS NORM-X 2
STRESS NORM-Y 3
STRESS SHEAR-XY 4
STRESS MAJOR 6
STRESS MINOR 7
STRESS MAX-SHR 8
FORCE FORCE-12 3, 4
FORCE FORCE-23 5, 6
FORCE FORCE-34 7, 8
FORCE FORCE-41 2, 9
FORCE KICK ON1 10
FORCE KICK ON2 12
FORCE KICK ON3 14
FORCE KICK ON4 16
FORCE SHEAR-XY 11
FORCE SHEAR-YZ 13
FORCE SHEAR-ZX 15
FORCE SHEAR 17
ELAS1, ELAS2, ELAS3, IS2D8
STRESS OCT-SHR 2
FORCE CIRCUM 2
FORCE FORCE-1 4, 9
FORCE FORCE-2 3, 6
FORCE FORCE-3 5, 8
FORCE FORCE-4 2, 7
BAR, ELBOW
STRESS SA-MAX 7, 8
STRESS SB-MAX 14, 15
STRESS MARGIN 9, 16
STRESS AXIAL 6
FORCE AXIAL 8
FORCE TORQUE 9
FORCE SHEAR 5, 6
FORCE MOMENT-A 2, 3
FORCE MOMENT-B 4, 5
CONEAX
STRESS NORM-U 4, 22
STRESS NORM-V 5, 23
STRESS SHEAR-UV 6, 24
STRESS MAJOR 8, 26
STRESS MINOR 9, 27
STRESS MAX-SHR 10, 28
FORCE MOMENT-U 3
FORCE MOMENT-V 4
FORCE SHEAR-XY 6
FORCE SHEAR-YZ 7
TRIARG
STRESS RADIAL 2
STRESS CIRCUM 3
STRESS AXIAL 4
STRESS SHEAR 5
FORCE RADIAL 2, 5, 8
FORCE CIRCUM 3, 6, 9
FORCE AXIAL 4, 7, 10
TRAPRG
STRESS RADIAL 2, 6, 10, 14 ... 22
STRESS CIRCUM 3, 7, 11, 15 ... 23
STRESS AXIAL 4, 8, 12, 16 ... 24
STRESS SHEAR 5, 9, 13, 17 ... 25
STRESS SHR-FBRC 6, 10, 14, 18 ... 26
FORCE RADIAL 2, 5, 8, 11
FORCE CIRCUM 3, 6, 9, 12
FORCE AXIAL 4, 7, 10, 13
TORDRG
STRESS MEM-T 2, 7, 12
STRESS MEM-C 3, 8, 13
STRESS FLEX-T 4, 9, 14
STRESS FLEX-C 5, 10, 15
STRESS SHR-FORC 6, 11, 16
FORCE RADIAL 2, 8
FORCE CIRCUM 3, 9
FORCE AXIAL 4, 10
FORCE MOMENT 5, 11
FORCE CURV 7, 13
IHEX1, IHEX2
STRESS NORM-X 3, 25, 47, 69 ... ETC.
STRESS SHEAR-XY 4, 26, 48, 70 ... ETC.
STRESS PRINC-A 5, 27, 49, 71 ... ETC.
STRESS MEAN 9, 31, 53, 75 ... ETC.
STRESS NORM-Y 11, 33, 55, 77 ... ETC.
STRESS SHEAR-YZ 12, 34, 56, 78 ... ETC.
STRESS PRINC-B 13, 35, 57, 79 ... ETC.
STRESS NORM-Z 17, 39, 61, 83 ... ETC.
STRESS SHEAR-ZX 18, 40, 62, 84 ... ETC.
STRESS PRINC-C 19, 41, 63, 85 ... ETC.
STRESS MAX-SHR 10, 32, 54, 76 ... ETC.
STRESS OCT-SHR 10, 32, 54, 76 ... ETC.
IHEX3
STRESS NORM-X 3, 26, 49, 72 ... 739
STRESS SHEAR-XY 4, 27, 50, 73 ... 740
STRESS PRINC-A 5, 28, 51, 74 ... 741
STRESS MEAN 9, 32, 55, 78 ... 745
STRESS NORM-Y 12, 35, 58, 81 ... 748
STRESS SHEAR-YZ 13, 36, 59, 82 ... 749
STRESS PRINC-B 14, 37, 60, 83 ... 750
STRESS NORM-Z 18, 41, 64, 87 ... 754
STRESS SHEAR-ZX 19, 42, 65, 88 ... 755
STRESS PRINC-C 20, 43, 66, 89 ... 756
STRESS MAX-SHR 10, 33, 56, 79 ... 746
STRESS OCT-SHR 10, 33, 56, 79 ... 746
TRIAAX, TRAPAX
STRESS RADIAL 3, 11, 19
STRESS AXIAL 4, 12, 20
STRESS CIRCUM 5, 13, 21
STRESS MEM-C 6, 14, 22
STRESS FLEX-T 7, 15, 23
STRESS FLEX-C 8, 16, 24
FORCE RADIAL 3, 7, 11
FORCE CIRCUM 4, 8, 12
FORCE AXIAL 5, 9, 13
QUAD4, TRIA3
STRESS NORMAL-X 3, 11
STRESS NORMAL-Y 4, 12
STRESS SHEAR-XY 5, 13
STRESS MAJOR 7, 15
STRESS MINOR 18, 16
STRESS MAX-SHR 9, 17
FORCE FX+FY 2, 3
FORCE FXY 4
FORCE MX+MY 5, 6
FORCE MXY 7
FORCE VX+VY 8, 19
STRESS NORMAL-1 5, 15, 25, 35
STRESS NORMAL-2 6, 16, 26, 36
STRESS SHEAR-12 7, 17, 27, 37
STRESS SHEAR-1Z 10, 20, 30, 40
STRESS SHEAR-2Z 11, 21, 31, 41
Use output field number(s) to specify component(s) for elements or keywords
not listed above. See sections 2.3.51 and 2.3.52 of the Programmer's Manual
for additional element stress and force component definitions.
=PAGE=
SDAMPING - Structural Damping
Description
Selects table which defines damping as a function of frequency in modal
formulation problems.
Format and Example(s)
SDAMPING = n
SDAMPING = 77
Option Meaning
n Set identification of a TABDMP1 table (Integer > 0).
Remarks
1. If SDAMPING is not used BHH = [0].
=PAGE=
SDISPLACEMENT - Solution Set Displacement Output Request
Description
Requests form and type of solution set displacement output.
Format and Example(s)
SDISPLACEMENT ( SORT1, PRINT, REAL ) ALL
SORT2 PUNCH IMAG = n
PHASE NONE
SDISPLACEMENT = ALL
SDISPLACEMENT(SORT2, PUNCH, PHASE) = NONE
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of frequency or time
for each grid point (or mode number). SORT2 is available only in
transient and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Displacements for all points (modes) will be output.
NONE Displacements for no points (modes) will be output.
n Set identification of previously appearing SET card. Only
displacements of points whose identification numbers appear on
this SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative would be to
define a SET of interest.
3. In a frequency response problem any request for SORT2 causes all output to
be SORT2.
4. SVECTOR is an alternate form which is entirely equivalent to SDISPLACEMENT.
5. SDISPLACEMENT = NONE allows overriding an overall output request.
=PAGE=
SET - Set Definition Card
Description
1. Lists identification numbers (point or element) for output requests.
2. Lists the frequencies for which output will be printed in frequency
response problems.
Format and Example(s)
1. SET n = {i1[,i2, i3 THRU 14 EXCEPT i5, i6, i7, i8 THRU i9]}
SET 77 = 5
SET 88 = 5, 6, 7, 8, 9, 10 THRU 55 EXCEPT 15, 16, 77, 78, 79, 100 THRU 300
SET 99 = 1 THRU 100000
2. SET n = {r1[, r2, r3, r4]}
SET 101 = 1.0, 2.0, 3.0
SET 105 = 1.009, 10.2, 13.4, 14.0, 15.0
Option Meaning
n Set identification (Integer > 0). Any set may be redefined by
reassigning its identification number. Sets inside SUBCASE
delimiters are local to the SUBCASE.
i1, i2 etc. Element or point identification number at which output is
requested. (Integer > 0) If no such identification number exists,
the request is ignored.
i3 THRU i4 Output at set identification numbers i3 through i4 (i4 > i3).
EXCEPT Set identification numbers following EXCEPT will be deleted from
output list as long as they are in the range of the set defined by
the immediately preceding THRU.
r1, r2 etc. Frequencies for output (Real >= 0.0). The nearest solution
frequency will be output. EXCEPT and THRU cannot be used.
Remarks
1. A SET card may be more than one physical card. A comma (,) at the end of a
physical card signifies a continuation card. Commas may not end a set.
2. Identification numbers following EXCEPT within the range of the THRU must
be in ascending order.
3. In the first format, i8 must be greater than i4; that is, the THRU must not
be within an EXCEPT range.
=PAGE=
SPC - Single-Point Constraint Set Selection
Description
Selects the single-point constraint set to be applied to the structural model.
Format and Example(s)
SPC = n
SPC = 10
Option Meaning
n Set identification of a single-point constraint set and hence must
appear on an SPC, SPC1, SPCADD, SPCAX, SPCS, or SPCS1 card
(Integer > 0).
Remarks
1. SPC, SPC1, SPCADD, SPCAX, SPCS, or SPCS1 cards will not be used by NASTRAN
unless selected in Case Control.
=PAGE=
SPCFORCES - Single-Point Forces of Constraint Output Request
Description
Requests form and type of single point force of constraint vector output.
Format and Example(s)
SPCFORCES ( SORT1, PRINT, REAL ) ALL
SORT2 PUNCH IMAG = n
PHASE NONE
SPCFORCES = 5
SPCFORCES(SORT2, PUNCH, PRINT, IMAG) = ALL
SPCFORCES(PHASE) = NONE
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of load, frequency,
or time for each grid point. SORT2 is available only in static
analysis, transient, and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Single point forces of constraint for all points will be output.
(SORT1 will only output nonzero values.)
NONE Single point forces of constraint for no points will be output.
n Set identification of previously appearing SET card. Only
single-point forces of constraint for points whose identification
numbers appear on this SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative would be to
define a SET of interest.
3. In static analysis or frequency response problems, any request for SORT2
output causes all output to be SORT2.
4. A request for SORT2 causes loads (zero and nonzero) to be output.
5. SPCFORCES = NONE allows overriding an overall output request.
6. In heat transfer analysis, SPCFORCE output is the power necessary to
maintain a grid point at a fixed temperature.
=PAGE=
STRAIN - Element Strain/Curvature Output Request
Description
Requests element strain/curvature output.
Format and Example(s)
STRAIN ( PRINT ) = ALL
PUNCH n
NONE
STRAIN (PUNCH) = 5
STRAIN (PRINT,PUNCH) = ALL
Option Meaning
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
ALL Strains/curvatures for all elements will be output. See Remark 5.
NONE Strains/curvatures for no elements will be output.
n Set identification of previously appearing SET card (Integer > 0).
Only strains/curvatures for elements whose identification numbers
appear on this SET card will be output. See Remark 5.
Remarks
1. Element strains/curvatures are output from static analysis (Rigid Format 1)
only.
2. The output will be in SORT1 format.
3. Both PRINT and PUNCH may be requested.
4. STRAIN = NONE allows overriding an overall output request.
5. Strains/curvatures are computed only for TRIA1, TRIA2, QUAD1, and QUAD2
elements.
6. If element strains/curvatures in the material coordinate system are
desired, the parameter STRAIN (see the description of the PARAM bulk data
card in Section 2.4.2) should be set to be a positive integer. If, in
addition to element strains/curvatures in the material coordinate system,
strains/curvatures at the connected grid points are also desired, the
parameter STRAIN should be set to 0.
7. The format of the two-line output for each element consists of strain in
the middle surface (line 1) and curvature (line 2).
=PAGE=
STRESS - Element Stress Output Request
Description
Requests form and type of element stress output.
Format and Example(s)
( SORT1 PRINT EXTREME REAL ) ALL
STRESS SORT2 , PUNCH , LAYER , IMAG = n
NOPRINT PHASE NONE
STRESS = 5
STRESS = ALL
STRESS(SORT1, PRINT, PUNCH, PHASE) = 15
Option Meaning
SORT1 Output will be presented as a tabular listing of elements for each
load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of load, frequency,
or time for each element type. SORT2 is available only in static
analysis, transient, and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
NOPRINT Stresses are calculated and saved on file which is not sent to
output device.
EXTREME or LAYER Requests stresses to be calculated at the extreme (top and
bottom) fibers of a plate element or, for composites, the stresses
for each layer. (See Remarks 7 and 8.)
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Stresses for all elements will be output.
n Set identification of a previously appearing SET card (Integer >
0). Only stresses for elements whose identification numbers appear
on this SET card will be output.
NONE Stresses for no elements will be output.
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative would be to
define a SET of interest.
3. In static analysis or frequency response problems, any request for SORT2
output causes all output to be SORT2.
4. STRESS is an alternate form and is entirely equivalent to ELSTRESS.
5. STRESS = NONE allows overriding an overall request.
6. If element stresses in the material coordinate system are desired (only for
TRIA1, TRIA2, QUAD1, and QUAD2 elements and only in Rigid Format 1), the
parameter STRESS (see the description of the PARAM bulk data card in
Section 2.4.2) should be set to be a positive integer. If, in addition to
element stresses in the material coordinate system, stresses at the
connected grid points are also desired, the parameter STRESS should be set
to 0.
7. When LAYER is selected, individual layer stresses and/or failure indices
will be output.
8. The options EXTREME and LAYER are only applicable for the QUAD4 and TRIA3
elements.
=PAGE=
SUBCASE - Subcase Delimiter
Description
Delimits and identifies a subcase.
Format and Example(s)
SUBCASE n
SUBCASE 101
Option Meaning
n Subcase identification number (Integer > 0).
Remarks
1. The subcase identification number, n, must be strictly increasing (that is,
greater than all previous subcase identification numbers).
2. Plot requests and RANDOM requests refer to n.
=PAGE=
SUBCOM - Combination Subcase Delimiter
Description
Delimits and identifies a combination subcase.
Format and Example(s)
SUBCOM n
SUBCOM 125
Option Meaning
n Subcase identification number (Integer > 2).
Remarks
1. The subcase identification number, n, must be strictly increasing (that is,
greater than all previous subcase identification numbers).
2. A SUBSEQ card may appear in this subcase.
3. SUBCOM may only be used in statics or inertia relief problems.
4. Output requests above the subcase level will be utilized.
5. Up to 360 SUBCOM cards can be used in one NASTRAN analysis.
=PAGE=
SUBSEQ - Subcase Sequence Coefficients
Description
Gives the coefficients for forming a linear combination of the previous
subcases.
Format and Example(s)
SUBSEQ = R1 [, R2, R3, ..., RN]
SUBSEQ = 1.0, -1.0, 0.0, 2.0
Option Meaning
R1 to RN Coefficients of the previously occurring subcases (Real).
Remarks
1. A SUBSEQ card must only appear in a SUBCOM subcase.
2. A SUBSEQ card may be more than one physical card. A comma at the end
signifies a continuation card.
3. SUBSEQ may only be used in statics or inertia relief problems.
4. A default value of 1.0 is used for all of the coefficients if no SUBSEQ
card is used.
=PAGE=
SUBTITLE - Output Subtitle
Description
Defines a BCD (alphanumeric) subtitle which will appear on the second heading
line of each page of NASTRAN printer output.
Format and Example(s)
SUBTITLE = Any BCD data
SUBTITLE = NASTRAN PROBLEM NO. 5-1A
Remarks
1. SUBTITLE appearing at the subcase level will title output for that subcase
only.
2. SUBTITLE appearing before all subcases will title any outputs which are not
subcase dependent.
3. If no SUBTITLE card is supplied, the subtitle line will be blank.
4. SUBTITLE information is also placed on NASTRAN plotter output as
applicable.
=PAGE=
SVECTOR - Solution Set Displacement Output Request
Description
Requests form and type of solution set displacement output.
Format and Example(s)
( SORT1, PRINT, REAL ) ALL
SVECTOR SORT2 PUNCH IMAG = n
PHASE NONE
SVECTOR = ALL
SVECTOR(SORT2, PUNCH, PHASE) = NONE
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of frequency or time
for each grid point (or mode number). SORT2 is available only in
transient and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Displacements for all points (modes) will be output.
NONE Displacements for no points (modes) will be output.
n Set identification of previously appearing SET card. Only
displacements of points whose identification numbers appear on
this SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative would be to
define a SET of interest.
3. In a frequency response problem any request for SORT2 causes all output to
be SORT2.
4. SDISPLACEMENT is an alternate form and is entirely equivalent to SVECTOR.
5. SVECTOR = NONE allows overriding an overall output request.
=PAGE=
SVELOCITY - Solution Set Velocity Output Request
Description
Requests form and type of solution set velocity output.
Format and Example(s)
( SORT1, PRINT, REAL ) ALL
SVELOCITY SORT2 PUNCH IMAG = n
PHASE NONE
SVELOCITY = 5
SVELOCITY(SORT2, PUNCH, PRINT, PHASE) = ALL
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of frequency or time
for each grid point (or mode number). SORT2 is available only in
transient and frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on frequency response
problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
frequency response problems.
ALL Velocity for all solution points (modes) will be output.
NONE Velocity for no solution points (modes) will be output.
n Set identification of a previously appearing SET card. Only
velocities of points whose identification numbers appear on this
SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative would be to
define a SET of interest.
3. Velocity output is only available for transient and frequency response
problems.
4. In a frequency response problem any request for SORT2 output causes all
output to be SORT2.
5. SVELOCITY = NONE allows overriding an overall output request.
=PAGE=
SYM - Symmetry Subcase Delimiter
Description
Delimits and identifies a symmetry subcase.
Format and Example(s)
SYM n
SYM 123
Option Meaning
n Subcase identification number (Integer > 0).
Remarks
1. The subcase identification number, n, must be strictly increasing (that is,
greater than all previous subcase identification numbers).
2. Plot requests and RANDOM requests should refer to n.
3. Overall output requests will not propagate into a SYM subcase (that is any
output desired must be requested within the subcase).
4. SYM may only be used in statics or inertia relief.
=PAGE=
SYMCOM - Symmetry Combination Subcase Delimiter
Description
Delimits and identifies a symmetry combination subcase.
Format and Example(s)
SYMCOM n
SYMCOM 123
Option Meaning
n Subcase identification number (Integer > 2).
Remarks
1. The subcase identification number, n, must be strictly increasing (that is,
greater than all previous subcase identification numbers).
2. SYMCOM may only be used in statics or inertia relief problems.
3. Up to 360 SYMCOM cards can be used in one NASTRAN analysis.
=PAGE=
SYMSEQ - Symmetry Sequence Coefficients
Description
Gives the coefficients for combining the symmetry subcases into the total
structure.
Format and Example(s)
SYMSEQ = R1 [, R2, R3 ..., Rn]
SYMSEQ = 1.0, -2.0, 3.0, 4.0
Option Meaning
R1 to RN Coefficients of the previously occurring N SYM subcases (Real).
Remarks
1. A SYMSEQ card may only appear in a SYMCOM subcase.
2. The default value for the coefficients is 1.0 if no SYMSEQ card appears.
3. A SYMSEQ card may consist of more than one physical card.
4. SYMSEQ may only be used in statics or inertia relief.
=PAGE=
TEMPERATURE - Thermal Properties Set Selection
Description
Selects the temperature set to be used in either material property calculation
or thermal loading.
Format and Example(s)
( BOTH )
TEMPERATURE MATERIAL = n
LOAD
TEMPERATURE (LOAD) = 15
TEMPERATURE (MATERIAL) = 7
TEMPERATURE = 7
Option Meaning
BOTH Both options, MATERIAL and LOAD, will use the same temperature
table.
MATERIAL The selected temperature table will be used to determine
temperature-dependent material properties indicated on the MATTi
type cards.
LOAD The selected temperature table will be used to determine an
equivalent static load.
n Set identification number of TEMP, TEMPD, TEMPP1, TEMPP2, TEMPP3,
TEMPRB, or TEMPAX cards (Integer > 0).
Remarks
1. Only one temperature-dependent material request may be made in any problem
and it must be above the subcase level.
2. Thermal loading may only be used in statics, inertia relief, differential
stiffness, and buckling problems.
3. Temperature-dependent materials may not be used in piecewise linear
problems.
4. The total load applied will be the sum of external (LOAD), thermal
(TEMP(LOAD)), element deformation (DEFORM), and constrained displacement
(SPC) loads.
5. Static, thermal, and element deformation loads should have unique set
identification numbers.
6. In heat transfer analysis, the TEMP data is used for the following special
purposes:
a. The Case Control card TEMP(MATERIAL) will select the initial estimated
temperature field for nonlinear conductivity and radiation effects. See
Section 1.8 (APP HEAT, Rigid Formats 1, 3, and 9).
b. In Rigid Format 3, heat boundary temperatures are defined by the
specified Case Control card TEMP(MATERIAL). These points are specified
with SPC data.
=PAGE=
TFL - Transfer Function Set Selection
Description
Selects the transfer function set to be added to the direct input matrices.
Format and Example(s)
TFL = n
TFL = 77
Option Meaning
n Set identification of a TF card (Integer > 0).
Remarks
1. Transfer functions will not be used unless selected in the Case Control
Deck.
2. Transfer functions are supported on dynamics problems only.
3. Transfer functions are simply another form of direct matrix input.
=PAGE=
THERMAL - Temperature Output Request
Description
Requests form and type of temperature vector output.
Format and Example(s)
THERMAL PRINT , SORT1 = ALL
PUNCH SORT2 n
NONE
THERMAL = 5
THERMAL(PRINT,PUNCH) = ALL
Option Meaning
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
ALL Temperatures for all points will be output.
NONE Temperatures for no points will be output.
n Set identification of previously appearing SET card. Only
temperatures of points whose identification numbers appear on this
SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested. The punched output will consist of
double field TEMP* Bulk Data cards defining the temperatures at the grid
points.
2. THERMAL output request is designed for use with the heat transfer option.
The printed output will have temperature headings and the punched output
will be TEMP bulk data cards. The SID on a bulk data card will be the
subcase number (= 1 if no defined subcases). The output format will be
SORT1 for Static problems and SORT2 for transient problems.
3. An output request for ALL in transient response problems generally produces
large amounts of printout. An alternative would be to define a SET of
interest.
4. DISPLACEMENT and VECTOR are alternate forms and are entirely equivalent to
THERMAL.
5. THERMAL = NONE allows overriding an overall output request.
6. The output format will be SORT1 for Rigid Formats 1 and 3, SORT2 for Rigid
Format 9.
7. If punched output is desired in Rigid Format 9 for subsequent use in the
other Rigid Formats, SORT1 format must be selected.
=PAGE=
TITLE - Output Title
Description
Defines a BCD (alphanumeric) title which will appear on the first heading line
of each page of NASTRAN printer output.
Format and Example(s)
TITLE = Any BCD data
TITLE = **$// ABCDEFGHI .... $
Remarks
1. TITLE appearing at the subcase level will title output for that subcase
only.
2. TITLE appearing before all subcases will title any outputs which are not
subcase dependent.
3. If no TITLE card is supplied, the title line will contain data and page
numbers only.
4. TITLE information is also placed on NASTRAN plotter output as applicable.
=PAGE=
TSTEP - Transient Time Step Set Selection
Description
Selects integration and output time steps for transient problems.
Format and Example(s)
TSTEP = n
TSTEP = 731
Option Meaning
n Set identification of a selected TSTEP bulk data card (Integer >
0).
Remarks
1. A TSTEP card must be selected to execute a transient problem.
2. Only one TSTEP card may have this value of n.
=PAGE=
VECTOR - Displacement Output Request
Description
Requests form and type of displacement vector output.
Format and Example(s)
VECTOR ( SORT1, PRINT, REAL ) ALL
SORT2 PUNCH IMAG = n
PHASE NONE
VECTOR = 5
VECTOR(REAL) = ALL
VECTOR(SORT2, PUNCH, REAL) = ALL
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available on transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of frequency or time
for each grid point. SORT2 is available only in transient and
frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on complex eigenvalue or
frequency response problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
complex eigenvalue or frequency response problems.
ALL Displacements for all points will be output.
NONE Displacements for no points will be output.
n Set identification of a previously appearing SET card. Only
displacements of points whose identification numbers appear on
this SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. On a frequency response problem any request for SORT2 causes all output to
be SORT2.
3. DISPLACEMENT and PRESSURE are alternate forms and are entirely equivalent
to VECTOR.
4. VECTOR = NONE allows overriding an overall output request.
=PAGE=
VELOCITY - Velocity Output Request
Description
Requests form and type of velocity vector output.
Format and Example(s)
VELOCITY ( SORT1, PRINT, REAL ) ALL
SORT2 PUNCH IMAG = n
PHASE NONE
VELOCITY = 5
VELOCITY(SORT2, PHASE, PUNCH) = ALL
Option Meaning
SORT1 Output will be presented as a tabular listing of grid points for
each load, frequency, eigenvalue, or time, depending on the rigid
format. SORT1 is not available in transient problems (where the
default is SORT2).
SORT2 Output will be presented as a tabular listing of frequency or time
for each gridpoint. SORT2 is available only in transient and
frequency response problems.
PRINT The printer will be the output device.
PUNCH The card punch will be the output device.
REAL or IMAG Requests real or imaginary output on frequency response
problems.
PHASE Requests magnitude and phase (0.0 <= phase < 360.0 degrees) on
frequency response problems.
ALL Velocity for all solution points will be output.
NONE Velocity for no solution points will be output.
n Set identification of a previously appearing SET card. Only
velocities of points whose identification numbers appear on this
SET card will be output (Integer > 0).
Remarks
1. Both PRINT and PUNCH may be requested.
2. An output request for ALL in transient and frequency response problems
generally produces large amounts of printout. An alternative would be to
define a SET of interest.
3. Velocity output is only available for transient and frequency response
problems.
4. In a frequency response problem any request for SORT2 output causes all
output to be SORT2.
5. VELOCITY = NONE allows overriding an overall output request.
=PAGE=
$ - Comment Card
Description
Defines a comment card by specifying a $ in column one with commentary text
appearing in columns 2-80.
Format and Example(s)
$ Any BCD data
$---THIS IS AN EXAMPLE OF A COMMENT CARD.
Remarks
1. Unlike other Case Control cards, which are free field, the comment card
must have the $ in column 1.
|