/[lmdze]/trunk/libf/phylmd/clesphys.f90
ViewVC logotype

Contents of /trunk/libf/phylmd/clesphys.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 68 - (show annotations)
Wed Nov 14 16:59:30 2012 UTC (11 years, 6 months ago) by guez
File size: 1529 byte(s)
Split "flincom.f90" into "flinclo.f90", "flinfindcood.f90",
"flininfo.f90" and "flinopen_nozoom.f90", in directory
"IOIPSL/Flincom".

Renamed "etat0_lim" to "ce0l", as in LMDZ.

Split "readsulfate.f" into "readsulfate.f90", "readsulfate_preind.f90"
and "getso4fromfile.f90".

In etat0, renamed variable q3d to q, as in "dynredem1". Replaced calls
to Flicom procedures by calls to NetCDF95.

In leapfrog, added call to writehist.

Extracted ASCII art from "grid_noro" into a file
"grid_noro.txt". Transformed explicit-shape local arrays into
automatic arrays, so that test on values of iim and jjm is no longer
needed. Test on weight:
          IF (weight(ii, jj) /= 0.) THEN
is useless. There is already a test before:
    if (any(weight == 0.)) stop "zero weight in grid_noro"

In "aeropt", replaced duplicated lines with different values of inu by
a loop on inu.

Removed arguments of "conf_phys". Corresponding variables are now
defined in "physiq", in a namelist. In "conf_phys", read a namelist
instead of using getin.

1 module clesphys
2
3 ! From version 1.3 2005/06/06 13:16:33
4
5 implicit none
6
7 LOGICAL bug_ozone ! Pour retrouver le bug de l'ozone (IPCC)
8 REAL co2_ppm ! concentration du gaz carbonique en ppmv
9 real solaire ! Constante solaire en W/m2
10 double precision RCO2 ! Concentration du CO2
11 double precision RCH4 ! Concentration du CH4
12 double precision RN2O ! Concentration du N2O
13 double precision RCFC11 ! Concentration du CFC11
14 double precision RCFC12 ! Concentration du CFC12
15 double precision CH4_ppb, N2O_ppb, CFC11_ppt, CFC12_ppt
16
17 ! Simulateur ISCCP:
18 INTEGER top_height
19 INTEGER overlap ! 1, 2 or 3
20
21 REAL cdmmax, cdhmax ! seuils cdrm, cdrh
22 REAL ksta, ksta_ter ! paramètres stabilité sur terres et en dehors
23 LOGICAL ok_kzmin ! calcul Kzmin dans la couche limite de surface
24
25 INTEGER lev_histhf ! niveau sorties 6h
26 ! 4: histhf3d.nc champs 3d niveaux modele
27
28 integer lev_histday ! niveau sorties journalieres
29 ! 3: champs 3D => F. Lott
30 ! 4: + champs sous-surfaces
31
32 integer lev_histmth ! niveau sorties mensuelles
33 ! 3: albedo, rugosite sous-surfaces
34 ! 4: champs tendances 3d
35
36 CHARACTER(len=4) type_run ! 'AMIP' ou 'ENSP'
37 LOGICAL ok_isccp, ok_regdyn
38
39 REAL lonmin_ins, lonmax_ins, latmin_ins, latmax_ins
40 ! longitude et latitude minimales et maximales pour la zone avec
41 ! sorties instantanées tous les pas de temps de la physique,
42 ! fichier "histbilKP_ins.nc"
43
44 INTEGER ecrit_ins, ecrit_hf, ecrit_hf2mth, ecrit_day
45 INTEGER ecrit_mth, ecrit_tra, ecrit_reg
46
47 save
48
49 end module clesphys

  ViewVC Help
Powered by ViewVC 1.1.21