Changes between Version 21 and Version 22 of doc/app/palmrun_quickstart


Ignore:
Timestamp:
Nov 23, 2018 9:43:07 AM (6 years ago)
Author:
kanani
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/palmrun_quickstart

    v21 v22  
    11= PALM Quickstart Guide =
    22
    3 Ideally, you have successfully installed PALM using the [wiki:doc/install/automatic automatic installer].\\ If so, the installer has
    4 * downloaded PALM from the subversion control (svn) repository into a predefined directory structure on your local PC (see Fig. 1),
    5 * created the required palmrun [wiki:doc/app/palmrun configuration file], e.g. '''.palm.config.default''' (hidden file),
    6 * pre-compiled ([wiki:doc/app/palmbuild palmbuild]) the '''UTIL'''ity programs and '''SOURCE''' code,
     3Ideally, you have successfully installed PALM using the [wiki:doc/install/automatic automatic installer]. If so, the installer has
     4* downloaded PALM from the subversion control (svn) repository into a predefined directory structure on your local computer (see Fig. 1),\\\\
     5* created the required palmrun [wiki:doc/app/palmrun configuration file], e.g. '''.palm.config.default''' (hidden file),\\\\
     6* written some environment variables to Bash configuration file {{{$HOME/.bashrc}}}
     7{{{
     8  export PATH=$HOME/palm/current_version/trunk/SCRIPTS:$PATH
     9  export PALM_BIN=$HOME/palm/current_version/trunk/SCRIPTS
     10}}}
     11* pre-compiled ([wiki:doc/app/palmbuild palmbuild]) the '''UTIL'''ity programs and '''SOURCE''' code,\\\\
    712* run some small test simulations ('''JOBS''', see Fig. 2).\\
    813
    9 {{{
    10 #!div style="align:'left'; width: 270px; border: 0px solid; float:left"
    11 [[Image(file_tree_1.png, 250px, right, margin-right=2, margin-top=0, border=0)]]\\
    12 '''Fig. 1''' Directory structure of PALM installation.
    13 }}}
    14 {{{
    15 #!div style="align:'left'; width: 270px; border: 0px solid; float:left"
    16 [[Image(file_tree_2.png, 250px, right, margin-right=2, margin-top=0, border=0)]]\\
    17 '''Fig. 2''' Directory structure of a simulation.
     14
     15{{{#!table style="border: none"
     16   {{{#!tr
     17      {{{#!td  style="border: none; width:10%" \\
     18      }}}
     19      {{{#!td style="border: none;vertical-align:top"
     20'''Fig. 1'''\\\\
     21[[Image(file_tree_1.png, 50%, left)]]
     22      }}}
     23      {{{#!td  style="border: none; width:0%" \\
     24      }}}
     25      {{{#!td style="border: none;vertical-align:top"
     26'''Fig. 2'''\\\\
     27[[Image(file_tree_2.png, 50%, left)]]\\\\
     28      }}}
     29   }}}
    1830}}}
    1931
    20 \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
     32\\
    2133Somewhere near the end of the automatic installation process, the following lines should have appeared in your terminal:\\
    2234{{{
     
    2537PALM installer finished.
    2638}}}
     39
    2740\\
    2841Further, the installer has printed an example command for starting a PALM simulation, e.g.
     
    3851}}}
    3952
    40 
    41 We have a [wiki:doc/app/palmrungui GUI] to create and submit the palmrun command (software requirements: QT4, python). Type into the terminal:
     53We have a [wiki:doc/app/palmrungui GUI] to create and submit the palmrun command (software requirements: QT4, python). Typing:
    4254{{{
    4355palmrungui
    4456}}}
    45 
     57into the terminal opens the GUI:
    4658{{{
    4759#!table style="border:none;vertical-align:top;text-align:left;width:750px"
     
    5264  }}}
    5365}}}
     66Make your selections and click '''palmrun'''. A terminal window will appear with some messages. If this doesn't work, copy and paste the command into the terminal.
    5467
    55 If this doesn't work, copy and paste the command into the terminal.
     68== Create and run a new setup ==
     69(1) Create a new directory
     70{{{
     71  cd $HOME/palm/current_version/JOBS
     72  mkdir -p <new_run_identifier>/INPUT
     73}}}
     74(2) Create a new parameter file {{{<new_run_identifier>_p3d}}} with your own parameter settings under
     75{{{
     76  $HOME/palm/current_version/JOBS/<new_run_identifier>/INPUT
     77}}}
     78(3) Submit palmrun command
     79{{{
     80  palmrun -r <new_run_identifier>  -a d3#  -c default -X 4 -T 4
     81}}}
     82(4) The [wiki:doc/app/palmrun#interactive terminal output] tells you if everything went fine, and if so, where to find the output files.