/[MITgcm]/MITgcm/pkg/dic/dic_atmos.F
ViewVC logotype

Annotation of /MITgcm/pkg/dic/dic_atmos.F

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


Revision 1.6 - (hide annotations) (download)
Wed Nov 14 16:33:42 2007 UTC (17 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59k
Changes since 1.5: +9 -8 lines
multi-threaded: stop only if it's not safe (gchem_int1=2 or 3)

1 jmc 1.6 C $Header: /u/gcmpack/MITgcm/pkg/dic/dic_atmos.F,v 1.5 2007/11/08 22:35:23 jmc Exp $
2 jmc 1.5 C $Name: $
3    
4 stephd 1.1 #include "DIC_OPTIONS.h"
5     #include "PTRACERS_OPTIONS.h"
6     #include "GCHEM_OPTIONS.h"
7    
8     CBOP
9     C !ROUTINE: DIC_ATMOS
10    
11     C !INTERFACE: ==========================================================
12 jmc 1.5 SUBROUTINE DIC_ATMOS( istate, myTime, myIter, myThid )
13 stephd 1.1
14     C !DESCRIPTION:
15     C Calculate the atmospheric pCO2
16     C gchem_int1:
17     C 0=use default 278.d-6
18 jmc 1.5 C 1=use constant value - gchem_rl1, read in from data.gchem
19     C 2=read in from file
20 stephd 1.1 C 3=interact with atmospheric box
21     C !USES: ===============================================================
22     IMPLICIT NONE
23     #include "SIZE.h"
24     #include "DYNVARS.h"
25     #include "EEPARAMS.h"
26     #include "PARAMS.h"
27     #include "GRID.h"
28     #include "FFIELDS.h"
29     #include "DIC_ABIOTIC.h"
30     #ifdef DIC_BIOTIC
31     #include "PTRACERS_SIZE.h"
32     #include "PTRACERS_FIELDS.h"
33     #include "DIC_BIOTIC.h"
34     #endif
35     #include "GCHEM.h"
36     #include "DIC_ATMOS.h"
37    
38     C !INPUT PARAMETERS: ===================================================
39     C myThid :: thread number
40     C myIter :: current timestep
41     C myTime :: current time
42     C istate :: 0=initial call, 1=subsequent calls
43     INTEGER myIter, myThid, istate
44     _RL myTime
45    
46     #ifdef ALLOW_PTRACERS
47     LOGICAL DIFFERENT_MULTIPLE
48     EXTERNAL DIFFERENT_MULTIPLE
49    
50     C !LOCAL VARIABLES: ====================================================
51     INTEGER bi, bj, I,J,k
52     INTEGER it, ntim
53     c
54     _RL total_flux
55     _RL total_ocean_carbon_old
56     _RL total_atmos_carbon_old
57     _RL total_atmos_moles
58     _RL atpco2
59     _RL total_carbon_old, total_carbon, carbon_diff
60     _RL tmp
61     _RL year_diff_ocean, year_diff_atmos, year_total
62     _RL start_diff_ocean, start_diff_atmos, start_total
63     C variables for reading CO2 input files
64     _RL aWght, bWght
65     c
66     CHARACTER*(MAX_LEN_FNAM) fn
67     LOGICAL permCheckPoint
68     CEOP
69    
70     cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
71    
72     c if coupled to atmsopheric model, use the
73     c Co2 value passed from the coupler
74     #ifndef USE_ATMOSCO2
75    
76 jmc 1.6 IF ( nThreads .GT. 1 .AND.
77     & ( gchem_int1.EQ.2 .OR. gchem_int1.EQ.3 ) ) THEN
78 jmc 1.5 C Problem with I/O and global-sum for multi-threaded execution
79     C Needs to be fixed before using this S/R in multi-threaded run
80     STOP 'S/R DIC_ATMOS: multi-threaded not right'
81     ENDIF
82    
83 stephd 1.1 c default - set only once
84     if (gchem_int1.eq.0.and.istate.eq.0) then
85     DO bj=myByLo(myThid),myByHi(myThid)
86     DO bi=myBxLo(myThid),myBxHi(myThid)
87    
88     DO j=1-OLy,sNy+OLy
89     DO i=1-OLx,sNx+OLx
90     AtmospCO2(i,j,bi,bj)=278.0 _d -6
91     ENDDO
92     ENDDO
93    
94     ENDDO
95     ENDDO
96     endif
97    
98     c user specified value - set only once
99     if (gchem_int1.eq.1.and.istate.eq.0) then
100     DO bj=myByLo(myThid),myByHi(myThid)
101     DO bi=myBxLo(myThid),myBxHi(myThid)
102    
103     DO j=1-OLy,sNy+OLy
104     DO i=1-OLx,sNx+OLx
105     AtmospCO2(i,j,bi,bj)=gchem_rl1
106     ENDDO
107     ENDDO
108    
109     ENDDO
110     ENDDO
111 jmc 1.6 endif
112 stephd 1.1
113     c read from a file (note:
114     c gchem_int2=number entries to read
115     c gchem_int3=start timestep,
116     c gchem_int4=timestep between file entries)
117 jmc 1.6 if (gchem_int1.eq.2) then
118 jmc 1.5 if (istate.eq.0) then
119 stephd 1.1 OPEN(28,FILE='co2atmos.dat',STATUS='old')
120     do it=1,gchem_int2
121     READ(28,*) co2atmos(it)
122     print*,'co2atmos',co2atmos(it)
123     enddo
124     endif
125     c linearly interpolate between file entries
126     ntim=int((myIter-gchem_int3)/gchem_int4)+1
127 jmc 1.5 aWght = FLOAT(myIter-gchem_int3)
128     bWght = FLOAT(gchem_int4)
129     aWght = 0.5 _d 0 + aWght/bWght - FLOAT(ntim-1)
130     if (aWght.gt.1. _d 0) then
131 stephd 1.1 ntim=ntim+1
132 jmc 1.5 aWght=aWght-1. _d 0
133 stephd 1.1 endif
134 jmc 1.5 bWght = 1. _d 0 - aWght
135 stephd 1.1 tmp=co2atmos(ntim)*bWght+co2atmos(ntim+1)*aWght
136     c print*,'weights',ntim, aWght, bWght, tmp
137    
138     DO bj=myByLo(myThid),myByHi(myThid)
139     DO bi=myBxLo(myThid),myBxHi(myThid)
140    
141     DO j=1-OLy,sNy+OLy
142     DO i=1-OLx,sNx+OLx
143    
144     AtmospCO2(i,j,bi,bj)=tmp
145     ENDDO
146     ENDDO
147    
148     print*,'AtmospCO2(20,20)',AtmospCO2(20,20,bi,bj)
149 jmc 1.5
150 stephd 1.1 ENDDO
151     ENDDO
152    
153    
154 jmc 1.6 endif
155 stephd 1.1
156    
157     c interactive atmosphere
158     if (gchem_int1.eq.3) then
159    
160 stephd 1.2 c _BEGIN_MASTER(myThid)
161 stephd 1.1
162 stephd 1.3 cMass dry atmosphere = (5.1352+/-0.0003)d18 kg (Trenberth & Smith,
163     cJournal of Climate 2005)
164     cand Mean molecular mass air = 28.97 g/mol (NASA earth fact sheet)
165     total_atmos_moles= 1.77 _d 20
166     c for 278ppmv we need total_atmos_carbon=4.9206e+16
167    
168 stephd 1.1 if (istate.gt.0) then
169     total_ocean_carbon_old=total_ocean_carbon
170     total_atmos_carbon_old=total_atmos_carbon
171     else
172     total_ocean_carbon_old=0. _d 0
173     total_atmos_carbon_old=0. _d 0
174     endif
175    
176     total_flux= 0. _d 0
177     total_ocean_carbon= 0. _d 0
178    
179     DO bj=myByLo(myThid),myByHi(myThid)
180     DO bi=myBxLo(myThid),myBxHi(myThid)
181     DO i=1,sNx
182     DO j=1,sNy
183     if (istate.gt.0) then
184     total_flux=total_flux+FluxCO2(i,j,bi,bj)*rA(i,j,bi,bj)*
185     & hFacC(i,j,1,bi,bj)*dTtracerLev(1)
186 jmc 1.5 endif
187 stephd 1.1 DO k=1,nR
188     total_ocean_carbon= total_ocean_carbon+
189     & ( Ptracer(i,j,k,bi,bj,1)+
190     & R_cp*Ptracer(i,j,k,bi,bj,4) )*rA(i,j,bi,bj)*
191     & drF(k)*hFacC(i,j,k,bi,bj)
192     ENDDO
193     ENDDO
194     ENDDO
195     ENDDO
196     ENDDO
197 stephd 1.2
198 stephd 1.1 _GLOBAL_SUM_R8(total_flux,myThid)
199     _GLOBAL_SUM_R8(total_ocean_carbon,myThid)
200    
201     if (istate.eq.0) then
202     c read state from output file
203     DO i = 1,MAX_LEN_FNAM
204     fn(i:i) = ' '
205     ENDDO
206     WRITE(fn,'(A,I10.10)') 'dic_atmos.',myIter
207     C Going to really do some IO. Make everyone except master thread wait.
208     _BARRIER
209     c read in values from last pickup
210     open(26,file=fn,status='old')
211     read(26,*) total_atmos_carbon, atpco2
212     close(26)
213    
214     else
215     c calculate new atmos pCO2
216     total_atmos_carbon=total_atmos_carbon - total_flux
217     atpco2=total_atmos_carbon/total_atmos_moles
218     c write out if time for a new pickup
219     permCheckPoint = .FALSE.
220     permCheckPoint =
221     & DIFFERENT_MULTIPLE(pChkptFreq,myTime,deltaTClock)
222     if (permCheckPoint) then
223     DO i = 1,MAX_LEN_FNAM
224     fn(i:i) = ' '
225     ENDDO
226     WRITE(fn,'(A,I10.10)') 'dic_atmos.',myIter
227     C Going to really do some IO. Make everyone except master thread wait.
228     _BARRIER
229 stephd 1.3 c write values to new pickup
230 stephd 1.1 open(26,file=fn,status='new')
231     write(26,*) total_atmos_carbon, atpco2
232     close(26)
233    
234     endif
235     endif
236    
237    
238     atpco2=total_atmos_carbon/total_atmos_moles
239    
240 jmc 1.5 c print*,'QQpCO2', total_atmos_carbon, atpco2, total_ocean_carbon,
241 stephd 1.1 c & total_flux
242    
243     DO bj=myByLo(myThid),myByHi(myThid)
244     DO bi=myBxLo(myThid),myBxHi(myThid)
245    
246     DO j=1-OLy,sNy+OLy
247     DO i=1-OLx,sNx+OLx
248     AtmospCO2(i,j,bi,bj)=atpco2
249     ENDDO
250     ENDDO
251    
252     ENDDO
253     ENDDO
254    
255     print*,'QQ atmos C, total, pCo2', total_atmos_carbon, atpco2
256     total_carbon=total_atmos_carbon + total_ocean_carbon
257     total_carbon_old=total_atmos_carbon_old + total_ocean_carbon_old
258     carbon_diff=total_carbon-total_carbon_old
259 jmc 1.5 print*,'QQ total C, current, old, diff', total_carbon,
260 stephd 1.1 & total_carbon_old, carbon_diff
261     carbon_diff=total_ocean_carbon-total_ocean_carbon_old
262     tmp=carbon_diff-total_flux
263     print*,'QQ ocean C, current, old, diff',total_ocean_carbon,
264     & total_ocean_carbon_old, carbon_diff
265     print*,'QQ air-sea flux, addition diff', total_flux, tmp
266    
267     c if end of forcing cycle, find total change in ocean carbon
268     if (istate.eq.0) then
269     total_ocean_carbon_start=total_ocean_carbon
270     total_ocean_carbon_year=total_ocean_carbon
271     total_atmos_carbon_start=total_atmos_carbon
272     total_atmos_carbon_year=total_atmos_carbon
273     else
274     permCheckPoint = .FALSE.
275     permCheckPoint =
276     & DIFFERENT_MULTIPLE(externForcingCycle,myTime,deltaTClock)
277     if (permCheckPoint) then
278     year_diff_ocean=total_ocean_carbon-total_ocean_carbon_year
279     year_diff_atmos=total_atmos_carbon-total_atmos_carbon_year
280     year_total=(total_ocean_carbon+total_atmos_carbon) -
281     & (total_ocean_carbon_year+total_atmos_carbon_year)
282     start_diff_ocean=total_ocean_carbon-total_ocean_carbon_start
283     start_diff_atmos=total_atmos_carbon-total_atmos_carbon_start
284     start_total=(total_ocean_carbon+total_atmos_carbon) -
285     & (total_ocean_carbon_start+total_atmos_carbon_start)
286     print*,'QQ YEAR END'
287     print*,'year diff: ocean, atmos, total', year_diff_ocean,
288     & year_diff_atmos, year_total
289     print*,'start diff: ocean, atmos, total ', start_diff_ocean,
290     & start_diff_atmos, start_total
291     c
292     total_ocean_carbon_year=total_ocean_carbon
293     total_atmos_carbon_year=total_atmos_carbon
294     endif
295     endif
296    
297 stephd 1.2 c _END_MASTER(myThid)
298 stephd 1.1
299 jmc 1.6 endif
300 stephd 1.1
301     #endif
302     #endif
303    
304 jmc 1.6 RETURN
305     END

  ViewVC Help
Powered by ViewVC 1.1.22