source: codes/icosagcm/devel/src/diagnostics/observable.f90 @ 533

Last change on this file since 533 was 533, checked in by dubos, 7 years ago

devel : reorganization of source tree

File size: 11.8 KB
Line 
1MODULE observable_mod
2  USE icosa
3  IMPLICIT NONE
4  PRIVATE
5
6  TYPE(t_field),POINTER, SAVE :: f_buf_i(:), &
7       f_buf_uh(:), & ! horizontal velocity, different from prognostic velocity if NH
8       f_buf_ulon(:), f_buf_ulat(:), &
9       f_buf_u3d(:) ! unused, remove ?
10  TYPE(t_field),POINTER, SAVE :: f_buf1_i(:), f_buf2_i(:)
11  TYPE(t_field),POINTER, SAVE :: f_buf_v(:), f_buf_s(:), f_buf_p(:)
12  TYPE(t_field),POINTER, SAVE :: f_pmid(:)
13
14! temporary shared variable for caldyn
15  TYPE(t_field),POINTER, SAVE :: f_theta(:)
16
17  PUBLIC init_observable, write_output_fields_basic, f_theta
18
19CONTAINS
20 
21  SUBROUTINE init_observable
22    CALL allocate_field(f_buf_i,   field_t,type_real,llm,name="buffer_i")
23    CALL allocate_field(f_buf1_i,   field_t,type_real,llm,name="buffer1_i")
24    CALL allocate_field(f_buf2_i,   field_t,type_real,llm,name="buffer2_i")
25    CALL allocate_field(f_buf_p,   field_t,type_real,llm+1) 
26    CALL allocate_field(f_buf_u3d, field_t,type_real,3,llm)  ! 3D vel at cell centers
27    CALL allocate_field(f_buf_ulon,field_t,type_real,llm, name="buf_ulon")
28    CALL allocate_field(f_buf_ulat,field_t,type_real,llm, name="buf_ulat")
29    CALL allocate_field(f_buf_uh,  field_u,type_real,llm, name="buf_uh")
30    CALL allocate_field(f_buf_v,   field_z,type_real,llm, name="buf_v")
31    CALL allocate_field(f_buf_s,   field_t,type_real, name="buf_s")
32
33    CALL allocate_field(f_theta, field_t,type_real,llm,nqdyn,  name='theta') ! potential temperature
34    CALL allocate_field(f_pmid,  field_t,type_real,llm,  name='pmid')       ! mid layer pressure
35  END SUBROUTINE init_observable
36
37  SUBROUTINE write_output_fields_basic(init, f_phis, f_ps, f_mass, f_geopot, f_theta_rhodz, f_u, f_W, f_q)
38    USE xios_mod
39    USE disvert_mod
40    USE wind_mod
41    USE output_field_mod
42    USE omp_para
43    USE time_mod
44    USE xios_mod
45    USE earth_const
46    USE pression_mod
47    USE vertical_interp_mod
48    USE theta2theta_rhodz_mod
49    USE omega_mod
50    LOGICAL, INTENT(IN) :: init
51    INTEGER :: l
52    REAL :: scalar(1)
53    REAL :: mid_ap(llm)
54    REAL :: mid_bp(llm)
55
56    TYPE(t_field),POINTER :: f_phis(:), f_ps(:), f_mass(:), f_geopot(:), f_theta_rhodz(:), f_u(:), f_W(:), f_q(:)
57!    IF (is_master) PRINT *,'CALL write_output_fields_basic'
58
59    CALL transfert_request(f_ps,req_i1)
60   
61    IF(init) THEN
62       scalar(1)=dt
63       IF (is_omp_master) CALL xios_send_field("timestep", scalar)
64       scalar(1)=preff
65       IF (is_omp_master) CALL xios_send_field("preff", scalar)
66       IF (is_omp_master) CALL xios_send_field("ap",ap)
67       IF (is_omp_master) CALL xios_send_field("bp",bp)
68       DO l=1,llm
69          mid_ap(l)=(ap(l)+ap(l+1))/2
70          mid_bp(l)=(bp(l)+bp(l+1))/2
71       ENDDO
72       IF (is_omp_master) CALL xios_send_field("mid_ap",mid_ap)
73       IF (is_omp_master) CALL xios_send_field("mid_bp",mid_bp)
74
75       CALL output_field("phis",f_phis)
76       CALL output_field("Ai",geom%Ai)       
77    END IF
78
79    IF(nqdyn>1) THEN
80       CALL divide_by_mass(2, f_mass, f_theta_rhodz, f_buf_i)
81       IF(init) THEN
82          CALL output_field("dyn_q_init",f_buf_i)
83       ELSE
84          CALL output_field("dyn_q",f_buf_i)
85       END IF
86    END IF
87
88    CALL divide_by_mass(1, f_mass, f_theta_rhodz, f_buf_i)
89    IF(init) THEN
90       CALL output_field("theta_init",f_buf_i)
91    ELSE
92       CALL output_field("theta",f_buf_i)
93    END IF
94
95    CALL pression_mid(f_ps, f_pmid)
96    CALL diagnose_temperature(f_pmid, f_q, f_buf_i) ! f_buf_i : IN = theta, out = T
97
98    IF(init) THEN
99       CALL output_field("temp_init",f_buf_i)
100    ELSE
101       CALL output_field("temp",f_buf_i)
102       CALL vertical_interp(f_pmid,f_buf_i,f_buf_s,85000.)
103       CALL output_field("t850",f_buf_s)
104       CALL vertical_interp(f_pmid,f_buf_i,f_buf_s,50000.)
105       CALL output_field("t500",f_buf_s)
106       CALL vertical_interp(f_pmid,f_buf_i,f_buf_s,preff)
107       CALL output_field("SST",f_buf_s)       
108    END IF
109   
110    CALL progonostic_vel_to_horiz(f_geopot, f_ps, f_mass, f_u, f_W, f_buf_uh, f_buf_i)
111    CALL transfert_request(f_buf_uh,req_e1_vect) 
112    CALL un2ulonlat(f_buf_uh, f_buf_ulon, f_buf_ulat)
113    IF(init) THEN
114       CALL output_field("uz_init",f_buf_i)
115       CALL output_field("ulon_init",f_buf_ulon)
116       CALL output_field("ulat_init",f_buf_ulat)
117       CALL output_field("p_init",f_pmid)
118       CALL output_field("ps_init",f_ps)
119       CALL output_field("mass_init",f_mass)
120       CALL output_field("geopot_init",f_geopot)
121       CALL output_field("q_init",f_q)
122    ELSE
123       CALL output_field("uz",f_buf_i)
124       CALL output_field("ulon",f_buf_ulon)
125       CALL output_field("ulat",f_buf_ulat)
126       CALL output_field("p",f_pmid)
127       CALL output_field("ps",f_ps)
128       CALL output_field("mass",f_mass)
129       CALL output_field("geopot",f_geopot)
130       CALL output_field("q",f_q)
131
132       !       CALL output_field("exner",f_pk)
133       !       CALL output_field("pv",f_qv)
134       
135       CALL vertical_interp(f_pmid,f_buf_ulon,f_buf_s,85000.)
136       CALL output_field("u850",f_buf_s)
137       CALL vertical_interp(f_pmid,f_buf_ulon,f_buf_s,50000.)
138       CALL output_field("u500",f_buf_s)
139       
140       CALL vertical_interp(f_pmid,f_buf_ulat,f_buf_s,85000.)
141       CALL output_field("v850",f_buf_s)
142       CALL vertical_interp(f_pmid,f_buf_ulat,f_buf_s,50000.)
143       CALL output_field("v500",f_buf_s)
144
145       CALL vertical_interp(f_pmid,f_buf_i,f_buf_s,85000.)
146       CALL output_field("w850",f_buf_s)
147       CALL vertical_interp(f_pmid,f_buf_i,f_buf_s,50000.)
148       CALL output_field("w500",f_buf_s)   
149
150       CALL w_omega(f_ps, f_u, f_buf_i)
151       CALL output_field("omega",f_buf_i)
152       CALL vertical_interp(f_pmid,f_buf_i,f_buf_s,85000.)
153       CALL output_field("omega850",f_buf_s)
154       CALL vertical_interp(f_pmid,f_buf_i,f_buf_s,50000.)
155       CALL output_field("omega500",f_buf_s)
156    END IF
157
158  END SUBROUTINE write_output_fields_basic
159 
160 !------------------- Conversion from prognostic to observable variables ------------------
161
162  SUBROUTINE progonostic_vel_to_horiz(f_geopot, f_ps, f_rhodz, f_u, f_W, f_uh, f_uz)
163    USE disvert_mod
164    TYPE(t_field), POINTER :: f_geopot(:), f_ps(:), f_rhodz(:), &
165         f_u(:), f_W(:), f_uz(:), &  ! IN
166         f_uh(:)                         ! OUT
167    REAL(rstd),POINTER :: geopot(:,:), ps(:), rhodz(:,:), u(:,:), W(:,:), uh(:,:), uz(:,:)
168    INTEGER :: ind
169   
170    DO ind=1,ndomain
171       IF (.NOT. assigned_domain(ind)) CYCLE
172       CALL swap_dimensions(ind)
173       CALL swap_geometry(ind)
174       geopot = f_geopot(ind)
175       rhodz = f_rhodz(ind)
176       u = f_u(ind)
177       W = f_W(ind)
178       uh  = f_uh(ind)
179       IF(caldyn_eta==eta_mass) THEN
180          ps=f_ps(ind)
181          CALL compute_rhodz(.TRUE., ps, rhodz)
182       END IF
183       uz = f_uz(ind)
184       CALL compute_prognostic_vel_to_horiz(geopot,rhodz,u,W,uh,uz)
185    END DO
186  END SUBROUTINE progonostic_vel_to_horiz
187 
188  SUBROUTINE compute_prognostic_vel_to_horiz(Phi, rhodz, u, W, uh, uz)
189    USE omp_para
190    REAL(rstd), INTENT(IN) :: Phi(iim*jjm,llm+1)
191    REAL(rstd), INTENT(IN) :: rhodz(iim*jjm,llm)
192    REAL(rstd), INTENT(IN) :: u(3*iim*jjm,llm)
193    REAL(rstd), INTENT(IN) :: W(iim*jjm,llm+1)
194    REAL(rstd), INTENT(OUT) :: uh(3*iim*jjm,llm)
195    REAL(rstd), INTENT(OUT) :: uz(iim*jjm,llm)
196    INTEGER :: ij,l
197    REAL(rstd) :: F_el(3*iim*jjm,llm+1)
198    REAL(rstd) :: uu_right, uu_lup, uu_ldown, W_el, DePhil
199    ! NB : u and uh are not in DEC form, they are normal components   
200    ! => we must divide by de
201    IF(hydrostatic) THEN
202       uh(:,:)=u(:,:)
203       uz(:,:)=0.
204    ELSE
205       DO l=ll_begin, ll_endp1 ! compute on l levels (interfaces)
206          DO ij=ij_begin_ext, ij_end_ext
207             ! Compute on edge 'right'
208             W_el   = .5*( W(ij,l)+W(ij+t_right,l) )
209             DePhil = ne_right*(Phi(ij+t_right,l)-Phi(ij,l))
210             F_el(ij+u_right,l)   = DePhil*W_el/de(ij+u_right)
211             ! Compute on edge 'lup'
212             W_el   = .5*( W(ij,l)+W(ij+t_lup,l) )
213             DePhil = ne_lup*(Phi(ij+t_lup,l)-Phi(ij,l))
214             F_el(ij+u_lup,l)   = DePhil*W_el/de(ij+u_lup)
215             ! Compute on edge 'ldown'
216             W_el   = .5*( W(ij,l)+W(ij+t_ldown,l) )
217             DePhil = ne_ldown*(Phi(ij+t_ldown,l)-Phi(ij,l))
218             F_el(ij+u_ldown,l) = DePhil*W_el/de(ij+u_ldown)
219          END DO
220       END DO
221
222       DO l=ll_begin, ll_end ! compute on k levels (full levels)
223          DO ij=ij_begin_ext, ij_end_ext
224             ! w = vertical momentum = g^-2*dPhi/dt = uz/g
225             uz(ij,l) = (.5*g)*(W(ij,l)+W(ij,l+1))/rhodz(ij,l)
226             ! uh = u-w.grad(Phi) = u - uz.grad(z)
227             uh(ij+u_right,l) = u(ij+u_right,l) - (F_el(ij+u_right,l)+F_el(ij+u_right,l+1)) / (rhodz(ij,l)+rhodz(ij+t_right,l))
228             uh(ij+u_lup,l)   = u(ij+u_lup,l)   - (F_el(ij+u_lup,l)+F_el(ij+u_lup,l+1))     / (rhodz(ij,l)+rhodz(ij+t_lup,l))
229             uh(ij+u_ldown,l) = u(ij+u_ldown,l) - (F_el(ij+u_ldown,l)+F_el(ij+u_ldown,l+1)) / (rhodz(ij,l)+rhodz(ij+t_ldown,l))
230          END DO
231       END DO
232
233    END IF
234  END SUBROUTINE compute_prognostic_vel_to_horiz
235
236  SUBROUTINE diagnose_temperature(f_pmid,f_q,f_temp)
237    USE icosa
238    USE pression_mod
239    IMPLICIT NONE
240    TYPE(t_field), POINTER :: f_pmid(:)           ! IN
241    TYPE(t_field), POINTER :: f_q(:)            ! IN
242    TYPE(t_field), POINTER :: f_temp(:)         ! INOUT
243   
244    REAL(rstd), POINTER :: pmid(:,:)
245    REAL(rstd), POINTER :: q(:,:,:)
246    REAL(rstd), POINTER :: temp(:,:)
247    INTEGER :: ind
248   
249    DO ind=1,ndomain
250       IF (.NOT. assigned_domain(ind)) CYCLE
251       CALL swap_dimensions(ind)
252       CALL swap_geometry(ind)
253       pmid=f_pmid(ind)
254       q=f_q(ind)
255       temp=f_temp(ind)
256       CALL compute_diagnose_temp(pmid,q,temp)
257    END DO
258  END SUBROUTINE diagnose_temperature
259 
260  SUBROUTINE compute_diagnose_temp(pmid,q,temp)
261    USE omp_para
262    USE pression_mod
263    REAL(rstd),INTENT(IN)    :: pmid(iim*jjm,llm)
264    REAL(rstd),INTENT(IN)    :: q(iim*jjm,llm,nqtot)
265    REAL(rstd),INTENT(INOUT) :: temp(iim*jjm,llm)
266
267    REAL(rstd) :: Rd, p_ik, theta_ik, temp_ik, qv, chi, Rmix
268    INTEGER :: ij,l
269
270    Rd = kappa*cpp
271    DO l=ll_begin,ll_end
272       DO ij=ij_begin,ij_end
273          p_ik = pmid(ij,l)
274          theta_ik = temp(ij,l)
275          qv = q(ij,l,1) ! water vaper mixing ratio = mv/md
276          SELECT CASE(caldyn_thermo)
277          CASE(thermo_theta)
278             temp_ik = theta_ik*((p_ik/preff)**kappa)
279          CASE(thermo_entropy)
280             temp_ik = Treff*exp((theta_ik + Rd*log(p_ik/preff))/cpp)
281          CASE(thermo_moist)
282             Rmix = Rd+qv*Rv
283             chi = ( theta_ik + Rmix*log(p_ik/preff) ) / (cpp + qv*cppv) ! log(T/Treff)
284             temp_ik = Treff*exp(chi)
285          END SELECT
286          IF(physics_thermo==thermo_fake_moist) temp_ik=temp_ik/(1+0.608*qv)
287          temp(ij,l)=temp_ik
288       END DO
289    END DO
290  END SUBROUTINE compute_diagnose_temp
291
292  SUBROUTINE Tv2T(f_Tv, f_q, f_T)
293    TYPE(t_field), POINTER :: f_TV(:)
294    TYPE(t_field), POINTER :: f_q(:)
295    TYPE(t_field), POINTER :: f_T(:)
296   
297    REAL(rstd),POINTER :: Tv(:,:), q(:,:,:), T(:,:)
298    INTEGER :: ind
299   
300    DO ind=1,ndomain
301       IF (.NOT. assigned_domain(ind)) CYCLE
302       CALL swap_dimensions(ind)
303       CALL swap_geometry(ind)
304       Tv=f_Tv(ind)
305       T=f_T(ind)
306       SELECT CASE(physics_thermo)
307       CASE(thermo_dry)
308          T=Tv
309       CASE(thermo_fake_moist)
310          q=f_q(ind)
311          T=Tv/(1+0.608*q(:,:,1))
312       END SELECT
313    END DO
314  END SUBROUTINE Tv2T
315
316  SUBROUTINE divide_by_mass(iq, f_mass, f_theta_rhodz, f_theta)
317    INTEGER, INTENT(IN) :: iq
318    TYPE(t_field), POINTER :: f_mass(:), f_theta_rhodz(:), f_theta(:)
319    REAL(rstd), POINTER :: mass(:,:), theta_rhodz(:,:,:), theta(:,:)
320    INTEGER :: ind
321    DO ind=1,ndomain
322       IF (.NOT. assigned_domain(ind)) CYCLE
323       CALL swap_dimensions(ind)
324       CALL swap_geometry(ind)
325       mass=f_mass(ind)
326       theta_rhodz=f_theta_rhodz(ind)
327       theta=f_theta(ind)
328       theta(:,:) = theta_rhodz(:,:,iq) / mass(:,:)
329    END DO
330  END SUBROUTINE divide_by_mass
331   
332END MODULE observable_mod
Note: See TracBrowser for help on using the repository browser.