Changeset 3535 for trunk/LMDZ.VENUS/libf
- Timestamp:
- Dec 6, 2024, 3:17:08 PM (2 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.VENUS/libf/phyvenus/physiq_mod.F
r3451 r3535 225 225 REAL,save,allocatable :: source(:,:) 226 226 REAL ycoefh(klon,klev) ! coef d'echange pour phytrac 227 REAL :: kzz_p(klev) ! coef d'echange pour phytrac pour le 1D 227 228 REAL yu1(klon) ! vents dans la premiere couche U 228 229 REAL yv1(klon) ! vents dans la premiere couche V … … 1354 1355 ENDDO 1355 1356 ENDDO 1357 1358 if (klon.eq.1) then !For the 1D model 1359 !Reading the prescribed profile from deftank 1360 open(35,file='kzz_p.txt',form='formatted',status='old') 1361 rewind(35) 1362 DO k=1,klev 1363 read(35,*) kzz_p(k) 1364 ENDDO 1365 close(35) 1366 1367 !Implementing the new profile in m2/s 1368 DO k = 1, klev 1369 ycoefh(1,k) = kzz_p(k) 1370 ENDDO 1371 endif 1356 1372 1357 1373 DO iq=1, nqmax
Note: See TracChangeset
for help on using the changeset viewer.