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


Ignore:
Timestamp:
Nov 23, 2018 11:38:17 AM (6 years ago)
Author:
kanani
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/palmrun_quickstart

    v22 v23  
    6666Make 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.
    6767
    68 == Create and run a new setup ==
     68== [=#create Create and run a new setup] ==
    6969(1) Create a new directory
    7070{{{
     
    8181}}}
    8282(4) The [wiki:doc/app/palmrun#interactive terminal output] tells you if everything went fine, and if so, where to find the output files.
     83
     84
     85
     86{{{#!comment
     87== How to create a new simulation set-up ==
     88
     89First give your new set-up a name to be used as the run identifier, e.g. {{{neutral}}}. Create a new parameter file and set all parameters required for defining your set-up (number of grid points, grid spacing, etc.) . You may find it more convenient to use an existing parameter file and modify it, e.g. the one which has come with the automatic installation:
     90{{{
     91   cd ~/palm/current_version
     92   mkdir -p JOBS/neutral/INPUT
     93   cp JOBS/example_cbl/INPUT/example_cbl_p3d JOBS/neutral/INPUT/neutral_p3d
     94}}}
     95Edit file {{{neutral_p3d}}} and add, delete, or change parameters. Run your new set-up with
     96{{{
     97   palmrun -r neutral -c default -X4 -a "d3#"
     98}}}
     99If the run has finished successfully, results can be found in folders {{{JOBS/neutral/MONITORING}}} and {{{JOBS/neutral/OUTPUT}}}.
     100}}}