source: trunk/MESOSCALE/LMDZ.MARS.new/in_lmdz_mars_newphys/compile @ 226

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

MESOSCALE/LMDZ.MARS.new
--> modified to impact last changes

MESOSCALE/LMD_MM_MARS/makemeso
MESOSCALE/LMD_MM_MARS/SRC/WRFV2/call_meso_physiq?.inc
MESOSCALE/LMD_MM_MARS/SRC/WRFV2/call_meso_inifis?.inc
MESOSCALE/LMD_MM_MARS/SRC/WRFV2/phys/module_lmd_driver.F
--> modified to get rid of ecri_phys

and make changes related to meso_physiq and meso_inifis

LMDZ.MARS/libf/phymars
--> see LMDZ.MARS/README

15/07/2011 == AS

  • Modified the mesoscale part so that the previous change by EM does not imply an error in the mesoscale case. More development is needed though to get the "varying z0" capability in the mesoscale model.
  • Worked on versions of meso_physiq and meso_inifis as close as possible to physiq and inifis for more continuity in the process of impacting changes (and even possibly to reach a common version of physiq and inifis).

    The main point is to make the mesoscale significant specific parts

    coded into include files in meso_inc so that meso_physiq and meso_inifis looks very close to physiq and inifis.

    This is completely transparent for GCM users who does not need the

    contents of meso_inc.
  • Slight cosmetic changes to physiq.f and inifis.F --- some of them e.g. to prepare convergence between meso_physiq and physiq
  • Property svn:executable set to *
File size: 1.1 KB
Line 
1#! /bin/bash
2
3## changer eventuellement le callphys.def egalement
4
5##################
6tracers=2
7nx=64
8ny=48
9nz=32
10##################
11tracers=1
12nx=64
13ny=48
14nz=25
15##################
16tracers=1
17nx=64
18ny=48
19nz=18
20##################
21#tracers=1
22#nx=64
23#ny=48
24#nz=32
25##################
26tracers=5
27nx=64
28ny=48
29nz=25
30##################
31tracers=2
32nx=64
33ny=48
34nz=25
35##################
36
37
38
39
40# GCM environment variables
41#--------------------------
42export LMDGCM=$PWD
43export LIBOGCM=$PWD/libo
44
45echo $LMDGCM
46echo $LIBOGCM
47echo $NCDFLIB
48echo $NCDFINC
49
50#rm -rf libo
51mkdir libo
52touch libo/log_compile_newstart
53touch libo/log_compile_gcm
54
55echo bricolo
56\rm libf/grid/dimensions.h 2> /dev/null
57
58echo compile newstart
59echo check in $PWD/libo/log_compile_newstart
60makegcm -t ${tracers} -p mars -d ${nx}x${ny}x${nz} newstart | tee libo/log_compile_newstart | grep 'warnings' >> libo/log_compile_newstart
61
62echo compile gcm
63echo check in $PWD/libo/log_compile_gcm
64makegcm -t ${tracers} -p mars -d ${nx}x${ny}x${nz} gcm | tee libo/log_compile_gcm | grep 'warnings' >> libo/log_compile_gcm
65
66echo well, OK.
67
68
Note: See TracBrowser for help on using the repository browser.