Changeset 6616daf in flexpart.git


Ignore:
Timestamp:
Oct 22, 2018, 10:48:38 AM (5 years ago)
Author:
Ignacio Pisso <ip@…>
Branches:
master, 10.4.1_pesei, GFS_025, bugfixes+enhancements, dev, release-10, release-10.4.1, scaling-bug
Children:
a712161
Parents:
44322ef
Message:

changes to README and create_tarball.sh

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • README.md

    r3d04845 r6616daf  
    2121```
    2222> cd src
     23
     24change the appropriate paths to libraries in the makefile
     25
    2326> make
    2427```
     
    2629* Deployment instructions
    2730
    28    FLEXPART is a standalone executable   
     31   FLEXPART is a standalone executable 
     32   The necessary ECMWF wind fields can be obtained testing flex_ecmwf
     33   The AVAILABLE file works with the default ERA 5 retrieved winds
     34   In the winds are available in flex_ecmwf/work it should suffice to execute
     35   ./src/FLEXPART in the main directory 
    2936
    3037### Contribution guidelines ###
  • create_tarball.sh

    r6d420c3 r6616daf  
    11#!/bin/bash
    22
    3 version=10.2
    4 tarball_tmp=flexpart$version
     3#define version number
     4version=10.3beta
    55
     6# define tarball name
     7tarball_tmp=flexpart_v$version
     8
     9# clean old package
     10rm -r $tarball_tmp
     11
     12# create basic dir structure
    613mkdir $tarball_tmp
    714mkdir $tarball_tmp/src
     15
     16# copy fortran source files
    817cp src/*.f90 $tarball_tmp/src
     18cp -r src/gributils $tarball_tmp/src
     19
     20# copy makefile
    921cp src/makefile $tarball_tmp/src
    10 cp src/makefile.gfs $tarball_tmp/src
    11 cp -r options $tarball_tmp
     22#cp src/makefile.gfs $tarball_tmp/src
     23
     24# copy default options (for the distribution they work with the defult flex_ecmwf test winds)
     25# cp -r options $tarball_tmp
     26cp -r options_flex_ecmwf_EA $tarball_tmp/options
     27
     28# copy default pathnames
     29cp pathnames_distribution $tarball_tmp/pathnames
     30
     31
     32# add ECMWF retrieve routines
     33mkdir $tarball_tmp/preprocess
     34#mkdir $tarball_tmp/preprocess/flex_ecmwf
     35mkdir $tarball_tmp/preprocess/flex_extract
     36#cp -r flex_ecmwf_src/* $tarball_tmp/preprocess/flex_ecmwf/
     37cp -r flex_ecmwf_src/* $tarball_tmp/preprocess/flex_extract/
     38
     39# copy default AVAILABLE
     40cp AVAILABLE_flex_ecmwf_EA $tarball_tmp/AVAILABLE
     41
     42
     43# directory for reading routines
     44mkdir $tarball_tmp/postprocess
     45
     46# add fortran reading routines
     47mkdir $tarball_tmp/postprocess/flex_read_fortran
     48cp postprocess/flex_read_fortran/*.f $tarball_tmp/postprocess/flex_read_fortran
     49cp postprocess/flex_read_fortran/*.f90 $tarball_tmp/postprocess/flex_read_fortran
     50cp postprocess/flex_read_fortran/makefile $tarball_tmp/postprocess/flex_read_fortran
     51
     52# add matlab reading routines
     53mkdir $tarball_tmp/postprocess/flex_read_matlab
     54cp postprocess/flex_read_matlab/*.m $tarball_tmp/postprocess/flex_read_matlab
     55
     56# examples
     57cp -r examples $tarball_tmp/
     58
    1259
    1360mkdir $tarball_tmp/tests
     61
    1462cp -r tests/NILU/test_1 $tarball_tmp/tests/
     63cp -r tests/flex_gen_cases $tarball_tmp/tests/
     64
    1565
    1666#return
    1767
    18 tar -cvf flexpart$version.tar $tarball_tmp/*
    19 
     68#tar -cvf flexpart$version.tar $tarball_tmp/*
     69echo now can run:  "tar -cvf $tarball_tmp.tar $tarball_tmp/*"
     70echo preliminary: scp flexpart_v10.3beta.tar njord:public_html/FLEXPART
Note: See TracChangeset for help on using the changeset viewer.
hosted by ZAMG