Tagged: 19, autodyn, AUTODYN - SYS, HPC/Parallel, Installation/Licensing/Systems, N/A, pbs, script
-
-
January 25, 2023 at 7:28 am
FAQ
ParticipantAUTODYN reads a text file named parallel.cfg which defines compute nodes and cores (tasks) to run in parallel on single or multiple Linux machines. A PBS Pro job script should write compute nodes and cores information from job environment variable PBS_NODEFILE to parallel.cfg file, to start AUTODYN solver in parallel. Below is an example PBS Pro job script for AUTODYN. Run qsub to submit the job. #!/bin/bash # job name #PBS -N autodyn-190 # number of compute nodes and number of CPU cores per node #PBS -l nodes=2:ppn=4 # AUTODYN version REVN=190 # change to job submission directory cd $PBS_O_WORKDIR # create head lines of parallel.cfg echo “#@EPDEF=/apps/ansys_inc/v$REVN/autodyn/bin/linx64” > parallel.cfg echo “#@PPDEF office” >> parallel.cfg echo “#@PPCFG office” >> parallel.cfg # get MachinesCores from PBS_NODEFILE in format of host1:N:host2:N MachinesCores=`uniq -c ${PBS_NODEFILE} | awk ‘{print $2 “:” $1}’ | paste -s -d ‘:’` # print hostname and relative speed in first line, then memory size, number of CPU cores used and number of tasks (usually equal to CPU cores used) in seconds line for each allotted compute node OIFS=$IFS; IFS=”:”; MachinesCoresArray=($MachinesCores); for ((i=0; i<${#MachinesCoresArray[@]}; ++i)); do if [[ $((i % 2)) -eq 0 ]]; then echo "${MachinesCoresArray[i]} sp=1000" >> parallel.cfg echo “#@ mem=100000 cpu=${MachinesCoresArray[i+1]} task=${MachinesCoresArray[i+1]}” >> parallel.cfg fi done FS=$OIFS; # Start AUTODYN solver by specifying input file. It reads parallel.cfg automatically to run in parallel. /apps/ansys_inc/v$REVN/autodyn/bin/autodyn$REVN -I impact-analysis.
-

Introducing Ansys Electronics Desktop on Ansys Cloud
The Watch & Learn video article provides an overview of cloud computing from Electronics Desktop and details the product licenses and subscriptions to ANSYS Cloud Service that are...

How to Create a Reflector for a Center High-Mounted Stop Lamp (CHMSL)
This video article demonstrates how to create a reflector for a center high-mounted stop lamp. Optical Part design in Ansys SPEOS enables the design and validation of multiple...

Introducing the GEKO Turbulence Model in Ansys Fluent
The GEKO (GEneralized K-Omega) turbulence model offers a flexible, robust, general-purpose approach to RANS turbulence modeling. Introducing 2 videos: Part 1 provides background information on the model and a...

Postprocessing on Ansys EnSight
This video demonstrates exporting data from Fluent in EnSight Case Gold format, and it reviews the basic postprocessing capabilities of EnSight.
- When I am trying to launch Fluent, the GUI is stuck at this message. Host spawning Node 0 on machine “abcd-pc” (win64) There is no error. Same problem in serial mode I am not connected to VPN.
- Unexpected error: The following required addins could not be loaded: Ans.SceneGraphChart.scencegraphaddin. The software will exit
- Ansys Licensing: Managing Activations
- FLEXnet Licensing Error -96: Error getting status: License server machine is down or not responding. (-96,7:11001 “WinSock: Host not found (HOST_NOT_FOUND)”) ansyslmd: The desired vendor daemon is down. (-97,121)
- Installing ANSYS License Manager on Windows
- 2019R1 Workbench Fluent design point update (foreground in Solution and foreground in Parameter Set) stuck at end of 1st DP and doesn’t proceed to next DP. Fluent processes could not be terminated after iterations and cas/dat files are written in 1st DP.
- Unable to start the Geometry or Mechanical Editor (Linux)
© 2023 Copyright ANSYS, Inc. All rights reserved.