Changeset 26880
- Timestamp:
- 02/10/22 14:24:39 (3 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 3 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/examples/SlrGRACE/runme.m
r26404 r26880 2 2 addpath('../Data','../Functions'); 3 3 4 steps=[ 1:7];4 steps=[7:7]; 5 5 6 6 if any(steps==1) % {{{ -
issm/trunk-jpl/src/c/modules/FourierLoveCorex/love_numbers.f90
r25295 r26880 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)) ) -
issm/trunk-jpl/src/c/modules/FourierLoveCorex/lovenb_sub.f90
r25295 r26880 48 48 endif 49 49 50 valini=1.d0; 50 51 ! Which among the model interfaces is the first to display boundary conditions 51 52 ifirst = 0 … … 65 66 xmin= radius(i)/ra 66 67 xmax= radius(i+1)/ra - epsdb 67 nstep=1 0068 nstep=1 68 69 69 70 if (soliddim(i)) then … … 193 194 !write(89,*),xsen,r,ra,cst,mu0,mu,n 194 195 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 ! 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 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 341 344 ! write(*,*) 342 345 … … 375 378 lovel = sc(nbc-1,1)*ra*go_surf 376 379 lovek = sc(nbc,1)*ra*go0 380 !print*,loveh,lovel, lovek 377 381 delta = (1.d0-dble(n+1)/dble(n)*(lovek-1.d0)+2.d0/dble(n)*loveh) 378 382 … … 382 386 if (j<nbc-2) then ! no need for valini restoration for surface. 383 387 sc(j,1) = sc(j,1)*valini**((nbc-j-3)/6+1) 388 384 389 endif 390 !print*,ipiv(j),dble(sc(j,1)) 385 391 love_kernels(j,1)=sc(j,1) !*valini 386 392 end do -
issm/trunk-jpl/test/NightlyRun/test2071.m
r26807 r26880 104 104 field_values={h,k,l}; 105 105 106 return 107 subplot(3,1,1) 108 pcolor(0:256,t,log10(abs((hts-h(:,1:257))./hts))) 109 set(gca,'yscale', 'log') 110 shading flat 111 colorbar 112 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 flat 118 colorbar 119 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 flat 125 colorbar 126 title('l') 127 106 128 107 129 return -
issm/trunk-jpl/test/NightlyRun/test2092.m
r26800 r26880 22 22 23 23 defaultoptions={'KeepVertices',0,'MaxCornerAngle',0.0000000001,'NoBoundaryRefinement',1}; 24 md2d=bamg(model,'domain',dom,'subdomains',co,'hmin', 50e3,'hmax',10000e3,defaultoptions{:});24 md2d=bamg(model,'domain',dom,'subdomains',co,'hmin',100e3,'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.