You need to sign in or sign up before continuing.
Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
\documentclass[../main/NEMO_manual]{subfiles}
\begin{document}
% ================================================================
% Appendix D Coding Rules
% ================================================================
\chapter{Coding Rules}
\label{apdx:D}
\minitoc
\newpage
A "model life" is more than ten years.
Its software, composed of a few hundred modules, is used by many people who are scientists or students and
do not necessarily know every aspect of computing very well.
Moreover, a well thought-out program is easier to read and understand, less difficult to modify,
produces fewer bugs and is easier to maintain.
Therefore, it is essential that the model development follows some rules:
- well planned and designed
- well written
- well documented (both on- and off-line)
- maintainable
- easily portable
- flexible.
To satisfy part of these aims, \NEMO\ is written with a coding standard which is close to the ECMWF rules,
named DOCTOR \citep{gibson_trpt86}.
These rules present some advantages like:
- to provide a well presented program
- to use rules for variable names which allow recognition of their type
(integer, real, parameter, local or shared variables, etc. ).
This facilitates both the understanding and the debugging of an algorithm.
% ================================================================
% The program structure
% ================================================================
\section{Program structure}
\label{sec:D_structure}
Each program begins with a set of headline comments containing:
- the program title
- the purpose of the routine
- the method and algorithms used
- the detail of input and output interfaces
- the external routines and functions used (if they exist)
- references (if they exist)
- the author name(s), the date of creation and any updates.
- Each program is split into several well separated sections and
sub-sections with an underlined title and specific labelled statements.
- A program has not more than 200 to 300 lines.
A template of a module style can be found on the NEMO depository in the following file:
NEMO/OPA\_SRC/module\_example.
% ================================================================
% Coding conventions
% ================================================================
\section{Coding conventions}
\label{sec:D_coding}
- Use of the universal language \fninety, and try to avoid obsolescent features like statement functions,
do not use GO TO and EQUIVALENCE statements.
- A continuation line begins with the character {\&} indented by three spaces compared to the previous line,
while the previous line ended with the character {\&}.
- All the variables must be declared.
The code is usually compiled with implicit none.
- Never use continuation lines in the declaration of a variable.
When searching a variable in the code through a \textit{grep} command, the declaration line will be found.
- In the declaration of a PUBLIC variable, the comment part at the end of the line should start with
the two characters "\verb?!:?".
The following UNIX command, \\
\verb?grep var_name *90 \ grep \!: ? \\
will display the module name and the line where the var\_name declaration is.
- Always use a three spaces indentation in DO loop, CASE, or IF-ELSEIF-ELSE-ENDIF statements.
- use a space after a comma, except when it appears to separate the indices of an array.
- use call to ctl\_stop routine instead of just a STOP.
\newpage
% ================================================================
% Naming Conventions
% ================================================================
\section{Naming conventions}
\label{sec:D_naming}
The purpose of the naming conventions is to use prefix letters to classify model variables.
These conventions allow the variable type to be easily known and rapidly identified.
The naming conventions are summarised in the Table below:
%--------------------------------------------------TABLE--------------------------------------------------
\begin{table}[htbp]
\label{tab:VarName}
\begin{center}
\begin{tabular}{|p{45pt}|p{35pt}|p{45pt}|p{40pt}|p{40pt}|p{40pt}|p{40pt}|p{40pt}|}
\hline
Type \par / Status
& integer
& real
& logical
& character
& structure
& double \par precision
& complex \\
\hline
public \par or \par module variable
& \textbf{m n} \par \textit{but not} \par \textbf{nn\_ np\_}
& \textbf{a b e f g h o q r} \par \textbf{t} \textit{to} \textbf{x} \par but not \par \textbf{fs rn\_}
& \textbf{l} \par \textit{but not} \par \textbf{lp ld} \par \textbf{ ll ln\_}
& \textbf{c} \par \textit{but not} \par \textbf{cp cd} \par \textbf{cl cn\_}
& \textbf{s} \par \textit{but not} \par \textbf{sd sd} \par \textbf{sl sn\_}
& \textbf{d} \par \textit{but not} \par \textbf{dp dd} \par \textbf{dl dn\_}
& \textbf{y} \par \textit{but not} \par \textbf{yp yd} \par \textbf{yl yn} \\
\hline
dummy \par argument
& \textbf{k} \par \textit{but not} \par \textbf{kf}
& \textbf{p} \par \textit{but not} \par \textbf{pp pf}
& \textbf{ld}
& \textbf{cd}
& \textbf{sd}
& \textbf{dd}
& \textbf{yd} \\
\hline
local \par variable
& \textbf{i}
& \textbf{z}
& \textbf{ll}
& \textbf{cl}
& \textbf{sl}
& \textbf{dl}
& \textbf{yl} \\
\hline
loop \par control
& \textbf{j} \par \textit{but not} \par \textbf{jp} &&&&&& \\
\hline
parameter
& \textbf{jp np\_}
& \textbf{pp}
& \textbf{lp}
& \textbf{cp}
& \textbf{sp}
& \textbf{dp}
& \textbf{yp} \\
\hline
namelist
& \textbf{nn\_}
& \textbf{rn\_}
& \textbf{ln\_}
& \textbf{cn\_}
& \textbf{sn\_}
& \textbf{dn\_}
& \textbf{yn\_}
\\
\hline
CPP \par macro
& \textbf{kf}
& \textbf{fs} \par &&&&& \\
\hline
\end{tabular}
\label{tab:tab1}
\end{center}
\end{table}
%--------------------------------------------------------------------------------------------------------------
N.B. Parameter here, in not only parameter in the \fortran acceptation,
it is also used for code variables that are read in namelist and should never been modified during a simulation.
It is the case, for example, for the size of a domain (jpi,jpj,jpk).
\newpage
% ================================================================
% The program structure
% ================================================================
%\section{Program structure}
%\label{sec:Apdx_D_structure}
%To be done....
\biblio
\pindex
\end{document}