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

Contents of /trunk/dyn3d/ce0l.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 134 - (show annotations)
Wed Apr 29 15:47:56 2015 UTC (9 years, 1 month ago) by guez
Original Path: trunk/Sources/dyn3d/ce0l.f
File size: 712 byte(s)
Sources inside, compilation outside.
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 serre, only: read_serre
12 use unit_nml_m, only: unit_nml
13
14 implicit none
15
16 REAL phis(iim + 1, jjm + 1) ! surface geopotential, in m2 s-2
17
18 !-------------------------------------
19
20 call new_unit(unit_nml)
21 open(unit_nml, file="used_namelists.txt", status="replace", action="write")
22 CALL conf_gcm
23 call read_serre
24 CALL etat0(phis)
25 CALL limit
26 CALL grilles_gcm_netcdf_sub(phis)
27 close(unit_nml)
28
29 END PROGRAM ce0l

  ViewVC Help
Powered by ViewVC 1.1.21