source: trunk/mesoscale/LMD_MM_MARS/prepare_ini @ 73

Last change on this file since 73 was 51, checked in by aslmd, 14 years ago

LMD_MM_MARS avec nouvelle physique entierement interfacee avec LMDZ.MARS


M mars/libf/phymars/dimradmars.h
M mars/libf/phymars/callradite.F

simples changements pour faire tourner un cas test

  • dust conrath
  • un seul traceur

un petit domaine splitting de plus

A mesoscale/TESTS/LMD_MM_MARS_FASTCASEnewphys.tar.gz

cas test du mesochelle avec la nouvelle physique
essai concluant !

M mesoscale/NOTES.txt
M mesoscale/LMD_MM_MARS/prepare_ini
M chantiers/commit_importants.log

MAJ notes

M mesoscale/LMD_MM_MARS/SRC/WRFV2/dyn_em/module_initialize_real.F

correctif pour le cas ou on tourne avec d'anciens diagfi avec 10 niveaux
dans le sol seulement. si tsoil < 20 K (disons) dans un niveau donne, alors
tsoil est regle a la temperature du niveau superieur.

D mesoscale/COMMON_GCM/gr_fi_dyn.F
D mesoscale/COMMON_GCM/diff_oldgcm_oldmeso_checked
D mesoscale/COMMON_GCM/meso_dustlift.txt
D mesoscale/COMMON_GCM/dimradmars.txt
D mesoscale/COMMON_GCM/nocompile.txt
D mesoscale/COMMON_GCM/meso_callkeys.txt
D mesoscale/COMMON_GCM/dimradmars.h

menage

  • Property svn:executable set to *
File size: 2.1 KB
Line 
1#! /bin/bash
2
3#---------------------------------------#
4# A script to install the preproc tools #
5#---------------------------------------#
6# Author: Aymeric Spiga - November 2008 #
7#---------------------------------------#
8
9
10echo "If you use new physics, few modifications will be needed"
11
12
13if [[ "${LMDMOD}" = "" ]]
14then
15    echo "No LMDMOD defined...assuming default folders"
16    LMDMOD=$PWD"/../.."
17fi
18
19
20###############
21tmpdir=$LMDMOD/TMPDIR
22lmdmeso=$LMDMOD/LMD_MM_MARS
23sourceprepmars=$lmdmeso"/SRC/PREP_MARS"
24sourcewps=$lmdmeso"/SRC/WPS"
25###############
26
27echo create tmpdir directories
28mkdir $tmpdir/WPSFEED 2> /dev/null
29mkdir $tmpdir/WRFFEED 2> /dev/null
30#mkdir $tmpdir/WRFFEED/current 2> /dev/null
31mkdir $tmpdir/GCMINI 2> /dev/null
32
33here=$PWD
34\rm -rf $here/PREP_MARS $here/WPS 2> /dev/null
35
36echo link PREP_MARS in $here
37
38mkdir $here/PREP_MARS
39cd $here/PREP_MARS
40ln -sf ${sourceprepmars}/* .
41ln -sf $tmpdir/WPSFEED .
42ln -sf $tmpdir/GCMINI/diagfi.nc input_diagfi.nc
43cd $here
44
45echo prepare WPS in $here
46
47####### done in prepare
48###cd ${sourcewps}
49###cp ${sourcewps}/wps_mars/switch_WPS_Mars ${sourcewps}
50###./switch_WPS_Mars
51
52cd ${here}
53mkdir $here/WPS
54cd ${here}/WPS
55ln -sf ${sourcewps}/compile .
56ln -sf ${sourcewps}/configure .
57ln -sf ${sourcewps}/clean .
58ln -sf ${sourcewps}/arch .
59ln -sf $tmpdir/WPSFEED .
60ln -sf $tmpdir/WRFFEED .
61
62mkdir ${here}/WPS/geogrid
63cd ${here}/WPS/geogrid
64cp -f ${sourcewps}/geogrid/GEOGRID.TBL.ARW GEOGRID.TBL
65cp -f ${sourcewps}/geogrid/Makefile .
66mkdir src
67cd src
68ln -sf ${sourcewps}/geogrid/src/* . 
69cd ${here}/WPS 
70
71mkdir ${here}/WPS/metgrid
72cd ${here}/WPS/metgrid
73cp -f ${sourcewps}/metgrid/METGRID.TBL.ARW METGRID.TBL
74cp -f ${sourcewps}/metgrid/Makefile .
75mkdir src
76cd src
77ln -sf ${sourcewps}/metgrid/src/* .
78cd ${here}/WPS
79
80#
81# examples and plots
82#
83ln -sf ${sourcewps}/wps_mars/out_geo.pro .
84ln -sf ${sourcewps}/wps_mars/namelist.wps* .
85#ln -sf ${lmdmeso}/SRC/ARWpost/idl/colorbar__define.pro .
86ln -sf ${lmdmeso}/SRC/ARWpost/idl/colorbar.pro .
87ln -sf ${lmdmeso}/SRC/ARWpost/idl/map_latlon.pro .
88
89#
90# link to static data
91#
92ln -sf ${lmdmeso}/WPS_GEOG .
93
94exit
95
96
Note: See TracBrowser for help on using the repository browser.