Changeset 26880


Ignore:
Timestamp:
02/10/22 14:24:39 (3 years ago)
Author:
caronlam
Message:

DEL: Spada benchmark files for solid earth tests

Location:
issm/trunk-jpl
Files:
3 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/examples/SlrGRACE/runme.m

    r26404 r26880  
    22addpath('../Data','../Functions');
    33
    4 steps=[1:7];
     4steps=[7:7];
    55
    66if any(steps==1) % {{{
  • issm/trunk-jpl/src/c/modules/FourierLoveCorex/love_numbers.f90

    r25295 r26880  
    308308   if (allow_layer_del.eqv..true.) then
    309309
    310       print*, layerrap, epsdb, nbc
     310      !print*, layerrap, epsdb, nbc
    311311      !do while ((layerrap<=epsdb).and.(nbc>12*6).or.(isnan(layerrap)) )
    312312      do while ((layerrap<=epsdb).and.(nbc>12).or.(isnan(layerrap)) )
  • issm/trunk-jpl/src/c/modules/FourierLoveCorex/lovenb_sub.f90

    r25295 r26880  
    4848   endif
    4949
     50        valini=1.d0;
    5051  ! Which among the model interfaces is the first to display boundary conditions
    5152  ifirst = 0
     
    6566   xmin= radius(i)/ra
    6667   xmax= radius(i+1)/ra - epsdb
    67    nstep=100
     68   nstep=1
    6869 
    6970   if (soliddim(i)) then
     
    193194        !write(89,*),xsen,r,ra,cst,mu0,mu,n     
    194195
    195 
    196196        bc(1,1)=xsen*r/ra
    197197        bc(1,2)=xsen/(r*ra)
     
    334334        if (radbc(i)) ifirst = i
    335335  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
    341344! write(*,*)
    342345 
     
    375378        lovel = sc(nbc-1,1)*ra*go_surf
    376379        lovek = sc(nbc,1)*ra*go0
     380        !print*,loveh,lovel, lovek
    377381        delta = (1.d0-dble(n+1)/dble(n)*(lovek-1.d0)+2.d0/dble(n)*loveh)
    378382
     
    382386      if (j<nbc-2) then ! no need for valini restoration for surface.
    383387         sc(j,1) = sc(j,1)*valini**((nbc-j-3)/6+1)
     388       
    384389      endif
     390        !print*,ipiv(j),dble(sc(j,1))
    385391           love_kernels(j,1)=sc(j,1) !*valini
    386392        end do
  • issm/trunk-jpl/test/NightlyRun/test2071.m

    r26807 r26880  
    104104field_values={h,k,l};
    105105
     106return
     107subplot(3,1,1)
     108pcolor(0:256,t,log10(abs((hts-h(:,1:257))./hts)))       
     109set(gca,'yscale', 'log')
     110shading flat
     111colorbar
     112title('h')
     113
     114subplot(3,1,2)
     115pcolor(0:256,t,log10(abs((kts-k(:,1:257))./kts)))       
     116set(gca,'yscale', 'log')
     117shading flat
     118colorbar
     119title('k')
     120
     121subplot(3,1,3)
     122pcolor(0:256,t,log10(abs((lts-l(:,1:257))./lts)))       
     123set(gca,'yscale', 'log')
     124shading flat
     125colorbar
     126title('l')
     127
    106128
    107129return
  • issm/trunk-jpl/test/NightlyRun/test2092.m

    r26800 r26880  
    2222
    2323defaultoptions={'KeepVertices',0,'MaxCornerAngle',0.0000000001,'NoBoundaryRefinement',1};
    24 md2d=bamg(model,'domain',dom,'subdomains',co,'hmin',50e3,'hmax',10000e3,defaultoptions{:});
     24md2d=bamg(model,'domain',dom,'subdomains',co,'hmin',100e3,'hmax',10000e3,defaultoptions{:});
    2525
    2626colat=sqrt(md2d.mesh.x.^2+md2d.mesh.y.^2)/re;
Note: See TracChangeset for help on using the changeset viewer.