Abaqus: Difference between revisions
No edit summary |
(Marked this version for translation) |
||
Line 2: | Line 2: | ||
__FORCETOC__ | __FORCETOC__ | ||
<translate> | <translate> | ||
<!--T:1--> | |||
[https://www.3ds.com/products-services/simulia/products/abaqus/ Abaqus FEA] is a software suite for finite element analysis and computer-aided engineering, originally released in 1978. | [https://www.3ds.com/products-services/simulia/products/abaqus/ Abaqus FEA] is a software suite for finite element analysis and computer-aided engineering, originally released in 1978. | ||
= Using your own license = | = Using your own license = <!--T:2--> | ||
Abaqus is available on Compute Canada clusters. However, you must provide your own license. You can configure your own license by creating a file <tt>$HOME/.licenses/abaqus.lic</tt> in your account, containing a single line of the syntax <tt>prepend_path("LM_LICENSE_FILE","port@server", ";")</tt>. You will need to [[Technical support|contact us]] to obtain the list of IP addresses that the license server needs to accept requests from. When you contact us, make sure to include the port and IP address of the license server so that we can configure the firewall on our side as well. Better yet, you can put us in direct contact with the technical person who manages your license server so that we can sort out details directly with them. | Abaqus is available on Compute Canada clusters. However, you must provide your own license. You can configure your own license by creating a file <tt>$HOME/.licenses/abaqus.lic</tt> in your account, containing a single line of the syntax <tt>prepend_path("LM_LICENSE_FILE","port@server", ";")</tt>. You will need to [[Technical support|contact us]] to obtain the list of IP addresses that the license server needs to accept requests from. When you contact us, make sure to include the port and IP address of the license server so that we can configure the firewall on our side as well. Better yet, you can put us in direct contact with the technical person who manages your license server so that we can sort out details directly with them. | ||
= Submission scripts = | = Submission scripts = <!--T:3--> | ||
Below is an example submission script for a small Abaqus Explicit job running on four cores: | Below is an example submission script for a small Abaqus Explicit job running on four cores: | ||
</translate> | </translate> |
Revision as of 16:03, 29 January 2019
Abaqus FEA is a software suite for finite element analysis and computer-aided engineering, originally released in 1978.
Using your own license[edit]
Abaqus is available on Compute Canada clusters. However, you must provide your own license. You can configure your own license by creating a file $HOME/.licenses/abaqus.lic in your account, containing a single line of the syntax prepend_path("LM_LICENSE_FILE","port@server", ";"). You will need to contact us to obtain the list of IP addresses that the license server needs to accept requests from. When you contact us, make sure to include the port and IP address of the license server so that we can configure the firewall on our side as well. Better yet, you can put us in direct contact with the technical person who manages your license server so that we can sort out details directly with them.
Submission scripts[edit]
Below is an example submission script for a small Abaqus Explicit job running on four cores:
#!/bin/bash
#SBATCH --time=1-00:00
#SBATCH --mem=2500M
#SBATCH --cpus-per-task=4
module load abaqus/6.14.1
unset SLURM_GTIDS
export MPI_IC_ORDER='tcp'
abaqus job=Job-SBS-ALU-EXPLICIT-01 input=2018-04-14-SBS-ALUMINUM-EXPLICIT-01.inp memory="2 gb" scratch=$SCRATCH cpus=4 interactive