Changeset 24263


Ignore:
Timestamp:
10/21/19 11:20:21 (5 years ago)
Author:
jdquinn
Message:

BUG: Missing issmgslsolver was causing failures.

Location:
issm/trunk-jpl/test/NightlyRun
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test3015.m

    r23290 r24263  
    11%Test Name: SquareShelfConstrainedMasstransp2dAdolcForwardDifference
    2 %This test runs test3005 with autodiff on, and checks that
     2%This test runs test3015 with autodiff on, and checks that
    33%the value of the scalar forward difference match a step-wise differential
    44
     
    4545md2=md;
    4646
    47 %evaluate derivative by forward and backward stepping 
     47%evaluate derivative by forward and backward stepping
    4848%forward
    4949md=md2;
     
    7171dVdh_an=(V2-V0)/deltaH;
    7272
    73 %evaluate derivative using ADOLC 
     73%evaluate derivative using ADOLC
    7474md=md2;
    7575md.autodiff.isautodiff=true;
  • issm/trunk-jpl/test/NightlyRun/test3015.py

    r24261 r24263  
    1111from SetIceShelfBC import *
    1212from solve import *
     13from issmgslsolver import issmgslsolver
    1314
    1415
    15 #This test runs test3005 with autodiff on, and checks that
    16 #the value of the scalar forward difference match a step - wise differential
     16#This test runs test3015 with autodiff on, and checks that
     17#the value of the scalar forward difference match a step-wise differential
    1718
    1819#First configure
     
    2425md.masstransport.requested_outputs = ['IceVolume']
    2526md.verbose = verbose('autodiff', True)
     27md.toolkits.DefaultAnalysis = issmgslsolver()
    2628
    2729#setup autodiff parameters
     
    3436index = index - 1
    3537
    36 #parameters for the step - wise derivative
     38#parameters for the step-wise derivative
    3739delta = 0.001
    3840h1 = md.geometry.thickness[index]
  • issm/trunk-jpl/test/NightlyRun/test3019.py

    r23793 r24263  
    1010from dependent import *
    1111from solve import *
     12from issmgslsolver import issmgslsolver
    1213
    1314
     
    1819md = setflowequation(md, 'SSA', 'all')
    1920md.cluster = generic('name', gethostname(), 'np', 1)
    20 #md.toolkits.DefaultAnalysis = issmgslsolver()
     21md.toolkits.DefaultAnalysis = issmgslsolver()
    2122
    2223md.autodiff.isautodiff = True
Note: See TracChangeset for help on using the changeset viewer.