1 | \chapter{Preprocessing utilities}\label{zepreproc} |
---|
2 | |
---|
3 | \vk |
---|
4 | In this chapter, we describe the installation and use of the preprocessing tools to define the domain of simulation, calculate an initial atmospheric state and prepare the boundary conditions for the chosen simulation season and time of day. This corresponds to steps 1,2,3 as defined in section~\ref{steps}. These operations would eventually allow you to run your own simulations at the specific season and region you are interested in, with a complete ability to modify any of the parameters in \ttt{namelist.input}, including the ones labelled with~\ttt{(p1)}, \ttt{(p2)} or \ttt{(p3)}. |
---|
5 | |
---|
6 | \mk |
---|
7 | \section{Installing the preprocessing utilities} |
---|
8 | |
---|
9 | \sk |
---|
10 | The compilation operations indicated here need to be done only once on a given system. |
---|
11 | |
---|
12 | \sk |
---|
13 | \subsection{Prerequisites} |
---|
14 | |
---|
15 | \sk |
---|
16 | First and foremost, since the preprocessing utilities could generate (or involve) files of quite significant sizes, it is necessary to define a directory where these files would be stored. Such a directory (e.g. \ttt{/bigdisk/user}) must be linked with the name \ttt{\$TMPDIR} as follows. In addition, three directories \ttt{GCMINI}, \ttt{WPSFEED}, \ttt{WRFFEED} have to be defined in \ttt{\$MESO/TMPDIR} as indicated below. |
---|
17 | |
---|
18 | \begin{verbatim} |
---|
19 | ln -sf /bigdisk/user $MESO/TMPDIR |
---|
20 | mkdir $MESO/TMPDIR/GCMINI |
---|
21 | mkdir $MESO/TMPDIR/WPSFEED |
---|
22 | mkdir $MESO/TMPDIR/WRFFEED |
---|
23 | \end{verbatim} |
---|
24 | |
---|
25 | \sk |
---|
26 | A second prerequisite to the installation of the preprocessing tools is that the LMD Martian Mesoscale Model was compiled at least once. If this is not the case, please compile the model with the \ttt{makemeso} command described in section~\ref{sc:makemeso}. The compilation process created an installation directory adapted to your particular choice of compiler$+$machine (what we named \ttt{your\_compdir} for illustration in section~\ref{sc:makemeso}, which could be for instance \ttt{g95\_32\_single}). The preprocessing tools will also be installed in this directory. Please type the following commands: |
---|
27 | |
---|
28 | \begin{verbatim} |
---|
29 | cd $MMM/g95_32_single/ ## or any of your install directory |
---|
30 | ln -sf ../SRC/SCRIPTS/prepare_ini . |
---|
31 | ./prepare_ini |
---|
32 | \end{verbatim} |
---|
33 | |
---|
34 | \sk |
---|
35 | \subsection{Compiling preprocessing utilities} |
---|
36 | |
---|
37 | \sk |
---|
38 | The script \ttt{prepare\_ini} plays for the preprocessing tools a similar role as the \ttt{copy\_model} with the model sources: files are simply linked to their actual location in the \ttt{SRC} folder. Once you have executed \ttt{prepare\_ini}, please check that two folders were generated: \ttt{PREP\_MARS} and \ttt{WPS}. In the \ttt{PREP\_MARS} directory, please compile the programs \ttt{create\_readmeteo.exe} and \ttt{readmeteo.exe}, using the compiler mentionned in the name of the current installation directory. In the \ttt{WPS} directory, please compile the programs \ttt{geogrid.exe} and \ttt{metgrid.exe}. |
---|
39 | |
---|
40 | \begin{verbatim} |
---|
41 | echo $PWD |
---|
42 | cd PREP_MARS/ |
---|
43 | ./compile [or] ./compile_g95 ## the first script compiles with pgf90 |
---|
44 | ## the second script compiles with g95 |
---|
45 | ## scripts can be easily adapted to, e.g., ifort |
---|
46 | ls -lt create_readmeteo.exe readmeteo.exe |
---|
47 | cd .. |
---|
48 | cd WPS/ |
---|
49 | ./configure ## select your compiler + 'NO GRIB2' option |
---|
50 | ./compile |
---|
51 | ls -lt geogrid.exe metgrid.exe |
---|
52 | \end{verbatim} |
---|
53 | |
---|
54 | \sk |
---|
55 | Apart from the executables just compiled, the preprocessing utilities include \ttt{real.exe}, which was compiled by the \ttt{makemeso} script along with the mesoscale model executable \ttt{wrf.exe}\footnote{Even though the name of the executable reads e.g. \ttt{real\_x61\_y61\_z61\_d1\_t1\_p1.exe}, such program is not related to the specific \ttt{makemeso} parameters -- contrary to the \ttt{wrf.exe} executable. We just found that renaming the (possibly similar if the model sources were not modified) \ttt{real.exe} was a practical way not to confuse between executables compiled at different moments.}. \ttt{real.exe} should be copied or linked in the simulation directory (e.g. \ttt{TESTCASE} for the Arsia Mons test case) to be at the same level than \ttt{namelist.input}. |
---|
56 | |
---|
57 | \sk |
---|
58 | \subsection{Preparing input static data} |
---|
59 | |
---|
60 | \sk |
---|
61 | All the static data (topography, thermal inertia, albedo) needed to initialize the model are included in the \ttt{\$MMM/WPS\_GEOG} directory. By default, only coarse-resolution datasets\footnote{ Corresponding to the fields stored in the file \ttt{surface.nc} known by LMD-MGCM users: \url{http://web.lmd.jussieu.fr/~forget/datagcm/datafile/surface.nc} } are available, but the directory also contains sources and scripts to install finer resolution datasets: 32 and/or 64 pixel-per-degree (ppd) MOLA topography (\ttt{mola\_topo32} and \ttt{mola\_topo64}), 8 ppd MGS/Thermal Emission Spectrometer (TES) albedo (\ttt{albedo\_TES}), 20 ppd TES thermal inertia (\ttt{thermal\_TES}). The role of the \ttt{build\_static} script is to automatically download these datasets from the web (namely PDS archives) and convert them to an acceptable format for a future use by the preprocessing utilities: |
---|
62 | |
---|
63 | \begin{verbatim} |
---|
64 | cd $MMM |
---|
65 | ./SRC/SCRIPTS/build_static |
---|
66 | \end{verbatim} |
---|
67 | |
---|
68 | \sk |
---|
69 | \begin{finger} |
---|
70 | \item Please install the \ttt{octave} free software\footnote{ Available at \url{http://www.gnu.org/software/octave} } on your system to execute the \ttt{build\_static} script\footnote{ Another solution is to browse into each of the directories within \ttt{WPS\_GEOG/res}, download the data with the shell scripts and execute the \ttt{.m} scripts with either \ttt{octave} or the commercial software \ttt{matlab} (just replace \ttt{\#} by \ttt{\%}). }. |
---|
71 | \item Building the MOLA 64ppd database can be quite long; hence this is not performed by default by the \ttt{build\_static} script. If you would like to build this database, please remove the \ttt{exit} command in the script, just above the commands related to the MOLA 64ppd. |
---|
72 | \item If you do not manage to execute the \ttt{build\_static} script, ready-to-use datafiles can be found in the link \url{ftp://ftp.lmd.jussieu.fr/pub/aslmd} and must be extracted in \ttt{\$MMM/WPS\_GEOG}. |
---|
73 | \item The resulting \ttt{WPS\_GEOG} can reach a size of several hundreds of Mo. You might move such a folder in a place with more disk space available and define a link named~\ttt{WPS\_GEOG} in \ttt{\$MMM}. |
---|
74 | \end{finger} |
---|
75 | |
---|
76 | \sk |
---|
77 | \subsection{Compiling the GCM for initial and boundary conditions} |
---|
78 | |
---|
79 | \sk |
---|
80 | The LMD Martian GCM is supposed to be run to compute meteorological fields that will be used as initial and boundary conditions each one or two Martian hours to the limited-area LMD Martian Mesoscale Model. Hence the LMD Martian GCM must be compiled in your system (see the LMD-MGCM user manual for further details \url{http://web.lmd.jussieu.fr/~forget/datagcm/user_manual.pdf}). If you did not get the model using the \ttt{svn} method, please request us to send you an archive containing the LMD-MGCM named \ttt{LMDZ.MARS.meso.tar.gz}, which you have to extract in the \ttt{\$MESO} directory. If you got the model using \ttt{svn}, you do not have to request this file. In the \ttt{\$MESO/LMDZ.MARS} directory, a script named \ttt{compile} can be found and must be used \emph{on the system you plan to run the mesoscale model on} to compile the GCM. The \ttt{compile} script is actually just a wrapper for the \ttt{makegcm} script which compile the GCM for you; the default \ttt{makegcm} script only works with Portland Group Fortran compiler \ttt{pgf90} but scripts allowing to compile the model using other Fortran compilers (including \ttt{g95} or \ttt{ifort}) are available upon request. The following commands should yield the compilation of two executables \ttt{newstart.e} and \ttt{gcm.e}: |
---|
81 | |
---|
82 | \begin{verbatim} |
---|
83 | cd $MESO/LMDZ.MARS |
---|
84 | ./compile |
---|
85 | \end{verbatim} |
---|
86 | |
---|
87 | \sk |
---|
88 | The other necessary operation to prepare the LMD-MGCM for step~1 is to store a set of initial states for the LMD-MGCM to start with -- based on previous typical LMD-MGCM runs having reached equilibrium after ten years of integration. A reference database can be found in the following online big archive~\url{ftp://ftp.lmd.jussieu.fr/pub/aslmd/STARTBASE_64_48_32_t2.tar.gz}. This archive must be extracted somewhere on a disk that would be accessible by the system you plan to run the mesoscale model on; the absolute link of the \ttt{STARTBASE\_64\_48\_32\_t2} directory on your disk must be reported in the beginning of the script~\ttt{\$MESO/LMDZ.MARS/myGCM/launch\_gcm} (variable \ttt{startbase}). If those operations went well, please try the command line~\ttt{echo 22 | launch\_gcm} which should launch the GCM integrations on your system. |
---|
89 | |
---|
90 | \mk |
---|
91 | \section{Running the preprocessing utilities} |
---|
92 | |
---|
93 | \sk |
---|
94 | \subsection{General overview} |
---|
95 | |
---|
96 | \sk |
---|
97 | When you run a simulation with \ttt{wrf.exe} (e.g. section \ref{sc:arsia}), the program attempts to read the initial state in \ttt{wrfinput\_d01} and the domain boundary conditions in \ttt{wrfbdy\_d01}. The whole chain of data conversion and interpolation needed to generate those files is summarized in the diagram on Figure~\ref{preproc}. Three distinct preprocessing steps are necessary to generate the final files (steps are numbered 1,2,3 as in section~\ref{steps}). Figure~\ref{preproc} helps to better understand the labels \ttt{(p1)}, \ttt{(p2)}, \ttt{(p3)} used to describe \ttt{namelist.input} parameters in chapter~\ref{zeparam}. For instance: |
---|
98 | \begin{finger} |
---|
99 | \item changing the season of simulation implies to re-run the LMD Mars GCM for this specific season to prepare initial and boundary conditions for the mesoscale model. Hence e.g. \ttt{start\_month} is labelled with \ttt{(p1)} because changing this in \ttt{namelist.input} requires a complete reprocessing from step~$1$ to step~$3$ to successfully launch the simulation. |
---|
100 | \item changing the number of horizontal grid points for the mesoscale domain implies to interpolate the static and GCM fields to the new domain, while no new computations on the GCM side are needed. Hence e.g. \ttt{e\_we} is labelled with \ttt{(p2)} because changing this in \ttt{namelist.input} requires a reprocessing from step~$2$ to step~$3$ to successfully launch the simulation (and also for this specific parameter recompiling with \ttt{makemeso}). |
---|
101 | \item changing the position of model top implies to interpolate initial and boundary conditions to the new vertical levels, while no horizontal re-interpolations are needed. Hence e.g. \ttt{p\_top\_requested} is labelled with \ttt{(p3)} because changing this requires a reprocessing of step~$3$. |
---|
102 | \item changing the timestep for dynamical integration does not require any change in initial and bouondary conditions. Hence e.g. \ttt{time\_step} is not labelled with \ttt{(p1)}, \ttt{(p2)} or \ttt{(p3)}. |
---|
103 | \end{finger} |
---|
104 | |
---|
105 | \begin{center} |
---|
106 | \begin{figure}[p] |
---|
107 | \includegraphics[width=0.99\textwidth]{diagramme.pdf} |
---|
108 | \caption{\label{preproc} The details of preprocessing steps and their related software and inputs/ouputs} |
---|
109 | \end{figure} |
---|
110 | \end{center} |
---|
111 | |
---|
112 | \sk |
---|
113 | \subsection{Step 1: Running the GCM and converting data} |
---|
114 | |
---|
115 | \sk |
---|
116 | Here we assume that the user has chosen a given Martian sol or $L_s$ on which to start the mesoscale simulation. As already mentionned in section~\ref{namelist}, the file \ttt{\$MMM/SIMU/calendar} (or see appendix~\ref{calendar}) can help with this choice (sol$\rightarrow$$L_s$$\rightarrow$mesoscale date and vice-versa). In addition, the user has to check which sol is before the one wanted for simulation start and has $99$ in the first column: such sols are the ones for which an initial starting file for the GCM is available. Then please set the number of GCM simulated days \ttt{nday} in \ttt{\$MESO/LMDZ.MARS/myGCM/run.def} accordingly: suppose the user you want to start a mesoscale simulation at sol~9 during 4~sols, then according to the \ttt{calendar} file, sol~8 is the closest file before sol~9 to be in the database, so \ttt{nday} must be at least~$5$. For optimal forcing at the boundaries, we advise you to write the meteorological fields to the \ttt{diagfi.nc} file at least each two hours, i.e. \ttt{ecritphy} is $40$ or~$80$ in \ttt{\$MESO/LMDZ.MARS/myGCM/run.def}. Eventually the GCM run can be launched using the following commands and should produce a netCDF data file named \ttt{diagfi.nc}\footnote{If the fields \ttt{emis}, \ttt{co2ice}, \ttt{q01}, \ttt{q02}, \ttt{tsoil} are missing in the \ttt{diagfi.nc} file, they are replaced by respective default values $0.95$, $0$, $0$, $0$, tsurf in the end of preprocessing step 1.}: |
---|
117 | |
---|
118 | \begin{verbatim} |
---|
119 | cd $MESO/LMDZ.MARS/myGCM |
---|
120 | ./launch_gcm ## answer: your desired starting sol for the simulations |
---|
121 | \end{verbatim} |
---|
122 | |
---|
123 | %\mk |
---|
124 | %\marge An example of input meteorological file |
---|
125 | %\ttt{diagfi.nc} file can be downloaded |
---|
126 | %at \url{http://web.lmd.jussieu.fr/~aslmd/LMD_MM_MARS/diagfi.nc.tar.gz}. |
---|
127 | %% |
---|
128 | %Please deflate the archive and copy the \ttt{diagfi.nc} file |
---|
129 | %in \ttt{\$MESO/TMPDIR/GCMINI}. |
---|
130 | %% |
---|
131 | %Such a file can then be used to define the initial |
---|
132 | %and boundary conditions, and we will go |
---|
133 | %through the three preprocessing steps. |
---|
134 | |
---|
135 | \sk |
---|
136 | Once the GCM simulations is finished, the programs in the \ttt{PREP\_MARS} directory allow the user to convert the data from the NETCDF \ttt{diagfi.nc} file into separated binary datafiles for each date contained in \ttt{diagfi.nc}, according to the formatting needed by the preprocessing programs at step 2. These programs can be executed by the following commands; if every went well with the conversion, |
---|
137 | the directory \ttt{\$MESO/TMPDIR/WPSFEED} should contain files named \ttt{LMD:}. |
---|
138 | |
---|
139 | \begin{verbatim} |
---|
140 | cd $MMM/your_install_dir/PREP\_MARS |
---|
141 | echo 1 | ./create_readmeteo.exe # drop the "echo 1 |" if you want control |
---|
142 | ./readmeteo.exe < readmeteo.def |
---|
143 | \end{verbatim} |
---|
144 | |
---|
145 | %%% compile_and_exec ???? |
---|
146 | |
---|
147 | \sk |
---|
148 | \subsection{Step 2: Interpolation on the regional domain} |
---|
149 | |
---|
150 | \sk |
---|
151 | \paragraph{Step 2a} In the \ttt{WPS} directory, the \ttt{geogrid.exe} program allows you to define the mesoscale simulation domain, to horizontally interpolate the topography, thermal inertia and albedo fields at the domain resolution and to calculate useful fields such as topographical slopes. Please execute the commands: |
---|
152 | |
---|
153 | \begin{verbatim} |
---|
154 | cd $MMM/your_install_dir/WPS |
---|
155 | ln -sf $MMM/TESTCASE/namelist.wps . # test case (or use your customized file) |
---|
156 | ./geogrid.exe |
---|
157 | \end{verbatim} |
---|
158 | |
---|
159 | The result of \ttt{geogrid.exe} -- and thus the definition of the mesoscale domain -- can be checked in the NETCDF file \ttt{geo\_em.d01.nc} (using for instance \ttt{ncview}, or your favorite graphical interface for netCDF files, or python-based scripts as in section~\ref{postproc}). If you are unhappy with the results or you want to change the location of the mesoscale domain on the planet, the horizontal resolution, the number of grid points \ldots, please modify the parameter file \ttt{namelist.wps}, content thereof is reproduced/commented on the next page, and execute again \ttt{geogrid.exe}. |
---|
160 | |
---|
161 | \begin{finger} |
---|
162 | \item No input meteorological data are actually needed to execute \ttt{geogrid.exe}. This step~2a can be achieved/prepared e.g. before step~1. It is probably a good idea to prepare step~2 by choosing the mesoscale simulation domain, while GCM computations are done in step~1. |
---|
163 | \item More details about the database and more options of interpolation could be found in the file \ttt{geogrid/GEOGRID.TBL} (for advanced users only). |
---|
164 | \item Two examples are given in Figure~\ref{vallespolar}. |
---|
165 | \end{finger} |
---|
166 | |
---|
167 | \footnotesize |
---|
168 | \codesource{namelist.wps_TEST} |
---|
169 | \normalsize |
---|
170 | |
---|
171 | \begin{figure}[h!] |
---|
172 | \begin{center} |
---|
173 | \includegraphics[width=0.48\textwidth]{valles.png} |
---|
174 | \includegraphics[width=0.48\textwidth]{LMD_MMM_d1_20km_domain_100.png} |
---|
175 | \end{center} |
---|
176 | \caption{\label{vallespolar} (Left plot) An example of mercator domain in the Valles Marineris region as simulated by \textit{Spiga and Forget} [2009, their section 3.3]: relevant parameters in \ttt{namelist.wps} are: \ttt{e\_we = 401}, \ttt{e\_we = 121}, \ttt{dx = 12000}, \ttt{dy = 12000}, \ttt{map\_proj='mercator'}, \ttt{ref\_lat = -8}, \ttt{ref\_lon = -68}. (Right plot) An example of north polar domain with stereographical projection: relevant parameters in \ttt{namelist.wps} are: \ttt{e\_we = 117}, \ttt{e\_we = 117}, \ttt{dx = 20000}, \ttt{dy = 20000}, \ttt{map\_proj='polar'}, \ttt{ref\_lat = 90}, \ttt{ref\_lon = 0.1}, \ttt{truelat1 = 90}, \ttt{stand\_lon = 0.1}.} |
---|
177 | \end{figure} |
---|
178 | |
---|
179 | |
---|
180 | |
---|
181 | \sk |
---|
182 | \paragraph{Step 2b} Once the \ttt{geo\_em} file(s) are generated, the \ttt{metgrid.exe} program performs a similar horizontal interpolation of the meteorological fields to the mesoscale domain as the one performed by \ttt{geogrid.exe} for the surface data (interpolation options can be modified by advanced users in \ttt{metgrid/METGRID.TBL}). Then the program writes the results in \ttt{met\_em} files and also collects the static fields and domain parameters included in the \ttt{geo\_em} file(s). If everything went well with the commands below, the directory \ttt{\$MESO/TMPDIR/WRFFEED} should contain \ttt{met\_em.*} files. |
---|
183 | |
---|
184 | \begin{verbatim} |
---|
185 | cd $MMM/your_install_dir/WPS |
---|
186 | mkdir WRFFEED/current |
---|
187 | ./metgrid.exe |
---|
188 | \end{verbatim} |
---|
189 | |
---|
190 | \sk |
---|
191 | \subsection{Step 3: Vertical interpolation on mesoscale levels} |
---|
192 | |
---|
193 | \sk |
---|
194 | The last preprocessing step before being able to run the mesoscale simulation at step~4 is to execute \ttt{real.exe} to perform the interpolation from the vertical levels of the GCM to the vertical levels defined in the mesoscale model. This program also prepares the final initial state for the simulation in files called \ttt{wrfinput} and the boundary conditions in files called \ttt{wrfbdy}. To successfully execute \ttt{real.exe}, you need the \ttt{met\_em.*} files and the \ttt{namelist.input} file to be in the same directory as \ttt{real.exe}. Parameters in \ttt{namelist.input} controlling the behavior of the vertical interpolation are those labelled with \ttt{(p3)} in the detailed list introduced in chapter~\ref{zeparam}. |
---|
195 | |
---|
196 | \begin{verbatim} |
---|
197 | cd $MESO/TESTCASE ## or anywhere you would like to run the simulation |
---|
198 | ln -sf $MESO/TMPDIR/WRFFEED/met_em* . |
---|
199 | ./real.exe |
---|
200 | \end{verbatim} |
---|
201 | |
---|
202 | \sk |
---|
203 | The final message of the \ttt{real.exe} should claim the success of the processes and you are now ready to launch the integrations of the LMD Martian Mesoscale Model again with the \ttt{wrf.exe} command as in section \ref{sc:arsia}. |
---|
204 | |
---|
205 | \sk |
---|
206 | \begin{finger} |
---|
207 | \item \textbf{ When you modify either \ttt{namelist.wps} or \ttt{namelist.input}, make sure that the common parameters are exactly similar in both files (especially when running nested simulations) otherwise either \ttt{real.exe} or \ttt{wrf.exe} command will exit with an error message. Also, obviously the dates sent to \ttt{launch\_gcm} and written in both \ttt{namelist.input} and \ttt{namelist.wps} should be all the same. } |
---|
208 | \end{finger} |
---|
209 | |
---|
210 | \clearemptydoublepage |
---|
211 | |
---|