Changeset 26881
- Timestamp:
- 02/10/22 15:04:39 (3 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/examples/SlrGRACE/runme.m ¶
r26880 r26881 2 2 addpath('../Data','../Functions'); 3 3 4 steps=[ 7:7];4 steps=[1:7]; 5 5 6 6 if any(steps==1) % {{{ -
TabularUnified issm/trunk-jpl/src/c/modules/FourierLoveCorex/love_numbers.f90 ¶
r26880 r26881 308 308 if (allow_layer_del.eqv..true.) then 309 309 310 !print*, layerrap, epsdb, nbc310 print*, layerrap, epsdb, nbc 311 311 !do while ((layerrap<=epsdb).and.(nbc>12*6).or.(isnan(layerrap)) ) 312 312 do while ((layerrap<=epsdb).and.(nbc>12).or.(isnan(layerrap)) ) -
TabularUnified issm/trunk-jpl/src/c/modules/FourierLoveCorex/lovenb_sub.f90 ¶
r26880 r26881 48 48 endif 49 49 50 valini=1.d0;51 50 ! Which among the model interfaces is the first to display boundary conditions 52 51 ifirst = 0 … … 66 65 xmin= radius(i)/ra 67 66 xmax= radius(i+1)/ra - epsdb 68 nstep=1 67 nstep=100 69 68 70 69 if (soliddim(i)) then … … 194 193 !write(89,*),xsen,r,ra,cst,mu0,mu,n 195 194 195 196 196 bc(1,1)=xsen*r/ra 197 197 bc(1,2)=xsen/(r*ra) … … 334 334 if (radbc(i)) ifirst = i 335 335 end do 336 337 open(unit=200, file="/home/caronlam/Codes/trunk-exp/trunk-jpl/test/NightlyRun/BC_fourier", status='unknown') 338 do i = 1,nbc 339 do j = 1,nbc 340 !if (bc(i,j)/=0.d0) 341 write(200,*), deg,nbc,i,j, dble(f(11,j)) ,dble(bc(i,j)) 342 enddo 343 enddo 336 ! do i = 1,nbc 337 ! do j = 1,nbc 338 ! if (bc(i,j)/=0.d0) print*, i,j,bc(i,j) 339 ! enddo 340 ! enddo 344 341 ! write(*,*) 345 342 … … 378 375 lovel = sc(nbc-1,1)*ra*go_surf 379 376 lovek = sc(nbc,1)*ra*go0 380 !print*,loveh,lovel, lovek381 377 delta = (1.d0-dble(n+1)/dble(n)*(lovek-1.d0)+2.d0/dble(n)*loveh) 382 378 … … 386 382 if (j<nbc-2) then ! no need for valini restoration for surface. 387 383 sc(j,1) = sc(j,1)*valini**((nbc-j-3)/6+1) 388 389 384 endif 390 !print*,ipiv(j),dble(sc(j,1))391 385 love_kernels(j,1)=sc(j,1) !*valini 392 386 end do -
TabularUnified issm/trunk-jpl/test/NightlyRun/test2071.m ¶
r26880 r26881 104 104 field_values={h,k,l}; 105 105 106 return107 subplot(3,1,1)108 pcolor(0:256,t,log10(abs((hts-h(:,1:257))./hts)))109 set(gca,'yscale', 'log')110 shading flat111 colorbar112 title('h')113 114 subplot(3,1,2)115 pcolor(0:256,t,log10(abs((kts-k(:,1:257))./kts)))116 set(gca,'yscale', 'log')117 shading flat118 colorbar119 title('k')120 121 subplot(3,1,3)122 pcolor(0:256,t,log10(abs((lts-l(:,1:257))./lts)))123 set(gca,'yscale', 'log')124 shading flat125 colorbar126 title('l')127 128 106 129 107 return -
TabularUnified issm/trunk-jpl/test/NightlyRun/test2084.m ¶
r26800 r26881 53 53 md.love.n_temporal_iterations=8; 54 54 %md.love.time=(logspace(-6,5, 2))'*cst; 55 md.love.time=[0; (logspace(-3,5, 99))'*cst];55 md.love.time=[0; (logspace(-3,5, 24))'*cst]; 56 56 57 57 %md.love.time=(linspace(1/12,10, 10*12))'*cst/1e3; -
TabularUnified issm/trunk-jpl/test/NightlyRun/test2084.py ¶
r26840 r26881 65 65 md.love.n_temporal_iterations = 8 66 66 #md.love.time = np.logspace(-6, 5, 2).reshape(-1, 1) * cst 67 md.love.time = np.vstack(([0], np.logspace(-3, 5, 99).reshape(-1, 1) * cst))67 md.love.time = np.vstack(([0], np.logspace(-3, 5, 24).reshape(-1, 1) * cst)) 68 68 69 69 #md.love.time = np.linspace(1/12, 10, 10 * 12).reshape(-1, 1) * cst / 1e3 -
TabularUnified issm/trunk-jpl/test/NightlyRun/test2092.m ¶
r26880 r26881 22 22 23 23 defaultoptions={'KeepVertices',0,'MaxCornerAngle',0.0000000001,'NoBoundaryRefinement',1}; 24 md2d=bamg(model,'domain',dom,'subdomains',co,'hmin', 100e3,'hmax',10000e3,defaultoptions{:});24 md2d=bamg(model,'domain',dom,'subdomains',co,'hmin',50e3,'hmax',10000e3,defaultoptions{:}); 25 25 26 26 colat=sqrt(md2d.mesh.x.^2+md2d.mesh.y.^2)/re;
Note:
See TracChangeset
for help on using the changeset viewer.