Changeset 2912 for trunk/ICOSA_LMDZ
- Timestamp:
- Mar 12, 2023, 6:15:33 PM (21 months ago)
- Location:
- trunk/ICOSA_LMDZ
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ICOSA_LMDZ/make_icosa_lmdz
r2796 r2912 227 227 if [[ -d ../ICOSAGCM ]] ; then 228 228 cd ../ICOSAGCM 229 ./make_icosa -$compil_mode -parallel $parallel -external_ioipsl -with_xios -arch $arch -arch_path $arch_path -job $job $full_flag || exit 1 229 # for now compile using fcm1 230 ./make_icosa -with_fcm1 -$compil_mode -parallel $parallel -external_ioipsl -with_xios -arch $arch -arch_path $arch_path -job $job $full_flag || exit 1 230 231 cd - 231 232 else -
trunk/ICOSA_LMDZ/src/disvert_icosa_lmdz.f90
r2452 r2912 5 5 contains 6 6 7 SUBROUTINE disvert_icosa_lmdz(ap,bp,presnivs )7 SUBROUTINE disvert_icosa_lmdz(ap,bp,presnivs,presinter) 8 8 ! Routine to compute ap(),bp() and presnivs() in the same way as done 9 9 ! in LMDZ for planets (see LMDZ.COMMON/libf/dyn3d_common/disvert_noterre.F) … … 23 23 REAL(rstd),INTENT(OUT) :: bp(:) 24 24 REAL(rstd),INTENT(OUT) :: presnivs(:) 25 REAL(rstd),INTENT(OUT) :: presinter(:) 25 26 26 27 INTEGER :: unit … … 111 112 presnivs(l)=0.5*(ap(l)+bp(l)*preff+ap(l+1)+bp(l+1)*preff) 112 113 ENDDO 114 ! build presinter(), approximative inter-layer pressures 115 DO l=1,llm+1 116 presinter(l)=ap(l)+bp(l)*preff 117 ENDDO 113 118 114 119 ! tell the world about it
Note: See TracChangeset
for help on using the changeset viewer.