Skip to content
Snippets Groups Projects
Commit 3d23514a authored by Lukáš Krupčík's avatar Lukáš Krupčík
Browse files

add .md files

parent a621a1ab
No related branches found
No related tags found
5 merge requests!368Update prace.md to document the change from qprace to qprod as the default...,!367Update prace.md to document the change from qprace to qprod as the default...,!366Update prace.md to document the change from qprace to qprod as the default...,!323extended-acls-storage-section,!1add .md files
Pipeline #
Showing
with 902 additions and 0 deletions
Overview of ANSYS Products
==========================
**[SVS FEM](http://www.svsfem.cz/)** as ***[ANSYS
Channel partner](http://www.ansys.com/)*** for Czech
Republic provided all ANSYS licenses for ANSELM cluster and supports of
all ANSYS Products (Multiphysics, Mechanical, MAPDL, CFX, Fluent,
Maxwell, LS-DYNA...) to IT staff and ANSYS users. If you are challenging
to problem of ANSYS functionality contact
please [hotline@svsfem.cz](mailto:hotline@svsfem.cz?subject=Ostrava%20-%20ANSELM)
Anselm provides as commercial as academic variants. Academic variants
are distinguished by "**Academic...**" word in the name of license or
by two letter preposition "**aa_**" in the license feature name. Change
of license is realized on command line respectively directly in user's
pbs file (see individual products). [<span id="result_box"
class="short_text"><span class="hps">More</span> <span class="hps">about
licensing</span> <span
class="hps">here</span></span>](https://docs.it4i.cz/anselm-cluster-documentation/software/ansys/licensing)
To load the latest version of any ANSYS product (Mechanical, Fluent,
CFX, MAPDL,...) load the module:
$ module load ansys
ANSYS supports interactive regime, but due to assumed solution of
extremely difficult tasks it is not recommended.
If user needs to work in interactive regime we recommend to configure
the RSM service on the client machine which allows to forward the
solution to the Anselm directly from the client's Workbench project
(see ANSYS RSM service).
docs.it4i.cz/anselm-cluster-documentation/software/ansys/Fluent_Licence_1.jpg

75.8 KiB

docs.it4i.cz/anselm-cluster-documentation/software/ansys/Fluent_Licence_2.jpg

76.6 KiB

docs.it4i.cz/anselm-cluster-documentation/software/ansys/Fluent_Licence_3.jpg

116 KiB

docs.it4i.cz/anselm-cluster-documentation/software/ansys/Fluent_Licence_4.jpg

71.5 KiB

#!/bin/bash
#PBS -l nodes=2:ppn=4
#PBS -q qprod
#PBS -N $USER-CFX-Project
#PBS -A XX-YY-ZZ
#! Mail to user when job terminate or abort
#PBS -m ae
#!change the working directory (default is home directory)
#cd <working directory> (working directory must exists)
WORK_DIR="/scratch/$USER/work"
cd $WORK_DIR
echo Running on host `hostname`
echo Time is `date`
echo Directory is `pwd`
echo This jobs runs on the following processors:
echo `cat $PBS_NODEFILE`
module load ansys
#### Set number of processors per host listing
#### (set to 1 as $PBS_NODEFILE lists each node twice if :ppn=2)
procs_per_host=1
#### Create host list
hl=""
for host in `cat $PBS_NODEFILE`
do
if [ "$hl" = "" ]
then hl="$host:$procs_per_host"
else hl="${hl}:$host:$procs_per_host"
fi
done
echo Machines: $hl
#-dev input.def includes the input of CFX analysis in DEF format
/ansys_inc/v145/CFX/bin/cfx5solve -def input.def -size 4 -size-ni 4x -part-large -start-method "Platform MPI Distributed Parallel" -par-dist $hl
#!/bin/bash
#PBS -l nodes=2:ppn=4
#PBS -q qprod
#PBS -N $USER-CFX-Project
#PBS -A XX-YY-ZZ
#! Mail to user when job terminate or abort
#PBS -m ae
#!change the working directory (default is home directory)
#cd <working directory> (working directory must exists)
WORK_DIR="/scratch/$USER/work"
cd $WORK_DIR
echo Running on host `hostname`
echo Time is `date`
echo Directory is `pwd`
echo This jobs runs on the following processors:
echo `cat $PBS_NODEFILE`
module load ansys
#### Set number of processors per host listing
#### (set to 1 as $PBS_NODEFILE lists each node twice if :ppn=2)
procs_per_host=1
#### Create host list
hl=""
for host in `cat $PBS_NODEFILE`
do
if [ "$hl" = "" ]
then hl="$host:$procs_per_host"
else hl="${hl}:$host:$procs_per_host"
fi
done
echo Machines: $hl
#-dev input.def includes the input of CFX analysis in DEF format
/ansys_inc/v145/CFX/bin/cfx5solve -def input.def -size 4 -size-ni 4x -part-large -start-method "Platform MPI Distributed Parallel" -par-dist $hl
This diff is collapsed.
#!/bin/bash
#PBS -S /bin/bash
#PBS -l nodes=2:ppn=4
#PBS -q qprod
#PBS -N $USER-Fluent-Project
#PBS -A XX-YY-ZZ
#! Mail to user when job terminate or abort
#PBS -m ae
#!change the working directory (default is home directory)
#cd <working directory> (working directory must exists)
WORK_DIR="/scratch/$USER/work"
cd $WORK_DIR
echo Running on host `hostname`
echo Time is `date`
echo Directory is `pwd`
echo This jobs runs on the following processors:
echo `cat $PBS_NODEFILE`
#### Load ansys module so that we find the cfx5solve command
module load ansys
# Use following line to specify MPI for message-passing instead
NCORES=`wc -l $PBS_NODEFILE |awk '{print $1}'`
/ansys_inc/v145/fluent/bin/fluent 3d -t$NCORES -cnf=$PBS_NODEFILE -g -i fluent.jou
\ No newline at end of file
#!/bin/bash
#PBS -S /bin/bash
#PBS -l nodes=2:ppn=4
#PBS -q qprod
#PBS -N $USER-Fluent-Project
#PBS -A XX-YY-ZZ
#! Mail to user when job terminate or abort
#PBS -m ae
#!change the working directory (default is home directory)
#cd <working directory> (working directory must exists)
WORK_DIR="/scratch/$USER/work"
cd $WORK_DIR
echo Running on host `hostname`
echo Time is `date`
echo Directory is `pwd`
echo This jobs runs on the following processors:
echo `cat $PBS_NODEFILE`
#### Load ansys module so that we find the cfx5solve command
module load ansys
# Use following line to specify MPI for message-passing instead
NCORES=`wc -l $PBS_NODEFILE |awk '{print $1}'`
/ansys_inc/v145/fluent/bin/fluent 3d -t$NCORES -cnf=$PBS_NODEFILE -g -i fluent.jou
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment