17 lines
374 B
Plaintext
Executable File
17 lines
374 B
Plaintext
Executable File
% Number of cells in each direction %
|
|
2D nbcellsx,nbcellsy;
|
|
% Name of the common file : an include file (paramfile) OR a module (parammodule) %
|
|
parammodule par_oce ;
|
|
|
|
% simple or double precision %
|
|
KIND sp = 4 ;
|
|
KIND dp = 8 ;
|
|
|
|
USE ONLY_FIXED_GRIDS;
|
|
|
|
% Variables which are not grid dependent %
|
|
% notgriddep :: name of the variable; %
|
|
notgriddep :: nstop;
|
|
|
|
%USE DEBUG;%
|