/[lmdze]/trunk/libf/dyn3d/iniprint.f90
ViewVC logotype

Annotation of /trunk/libf/dyn3d/iniprint.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12 - (hide annotations)
Mon Jul 21 16:05:07 2008 UTC (15 years, 11 months ago) by guez
File size: 519 byte(s)
-- Minor modification of input/output:

Created procedure "read_logic". Variables of module "logic" are read
by "read_logic" instead of "conf_gcm". Variable "offline" of module
"conf_gcm" is read from namelist instead of "*.def".

Deleted arguments "dtime", "co2_ppm_etat0", "solaire_etat0",
"tabcntr0" and local variables "radpas", "tab_cntrl" of
"phyetat0". "phyetat0" does not read "controle" in "startphy.nc" any
longer. "phyetat0" now reads global attribute "itau_phy" from
"startphy.nc". "phyredem" does not create variable "controle" in
"startphy.nc" any longer. "phyredem" now writes global attribute
"itau_phy" of "startphy.nc". Deleted argument "tabcntr0" of
"printflag". Removed diagnostic messages written by "printflag" for
comparison of the variable "controle" of "startphy.nc" and the
variables read from "*.def" or namelist input.

-- Removing unwanted functionality:

Removed variable "lunout" from module "iniprint", replaced everywhere
by standard output.

Removed case "ocean == 'couple'" in "clmain", "interfsurf_hq" and
"physiq". Removed procedure "interfoce_cpl".

-- Should not change anything at run time:

Automated creation of graphs in documentation. More documentation on
input files.

Converted Fortran files to free format: "phyredem.f90", "printflag.f90".

Split module "clesphy" into "clesphys" and "clesphys2".

Removed variables "conser", "leapf", "forward", "apphys", "apdiss" and
"statcl" from module "logic". Added arguments "conser" to "advect",
"leapf" to "integrd". Added local variables "forward", "leapf",
"apphys", "conser", "apdiss" in "leapfrog".

Added intent attributes.

Deleted arguments "dtime" of "phyredem", "pdtime" of "flxdtdq", "sh"
of "phytrac", "dt" of "yamada".

Deleted local variables "dtime", "co2_ppm_etat0", "solaire_etat0",
"length", "tabcntr0" in "physiq". Replaced all references to "dtime"
by references to "pdtphys".

1 guez 3 module iniprint
2    
3     ! gestion des impressions de sorties et de dĂ©bogage
4    
5     implicit none
6    
7     integer:: prt_level = 0 ! niveau d'impression souhaitĂ© (0 = minimum)
8    
9     contains
10    
11     subroutine read_iniprint
12    
13 guez 12 namelist /iniprint_nml/prt_level
14 guez 3
15     !-------------------------------------------------
16    
17     print *, "Call sequence information: read_iniprint"
18     print *, "Enter namelist 'iniprint_nml'."
19     read(unit=*, nml=iniprint_nml)
20     write(unit=*, nml=iniprint_nml)
21    
22     end subroutine read_iniprint
23    
24     end module iniprint

  ViewVC Help
Powered by ViewVC 1.1.21