Changeset 190
- Timestamp:
- Jul 4, 2011, 11:04:57 AM (14 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r185 r190 764 764 boundaries for soil temperature. 765 765 766 == 17/06/2011 == AC766 == 01/07/2011 == AC 767 767 - Added new settings for the Martian thermals from new LES observations 768 768 - Revamped thermcell's module variables to allow it's removal … … 770 770 - Switched from dynamic to static memory allocation for all thermals variable 771 771 to gain computation speed 772 773 == 04/07/2011 == AC 774 - Minor setting modification to thermals 775 - Added new flux optimization in thermcell_main_mars.F90, to run properly 776 in 3D -
trunk/LMDZ.MARS/libf/phymars/calltherm_mars.F90
r185 r190 87 87 ! =================== 88 88 89 r_aspect_thermals= 3.89 r_aspect_thermals=2. 90 90 nsplit_thermals=40 91 91 call getin("nsplit_thermals",nsplit_thermals) -
trunk/LMDZ.MARS/libf/phymars/thermcell_main_mars.F90
r185 r190 865 865 866 866 do ig=1,ngridmx 867 867 868 if (fm(ig,l+1).lt.0.) then 868 print*,'fm1<0',l+1,lmax(ig),fm(ig,l+1) 869 ncorecfm1=ncorecfm1+1 869 if((l+1) .eq. lmax(ig)) then 870 detr(ig,l)=detr(ig,l)+fm(ig,l+1) 871 fm(ig,l+1)=0. 872 ncorecfm2=ncorecfm2+1 873 else 874 print*,'fm(l+1)<0 : ig, l+1,lmax :',ig,l+1,lmax(ig),fm(ig,l+1) 875 ncorecfm1=ncorecfm1+1 870 876 fm(ig,l+1)=fm(ig,l) 871 877 detr(ig,l)=entr(ig,l) 872 endif 878 endif 879 endif 880 873 881 enddo 874 882
Note: See TracChangeset
for help on using the changeset viewer.