Changeset 3350 for trunk/LMDZ.MARS
- Timestamp:
- May 31, 2024, 3:04:18 PM (6 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3348 r3350 4660 4660 Following commit r3337, threshold for vdifc subtimestep is no longer hardcoded 4661 4661 and explicitly commented. 4662 4663 == 31/05/2024 == JBC 4664 - Correction for the script "launch_orb_1Dchained.sh" in the deftank. 4665 - Small cleanings related to error detection. -
trunk/LMDZ.MARS/deftank/launch_orb_1Dchained.sh
r3213 r3350 88 88 while [ $i_myear -lt $n_myears ]; do 89 89 # Get the new values for the orbital parameters 90 yearlask=$(echo " $eyears_bp_ini + $i_myear*$convert_years" | bc -l)90 yearlask=$(echo "($eyears_bp_ini + $i_myear*$convert_years)/1000." | bc -l) 91 91 found=false 92 92 read -r y1 obl1 ecc1 lsp1 < "$orb_data" -
trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F90
r3262 r3350 268 268 if (startfiles_1D) call writerestart1D('restart1D.txt',psurf,tsurf(1,:),nlayer,size(tsurf,2),temp,u,v,nq,noms,qsurf(1,:,:),q) 269 269 270 write(*,*) "testphys1d: everything is cool ."270 write(*,*) "testphys1d: everything is cool!" 271 271 272 272 END PROGRAM testphys1d -
trunk/LMDZ.MARS/libf/phymars/phyetat0_mod.F90
r3343 r3350 840 840 write(*,*) "phyetat0: Failed loading <perennial_co2ice> : ", & 841 841 "<perennial_co2ice> is set as 10m at the South Pole" 842 if (abs(latitude(ngrid) - (-pi/2.)) < 1.e-5) then 843 perennial_co2ice(ngrid,:) = 10*1.6e3 ! 10m which is convert to kg/m^2 844 qsurf(ngrid,igcm_co2_tmp,:) = qsurf(ngrid - 1,igcm_co2_tmp,:) 845 endif 842 if (abs(latitude(ngrid) - (-pi/2.)) < 1.e-5) perennial_co2ice(ngrid,:) = 10*1.6e3 ! 10m which is convert to kg/m^2 846 843 endif ! not found 847 844 else ! no startfiphyle … … 850 847 d_coef = 4.e-4 851 848 perennial_co2ice = 0. 852 if (abs(latitude(ngrid) - (-pi/2.)) < 1.e-5) then 853 perennial_co2ice(ngrid,:) = 10*1.6e3 ! 10m which is convert to kg/m^2 854 qsurf(ngrid,igcm_co2_tmp,:) = qsurf(ngrid - 1,igcm_co2_tmp,:) 855 endif 849 if (abs(latitude(ngrid) - (-pi/2.)) < 1.e-5) perennial_co2ice(ngrid,:) = 10*1.6e3 ! 10m which is convert to kg/m^2 856 850 endif !startphy_file 857 851 else
Note: See TracChangeset
for help on using the changeset viewer.