Changeset 1345 for trunk/LMDZ.COMMON/libf/dyn3dpar
- Timestamp:
- Sep 8, 2014, 10:09:19 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/dyn3dpar/leapfrog_p.F
r1302 r1345 678 678 679 679 #ifdef NODYN 680 WRITE(lunout,*)"NO DYN !!!!!"680 !WRITE(lunout,*)"NO DYN !!!!!" 681 681 dv(:,:) = 0.D+0 682 682 du(:,:) = 0.D+0 … … 684 684 dq(:,:,:) = 0.D+0 685 685 dp(:) = 0.D+0 686 if (planet_type.eq."generic") then 687 if (ok_guide) then 688 DO l=1,llm 689 ucov(:,l) = ucov(:,l) + dt*attenua(l)* 690 & ((uforc(:,l)-ucov(:,l))/facwind) 691 ENDDO 692 endif 693 endif 686 694 #else 687 695 ! ADAPTATION GCM POUR CP(T) … … 719 727 if (planet_type.eq."generic") then 720 728 if (ok_guide) then 721 du(:,:) = du(:,:) + ((uforc(:,:)-ucov(:,:)) / facwind) 729 DO l=1,llm 730 du(:,l)=du(:,l)+attenua(l)*((uforc(:,l)-ucov(:,l))/facwind) 731 ENDDO 722 732 endif 723 733 endif
Note: See TracChangeset
for help on using the changeset viewer.