--- title: Available Software taxonomy: category: - docs external_links: process: true no_follow: true target: _blank mode: active --- [toc] ## List of Numerical Libraries * [Intel Math Kernel Library](mkl) * [NAG Library](nag) * [IMSL Library](imsl) ## List of ISV Applications List of applications developed by software vendors. The X11 environment is required for GUI applications. * [AVS/Express](avs) * [ENVI/IDL](envi) * [Tecplot360](tecplot) * [Gaussian16 / GaussView6](gaussian16) * [Maple](maple) * [Mathematica](mathematica) * [MATLAB](matlab) * [MSC Adams](adams) * [MSC Nastran](nastran) * [MSC Patran](patran) * [MSC Marc](marc) * [MSC Marc Mentat](mentat) * [LS-DYNA](lsdyna) * [ANSYS](ansys) ## List of Available Software Available software and module file names for each system are listed. Please note that it may be delay reflecting the latest information. You can display the list by executing the module avail command on the login node. You can use software which Module File is set to "none" without additional installation. For other cases, configuration with the module load command is required. * \+ : Available (Please comply with each software license) * AU : Available for academic users only * KU : Available for Kyoto University Members only * \- : Not available <input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for names.."> [ti=software.csv type=csv id=myTable raw="true"] <script> function myFunction() { // Declare variables var input, filter, table, tr, td, i, txtValue; input = document.getElementById("myInput"); filter = input.value.toUpperCase(); table = document.getElementById("myTable"); tr = table.getElementsByTagName("tr"); // Loop through all table rows, and hide those who don't match the search query for (i = 0; i < tr.length; i++) { td = tr[i].getElementsByTagName("td")[0]; if (td) { txtValue = td.textContent || td.innerText; if (txtValue.toUpperCase().indexOf(filter) > -1) { tr[i].style.display = ""; } else { tr[i].style.display = "none"; } } } } </script>