/[lmdze]/trunk/dyn3d/ce0l.f
ViewVC logotype

Annotation of /trunk/dyn3d/ce0l.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 68 - (hide annotations)
Wed Nov 14 16:59:30 2012 UTC (11 years, 6 months ago) by guez
Original Path: trunk/libf/dyn3d/ce0l.f90
File size: 461 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 guez 68 PROGRAM ce0l
2 guez 3
3     ! This program sets the initial and boundary values.
4    
5     use conf_gcm_m, only: conf_gcm
6     use etat0_mod, only: etat0
7 guez 57 use jumble, only: new_unit
8 guez 3 use limit_mod, only: limit
9 guez 57 use unit_nml_m, only: unit_nml
10 guez 3
11     implicit none
12    
13     !-------------------------------------
14    
15 guez 57 call new_unit(unit_nml)
16     open(unit_nml, file="used_namelists", status="replace", action="write")
17 guez 3 CALL conf_gcm
18     CALL etat0
19     CALL limit
20 guez 57 close(unit_nml)
21 guez 3
22 guez 68 END PROGRAM ce0l

  ViewVC Help
Powered by ViewVC 1.1.21