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

Contents of /trunk/dyn3d/ce0l.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 107 - (show annotations)
Thu Sep 11 15:09:15 2014 UTC (9 years, 8 months ago) by guez
File size: 664 byte(s)
Imported procedure grilles_gcm_sub from LMDZ. Had then to transform
local variable phis of etat to argument.

Replaced calls to lnblnk by calls to trim.

Removed arguments nlat, klevel and griscal of filtreg. Replaced
integer arguments ifiltre and iaire by logical arguments direct and
intensive.

Changed default values of guide_t and guide_q to false.

1 PROGRAM ce0l
2
3 ! This program sets the initial and boundary values.
4
5 use conf_gcm_m, only: conf_gcm
6 use dimens_m, only: iim, jjm
7 use etat0_mod, only: etat0
8 use grilles_gcm_netcdf_sub_m, only: grilles_gcm_netcdf_sub
9 use jumble, only: new_unit
10 use limit_mod, only: limit
11 use unit_nml_m, only: unit_nml
12
13 implicit none
14
15 REAL phis(iim + 1, jjm + 1) ! surface geopotential, in m2 s-2
16
17 !-------------------------------------
18
19 call new_unit(unit_nml)
20 open(unit_nml, file="used_namelists.txt", status="replace", action="write")
21 CALL conf_gcm
22 CALL etat0(phis)
23 CALL limit
24 CALL grilles_gcm_netcdf_sub(phis)
25 close(unit_nml)
26
27 END PROGRAM ce0l

  ViewVC Help
Powered by ViewVC 1.1.21