Wiki source code of Commercial Software
Last modified by valad on 2024/05/23 21:55
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
1.1 | 1 | We have several Commercial Software Package installed on our System. This document describes what we have and how to use them. |
2 | |||
![]() |
2.1 | 3 | {{toc/}} |
4 | |||
![]() |
1.1 | 5 | = Mathematica = |
6 | |||
![]() |
2.1 | 7 | Mathematica is an algebra system from Wolfram Research [[url:http://www.wolfram.com/]]. |
![]() |
1.1 | 8 | |
9 | Because mathematica is very expensive we only hold a limited number of 8 licenses. For fairness to other users, please close Mathematica if you don't need it. If everyone will do this, you will have not to wait for a license token. | ||
10 | |||
11 | = Maple = | ||
12 | |||
13 | Maple 2017 is available with either "xmaple" or "maple". | ||
14 | |||
15 | = Matlab = | ||
16 | |||
17 | Matlab is available in a recent version with the command "matlab". | ||
18 | |||
![]() |
3.1 | 19 | Since 1.1.2018 the university owns a Matlab campus contract. Everybody is now free to use Matlab on our integrated machine, on her/his personal laptop or at home. This includes changes in the usage policy. |
![]() |
1.1 | 20 | |
![]() |
3.1 | 21 | On our integrated machines you can still use our network license server (just start "matlab"). |
22 | |||
23 | For all other devices, licenses are only available as personal node locked licenses. Follow the HRZ documentation [[~[1~]>>url:https://www.rz.uni-frankfurt.de/69806761/Mathworks_MATLAB]] how to set this up. Support is only available from the HRZ. | ||
24 | |||
![]() |
1.1 | 25 | = Intel Compiler and MKL = |
26 | |||
27 | See [[Intel Compiler]] for details instructions, how to setup your environment. | ||
28 | |||
29 | = NAG Libraries = | ||
30 | |||
31 | The NAG libraries are installed under /home/software/NAG, accessible from all ITP machines. | ||
32 | |||
33 | Currenly we have: | ||
![]() |
2.1 | 34 | |
![]() |
1.1 | 35 | * cll6i24dcl (C Version, 64 bit integer) |
36 | * fll6a24dfl (Fortran Version) | ||
37 | |||
38 | The Libraries are not in the default library path. If you want the use them you have to set or extend the LD_LIBRARY_PATH. Run your programm like that | ||
39 | |||
![]() |
4.1 | 40 | {{code language="bash"}} |
41 | LD_LIBRARY_PATH=/home/software/NAG/cll6i24dcl/lib ./a.out | ||
42 | {{/code}} | ||
![]() |
1.1 | 43 | |
44 | if your binary is named a.out. You can put the LD_LIBRARY_PATH with an export statement in your .profile to have it always available. | ||
45 | |||
46 | The NAG Libraries are commercial software and require a valid license. Define a second environment variable pointing to the license file: | ||
47 | |||
![]() |
4.1 | 48 | {{code language="bash"}} |
49 | export NAG_KUSARI_FILE=/home/software/NAG/license.lic | ||
50 | {{/code}} | ||
![]() |
1.1 | 51 | |
52 | This can also be added to the .profile. |