Difference between revisions of "DL Poly Classic Installation"

From Supercomputación y Cálculo Científico UIS
Line 7: Line 7:
 
     <div class="panel panel-darker-white-border">  
 
     <div class="panel panel-darker-white-border">  
 
         <div class="panel-heading">
 
         <div class="panel-heading">
             <h3 class="panel-title">OpenFOAM Installation</h3>
+
             <h3 class="panel-title">DL Poly Classic Installation</h3>
 
         </div>
 
         </div>
 
         <div class="panel-body">
 
         <div class="panel-body">
             <p><b>OpenFOAM 2.3.1 over Debian 7.0</b></p>
+
             <p><b>DL Poly Classic 1.9 on Debian 7.0</b></p>
 
             <p>
 
             <p>
  
 
== Installation ==
 
== Installation ==
1. First you need to check the required packages.  They can be obtained using aptitude.  Here is a complete list for the platform:
+
1. First you need to check is Tcsh is intalled
 
{{Command|<nowiki>aptitude search build-essential
 
{{Command|<nowiki>aptitude search build-essential
aptitude search flex
+
aptitude install tcsh</nowiki>}}
aptitude search bison
+
 
aptitude search cmake
+
2. Go to and check the download instructions:
aptitude search zlib1g-dev
+
 
aptitude search libopenmpi-dev
+
http://www.ccp5.ac.uk/DL_POLY_CLASSIC/
aptitude search openmpi-bin
+
 
aptitude search qt4-dev-tools
+
 
aptitude search libqt4-dev
+
 
aptitude search libqt4-opengl-dev
+
 
aptitude search gnuplot
 
aptitude search libxt-dev
 
aptitude search freeglut3-dev
 
aptitude search libqtwebkit-dev
 
aptitude search libreadline-dev
 
aptitude search libncurses-dev</nowiki>}}
 
  
 
{{Note|<nowiki>The compilers must be:
 
{{Note|<nowiki>The compilers must be:
Line 38: Line 32:
 
{{File|/etc/profile.d/apps.sh|<pre><nowiki>
 
{{File|/etc/profile.d/apps.sh|<pre><nowiki>
 
...
 
...
export FOAM_INST_DIR=/usr/local/OpenFOAM
+
echo '#DL Poly Classic' >> gatico
foamDotFile=$FOAM_INST_DIR/OpenFOAM-2.3.1/etc/bashrc
+
echo 'export PATH=$PATH:/usr/local/dl_class_1.9' >> gatico
[ -f $foamDotFile ] && . $foamDotFile
 
 
...
 
...
 
</nowiki></pre>}}
 
</nowiki></pre>}}

Revision as of 15:49, 27 April 2015


Logo_sc33.png

DL Poly Classic Installation

DL Poly Classic 1.9 on Debian 7.0

Installation

1. First you need to check is Tcsh is intalled

aptitude search build-essential aptitude install tcsh


2. Go to and check the download instructions:

http://www.ccp5.ac.uk/DL_POLY_CLASSIC/



NOTE: The compilers must be: GCC: 4.5.0 and above; LLVM Clang: 3.4 and above; Intel ICC: 14.0.1


5. Edit /etc/profile.d/apps.sh and add the following lines. Then replicate these changes in the apps.sh file of every node.

File: /etc/profile.d/apps.sh
...
echo '#DL Poly Classic' >> gatico
echo 'export PATH=$PATH:/usr/local/dl_class_1.9' >> gatico
...