[2696] | 1 | #!/bin/ksh |
---|
| 2 | # |
---|
[2699] | 3 | # run_kpp4palm - script for running gasphase preprocessor |
---|
| 4 | |
---|
| 5 | #------------------------------------------------------------------------------# |
---|
| 6 | # This file is part of the PALM model system. |
---|
[2696] | 7 | # |
---|
[2699] | 8 | # PALM is free software: you can redistribute it and/or modify it under the terms |
---|
| 9 | # of the GNU General Public License as published by the Free Software Foundation, |
---|
| 10 | # either version 3 of the License, or (at your option) any later version. |
---|
| 11 | # |
---|
| 12 | # PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
| 13 | # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
| 14 | # A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
| 15 | # |
---|
| 16 | # You should have received a copy of the GNU General Public License along with |
---|
| 17 | # PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
| 18 | # |
---|
[2718] | 19 | # Copyright 2017-2018 Klaus Ketelsen and MPI-CH (April 2007) |
---|
| 20 | # Copyright 2017-2018 Karlsruhe Institute of Technology |
---|
| 21 | # Copyright 2017-2018 Leibniz Universitaet Hannover |
---|
[2699] | 22 | #------------------------------------------------------------------------------# |
---|
| 23 | # |
---|
[2696] | 24 | # Current revisions: |
---|
| 25 | # ------------------ |
---|
| 26 | # |
---|
[3487] | 27 | # |
---|
[2696] | 28 | # Former revisions: |
---|
| 29 | # ----------------- |
---|
[2699] | 30 | # $Id: run_kpp4palm.ksh 3487 2018-11-05 07:18:02Z raasch $ |
---|
[3487] | 31 | # Some correctetion of comments |
---|
| 32 | # |
---|
| 33 | # 3458 2018-10-30 14:51:23Z kanani |
---|
[3298] | 34 | # passed $MECH insted of $DEFDIR to kpp4palm.ksh forkel 25. Sept. 2018 |
---|
| 35 | # re-activaded choice of deindexing method and vector mode forkel June 2018 |
---|
| 36 | # |
---|
| 37 | # 2718 2018-01-02 08:49:38Z maronga |
---|
[2699] | 38 | # Initial revision |
---|
| 39 | # |
---|
| 40 | # |
---|
[2696] | 41 | # |
---|
[2699] | 42 | # |
---|
| 43 | # Other notes: |
---|
| 44 | # ------------ |
---|
[2696] | 45 | # Small adaptations (added MECH as argument, re-introduced relative path, |
---|
| 46 | # adaption to changing kp4 to kpp4palm) |
---|
| 47 | # filename changed from run_kp4.ksh to run_kpp4palm.ksh |
---|
| 48 | # |
---|
| 49 | # Nov. 2016: Initial Version of KPP chemistry by Klaus Ketelsen |
---|
| 50 | # |
---|
| 51 | |
---|
| 52 | echo "\$1 = " $1 |
---|
| 53 | |
---|
| 54 | if [[ $1 == "clean" ]] |
---|
| 55 | then |
---|
| 56 | cd kpp |
---|
| 57 | make distclean |
---|
| 58 | cd .. |
---|
| 59 | |
---|
| 60 | cd kpp4palm |
---|
| 61 | make distclean |
---|
| 62 | cd .. |
---|
| 63 | exit |
---|
| 64 | fi |
---|
| 65 | |
---|
| 66 | export PATH=$PATH:`pwd`/kpp4palm/bin |
---|
| 67 | |
---|
| 68 | # build kpp |
---|
| 69 | |
---|
| 70 | cp mechanisms/UserRateLaws.f90 kpp/util |
---|
| 71 | cd kpp |
---|
| 72 | make |
---|
| 73 | cd .. |
---|
| 74 | |
---|
| 75 | # build kpp4palm.exe |
---|
| 76 | |
---|
| 77 | cd kpp4palm |
---|
| 78 | make install |
---|
| 79 | cd .. |
---|
| 80 | |
---|
[3298] | 81 | # run kpp4palm/bin/kpp4palm.ksh with the following Setup |
---|
| 82 | # -d DEFDIR=$OPTARG;; # directory of definition files |
---|
| 83 | # (passed as `pwd`/mechanisms/def_$MECH) |
---|
| 84 | # -m MECH="smog";; # chemical mechanism |
---|
| 85 | # (smog, simple, simplep, cbm4, phstat, passive, passive1) |
---|
| 86 | # -i DE_INDEX=2;; # deindexing method (0,1,2,3; 0=no deindexing) |
---|
| 87 | # -v MODE="-v";; # vector mode on (not working completely yet) |
---|
| 88 | # -l VLEN=$OPTARG;; # Set vector length (not working completely yet) |
---|
| 89 | # -k KEEP="NO";; # if "yes" keep Working directory |
---|
| 90 | # -u UPDT="NO";; # if "yes" update the existing f90 code in the def_MECH directory |
---|
| 91 | # # Use "YES" with care as the existing sample file is overwritten |
---|
| 92 | # |
---|
| 93 | ## Further options (not passed as changing does not make sense to change these) |
---|
| 94 | ## -f DE_INDEX_FAST="YES";; # if set, fast deindexing |
---|
| 95 | ## -o OUTDIR=$OPTARG;; # Output directory of Generated Code |
---|
| 96 | ## (`pwd`/../../../SOURCE) |
---|
| 97 | ## -p PREFIX=$OPTARG;; # Name Prefix (chem_gasphase_mod) |
---|
| 98 | ## -s KPP_SOLVER=$OPTARG;; # Name Prefix (rosenbrock) |
---|
[2696] | 99 | |
---|
| 100 | |
---|
| 101 | echo $PATH |
---|
| 102 | # use smog mechnism as default |
---|
| 103 | MECH=smog |
---|
[3298] | 104 | DEIN=2 |
---|
[2696] | 105 | |
---|
[3298] | 106 | while getopts m:i:kuvl: opt # get options |
---|
[2696] | 107 | do case $opt in |
---|
| 108 | m) MECH=$OPTARG;; # mechanism name as part of mechanisms/def_[mechanism_name] |
---|
| 109 | |
---|
[3298] | 110 | i) DEIN=$OPTARG;; # deindexing method (0,1,2,3; 0=no deindexing) |
---|
| 111 | |
---|
[2699] | 112 | k) KEEP="-k";; # keep Working directory |
---|
| 113 | |
---|
[3298] | 114 | u) UPDT="-u";; # update sample output file |
---|
| 115 | |
---|
| 116 | v) MODE="-v";; # vector mode on |
---|
| 117 | |
---|
| 118 | c) COPY="-c";; # copy output to def_MECH |
---|
| 119 | |
---|
| 120 | l) VLEN=$OPTARG;; # Set vector length |
---|
| 121 | |
---|
[2696] | 122 | \?) print ${0##*/} "unknown option:" $OPTARG |
---|
[3298] | 123 | print "USAGE: ${0##*/} [ -m mechanism_name] [ -i n (n=0,1,2,3)] [ -k] [ -u] [ -v] [ -l N (N=vector length)]" |
---|
[2696] | 124 | exit 1;; |
---|
| 125 | esac |
---|
| 126 | done |
---|
[3298] | 127 | echo Now do kpp4palm for $MECH |
---|
[2696] | 128 | |
---|
[3298] | 129 | # kpp4palm.ksh -d `pwd`/mechanisms/def_$MECH -i $DEIN $KEEP $UPDT $MODE -l $VLEN |
---|
| 130 | kpp4palm.ksh -m $MECH -i $DEIN $KEEP $UPDT $MODE -l $VLEN |
---|