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

Annotation of /trunk/Sources/dyn3d/ce0l.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 107 - (hide annotations)
Thu Sep 11 15:09:15 2014 UTC (9 years, 8 months ago) by guez
Original Path: trunk/dyn3d/ce0l.f
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 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 guez 107 use dimens_m, only: iim, jjm
7 guez 3 use etat0_mod, only: etat0
8 guez 107 use grilles_gcm_netcdf_sub_m, only: grilles_gcm_netcdf_sub
9 guez 57 use jumble, only: new_unit
10 guez 3 use limit_mod, only: limit
11 guez 57 use unit_nml_m, only: unit_nml
12 guez 3
13     implicit none
14    
15 guez 107 REAL phis(iim + 1, jjm + 1) ! surface geopotential, in m2 s-2
16    
17 guez 3 !-------------------------------------
18    
19 guez 57 call new_unit(unit_nml)
20 guez 79 open(unit_nml, file="used_namelists.txt", status="replace", action="write")
21 guez 3 CALL conf_gcm
22 guez 107 CALL etat0(phis)
23 guez 3 CALL limit
24 guez 107 CALL grilles_gcm_netcdf_sub(phis)
25 guez 57 close(unit_nml)
26 guez 3
27 guez 68 END PROGRAM ce0l

  ViewVC Help
Powered by ViewVC 1.1.21