diff --git a/docs.it4i/software/ansys/ansys-cfx.md b/docs.it4i/software/ansys/ansys-cfx.md new file mode 100644 index 0000000000000000000000000000000000000000..111c5e3663dd2102e1026f65fae2aeb1fbd8f599 --- /dev/null +++ b/docs.it4i/software/ansys/ansys-cfx.md @@ -0,0 +1,55 @@ +# ANSYS CFX + +[ANSYS CFX](http://www.ansys.com/products/fluids/ansys-cfx) software is a high-performance, general purpose fluid dynamics program that has been applied to solve wide-ranging fluid flow problems for over 20 years. At the heart of ANSYS CFX is its advanced solver technology, the key to achieving reliable and accurate solutions quickly and robustly. The modern, highly parallelized solver is the foundation for an abundant choice of physical models to capture virtually any type of phenomena related to fluid flow. The solver and its many physical models are wrapped in a modern, intuitive, and flexible GUI and user environment, with extensive capabilities for customization and automation using session files, scripting and a powerful expression language. + +To run ANSYS CFX in batch mode you can utilize/modify the default cfx.pbs script and execute it via the qsub command. + +```bash +#!/bin/bash +#PBS -l nodes=2:ppn=16 +#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 +#-P the name of prefered license feature (aa_r=ANSYS Academic Research, ane3fl=Multiphysics(commercial)) +/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 -P aa_r +``` + +Header of the PBS file (above) is common and description can be find on [this site](../../anselm/job-submission-and-execution/). SVS FEM recommends to utilize sources by keywords: nodes, ppn. These keywords allows to address directly the number of nodes (computers) and cores (ppn) which will be utilized in the job. Also the rest of code assumes such structure of allocated resources. + +Working directory has to be created before sending PBS job into the queue. Input file should be in working directory or full path to input file has to be specified. >Input file has to be defined by common CFX def file which is attached to the cfx solver via parameter -def + +**License** should be selected by parameter -P (Big letter **P**). Licensed products are the following: aa_r (ANSYS **Academic** Research), ane3fl (ANSYS Multiphysics)-**Commercial**. +[More about licensing here](licensing/) diff --git a/docs.it4i/software/ansys/ansys-fluent.md b/docs.it4i/software/ansys/ansys-fluent.md new file mode 100644 index 0000000000000000000000000000000000000000..74326f978d9a088b0ff523fda89d6d502b363dd0 --- /dev/null +++ b/docs.it4i/software/ansys/ansys-fluent.md @@ -0,0 +1,162 @@ +# ANSYS Fluent + +[ANSYS Fluent](http://www.ansys.com/products/fluids/ansys-fluent) +software contains the broad physical modeling capabilities needed to model flow, turbulence, heat transfer, and reactions for industrial applications ranging from air flow over an aircraft wing to combustion in a furnace, from bubble columns to oil platforms, from blood flow to semiconductor manufacturing, and from clean room design to wastewater treatment plants. Special models that give the software the ability to model in-cylinder combustion, aeroacoustics, turbomachinery, and multiphase systems have served to broaden its reach. + +## Common Way to Run Fluent Over PBS File + +To run ANSYS Fluent in batch mode you can utilize/modify the default fluent.pbs script and execute it via the qsub command. + +```bash +#!/bin/bash +#PBS -S /bin/bash +#PBS -l nodes=2:ppn=16 +#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 +``` + +Header of the pbs file (above) is common and description can be find on [this site](../../anselm/resources-allocation-policy/). [SVS FEM](http://www.svsfem.cz) recommends to utilize sources by keywords: nodes, ppn. These keywords allows to address directly the number of nodes (computers) and cores (ppn) which will be utilized in the job. Also the rest of code assumes such structure of allocated resources. + +Working directory has to be created before sending pbs job into the queue. Input file should be in working directory or full path to input file has to be specified. Input file has to be defined by common Fluent journal file which is attached to the Fluent solver via parameter -i fluent.jou + +Journal file with definition of the input geometry and boundary conditions and defined process of solution has e.g. the following structure: + +```console + /file/read-case aircraft_2m.cas.gz + /solve/init + init + /solve/iterate + 10 + /file/write-case-dat aircraft_2m-solution + /exit yes +``` + +The appropriate dimension of the problem has to be set by parameter (2d/3d). + +## Fast Way to Run Fluent From Command Line + +```console +fluent solver_version [FLUENT_options] -i journal_file -pbs +``` + +This syntax will start the ANSYS FLUENT job under PBS Professional using the qsub command in a batch manner. When resources are available, PBS Professional will start the job and return a job ID, usually in the form of _job_ID.hostname_. This job ID can then be used to query, control, or stop the job using standard PBS Professional commands, such as qstat or qdel. The job will be run out of the current working directory, and all output will be written to the file fluent.o _job_ID_. + +## Running Fluent via User's Config File + +The sample script uses a configuration file called pbs_fluent.conf if no command line arguments are present. This configuration file should be present in the directory from which the jobs are submitted (which is also the directory in which the jobs are executed). The following is an example of what the content of pbs_fluent.conf can be: + +```console +input="example_small.flin" +case="Small-1.65m.cas" +fluent_args="3d -pmyrinet" +outfile="fluent_test.out" +mpp="true" +``` + +The following is an explanation of the parameters: + +input is the name of the input file. + +case is the name of the .cas file that the input file will utilize. + +fluent_args are extra ANSYS FLUENT arguments. As shown in the previous example, you can specify the interconnect by using the -p interconnect command. The available interconnects include ethernet (the default), myrinet, infiniband, vendor, altix, and crayx. The MPI is selected automatically, based on the specified interconnect. + +outfile is the name of the file to which the standard output will be sent. + + mpp="true" will tell the job script to execute the job across multiple processors. + +To run ANSYS Fluent in batch mode with user's config file you can utilize/modify the following script and execute it via the qsub command. + +```bash +#!/bin/sh +#PBS -l nodes=2:ppn=4 +#PBS -1 qprod +#PBS -N $USE-Fluent-Project +#PBS -A XX-YY-ZZ + + cd $PBS_O_WORKDIR + + #We assume that if they didn’t specify arguments then they should use the + #config file if ["xx${input}${case}${mpp}${fluent_args}zz" = "xxzz" ]; then + if [ -f pbs_fluent.conf ]; then + . pbs_fluent.conf + else + printf "No command line arguments specified, " + printf "and no configuration file found. Exiting n" + fi + fi + + + #Augment the ANSYS FLUENT command line arguments case "$mpp" in + true) + #MPI job execution scenario + num_nodes=â€cat $PBS_NODEFILE | sort -u | wc -l†+ cpus=â€expr $num_nodes * $NCPUS†+ #Default arguments for mpp jobs, these should be changed to suit your + #needs. + fluent_args="-t${cpus} $fluent_args -cnf=$PBS_NODEFILE" + ;; + *) + #SMP case + #Default arguments for smp jobs, should be adjusted to suit your + #needs. + fluent_args="-t$NCPUS $fluent_args" + ;; + esac + #Default arguments for all jobs + fluent_args="-ssh -g -i $input $fluent_args" + + echo "---------- Going to start a fluent job with the following settings: + Input: $input + Case: $case + Output: $outfile + Fluent arguments: $fluent_args" + + #run the solver + /ansys_inc/v145/fluent/bin/fluent $fluent_args > $outfile +``` + +It runs the jobs out of the directory from which they are submitted (PBS_O_WORKDIR). + +## Running Fluent in Parralel + +Fluent could be run in parallel only under Academic Research license. To do so this ANSYS Academic Research license must be placed before ANSYS CFD license in user preferences. To make this change anslic_admin utility should be run + +```console +/ansys_inc/shared_les/licensing/lic_admin/anslic_admin +``` + +ANSLIC_ADMIN Utility will be run + + + + + + + +ANSYS Academic Research license should be moved up to the top of the list. + + diff --git a/docs.it4i/software/ansys/ansys-ls-dyna.md b/docs.it4i/software/ansys/ansys-ls-dyna.md new file mode 100644 index 0000000000000000000000000000000000000000..46a8ed726fb4da82bb743a71a98aa5e4b9f88132 --- /dev/null +++ b/docs.it4i/software/ansys/ansys-ls-dyna.md @@ -0,0 +1,55 @@ +# ANSYS LS-DYNA + +**[ANSYSLS-DYNA](http://www.ansys.com/products/structures/ansys-ls-dyna)** software provides convenient and easy-to-use access to the technology-rich, time-tested explicit solver without the need to contend with the complex input requirements of this sophisticated program. Introduced in 1996, ANSYS LS-DYNA capabilities have helped customers in numerous industries to resolve highly intricate design issues. ANSYS Mechanical users have been able take advantage of complex explicit solutions for a long time utilizing the traditional ANSYS Parametric Design Language (APDL) environment. These explicit capabilities are available to ANSYS Workbench users as well. The Workbench platform is a powerful, comprehensive, easy-to-use environment for engineering simulation. CAD import from all sources, geometry cleanup, automatic meshing, solution, parametric optimization, result visualization and comprehensive report generation are all available within a single fully interactive modern graphical user environment. + +To run ANSYS LS-DYNA in batch mode you can utilize/modify the default ansysdyna.pbs script and execute it via the qsub command. + +```bash +#!/bin/bash +#PBS -l nodes=2:ppn=16 +#PBS -q qprod +#PBS -N $USER-DYNA-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> +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` + +#! Counts the number of processors +NPROCS=`wc -l < $PBS_NODEFILE` + +echo This job has allocated $NPROCS nodes + +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 + +/ansys_inc/v145/ansys/bin/ansys145 -dis -lsdynampp i=input.k -machines $hl +``` + +Header of the PBS file (above) is common and description can be find on [this site](../../anselm/job-submission-and-execution/). [SVS FEM](http://www.svsfem.cz) recommends to utilize sources by keywords: nodes, ppn. These keywords allows to address directly the number of nodes (computers) and cores (ppn) which will be utilized in the job. Also the rest of code assumes such structure of allocated resources. + +Working directory has to be created before sending PBS job into the queue. Input file should be in working directory or full path to input file has to be specified. Input file has to be defined by common LS-DYNA .**k** file which is attached to the ANSYS solver via parameter i= diff --git a/docs.it4i/software/ansys/ansys-mechanical-apdl.md b/docs.it4i/software/ansys/ansys-mechanical-apdl.md new file mode 100644 index 0000000000000000000000000000000000000000..b33f77104100f5504e297484a586cb9a0a7e0201 --- /dev/null +++ b/docs.it4i/software/ansys/ansys-mechanical-apdl.md @@ -0,0 +1,57 @@ +# ANSYS MAPDL + +**[ANSYS Multiphysics](http://www.ansys.com/products/multiphysics)** +software offers a comprehensive product solution for both multiphysics and single-physics analysis. The product includes structural, thermal, fluid and both high- and low-frequency electromagnetic analysis. The product also contains solutions for both direct and sequentially coupled physics problems including direct coupled-field elements and the ANSYS multi-field solver. + +To run ANSYS MAPDL in batch mode you can utilize/modify the default mapdl.pbs script and execute it via the qsub command. + +```bash +#!/bin/bash +#PBS -l nodes=2:ppn=16 +#PBS -q qprod +#PBS -N $USER-ANSYS-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 + +#-i input.dat includes the input of analysis in APDL format +#-o file.out is output file from ansys where all text outputs will be redirected +#-p the name of license feature (aa_r=ANSYS Academic Research, ane3fl=Multiphysics(commercial), aa_r_dy=Academic AUTODYN) +/ansys_inc/v145/ansys/bin/ansys145 -b -dis -p aa_r -i input.dat -o file.out -machines $hl -dir $WORK_DIR +``` + +Header of the PBS file (above) is common and description can be found on [this site](../../anselm/resources-allocation-policy/). [SVS FEM](http://www.svsfem.cz) recommends to utilize sources by keywords: nodes, ppn. These keywords allow to address directly the number of nodes (computers) and cores (ppn) which will be utilized in the job. Also the rest of code assumes such structure of allocated resources. + +Working directory has to be created before sending PBS job into the queue. Input file should be in working directory or full path to input file has to be specified. Input file has to be defined by common APDL file which is attached to the ANSYS solver via parameter -i + +**License** should be selected by parameter -p. Licensed products are the following: aa_r (ANSYS **Academic** Research), ane3fl (ANSYS Multiphysics)-**Commercial**, aa_r_dy (ANSYS **Academic** AUTODYN) +[More about licensing here](licensing/) diff --git a/docs.it4i/software/ansys/ansys.md b/docs.it4i/software/ansys/ansys.md new file mode 100644 index 0000000000000000000000000000000000000000..d1def39cd2775933d56ce89a58a2cc3c87ea388c --- /dev/null +++ b/docs.it4i/software/ansys/ansys.md @@ -0,0 +1,15 @@ +# 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 commercial as well 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). [More about licensing here](licensing/) + +To load the latest version of any ANSYS product (Mechanical, Fluent, CFX, MAPDL,...) load the module: + +```console +$ ml 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). diff --git a/docs.it4i/software/ansys/licensing.md b/docs.it4i/software/ansys/licensing.md new file mode 100644 index 0000000000000000000000000000000000000000..eac78966d4b5183b2f0052d2ab6aea37f28eccc5 --- /dev/null +++ b/docs.it4i/software/ansys/licensing.md @@ -0,0 +1,25 @@ +# Licensing and Available Versions + +## ANSYS Licence Can Be Used By: + +* all persons in the carrying out of the CE IT4Innovations Project (In addition to the primary licensee, which is VSB - Technical University of Ostrava, users are CE IT4Innovations third parties - CE IT4Innovations project partners, particularly the University of Ostrava, the Brno University of Technology - Faculty of Informatics, the Silesian University in Opava, Institute of Geonics AS CR.) +* all persons who have a valid license +* students of the Technical University + +## ANSYS Academic Research + +The licence intended to be used for science and research, publications, students’ projects (academic licence). + +## ANSYS COM + +The licence intended to be used for science and research, publications, students’ projects, commercial research with no commercial use restrictions. + +## Available Versions + +* 16.1 +* 17.0 +* 18.0 + +## License Preferences + +Please [see this page to set license preferences](setting-license-preferences/). diff --git a/docs.it4i/software/ansys/ls-dyna.md b/docs.it4i/software/ansys/ls-dyna.md new file mode 100644 index 0000000000000000000000000000000000000000..3bd9deef62ba5ac1456c992f3a7ed74ddc034eff --- /dev/null +++ b/docs.it4i/software/ansys/ls-dyna.md @@ -0,0 +1,35 @@ +# LS-DYNA + +[LS-DYNA](http://www.lstc.com/) is a multi-purpose, explicit and implicit finite element program used to analyze the nonlinear dynamic response of structures. Its fully automated contact analysis capability, a wide range of constitutive models to simulate a whole range of engineering materials (steels, composites, foams, concrete, etc.), error-checking features and the high scalability have enabled users worldwide to solve successfully many complex problems. Additionally LS-DYNA is extensively used to simulate impacts on structures from drop tests, underwater shock, explosions or high-velocity impacts. Explosive forming, process engineering, accident reconstruction, vehicle dynamics, thermal brake disc analysis or nuclear safety are further areas in the broad range of possible applications. In leading-edge research LS-DYNA is used to investigate the behavior of materials like composites, ceramics, concrete, or wood. Moreover, it is used in biomechanics, human modeling, molecular structures, casting, forging, or virtual testing. + +Anselm provides **1 commercial license of LS-DYNA without HPC** support now. + +To run LS-DYNA in batch mode you can utilize/modify the default lsdyna.pbs script and execute it via the qsub command. + +```bash +#!/bin/bash +#PBS -l nodes=1:ppn=16 +#PBS -q qprod +#PBS -N $USER-LSDYNA-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` + +module load lsdyna + +/apps/engineering/lsdyna/lsdyna700s i=input.k +``` + +Header of the PBS file (above) is common and description can be find on [this site](../../anselm/job-submission-and-execution/). [SVS FEM](http://www.svsfem.cz) recommends to utilize sources by keywords: nodes, ppn. These keywords allows to address directly the number of nodes (computers) and cores (ppn) which will be utilized in the job. Also the rest of code assumes such structure of allocated resources. + +Working directory has to be created before sending PBS job into the queue. Input file should be in working directory or full path to input file has to be specified. Input file has to be defined by common LS-DYNA **.k** file which is attached to the LS-DYNA solver via parameter i= diff --git a/docs.it4i/software/ansys/setting-license-preferences.md b/docs.it4i/software/ansys/setting-license-preferences.md new file mode 100644 index 0000000000000000000000000000000000000000..74234c028d9068a3978dd5a4bd0ef70c8d47be8a --- /dev/null +++ b/docs.it4i/software/ansys/setting-license-preferences.md @@ -0,0 +1,23 @@ +# Setting license preferences + +Some ANSYS tools allow you to explicitly specify usage of academic or commercial licenses in the command line (eg. ansys161 -p aa_r to select Academic Research license). However, we have observed that not all tools obey this option and choose commercial license. + +Thus you need to configure preferred license order with ANSLIC_ADMIN. Please follow these steps and move Academic Research license to the top or bottom of the list accordingly. + +Launch the ANSLIC_ADMIN utility in a graphical environment: + +```console +$ANSYSLIC_DIR/lic_admin/anslic_admin +``` + +ANSLIC_ADMIN Utility will be run + + + + + + + +ANSYS Academic Research license should be moved up to the top or down to the bottom of the list. + + diff --git a/docs.it4i/software/ansys/workbench.md b/docs.it4i/software/ansys/workbench.md new file mode 100644 index 0000000000000000000000000000000000000000..0cd523838cc5a4367d3439354e20b1a3caa9fca7 --- /dev/null +++ b/docs.it4i/software/ansys/workbench.md @@ -0,0 +1,62 @@ +# Workbench + +## Workbench Batch Mode + +It is possible to run Workbench scripts in batch mode. You need to configure solvers of individual components to run in parallel mode. Open your project in Workbench. Then, for example, in Mechanical, go to Tools - Solve Process Settings ... + + + +Enable Distribute Solution checkbox and enter number of cores (eg. 48 to run on two Salomon nodes). If you want the job to run on more then 1 node, you must also provide a so called MPI appfile. In the Additional Command Line Arguments input field, enter: + +```console + -mpifile /path/to/my/job/mpifile.txt +``` + +Where /path/to/my/job is the directory where your project is saved. We will create the file mpifile.txt programatically later in the batch script. For more information, refer to \*ANSYS Mechanical APDL Parallel Processing\* \*Guide\*. + +Now, save the project and close Workbench. We will use this script to launch the job: + +```bash + #!/bin/bash + #PBS -l select=2:ncpus=24 + #PBS -q qprod + #PBS -N test9_mpi_2 + #PBS -A OPEN-0-0 + + # Mail to user when job terminate or abort + #PBS -m a + + # change the working directory + WORK_DIR="$PBS_O_WORKDIR" + cd $WORK_DIR + + echo Running on host `hostname` + echo Time is `date` + echo Directory is `pwd` + echo This jobs runs on the following nodes: + echo `cat $PBS_NODEFILE` + + module load ANSYS + + #### Set number of processors per host listing + procs_per_host=24 + #### Create MPI appfile + echo -n "" > mpifile.txt + for host in `cat $PBS_NODEFILE` + do + echo "-h $host -np $procs_per_host $ANSYS160_DIR/bin/ansysdis161 -dis" > mpifile.txt + done + + #-i input.dat includes the input of analysis in APDL format + #-o file.out is output file from ansys where all text outputs will be redirected + #-p the name of license feature (aa_r=ANSYS Academic Research, ane3fl=Multiphysics(commercial), aa_r_dy=Academic AUTODYN) + + # prevent using scsif0 interface on accelerated nodes + export MPI_IC_ORDER="UDAPL" + # spawn remote process using SSH (default is RSH) + export MPI_REMSH="/usr/bin/ssh" + + runwb2 -R jou6.wbjn -B -F test9.wbpj +``` + +The solver settings are saved in file solvehandlers.xml, which is not located in the project directory. Verify your solved settings when uploading a project from your local computer. diff --git a/mkdocs.yml b/mkdocs.yml index f1894ac21345e179373ce577960c1e5f2b2f818d..d69a57f28f9da96cddba9b6cacfaa479dea583c5 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -58,6 +58,16 @@ pages: - Remote Visualization: anselm/remote-visualization.md - PRACE User Support: anselm/prace.md - 'Software': + - 'ANSYS': + - Introduction: software/ansys/ansys.md + - ANSYS CFX: software/ansys/ansys-cfx.md + - ANSYS Fluent: software/ansys/ansys-fluent.md + - ANSYS LS-DYNA: software/ansys/ansys-ls-dyna.md + - ANSYS MAPDL: software/ansys/ansys-mechanical-apdl.md + - LS-DYNA: software/ansys/ls-dyna.md + - Workbench: software/ansys/workbench.md + - Setting License Preferences: software/ansys/licensing.md + - Licensing and Available Versions: software/ansys/setting-license-preferences.md - Bioinformatics: software/bioinformatics.md - 'COMSOL': - COMSOL: software/comsol/comsol-multiphysics.md @@ -89,15 +99,6 @@ pages: - 'Machine learning': - Introduction: salomon/software/machine-learning/introduction.md - TensorFlow: salomon/software/machine-learning/tensorflow.md - - 'ANSYS': - - Introduction: salomon/software/ansys/ansys.md - - ANSYS CFX: salomon/software/ansys/ansys-cfx.md - - ANSYS Fluent: salomon/software/ansys/ansys-fluent.md - - ANSYS LS-DYNA: salomon/software/ansys/ansys-ls-dyna.md - - ANSYS MAPDL: salomon/software/ansys/ansys-mechanical-apdl.md - - Workbench: salomon/software/ansys/workbench.md - - Setting License Preferences: salomon/software/ansys/licensing.md - - Licensing and Available Versions: salomon/software/ansys/setting-license-preferences.md - Compilers: salomon/software/compilers.md - 'Debuggers': - Introduction: salomon/software/debuggers/Introduction.md @@ -129,13 +130,6 @@ pages: - 'Machine learning': - Introduction: anselm/software/machine-learning/introduction.md - TensorFlow: anselm/software/machine-learning/tensorflow.md - - 'ANSYS': - - Introduction: anselm/software/ansys/ansys.md - - ANSYS CFX: anselm/software/ansys/ansys-cfx.md - - ANSYS Fluent: anselm/software/ansys/ansys-fluent.md - - ANSYS LS-DYNA: anselm/software/ansys/ansys-ls-dyna.md - - ANSYS MAPDL: anselm/software/ansys/ansys-mechanical-apdl.md - - LS-DYNA: anselm/software/ansys/ls-dyna.md - 'Debuggers': - Allinea Forge (DDT,MAP): anselm/software/debuggers/allinea-ddt.md - Allinea Performance Reports: anselm/software/debuggers/allinea-performance-reports.md diff --git a/pathcheck.sh b/pathcheck.sh index c760ecb7151f079bc0dd155060d03d5659a330bf..932b80f6c74b02f472857e4e29c2537458e74fff 100644 --- a/pathcheck.sh +++ b/pathcheck.sh @@ -4,7 +4,7 @@ for file in $@; do -check=$(cat $file | grep -Po "\[.*?\]\([^ ]*?\)" | grep -v "#" | grep -vE "http|www|ftp|none" | sed 's/\[.*\]//g' | sed 's/[()]//g' | sed 's/\/$/.md/g') +check=$(cat $file | grep -Po "\[.*?\]\([^ ]*?\)" | grep -v "#" | grep -vE "http|@|www|ftp|none" | sed 's/\[.*\]//g' | sed 's/[()]//g' | sed 's/\/$/.md/g') if [ ! -z "$check" ]; then # echo "\n+++++ $file +++++\n" diff --git a/todelete b/todelete index 3c87aac7f0fd7d934b0cc7fd90cba6ba1db582f1..4331faf754b31735acfb86e72c442118a356581b 100644 --- a/todelete +++ b/todelete @@ -10,3 +10,17 @@ docs.it4i/salomon/software/numerical-languages/matlab.md docs.it4i/salomon/software/numerical-languages/octave.md docs.it4i/salomon/software/numerical-languages/opencoarrays.md docs.it4i/salomon/software/numerical-languages/r.md +./docs.it4i/anselm/software/ansys/ansys-cfx.md +./docs.it4i/anselm/software/ansys/ansys-fluent.md +./docs.it4i/anselm/software/ansys/ansys-ls-dyna.md +./docs.it4i/anselm/software/ansys/ansys-mechanical-apdl.md +./docs.it4i/anselm/software/ansys/ansys.md +./docs.it4i/anselm/software/ansys/ls-dyna.md +./docs.it4i/salomon/software/ansys/ansys-cfx.md +./docs.it4i/salomon/software/ansys/ansys-fluent.md +./docs.it4i/salomon/software/ansys/ansys-ls-dyna.md +./docs.it4i/salomon/software/ansys/ansys-mechanical-apdl.md +./docs.it4i/salomon/software/ansys/ansys.md +./docs.it4i/salomon/software/ansys/licensing.md +./docs.it4i/salomon/software/ansys/setting-license-preferences.md +./docs.it4i/salomon/software/ansys/workbench.md