/[MITgcm]/MITgcm/pkg/fizhi/fizhi_init_fixed.F
ViewVC logotype

Annotation of /MITgcm/pkg/fizhi/fizhi_init_fixed.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.20 - (hide annotations) (download)
Sun Oct 10 06:08:48 2004 UTC (19 years, 8 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint55h_post, checkpoint55g_post, checkpoint55f_post
Changes since 1.19: +1 -4 lines
 o move useMNC and related runtime switches to PARAMS.h

1 edhill 1.20 C $Header: /u/gcmpack/MITgcm/pkg/fizhi/fizhi_init_fixed.F,v 1.19 2004/09/30 16:25:58 molod Exp $
2 molod 1.1 C $Name: $
3    
4 molod 1.15 #include "FIZHI_OPTIONS.h"
5 molod 1.1 subroutine fizhi_init_fixed (myThid)
6     c-----------------------------------------------------------------------
7     c Routine to initialise the fizhi package.
8     c
9     c Input: myThid - Process number calling this routine
10     c
11     c Notes:
12     c 1) This routine is the interface to read input datasets and set
13     c other fixed variables for fizhi
14     c the datasets are:
15     c vegetation (data for each tile at every grid point)
16     c ozone (varies with lat, height and time - read it all in
17     c now and interpolate between values later)
18     c the other fixed parameters are:
19     c N2O, Methane (vary with space)
20     c CO2, CFC11, CFC12, CFC22 (set to a global value)
21 molod 1.3 c 3) For now, the fizhi package contains the alarms and clocks
22     c routines, so this routine will also initialize the alarms.
23 molod 1.1 c-----------------------------------------------------------------------
24     implicit none
25     #include "SIZE.h"
26     #include "fizhi_SIZE.h"
27 molod 1.2 #include "fizhi_land_SIZE.h"
28 molod 1.1 #include "EEPARAMS.h"
29 molod 1.2 #include "fizhi_chemistry_coms.h"
30     #include "fizhi_earth_coms.h"
31 molod 1.3 #include "fizhi_land_coms.h"
32 molod 1.11 #include "fizhi_ocean_coms.h"
33 molod 1.3 #include "chronos.h"
34 molod 1.5 #include "gridalt_mapping.h"
35 molod 1.7 #include "GRID.h"
36 molod 1.12 #include "PARAMS.h"
37 molod 1.1
38     integer myThid
39    
40 molod 1.12 integer i,j,L,bi,bj
41     integer im1, im2, jm1, jm2, idim2, jdim2
42 molod 1.3 integer nymdb,nhmsb
43     character*40 vegdata
44 molod 1.17 _RL pressure0(Nrphys)
45 molod 1.5 _RL pressure(Nrphys)
46 molod 1.11 _RL lats(sNx,sNy,Nsx,Nsy), lons(sNx,sNy,Nsx,Nsy)
47     _RL fracland(sNx,sNy,Nsx,Nsy)
48 molod 1.1
49 molod 1.11 idim2 = sNx+OLx
50     jdim2 = sNy+OLy
51     im1 = 1
52     im2 = sNx
53     jm1 = 1
54     jm2 = sNy
55 molod 1.3 nymdb = nymd0
56     nhmsb = nhms0
57 molod 1.1
58 molod 1.18 #ifdef ALLOW_MNC
59     if (useMNC) then
60     call fizhi_mnc_init(myThid)
61     endif
62     #endif
63    
64 molod 1.3 call fizhi_alarms(nymdb,nhmsb,deltaTClock)
65 molod 1.7
66     do bj = myByLo(myThid), myByHi(myThid)
67     do bi = myBxLo(myThid), myBxHi(myThid)
68 molod 1.8 do j = jm1,jm2
69     do i = im1,im2
70 molod 1.7 lons(i,j,bi,bj) = xC(i,j,bi,bj)
71     lats(i,j,bi,bj) = yC(i,j,bi,bj)
72     enddo
73     enddo
74     enddo
75     enddo
76 molod 1.14 call fizhi_init_veg ( mythid, vegdata,im2,jm2,Nsx,Nsy,
77     . nSx*nPx,nSy*nPy,maxtyp,nchp,nchptot,nchpland,lons,lats,
78     . surftype,tilefrac,igrd,ityp,chfr,chlt,chlon)
79 molod 1.11
80     C And now fill the earth export landtype
81     do bj = myByLo(myThid), myByHi(myThid)
82     do bi = myBxLo(myThid), myBxHi(myThid)
83     call get_landfrac(im2,jm2,Nsx,Nsy,bi,bj,maxtyp,
84     . surftype,tilefrac,fracland)
85     do j=jm1,jm2
86     do i=im1,im2
87     landtype(i,j,bi,bj) = surftype(i,j,1,bi,bj)
88 molod 1.12 if(fracland(i,j,bi,bj).ge.0.3.and.surftype(i,j,1,bi,bj).ge.100)
89 molod 1.11 . landtype(i,j,bi,bj) = surftype(i,j,2,bi,bj)
90     if(sice(i,j,bi,bj).ne.0.0)landtype(i,j,bi,bj) = 101
91     enddo
92     enddo
93     enddo
94     enddo
95 molod 1.3
96     C Compute pressure profile to get methane and n2o values (bottom-up)
97    
98 molod 1.17 pressure0(1)=1000.
99 molod 1.5 do L = 2,Nrphys+1
100 molod 1.17 pressure0(L)=pressure0(L-1)-dpphys0(1,1,L-1,1,1)/100.
101     enddo
102 molod 1.19 C Now flip pressure to a top-down array to send to fizhi init chem
103 molod 1.17 do L = 1,Nrphys+1
104     pressure(L)=pressure0(Nrphys+2-L)
105 molod 1.1 enddo
106 molod 1.3
107 molod 1.4 call fizhi_init_chem(mythid,
108     . nlatsoz,nlevsoz,ntimesoz,latsoz,levsoz,ozone,
109     . nlatsq,nlevsq,ntimesq,latsq,levsq,stratq,
110 molod 1.12 . Nrphys,pressure,n2o,methane,co2,cfc11,cfc12,cfc22)
111 molod 1.1
112 molod 1.16 do bj = myByLo(myThid), myByHi(myThid)
113     do bi = myBxLo(myThid), myBxHi(myThid)
114     do j=jm1,jm2
115     do i=im1,im2
116     phis_var(i,j,bi,bj) = 0.
117     enddo
118     enddo
119     enddo
120     enddo
121    
122 molod 1.1 return
123     end

  ViewVC Help
Powered by ViewVC 1.1.22