Changeset 21056
- Timestamp:
- 08/03/16 08:43:34 (9 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 485 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/solve/solve.m
r21054 r21056 7 7 % 8 8 % solution types available comprise: 9 % - 'Stressbalance Solution'or 'sb'10 % - 'Masstransport Solution'or 'mt'11 % - 'Thermal Solution'or 'th'12 % - 'Steadystate Solution'or 'st'13 % - 'Transient Solution'or 'tr'14 % - 'Balancethickness Solution'or 'mc'15 % - 'Balancevelocity Solution'or 'bv'16 % - 'BedSlope Solution'or 'bs'17 % - 'SurfaceSlope Solution'or 'ss'18 % - 'Hydrology Solution'or 'hy'19 % - 'DamageEvolution Solution'or 'da'20 % - 'Gia Solution'or 'gi'21 % - 'Sealevelrise Solution'or 'sl'9 % - 'Stressbalance' or 'sb' 10 % - 'Masstransport' or 'mt' 11 % - 'Thermal' or 'th' 12 % - 'Steadystate' or 'st' 13 % - 'Transient' or 'tr' 14 % - 'Balancethickness' or 'mc' 15 % - 'Balancevelocity' or 'bv' 16 % - 'BedSlope' or 'bs' 17 % - 'SurfaceSlope' or 'ss' 18 % - 'Hydrology' or 'hy' 19 % - 'DamageEvolution' or 'da' 20 % - 'Gia' or 'gi' 21 % - 'Sealevelrise' or 'sl' 22 22 % 23 23 % extra options: … … 28 28 % 29 29 % Examples: 30 % md=solve(md,'Stressbalance Solution');31 % 30 % md=solve(md,'Stressbalance'); 31 % md=solve(md,'sb'); 32 32 33 33 if ~ischar(solutionstring) -
issm/trunk-jpl/src/m/solve/solve.py
r21055 r21056 20 20 21 21 solution types available comprise: 22 - 'Stressbalance Solution'or 'sb'23 - 'Masstransport Solution'or 'mt'24 - 'Thermal Solution'or 'th'25 - 'Steadystate Solution'or 'st'26 - 'Transient Solution'or 'tr'27 - 'Balancethickness Solution' or 'mc'28 - 'Balancevelocity Solution'or 'bv'29 - 'BedSlope Solution'or 'bs'30 - 'SurfaceSlope Solution'or 'ss'31 - 'Hydrology Solution'or 'hy'32 - 'DamageEvolution Solution'or 'da'33 - 'Gia Solution'or 'gi'34 - 'Sealevelrise Solution'or 'sl'22 - 'Stressbalance' or 'sb' 23 - 'Masstransport' or 'mt' 24 - 'Thermal' or 'th' 25 - 'Steadystate' or 'st' 26 - 'Transient' or 'tr' 27 - 'Balancethickness' or 'mc' 28 - 'Balancevelocity' or 'bv' 29 - 'BedSlope' or 'bs' 30 - 'SurfaceSlope' or 'ss' 31 - 'Hydrology' or 'hy' 32 - 'DamageEvolution' or 'da' 33 - 'Gia' or 'gi' 34 - 'Sealevelrise' or 'sl' 35 35 36 36 extra options: 37 37 - loadonly : does not solve. only load results 38 38 - checkconsistency : 'yes' or 'no' (default is 'yes'), ensures checks on consistency of model 39 39 - restart: 'directory name (relative to the execution directory) where the restart file is located. 40 40 41 41 Examples: 42 md=solve(md,'Stressbalance Solution');43 42 md=solve(md,'Stressbalance'); 43 md=solve(md,'sb'); 44 44 """ 45 45 -
issm/trunk-jpl/test/NightlyRun/test101.m
r21049 r21056 17 17 }; 18 18 19 md=solve(md,'Stressbalance Solution');19 md=solve(md,'Stressbalance'); 20 20 21 21 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test101.py
r21049 r21056 28 28 ] 29 29 30 md=solve(md,'Stressbalance Solution')30 md=solve(md,'Stressbalance') 31 31 32 32 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test102.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test102.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test103.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 17 md.stressbalance.requested_outputs=['default','StressTensorxx','StressTensoryy','StressTensorzz','StressTensorxy','StressTensorxz','StressTensoryz'] 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test104.m
r21049 r21056 6 6 md=setflowequation(md,'FS','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test104.py
r21049 r21056 15 15 md=setflowequation(md,'FS','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test105.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Masstransport Solution');7 md=solve(md,'Masstransport'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test105.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Masstransport Solution')16 md=solve(md,'Masstransport') 17 17 18 18 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test106.m
r21049 r21056 8 8 md.masstransport.stabilization=3; 9 9 md.masstransport.spcthickness=md.geometry.thickness; 10 md=solve(md,'Masstransport Solution');10 md=solve(md,'Masstransport'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test106.py
r21049 r21056 18 18 md.masstransport.stabilization=3 19 19 md.masstransport.spcthickness=md.geometry.thickness 20 md=solve(md,'Masstransport Solution')20 md=solve(md,'Masstransport') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test107.m
r21049 r21056 6 6 md=extrude(md,5,3.); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Masstransport Solution');8 md=solve(md,'Masstransport'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test107.py
r21049 r21056 15 15 md.extrude(5,3.) 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Masstransport Solution')17 md=solve(md,'Masstransport') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test108.m
r21049 r21056 7 7 md.timestepping.time_step=0; 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 md=solve(md,'Thermal Solution');9 md=solve(md,'Thermal'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test108.py
r21049 r21056 16 16 md.timestepping.time_step=0 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Thermal Solution')18 md=solve(md,'Thermal') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test109.m
r21049 r21056 11 11 md.transient.isthermal=1; 12 12 md.transient.isgroundingline=0; 13 md=solve(md,'Transient Solution');13 md=solve(md,'Transient'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test109.py
r21049 r21056 20 20 md.transient.isthermal=True 21 21 md.transient.isgroundingline=False 22 md=solve(md,'Transient Solution')22 md=solve(md,'Transient') 23 23 24 24 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test110.m
r21049 r21056 7 7 md.transient.requested_outputs={'IceVolume'}; 8 8 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test110.py
r21049 r21056 16 16 md.transient.requested_outputs=['IceVolume'] 17 17 18 md=solve(md,'Transient Solution')18 md=solve(md,'Transient') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test1101.m
r21049 r21056 42 42 %Compute the stressbalance 43 43 md.cluster=generic('name',oshostname(),'np',8); 44 md=solve(md,'Stressbalance Solution');44 md=solve(md,'Stressbalance'); 45 45 46 46 %Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1101.py
r21049 r21056 55 55 #Compute the stressbalance 56 56 md.cluster=generic('name',oshostname(),'np',8) 57 md=solve(md,'Stressbalance Solution')57 md=solve(md,'Stressbalance') 58 58 59 59 #Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1102.m
r21049 r21056 51 51 md.stressbalance.restol=1.; 52 52 md.cluster=generic('name',oshostname(),'np',8); 53 md=solve(md,'Stressbalance Solution');53 md=solve(md,'Stressbalance'); 54 54 55 55 %Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1102.py
r21049 r21056 64 64 md.stressbalance.restol=1. 65 65 md.cluster=generic('name',oshostname(),'np',8) 66 md=solve(md,'Stressbalance Solution')66 md=solve(md,'Stressbalance') 67 67 68 68 #Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1103.m
r21049 r21056 41 41 %Compute the stressbalance 42 42 md.cluster=generic('name',oshostname(),'np',8); 43 md=solve(md,'Stressbalance Solution');43 md=solve(md,'Stressbalance'); 44 44 45 45 %Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1103.py
r21049 r21056 54 54 #Compute the stressbalance 55 55 md.cluster=generic('name',oshostname(),'np',8) 56 md=solve(md,'Stressbalance Solution')56 md=solve(md,'Stressbalance') 57 57 58 58 #Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1104.m
r21049 r21056 39 39 md.stressbalance.abstol=NaN; 40 40 md.cluster=generic('name',oshostname(),'np',8); 41 md=solve(md,'Stressbalance Solution');41 md=solve(md,'Stressbalance'); 42 42 pos=find(md.mesh.x==0. | md.mesh.y==0. | md.mesh.x==max(md.mesh.x) | md.mesh.y==max(md.mesh.y)); 43 43 md.stressbalance.spcvx(pos)=md.results.StressbalanceSolution.Vx(pos); … … 45 45 md.stressbalance.vertex_pairing=[]; 46 46 md=setflowequation(md,'FS','all'); 47 md=solve(md,'Stressbalance Solution');47 md=solve(md,'Stressbalance'); 48 48 49 49 %Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1104.py
r21049 r21056 50 50 md.stressbalance.abstol=float('NaN') 51 51 md.cluster=generic('name',oshostname(),'np',8) 52 md=solve(md,'Stressbalance Solution')52 md=solve(md,'Stressbalance') 53 53 pos=numpy.nonzero(logical_or_n(md.mesh.x==0.,md.mesh.y==0.,md.mesh.x==numpy.max(md.mesh.x),md.mesh.y==numpy.max(md.mesh.y))) 54 54 md.stressbalance.spcvx[pos]=md.results.StressbalanceSolution.Vx[pos] … … 56 56 md.stressbalance.vertex_pairing=numpy.empty((0,2),int) 57 57 md=setflowequation(md,'FS','all') 58 md=solve(md,'Stressbalance Solution')58 md=solve(md,'Stressbalance') 59 59 60 60 #Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1105.m
r21049 r21056 65 65 %Compute the stressbalance 66 66 md.cluster=generic('name',oshostname(),'np',8); 67 md=solve(md,'Stressbalance Solution');67 md=solve(md,'Stressbalance'); 68 68 69 69 %Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1105.py
r21049 r21056 77 77 #Compute the stressbalance 78 78 md.cluster=generic('name',oshostname(),'np',8) 79 md=solve(md,'Stressbalance Solution')79 md=solve(md,'Stressbalance') 80 80 81 81 #Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1106.m
r21049 r21056 43 43 %Compute the stressbalance 44 44 md.cluster=generic('name',oshostname(),'np',8); 45 md=solve(md,'Stressbalance Solution');45 md=solve(md,'Stressbalance'); 46 46 47 47 %Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1106.py
r21049 r21056 53 53 #Compute the stressbalance 54 54 md.cluster=generic('name',oshostname(),'np',8) 55 md=solve(md,'Stressbalance Solution')55 md=solve(md,'Stressbalance') 56 56 57 57 #Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1107.m
r21049 r21056 60 60 %Compute the stressbalance 61 61 md.cluster=generic('name',oshostname(),'np',8); 62 md=solve(md,'Stressbalance Solution');62 md=solve(md,'Stressbalance'); 63 63 64 64 %Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1107.py
r21049 r21056 74 74 #Compute the stressbalance 75 75 md.cluster=generic('name',oshostname(),'np',8) 76 md=solve(md,'Stressbalance Solution')76 md=solve(md,'Stressbalance') 77 77 78 78 #Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1108.m
r21049 r21056 40 40 %Compute the stressbalance 41 41 md.cluster=generic('name',oshostname(),'np',8); 42 md=solve(md,'Stressbalance Solution');42 md=solve(md,'Stressbalance'); 43 43 md.stressbalance.reltol=NaN; 44 44 md.stressbalance.abstol=NaN; … … 52 52 md.stressbalance.spcvy(pos)=md.results.StressbalanceSolution.Vy(pos); 53 53 md=setflowequation(md,'FS','all'); 54 md=solve(md,'Stressbalance Solution');54 md=solve(md,'Stressbalance'); 55 55 56 56 %Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1108.py
r21049 r21056 52 52 md.cluster=generic('name',oshostname(),'np',8) 53 53 md.verbose=verbose('convergence',True) 54 md=solve(md,'Stressbalance Solution')54 md=solve(md,'Stressbalance') 55 55 md.stressbalance.reltol=float('NaN') 56 56 md.stressbalance.abstol=float('NaN') … … 64 64 md.stressbalance.spcvy[pos]=md.results.StressbalanceSolution.Vy[pos] 65 65 md=setflowequation(md,'FS','all') 66 md=solve(md,'Stressbalance Solution')66 md=solve(md,'Stressbalance') 67 67 68 68 #Plot the results and save them -
issm/trunk-jpl/test/NightlyRun/test1109.m
r21049 r21056 50 50 %Compute the stressbalance 51 51 md.cluster=generic('name',oshostname(),'np',8); 52 md=solve(md,'Stressbalance Solution');52 md=solve(md,'Stressbalance'); 53 53 54 54 vx=(md.results.StressbalanceSolution.Vx); -
issm/trunk-jpl/test/NightlyRun/test111.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.transient.requested_outputs={'IceVolume'}; 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test111.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 17 md.transient.requested_outputs=['IceVolume'] 18 md=solve(md,'Transient Solution')18 md=solve(md,'Transient') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test1110.m
r21049 r21056 59 59 md.cluster=generic('name',oshostname(),'np',8); 60 60 md.verbose=verbose('convergence',true,'solution',true); 61 md=solve(md,'Transient Solution');61 md=solve(md,'Transient'); 62 62 63 63 %save the results -
issm/trunk-jpl/test/NightlyRun/test112.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'SurfaceSlope Solution');7 md=solve(md,'SurfaceSlope'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test112.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'SurfaceSlope Solution')16 md=solve(md,'SurfaceSlope') 17 17 18 18 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test113.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'SurfaceSlope Solution');8 md=solve(md,'SurfaceSlope'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test113.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'SurfaceSlope Solution')17 md=solve(md,'SurfaceSlope') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test114.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'BedSlope Solution');7 md=solve(md,'BedSlope'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test114.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'BedSlope Solution')16 md=solve(md,'BedSlope') 17 17 18 18 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test115.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'BedSlope Solution');8 md=solve(md,'BedSlope'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test115.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'BedSlope Solution')17 md=solve(md,'BedSlope') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test116.m
r21049 r21056 8 8 md=setflowequation(md,'SSA','all'); 9 9 md.cluster=generic('name',oshostname(),'np',3); 10 md=solve(md,'Balancethickness Solution');10 md=solve(md,'Balancethickness'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test116.py
r21049 r21056 18 18 md=setflowequation(md,'SSA','all') 19 19 md.cluster=generic('name',oshostname(),'np',3) 20 md=solve(md,'Balancethickness Solution')20 md=solve(md,'Balancethickness') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test120.m
r21049 r21056 12 12 13 13 md.cluster=generic('name',oshostname(),'np',3); 14 md=solve(md,'Thermal Solution');14 md=solve(md,'Thermal'); 15 15 16 16 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test120.py
r21049 r21056 22 22 23 23 md.cluster=generic('name',oshostname(),'np',3) 24 md=solve(md,'Thermal Solution')24 md=solve(md,'Thermal') 25 25 26 26 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test1201.m
r21049 r21056 39 39 md.settings.output_frequency=500; %keep only last step 40 40 md.verbose=verbose(); 41 md=solve(md,'Transient Solution');41 md=solve(md,'Transient'); 42 42 results{stabilization}=(md.results.TransientSolution(end).Thickness); 43 43 end -
issm/trunk-jpl/test/NightlyRun/test1201.py
r21049 r21056 51 51 md.settings.output_frequency=500 #keep only last step 52 52 md.verbose=verbose() 53 md=solve(md,'Transient Solution')53 md=solve(md,'Transient') 54 54 results.append(md.results.TransientSolution[-1].Thickness) 55 55 -
issm/trunk-jpl/test/NightlyRun/test1202.m
r21049 r21056 12 12 %Compute solution for SSA's model 13 13 md.cluster=generic('name',oshostname(),'np',8); 14 md=solve(md,'Stressbalance Solution');14 md=solve(md,'Stressbalance'); 15 15 16 16 %plot results -
issm/trunk-jpl/test/NightlyRun/test1202.py
r21049 r21056 25 25 #Compute solution for SSA's model 26 26 md.cluster=generic('name',oshostname(),'np',8) 27 md=solve(md,'Stressbalance Solution')27 md=solve(md,'Stressbalance') 28 28 29 29 #plot results -
issm/trunk-jpl/test/NightlyRun/test1203.m
r21049 r21056 16 16 %Compute solution for SSA's model 17 17 md.cluster=generic('name',oshostname(),'np',8); 18 md=solve(md,'Stressbalance Solution');18 md=solve(md,'Stressbalance'); 19 19 20 20 vx=(md.results.StressbalanceSolution.Vx); -
issm/trunk-jpl/test/NightlyRun/test1203.py
r21049 r21056 30 30 #Compute solution for SSA's model 31 31 md.cluster=generic('name',oshostname(),'np',8) 32 md=solve(md,'Stressbalance Solution')32 md=solve(md,'Stressbalance') 33 33 34 34 vx=md.results.StressbalanceSolution.Vx -
issm/trunk-jpl/test/NightlyRun/test1204.m
r21049 r21056 16 16 %Compute solution for SSA's model 17 17 md.cluster=generic('name',oshostname(),'np',8); 18 md=solve(md,'Stressbalance Solution');18 md=solve(md,'Stressbalance'); 19 19 20 20 %plot results … … 25 25 md.timestepping.final_time=5000.; 26 26 md.masstransport.stabilization=1; 27 md=solve(md,'Transient Solution');27 md=solve(md,'Transient'); 28 28 29 29 plotmodel(md,'data',(md.results.TransientSolution(end).Vx)) -
issm/trunk-jpl/test/NightlyRun/test1204.py
r21049 r21056 30 30 #Compute solution for SSA's model 31 31 md.cluster=generic('name',oshostname(),'np',8) 32 md=solve(md,'Stressbalance Solution')32 md=solve(md,'Stressbalance') 33 33 34 34 #plot results … … 39 39 md.timestepping.final_time=5000. 40 40 md.masstransport.stabilization=1 41 md=solve(md,'Transient Solution')41 md=solve(md,'Transient') 42 42 43 43 #plotmodel(md,'data',(md.results.TransientSolution(end).Vx)) -
issm/trunk-jpl/test/NightlyRun/test1205.m
r21049 r21056 30 30 %Now we can solve the problem 31 31 md.cluster=generic('name',oshostname(),'np',8); 32 md=solve(md,'Stressbalance Solution');32 md=solve(md,'Stressbalance'); 33 33 34 34 %Calculate the depth averaged velocity field (2d): -
issm/trunk-jpl/test/NightlyRun/test1205.py
r21049 r21056 43 43 #Now we can solve the problem 44 44 md.cluster=generic('name',oshostname(),'np',8) 45 md=solve(md,'Stressbalance Solution')45 md=solve(md,'Stressbalance') 46 46 47 47 #Calculate the depth averaged velocity field (2d): -
issm/trunk-jpl/test/NightlyRun/test1206.m
r21049 r21056 30 30 %Now we can solve the problem 31 31 md.cluster=generic('name',oshostname(),'np',8); 32 md=solve(md,'Stressbalance Solution');32 md=solve(md,'Stressbalance'); 33 33 34 34 %Calculate the depth averaged velocity field (2d): -
issm/trunk-jpl/test/NightlyRun/test1206.py
r21049 r21056 43 43 #Now we can solve the problem 44 44 md.cluster=generic('name',oshostname(),'np',8) 45 md=solve(md,'Stressbalance Solution')45 md=solve(md,'Stressbalance') 46 46 47 47 #Calculate the depth averaged velocity field (2d): -
issm/trunk-jpl/test/NightlyRun/test1207.m
r21049 r21056 30 30 %Now we can solve the problem 31 31 md.cluster=generic('name',oshostname(),'np',8); 32 md=solve(md,'Stressbalance Solution');32 md=solve(md,'Stressbalance'); 33 33 34 34 %Calculate the depth averaged velocity field (2d): -
issm/trunk-jpl/test/NightlyRun/test1207.py
r21049 r21056 43 43 #Now we can solve the problem 44 44 md.cluster=generic('name',oshostname(),'np',8) 45 md=solve(md,'Stressbalance Solution')45 md=solve(md,'Stressbalance') 46 46 47 47 #Calculate the depth averaged velocity field (2d): -
issm/trunk-jpl/test/NightlyRun/test1208.m
r21049 r21056 28 28 %Now we can solve the problem 29 29 md.cluster=generic('name',oshostname(),'np',8); 30 md=solve(md,'Transient Solution');30 md=solve(md,'Transient'); 31 31 32 32 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test1208.py
r21049 r21056 41 41 #Now we can solve the problem 42 42 md.cluster=generic('name',oshostname(),'np',8) 43 md=solve(md,'Transient Solution')43 md=solve(md,'Transient') 44 44 45 45 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test121.m
r21049 r21056 15 15 md.thermal.isenthalpy=1; 16 16 md.thermal.isdynamicbasalspc=1; 17 md=solve(md,'Transient Solution');17 md=solve(md,'Transient'); 18 18 19 19 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test121.py
r21049 r21056 24 24 md.thermal.isenthalpy=1 25 25 md.thermal.isdynamicbasalspc=1 26 md=solve(md,'Transient Solution')26 md=solve(md,'Transient') 27 27 28 28 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test122.m
r21049 r21056 11 11 md.thermal.stabilization=2; 12 12 md.cluster=generic('name',oshostname(),'np',3); 13 md=solve(md,'Transient Solution');13 md=solve(md,'Transient'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test122.py
r21049 r21056 20 20 md.thermal.stabilization=2 21 21 md.cluster=generic('name',oshostname(),'np',3) 22 md=solve(md,'Transient Solution')22 md=solve(md,'Transient') 23 23 24 24 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test123.m
r21049 r21056 14 14 md.outputdefinition.definitions={misfit('name','SurfaceMisfit', 'definitionstring','Outputdefinition1','model_string','Surface','observation_string','SurfaceObservation','observation',fake_surface,'timeinterpolation','nearestneighbor','weights',ones(md.mesh.numberofvertices,1),'weights_string','WeightsSurfaceObservation')}; 15 15 16 md=solve(md,'Transient Solution');16 md=solve(md,'Transient'); 17 17 18 18 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test124.m
r21049 r21056 13 13 %Go solve 14 14 md.cluster=generic('name',oshostname(),'np',3); 15 md=solve(md,'Transient Solution');15 md=solve(md,'Transient'); 16 16 17 17 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test125.m
r21049 r21056 13 13 md.timestepping.final_time=8; 14 14 15 md=solve(md,'Transient Solution');16 md2=solve(md,'Transient Solution','restart',1);15 md=solve(md,'Transient'); 16 md2=solve(md,'Transient','restart',1); 17 17 18 18 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test125.py
r21049 r21056 25 25 md.timestepping.final_time=8 26 26 27 md=solve(md,'Transient Solution')27 md=solve(md,'Transient') 28 28 md2=copy.deepcopy(md) 29 md=solve(md,'Transient Solution','restart',1)29 md=solve(md,'Transient','restart',1) 30 30 31 31 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test126.m
r21049 r21056 14 14 md.timestepping.final_time=8; 15 15 16 md=solve(md,'Transient Solution');17 md2=solve(md,'Transient Solution','restart',1);16 md=solve(md,'Transient'); 17 md2=solve(md,'Transient','restart',1); 18 18 19 19 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test126.py
r21049 r21056 26 26 md.timestepping.final_time=8 27 27 28 md=solve(md,'Transient Solution')28 md=solve(md,'Transient') 29 29 md2=copy.deepcopy(md) 30 md=solve(md,'Transient Solution','restart',1)30 md=solve(md,'Transient','restart',1) 31 31 32 32 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test1301.m
r21049 r21056 27 27 %modeled results 28 28 md.cluster=generic('name',oshostname(),'np',2); 29 md=solve(md,'Thermal Solution');29 md=solve(md,'Thermal'); 30 30 31 31 %plot results -
issm/trunk-jpl/test/NightlyRun/test1301.py
r21049 r21056 41 41 #modeled results 42 42 md.cluster=generic('name',oshostname(),'np',2) 43 md=solve(md,'Thermal Solution')43 md=solve(md,'Thermal') 44 44 45 45 #plot results -
issm/trunk-jpl/test/NightlyRun/test1302.m
r21049 r21056 29 29 %modeled results 30 30 md.cluster=generic('name',oshostname(),'np',2); 31 md=solve(md,'Thermal Solution');31 md=solve(md,'Thermal'); 32 32 33 33 %plot results -
issm/trunk-jpl/test/NightlyRun/test1302.py
r21049 r21056 45 45 #modeled results 46 46 md.cluster=generic('name',oshostname(),'np',2) 47 md=solve(md,'Thermal Solution')47 md=solve(md,'Thermal') 48 48 49 49 #plot results -
issm/trunk-jpl/test/NightlyRun/test1303.m
r21049 r21056 24 24 %modeled results 25 25 md.cluster=generic('name',oshostname(),'np',2); 26 md=solve(md,'Thermal Solution');26 md=solve(md,'Thermal'); 27 27 28 28 %plot results -
issm/trunk-jpl/test/NightlyRun/test1303.py
r21049 r21056 40 40 #modeled results 41 41 md.cluster=generic('name',oshostname(),'np',2) 42 md=solve(md,'Thermal Solution')42 md=solve(md,'Thermal') 43 43 44 44 #plot results -
issm/trunk-jpl/test/NightlyRun/test1304.m
r21049 r21056 24 24 %modeled results 25 25 md.cluster=generic('name',oshostname(),'np',2); 26 md=solve(md,'Thermal Solution');26 md=solve(md,'Thermal'); 27 27 28 28 %plot results -
issm/trunk-jpl/test/NightlyRun/test1304.py
r21049 r21056 39 39 #modeled results 40 40 md.cluster=generic('name',oshostname(),'np',2) 41 md=solve(md,'Thermal Solution')41 md=solve(md,'Thermal') 42 42 43 43 #plot results -
issm/trunk-jpl/test/NightlyRun/test1501.m
r21049 r21056 18 18 md.basalforcings.groundedice_melting_rate= smb; 19 19 20 md=solve(md,'Masstransport Solution');20 md=solve(md,'Masstransport'); 21 21 22 22 for i=1:10 23 md=solve(md,'Masstransport Solution');23 md=solve(md,'Masstransport'); 24 24 md.smb.mass_balance= md.smb.mass_balance - ((md.results.MasstransportSolution.Thickness)-md.geometry.thickness); 25 25 end … … 34 34 md.smb.mass_balance(end+1,:)=[1.:2000.]; 35 35 36 md=solve(md,'Transient Solution');36 md=solve(md,'Transient'); 37 37 38 38 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test1501.py
r21049 r21056 29 29 md.basalforcings.groundedice_melting_rate= smb 30 30 31 md=solve(md,'Masstransport Solution')31 md=solve(md,'Masstransport') 32 32 33 33 for i in xrange(1,11): 34 md=solve(md,'Masstransport Solution')34 md=solve(md,'Masstransport') 35 35 md.smb.mass_balance= md.smb.mass_balance - ((md.results.MasstransportSolution.Thickness)-md.geometry.thickness) 36 36 … … 47 47 md.smb.mass_balance=numpy.vstack((smb,numpy.arange(1,2001))) 48 48 49 md=solve(md,'Transient Solution')49 md=solve(md,'Transient') 50 50 51 51 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test1502.m
r21049 r21056 19 19 md.basalforcings.groundedice_melting_rate= smb; 20 20 21 md=solve(md,'Masstransport Solution');21 md=solve(md,'Masstransport'); 22 22 23 23 for i=1:10 24 md=solve(md,'Masstransport Solution');24 md=solve(md,'Masstransport'); 25 25 md.smb.mass_balance= md.smb.mass_balance - ((md.results.MasstransportSolution.Thickness)-md.geometry.thickness); 26 26 end … … 35 35 md.smb.mass_balance(end+1,:)=[1.:2000.]; 36 36 37 md=solve(md,'Transient Solution');37 md=solve(md,'Transient'); 38 38 39 39 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test1502.py
r21049 r21056 30 30 md.basalforcings.groundedice_melting_rate= smb 31 31 32 md=solve(md,'Masstransport Solution')32 md=solve(md,'Masstransport') 33 33 34 34 for i in xrange(1,11): 35 md=solve(md,'Masstransport Solution')35 md=solve(md,'Masstransport') 36 36 md.smb.mass_balance= md.smb.mass_balance - ((md.results.MasstransportSolution.Thickness)-md.geometry.thickness) 37 37 … … 48 48 md.smb.mass_balance=numpy.vstack((smb,numpy.arange(1,2001))) 49 49 50 md=solve(md,'Transient Solution')50 md=solve(md,'Transient') 51 51 52 52 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test1601.m
r21049 r21056 10 10 11 11 md.cluster=generic('name',oshostname(),'np',2); 12 md=solve(md,'Stressbalance Solution');12 md=solve(md,'Stressbalance'); 13 13 vel0=md.results.StressbalanceSolution.Vel; 14 14 … … 21 21 md.stressbalance.referential(:,1:3)=repmat([cos(theta),sin(theta),0],md.mesh.numberofvertices,1); 22 22 md.stressbalance.referential(:,4:6)=repmat([0,0,1],md.mesh.numberofvertices,1); 23 md=solve(md,'Stressbalance Solution');23 md=solve(md,'Stressbalance'); 24 24 vel1=md.results.StressbalanceSolution.Vel; 25 25 … … 32 32 md.stressbalance.referential(pos,1:3)=repmat([cos(theta),sin(theta),0],size(pos,1),1); 33 33 md.stressbalance.referential(pos,4:6)=repmat([0,0,1],size(pos,1),1); 34 md=solve(md,'Stressbalance Solution');34 md=solve(md,'Stressbalance'); 35 35 vel2=md.results.StressbalanceSolution.Vel; 36 36 -
issm/trunk-jpl/test/NightlyRun/test1601.py
r21049 r21056 21 21 22 22 md.cluster=generic('name',oshostname(),'np',2) 23 md=solve(md,'Stressbalance Solution')23 md=solve(md,'Stressbalance') 24 24 vel0=md.results.StressbalanceSolution.Vel 25 25 … … 32 32 md.stressbalance.referential[:,0:3]=numpy.tile([numpy.cos(theta),numpy.sin(theta),0],(md.mesh.numberofvertices,1)) 33 33 md.stressbalance.referential[:,3: ]=numpy.tile([0,0,1],(md.mesh.numberofvertices,1)) 34 md=solve(md,'Stressbalance Solution')34 md=solve(md,'Stressbalance') 35 35 vel1=md.results.StressbalanceSolution.Vel 36 36 … … 43 43 md.stressbalance.referential[pos,0:3]=numpy.tile([numpy.cos(theta),numpy.sin(theta),0],(len(pos),1)) 44 44 md.stressbalance.referential[pos,3: ]=numpy.tile([0,0,1],(len(pos),1)) 45 md=solve(md,'Stressbalance Solution')45 md=solve(md,'Stressbalance') 46 46 vel2=md.results.StressbalanceSolution.Vel 47 47 -
issm/trunk-jpl/test/NightlyRun/test1602.m
r21049 r21056 11 11 12 12 md.cluster=generic('name',oshostname(),'np',3); 13 md=solve(md,'Stressbalance Solution');13 md=solve(md,'Stressbalance'); 14 14 vel0=md.results.StressbalanceSolution.Vel; 15 15 … … 22 22 md.stressbalance.referential(:,1:3)=repmat([cos(theta),sin(theta),0],md.mesh.numberofvertices,1); 23 23 md.stressbalance.referential(:,4:6)=repmat([0,0,1],md.mesh.numberofvertices,1); 24 md=solve(md,'Stressbalance Solution');24 md=solve(md,'Stressbalance'); 25 25 vel1=md.results.StressbalanceSolution.Vel; 26 26 -
issm/trunk-jpl/test/NightlyRun/test1602.py
r21049 r21056 22 22 23 23 md.cluster=generic('name',oshostname(),'np',3) 24 md=solve(md,'Stressbalance Solution')24 md=solve(md,'Stressbalance') 25 25 vel0=md.results.StressbalanceSolution.Vel 26 26 … … 33 33 md.stressbalance.referential[:,0:3]=numpy.tile([numpy.cos(theta),numpy.sin(theta),0],(md.mesh.numberofvertices,1)) 34 34 md.stressbalance.referential[:,3: ]=numpy.tile([0,0,1],(md.mesh.numberofvertices,1)) 35 md=solve(md,'Stressbalance Solution')35 md=solve(md,'Stressbalance') 36 36 vel1=md.results.StressbalanceSolution.Vel 37 37 -
issm/trunk-jpl/test/NightlyRun/test2001.m
r21049 r21056 20 20 md.cluster=generic('name',oshostname(),'np',3); 21 21 md.verbose=verbose('1111111'); 22 md=solve(md,'Gia Solution');22 md=solve(md,'Gia'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2001.py
r21049 r21056 33 33 #Solve for GIA deflection 34 34 md.cluster=generic('name',oshostname(),'np',3) 35 md=solve(md,'Gia Solution')35 md=solve(md,'Gia') 36 36 37 37 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2002.m
r21051 r21056 68 68 %eustatic run: 69 69 md.slr.rigid=0; md.slr.elastic=0; 70 md=solve(md,'Sealevelrise Solution');70 md=solve(md,'Sealevelrise'); 71 71 Seustatic=md.results.SealevelriseSolution.Sealevel; 72 72 73 73 %eustatic + rigid run: 74 74 md.slr.rigid=1; md.slr.elastic=0; 75 md=solve(md,'Sealevelrise Solution');75 md=solve(md,'Sealevelrise'); 76 76 Srigid=md.results.SealevelriseSolution.Sealevel; 77 77 78 78 %eustatic + rigid + elastic run: 79 79 md.slr.rigid=1; md.slr.elastic=1; 80 md=solve(md,'Sealevelrise Solution');80 md=solve(md,'Sealevelrise'); 81 81 Selastic=md.results.SealevelriseSolution.Sealevel; 82 82 83 83 %eustatic + rigid + elastic + rotation run: 84 84 md.slr.rigid=1; md.slr.elastic=1; md.slr.rotation=1; 85 md=solve(md,'Sealevelrise Solution');85 md=solve(md,'Sealevelrise'); 86 86 Srotation=md.results.SealevelriseSolution.Sealevel; 87 87 -
issm/trunk-jpl/test/NightlyRun/test2002.py
r21049 r21056 79 79 md.slr.rigid=0 80 80 md.slr.elastic=0 81 md=solve(md,'Sealevelrise Solution')81 md=solve(md,'Sealevelrise') 82 82 Seustatic=md.results.SealevelriseSolution.Sealevel; 83 83 … … 85 85 md.slr.rigid=1 86 86 md.slr.elastic=0 87 md=solve(md,'Sealevelrise Solution')87 md=solve(md,'Sealevelrise') 88 88 Srigid=md.results.SealevelriseSolution.Sealevel; 89 89 … … 91 91 md.slr.rigid=1 92 92 md.slr.elastic=1 93 md=solve(md,'Sealevelrise Solution')93 md=solve(md,'Sealevelrise') 94 94 Selastic=md.results.SealevelriseSolution.Sealevel; 95 95 -
issm/trunk-jpl/test/NightlyRun/test201.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Stressbalance Solution');7 md=solve(md,'Stressbalance'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test201.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test202.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test202.py
r21049 r21056 17 17 md=setflowequation(md,'SSA','all') 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 -
issm/trunk-jpl/test/NightlyRun/test203.m
r21049 r21056 6 6 md=setflowequation(md,'HO','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test203.py
r21049 r21056 17 17 md=setflowequation(md,'HO','all') 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 -
issm/trunk-jpl/test/NightlyRun/test204.m
r21049 r21056 8 8 md.stressbalance.shelf_dampening=1; 9 9 md.timestepping.time_step=0; 10 md1=solve(md,'Stressbalance Solution');10 md1=solve(md,'Stressbalance'); 11 11 md.stressbalance.shelf_dampening=0; 12 md=solve(md,'Stressbalance Solution');12 md=solve(md,'Stressbalance'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test204.py
r21049 r21056 19 19 md.stressbalance.shelf_dampening=1; 20 20 md.timestepping.time_step=0; 21 md1=solve(md,'Stressbalance Solution')21 md1=solve(md,'Stressbalance') 22 22 md.stressbalance.shelf_dampening=0; 23 md=solve(md,'Stressbalance Solution')23 md=solve(md,'Stressbalance') 24 24 25 25 -
issm/trunk-jpl/test/NightlyRun/test205.m
r21049 r21056 6 6 md=setflowequation(md,'HO','../Exp/SquareHalfRight.exp','fill','SSA','coupling','penalties'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test205.py
r21049 r21056 17 17 md=setflowequation(md,'HO','../Exp/SquareHalfRight.exp','fill','SSA','coupling','penalties') 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 -
issm/trunk-jpl/test/NightlyRun/test2051.m
r21049 r21056 22 22 md.cluster=generic('name',oshostname(),'np',3); 23 23 md.verbose=verbose('1111111'); 24 md=solve(md,'Gia Solution');24 md=solve(md,'Gia'); 25 25 26 26 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2052.m
r21049 r21056 22 22 md.cluster=generic('name',oshostname(),'np',3); 23 23 md.verbose=verbose('1111111'); 24 md=solve(md,'Gia Solution');24 md=solve(md,'Gia'); 25 25 26 26 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2053.m
r21049 r21056 22 22 md.cluster=generic('name',oshostname(),'np',3); 23 23 md.verbose=verbose('1111111'); 24 md=solve(md,'Gia Solution');24 md=solve(md,'Gia'); 25 25 26 26 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test206.m
r21049 r21056 7 7 md.timestepping.time_step=0; 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 md=solve(md,'Thermal Solution');9 md=solve(md,'Thermal'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test206.py
r21049 r21056 18 18 md.timestepping.time_step=0 19 19 md.cluster=generic('name',oshostname(),'np',3) 20 md=solve(md,'Thermal Solution')20 md=solve(md,'Thermal') 21 21 22 22 -
issm/trunk-jpl/test/NightlyRun/test207.m
r21049 r21056 11 11 md.transient.isthermal=1; 12 12 md.transient.isgroundingline=0; 13 md=solve(md,'Transient Solution');13 md=solve(md,'Transient'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test207.py
r21049 r21056 22 22 md.transient.isthermal=True 23 23 md.transient.isgroundingline=False 24 md=solve(md,'Transient Solution')24 md=solve(md,'Transient') 25 25 26 26 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2071.m
r21049 r21056 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 22 md.verbose=verbose('1111111'); 23 md=solve(md,'Gia Solution');23 md=solve(md,'Gia'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2072.m
r21049 r21056 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 22 md.verbose=verbose('1111111'); 23 md=solve(md,'Gia Solution');23 md=solve(md,'Gia'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2073.m
r21049 r21056 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 22 md.verbose=verbose('1111111'); 23 md=solve(md,'Gia Solution');23 md=solve(md,'Gia'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test208.m
r21049 r21056 7 7 md.transient.requested_outputs={'default','FloatingArea','GroundedArea','TotalGroundedBmb','TotalFloatingBmb'}; 8 8 md.basalforcings.floatingice_melting_rate(:)=1; 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test208.py
r21049 r21056 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 19 md.transient.requested_outputs=['default','FloatingArea','GroundedArea','TotalFloatingBmb','TotalGroundedBmb'] 20 md=solve(md,'Transient Solution')20 md=solve(md,'Transient') 21 21 22 22 -
issm/trunk-jpl/test/NightlyRun/test2081.m
r21049 r21056 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 22 md.verbose=verbose('1111111'); 23 md=solve(md,'Gia Solution');23 md=solve(md,'Gia'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2082.m
r21049 r21056 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 22 md.verbose=verbose('1111111'); 23 md=solve(md,'Gia Solution');23 md=solve(md,'Gia'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2083.m
r21049 r21056 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 22 md.verbose=verbose('1111111'); 23 md=solve(md,'Gia Solution');23 md=solve(md,'Gia'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test209.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Transient Solution');8 md=solve(md,'Transient'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test209.py
r21049 r21056 17 17 md=setflowequation(md,'SSA','all') 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 md=solve(md,'Transient Solution')19 md=solve(md,'Transient') 20 20 21 21 -
issm/trunk-jpl/test/NightlyRun/test210.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.transient.requested_outputs={'default','GroundedArea'}; 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test210.py
r21049 r21056 17 17 md=setflowequation(md,'HO','all') 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 md=solve(md,'Transient Solution')19 md=solve(md,'Transient') 20 20 21 21 -
issm/trunk-jpl/test/NightlyRun/test211.m
r21049 r21056 7 7 md.stressbalance.reltol=NaN; 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test211.py
r21049 r21056 18 18 md.stressbalance.reltol=NaN 19 19 md.cluster=generic('name',oshostname(),'np',3) 20 md=solve(md,'Transient Solution')20 md=solve(md,'Transient') 21 21 22 22 -
issm/trunk-jpl/test/NightlyRun/test212.m
r21049 r21056 20 20 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,'Stressbalance Solution');22 md=solve(md,'Stressbalance'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test212.py
r21049 r21056 34 34 35 35 md.cluster=generic('name',oshostname(),'np',3) 36 md=solve(md,'Stressbalance Solution')36 md=solve(md,'Stressbalance') 37 37 38 38 -
issm/trunk-jpl/test/NightlyRun/test213.m
r21049 r21056 23 23 24 24 md.cluster=generic('name',oshostname(),'np',3); 25 md=solve(md,'Stressbalance Solution');25 md=solve(md,'Stressbalance'); 26 26 27 27 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test213.py
r21049 r21056 35 35 36 36 md.cluster=generic('name',oshostname(),'np',3) 37 md=solve(md,'Stressbalance Solution')37 md=solve(md,'Stressbalance') 38 38 39 39 -
issm/trunk-jpl/test/NightlyRun/test214.m
r21049 r21056 20 20 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,'Stressbalance Solution');22 md=solve(md,'Stressbalance'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test214.py
r21049 r21056 35 35 36 36 md.cluster=generic('name',oshostname(),'np',3) 37 md=solve(md,'Stressbalance Solution')37 md=solve(md,'Stressbalance') 38 38 39 39 -
issm/trunk-jpl/test/NightlyRun/test215.m
r21049 r21056 20 20 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,'Stressbalance Solution');22 md=solve(md,'Stressbalance'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test215.py
r21049 r21056 35 35 36 36 md.cluster=generic('name',oshostname(),'np',3) 37 md=solve(md,'Stressbalance Solution')37 md=solve(md,'Stressbalance') 38 38 39 39 -
issm/trunk-jpl/test/NightlyRun/test216.m
r21049 r21056 13 13 md.stressbalance.rift_penalty_threshold=0; 14 14 md.rifts.riftstruct.fractionincrement=.1; 15 md=solve(md,'Stressbalance Solution');15 md=solve(md,'Stressbalance'); 16 16 17 17 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test216.py
r21049 r21056 26 26 md.stressbalance.rift_penalty_threshold=0 27 27 md.rifts.riftstruct[0]['fractionincrement']=0.1 28 md=solve(md,'Stressbalance Solution')28 md=solve(md,'Stressbalance') 29 29 30 30 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test217.m
r21049 r21056 57 57 md.mask.ice_levelset=-1+nodeonicefront; 58 58 59 md=solve(md,'Stressbalance Solution');59 md=solve(md,'Stressbalance'); 60 60 61 61 %create analytical solution: strain rate is constant = ((rho_ice*g*h)/4B)^3 (Paterson, 4th Edition, page 292. -
issm/trunk-jpl/test/NightlyRun/test217.py
r21049 r21056 70 70 md.mask.ice_levelset=-1+nodeonicefront 71 71 72 md=solve(md,'Stressbalance Solution')72 md=solve(md,'Stressbalance') 73 73 74 74 # create analytical solution: strain rate is constant = ((rho_ice*g*h)/4B)^3 (Paterson, 4th Edition, page 292. -
issm/trunk-jpl/test/NightlyRun/test218.m
r21049 r21056 86 86 87 87 %solve 88 md=solve(md,'Stressbalance Solution','overwrite','y');88 md=solve(md,'Stressbalance','overwrite','y'); 89 89 90 90 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test219.m
r21049 r21056 6 6 md=setflowequation(md,'HO','../Exp/SquareHalfRight.exp','fill','SSA'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test219.py
r21049 r21056 17 17 md=setflowequation(md,'HO','../Exp/SquareHalfRight.exp','fill','SSA') 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test220.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.verbose=verbose('all'); 9 md=solve(md,'Stressbalance Solution');9 md=solve(md,'Stressbalance'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test220.py
r21049 r21056 17 17 md=setflowequation(md,'FS','../Exp/SquareHalfRight.exp','fill','HO') 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test221.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.stressbalance.viscosity_overshoot=0; 9 md=solve(md,'Stressbalance Solution');9 md=solve(md,'Stressbalance'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test221.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 17 md.stressbalance.viscosity_overshoot=0 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test222.m
r21049 r21056 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.masstransport.hydrostatic_adjustment='Incremental'; 8 md=solve(md,'Transient Solution');8 md=solve(md,'Transient'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test222.py
r21049 r21056 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 16 md.masstransport.hydrostatic_adjustment='Incremental' 17 md=solve(md,'Transient Solution')17 md=solve(md,'Transient') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test223.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',1); 8 8 md.masstransport.hydrostatic_adjustment='Incremental'; 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test223.py
r21049 r21056 17 17 md.cluster=generic('name',oshostname(),'np',1) 18 18 md.masstransport.hydrostatic_adjustment='Incremental' 19 md=solve(md,'Transient Solution')19 md=solve(md,'Transient') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test224.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.masstransport.hydrostatic_adjustment='Incremental'; 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test224.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 17 md.masstransport.hydrostatic_adjustment='Incremental' 18 md=solve(md,'Transient Solution')18 md=solve(md,'Transient') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test225.m
r21049 r21056 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 9 md.masstransport.hydrostatic_adjustment='Incremental'; 10 md=solve(md,'Transient Solution');10 md=solve(md,'Transient'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test225.py
r21049 r21056 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 19 md.masstransport.hydrostatic_adjustment='Incremental' 20 md=solve(md,'Transient Solution')20 md=solve(md,'Transient') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test226.m
r21049 r21056 7 7 md.timestepping.time_adapt=1.; 8 8 md.timestepping.final_time=15.; 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test226.py
r21049 r21056 16 16 md.timestepping.time_adapt=1. 17 17 md.timestepping.final_time=15. 18 md=solve(md,'Transient Solution')18 md=solve(md,'Transient') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test227.m
r21049 r21056 8 8 md.timestepping.time_adapt=1.; 9 9 md.timestepping.final_time=20.; 10 md=solve(md,'Transient Solution');10 md=solve(md,'Transient'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test227.py
r21049 r21056 17 17 md.timestepping.time_adapt=1. 18 18 md.timestepping.final_time=20. 19 md=solve(md,'Transient Solution')19 md=solve(md,'Transient') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test228.m
r21049 r21056 18 18 md.transient.isthermal=0; 19 19 20 md=solve(md,'Transient Solution');20 md=solve(md,'Transient'); 21 21 22 22 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test228.py
r21049 r21056 27 27 md.transient.isthermal=False 28 28 29 md=solve(md,'Transient Solution')29 md=solve(md,'Transient') 30 30 31 31 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test229.m
r21049 r21056 18 18 md.transient.isthermal=0; 19 19 20 md=solve(md,'Transient Solution');20 md=solve(md,'Transient'); 21 21 22 22 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test229.py
r21049 r21056 27 27 md.transient.isthermal=False 28 28 29 md=solve(md,'Transient Solution')29 md=solve(md,'Transient') 30 30 31 31 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test230.m
r21049 r21056 19 19 md.transient.isthermal=0; 20 20 21 md=solve(md,'Transient Solution');21 md=solve(md,'Transient'); 22 22 23 23 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test230.py
r21049 r21056 28 28 md.transient.isthermal=False 29 29 30 md=solve(md,'Transient Solution')30 md=solve(md,'Transient') 31 31 32 32 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test231.m
r21049 r21056 19 19 md.transient.isthermal=0; 20 20 21 md=solve(md,'Transient Solution');21 md=solve(md,'Transient'); 22 22 23 23 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test231.py
r21049 r21056 28 28 md.transient.isthermal=False 29 29 30 md=solve(md,'Transient Solution')30 md=solve(md,'Transient') 31 31 32 32 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test232.m
r21049 r21056 14 14 md.transient.isthermal=1; 15 15 md.transient.isgroundingline=0; 16 md=solve(md,'Transient Solution');16 md=solve(md,'Transient'); 17 17 18 18 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test232.py
r21049 r21056 24 24 md.transient.isthermal=True 25 25 md.transient.isgroundingline=False 26 md=solve(md,'Transient Solution')26 md=solve(md,'Transient') 27 27 28 28 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test233.m
r21049 r21056 9 9 md.timestepping.time_step=0.5; 10 10 md.timestepping.final_time=2.; 11 md=solve(md,'Transient Solution');11 md=solve(md,'Transient'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test233.py
r21049 r21056 19 19 md.timestepping.time_step=0.5 20 20 md.timestepping.final_time=2. 21 md=solve(md,'Transient Solution')21 md=solve(md,'Transient') 22 22 23 23 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test234.m
r21049 r21056 72 72 73 73 %solve 74 md=solve(md,'Transient Solution','overwrite','y');74 md=solve(md,'Transient','overwrite','y'); 75 75 md.qmu.results=md.results.dakota; 76 76 -
issm/trunk-jpl/test/NightlyRun/test235.m
r21049 r21056 67 67 68 68 %solve 69 md=solve(md,'Transient Solution','overwrite','y');69 md=solve(md,'Transient','overwrite','y'); 70 70 md.qmu.results=md.results.dakota; 71 71 -
issm/trunk-jpl/test/NightlyRun/test236.m
r21049 r21056 68 68 md=setflowequation(md,'SSA','all'); 69 69 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster 70 md=solve(md,'Transient Solution');70 md=solve(md,'Transient'); 71 71 72 72 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test236.py
r21049 r21056 73 73 md=setflowequation(md,'SSA','all') 74 74 md.cluster=generic('name',oshostname(),'np',3) 75 md=solve(md,'Transient Solution')75 md=solve(md,'Transient') 76 76 77 77 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test237.m
r21049 r21056 61 61 md=setflowequation(md,'SSA','all'); 62 62 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster 63 md=solve(md,'Transient Solution');63 md=solve(md,'Transient'); 64 64 65 65 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test237.py
r21049 r21056 74 74 md=setflowequation(md,'SSA','all') 75 75 md.cluster=generic('name',oshostname(),'np',1) 76 md=solve(md,'Transient Solution')76 md=solve(md,'Transient') 77 77 78 78 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test238.m
r21049 r21056 48 48 md=setflowequation(md,'SSA','all'); 49 49 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster 50 md=solve(md,'Transient Solution');50 md=solve(md,'Transient'); 51 51 52 52 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test238.py
r21049 r21056 53 53 md=setflowequation(md,'SSA','all') 54 54 md.cluster=generic('name',oshostname(),'np',3) 55 md=solve(md,'Transient Solution')55 md=solve(md,'Transient') 56 56 57 57 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test239.m
r21049 r21056 49 49 md=setflowequation(md,'SSA','all'); 50 50 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster 51 md=solve(md,'Transient Solution');51 md=solve(md,'Transient'); 52 52 53 53 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test239.py
r21049 r21056 53 53 md=setflowequation(md,'SSA','all') 54 54 md.cluster=generic('name',oshostname(),'np',3) 55 md=solve(md,'Transient Solution')55 md=solve(md,'Transient') 56 56 57 57 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test240.m
r21049 r21056 49 49 md=setflowequation(md,'SSA','all'); 50 50 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster 51 md=solve(md,'Transient Solution');51 md=solve(md,'Transient'); 52 52 53 53 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test240.py
r21049 r21056 54 54 md=setflowequation(md,'SSA','all') 55 55 md.cluster=generic('name',oshostname(),'np',3) 56 md=solve(md,'Transient Solution')56 md=solve(md,'Transient') 57 57 58 58 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test241.m
r21049 r21056 19 19 md.transient.isthermal=0; 20 20 21 md=solve(md,'Transient Solution');21 md=solve(md,'Transient'); 22 22 23 23 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test241.py
r21049 r21056 28 28 md.transient.isthermal=False 29 29 30 md=solve(md,'Transient Solution')30 md=solve(md,'Transient') 31 31 32 32 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test242.m
r21049 r21056 20 20 md.transient.isthermal=0; 21 21 22 md=solve(md,'Transient Solution');22 md=solve(md,'Transient'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test242.py
r21049 r21056 29 29 md.transient.isthermal=False 30 30 31 md=solve(md,'Transient Solution')31 md=solve(md,'Transient') 32 32 33 33 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test2424.m
r21049 r21056 23 23 24 24 md.cluster=generic('name',oshostname(),'np',3); 25 md=solve(md,'Transient Solution');25 md=solve(md,'Transient'); 26 26 27 27 %we are checking that the grounding line position is near the theorical one, which is the 0 contour level -
issm/trunk-jpl/test/NightlyRun/test2425.m
r21049 r21056 18 18 19 19 md.cluster=generic('name',oshostname(),'np',3); 20 md=solve(md,'Transient Solution');20 md=solve(md,'Transient'); 21 21 vel1=md.results.TransientSolution(end).Vel; 22 22 … … 33 33 md.slr.sealevel=1000*ones(md.mesh.numberofvertices,1); 34 34 35 md=solve(md,'Transient Solution','checkconsistency','no');35 md=solve(md,'Transient','checkconsistency','no'); 36 36 vel2=md.results.TransientSolution(end).Vel; 37 37 -
issm/trunk-jpl/test/NightlyRun/test243.m
r21049 r21056 41 41 42 42 %Run transient 43 md=solve(md,'Transient Solution');43 md=solve(md,'Transient'); 44 44 45 45 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test250.m
r21051 r21056 72 72 73 73 %solve 74 md=solve(md,'Transient Solution','overwrite','y');74 md=solve(md,'Transient','overwrite','y'); 75 75 md.qmu.results=md.results.dakota; 76 76 -
issm/trunk-jpl/test/NightlyRun/test251.m
r21051 r21056 67 67 68 68 %solve 69 md=solve(md,'Transient Solution','overwrite','y');69 md=solve(md,'Transient','overwrite','y'); 70 70 md.qmu.results=md.results.dakota; 71 71 -
issm/trunk-jpl/test/NightlyRun/test270.m
r21049 r21056 9 9 md=setflowequation(md,'SSA','all'); 10 10 md.cluster=generic('name',oshostname(),'np',3); 11 md=solve(md,'Stressbalance Solution');11 md=solve(md,'Stressbalance'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test270.py
r21052 r21056 20 20 md=setflowequation(md,'SSA','all') 21 21 md.cluster=generic('name',oshostname(),'np',3) 22 md=solve(md,'Stressbalance Solution')22 md=solve(md,'Stressbalance') 23 23 24 24 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test272.m
r21049 r21056 25 25 26 26 md.cluster=generic('name',oshostname(),'np',3); 27 md=solve(md,'Stressbalance Solution');27 md=solve(md,'Stressbalance'); 28 28 29 29 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test272.py
r21052 r21056 35 35 36 36 md.cluster=generic('name',oshostname(),'np',3) 37 md=solve(md,'Stressbalance Solution')37 md=solve(md,'Stressbalance') 38 38 39 39 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test273.m
r21049 r21056 14 14 md.damage.kappa=2.8; 15 15 16 md=solve(md,'Stressbalance Solution');16 md=solve(md,'Stressbalance'); 17 17 18 18 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test273.py
r21052 r21056 25 25 md.damage.kappa=2.8 26 26 27 md=solve(md,'Stressbalance Solution')27 md=solve(md,'Stressbalance') 28 28 29 29 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test274.m
r21049 r21056 11 11 12 12 md.cluster=generic('name',oshostname(),'np',3); 13 md=solve(md,'Stressbalance Solution');13 md=solve(md,'Stressbalance'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test274.py
r21052 r21056 24 24 md.cluster=generic('name',oshostname(),'np',3) 25 25 print md.rifts.riftstruct[0]['fill'] 26 md=solve(md,'Stressbalance Solution')26 md=solve(md,'Stressbalance') 27 27 28 28 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test275.m
r21049 r21056 20 20 md=setflowequation(md,'SSA','all'); 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,'DamageEvolution Solution');22 md=solve(md,'DamageEvolution'); 23 23 24 24 field_names={'D','F'}; -
issm/trunk-jpl/test/NightlyRun/test275.py
r21049 r21056 33 33 md=setflowequation(md,'SSA','all') 34 34 md.cluster=generic('name',oshostname(),'np',3) 35 md=solve(md,'DamageEvolution Solution')35 md=solve(md,'DamageEvolution') 36 36 37 37 field_names=['D','F'] -
issm/trunk-jpl/test/NightlyRun/test280.m
r21049 r21056 11 11 for i={'P1bubble','P1bubblecondensed','P2'} 12 12 md.flowequation.fe_SSA=i{1}; 13 md=solve(md,'Stressbalance Solution');13 md=solve(md,'Stressbalance'); 14 14 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]}; 15 15 field_tolerances={field_tolerances{:},1e-12,1e-13,1e-13,1e-13}; -
issm/trunk-jpl/test/NightlyRun/test280.py
r21049 r21056 21 21 for i in ['P1bubble','P1bubblecondensed','P2']: 22 22 md.flowequation.fe_SSA=i 23 md=solve(md,'Stressbalance Solution')23 md=solve(md,'Stressbalance') 24 24 field_names =field_names+['Vx'+i,'Vy'+i,'Vel'+i,'Pressure'+i] 25 25 field_tolerances=field_tolerances+[1e-12,1e-13,1e-13,1e-13] -
issm/trunk-jpl/test/NightlyRun/test285.m
r21049 r21056 12 12 for i={'P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2','P1xP3','P2xP4'} 13 13 md.flowequation.fe_HO=i{1}; 14 md=solve(md,'Stressbalance Solution');14 md=solve(md,'Stressbalance'); 15 15 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vz' i{1}],['Vel' i{1}],['Pressure' i{1}]}; 16 16 field_tolerances={field_tolerances{:},6.5e-08,5e-08,2e-08,5e-08,1e-13}; -
issm/trunk-jpl/test/NightlyRun/test285.py
r21049 r21056 22 22 for i in ['P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2','P1xP3','P2xP4']: 23 23 md.flowequation.fe_HO=i 24 md=solve(md,'Stressbalance Solution')24 md=solve(md,'Stressbalance') 25 25 field_names =field_names+['Vx'+i,'Vy'+i,'Vz'+i,'Vel'+i,'Pressure'+i] 26 26 field_tolerances=field_tolerances+[6.5e-08,5e-08,2e-08,5e-08,1e-13] -
issm/trunk-jpl/test/NightlyRun/test290.m
r21049 r21056 7 7 md.flowequation.fe_FS='TaylorHood'; 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 md=solve(md,'Stressbalance Solution');9 md=solve(md,'Stressbalance'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test290.py
r21049 r21056 17 17 md.flowequation.fe_FS='TaylorHood'; 18 18 md.cluster=generic('name',oshostname(),'np',3); 19 md=solve(md,'Stressbalance Solution');19 md=solve(md,'Stressbalance'); 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test291.m
r21049 r21056 7 7 md.flowequation.fe_FS='OneLayerP4z'; 8 8 md.cluster=generic('name',oshostname(),'np',1); 9 md=solve(md,'Stressbalance Solution');9 md=solve(md,'Stressbalance'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test291.py
r21049 r21056 17 17 md.flowequation.fe_FS='OneLayerP4z' 18 18 md.cluster=generic('name',oshostname(),'np',1) 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test292.m
r21049 r21056 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.basalforcings=linearbasalforcings(md.basalforcings); 8 md=solve(md,'Transient Solution');8 md=solve(md,'Transient'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test292.py
r21049 r21056 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 19 md.basalforcings=linearbasalforcings(md.basalforcings) 20 md=solve(md,'Transient Solution')20 md=solve(md,'Transient') 21 21 22 22 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test293.m
r21049 r21056 10 10 md.geometry.bed=min(md.geometry.base)*ones(md.mesh.numberofvertices,1); 11 11 md.transient.requested_outputs={'default','BasalforcingsFloatingiceMeltingRate'}; 12 md=solve(md,'Transient Solution');12 md=solve(md,'Transient'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3001.m
r21049 r21056 9 9 md.toolkits.DefaultAnalysis=issmgslsolver(); 10 10 11 md=solve(md,'Stressbalance Solution');11 md=solve(md,'Stressbalance'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3001.py
r21049 r21056 16 16 md.stressbalance.requested_outputs=['default','DeviatoricStressxx','DeviatoricStressyy','DeviatoricStressxy'] 17 17 md.autodiff.isautodiff=True 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3002.m
r21049 r21056 9 9 md.toolkits.DefaultAnalysis=issmgslsolver(); 10 10 md.verbose=verbose('autodiff',true); 11 md=solve(md,'Stressbalance Solution');11 md=solve(md,'Stressbalance'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3002.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',1) 17 17 md.autodiff.isautodiff=True 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3003.m
r21049 r21056 10 10 md.toolkits.DefaultAnalysis=issmgslsolver(); 11 11 md.verbose=verbose('autodiff',true); 12 md=solve(md,'Stressbalance Solution');12 md=solve(md,'Stressbalance'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3003.py
r21049 r21056 17 17 md.stressbalance.requested_outputs=['default','StressTensorxx','StressTensoryy','StressTensorzz','StressTensorxy','StressTensorxz','StressTensoryz'] 18 18 md.autodiff.isautodiff=True 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3004.m
r21049 r21056 9 9 md.toolkits.DefaultAnalysis=issmgslsolver(); 10 10 md.verbose=verbose('autodiff',true); 11 md=solve(md,'Stressbalance Solution');11 md=solve(md,'Stressbalance'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3004.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',1) 17 17 md.autodiff.isautodiff=True 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3005.m
r21049 r21056 8 8 md.toolkits.DefaultAnalysis=issmgslsolver(); 9 9 md.verbose=verbose('autodiff',true); 10 md=solve(md,'Masstransport Solution');10 md=solve(md,'Masstransport'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3005.py
r21049 r21056 15 15 md.cluster=generic('name',oshostname(),'np',1) 16 16 md.autodiff.isautodiff=True 17 md=solve(md,'Masstransport Solution')17 md=solve(md,'Masstransport') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3006.m
r21049 r21056 11 11 md.toolkits.DefaultAnalysis=issmgslsolver(); 12 12 md.verbose=verbose('autodiff',true); 13 md=solve(md,'Masstransport Solution');13 md=solve(md,'Masstransport'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3006.py
r21049 r21056 19 19 md.masstransport.spcthickness=md.geometry.thickness 20 20 md.autodiff.isautodiff=True 21 md=solve(md,'Masstransport Solution')21 md=solve(md,'Masstransport') 22 22 23 23 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3007.m
r21049 r21056 9 9 md.verbose=verbose('autodiff',true); 10 10 md.toolkits.DefaultAnalysis=issmgslsolver(); 11 md=solve(md,'Masstransport Solution');11 md=solve(md,'Masstransport'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3007.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',1) 17 17 md.autodiff.isautodiff=True 18 md=solve(md,'Masstransport Solution')18 md=solve(md,'Masstransport') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3008.m
r21049 r21056 10 10 md.verbose=verbose('autodiff',true); 11 11 md.toolkits.DefaultAnalysis=issmgslsolver(); 12 md=solve(md,'Thermal Solution');12 md=solve(md,'Thermal'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3008.py
r21049 r21056 17 17 md.cluster=generic('name',oshostname(),'np',1) 18 18 md.autodiff.isautodiff=True 19 md=solve(md,'Thermal Solution')19 md=solve(md,'Thermal') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3009.m
r21049 r21056 14 14 md.verbose=verbose('autodiff',true); 15 15 md.toolkits.DefaultAnalysis=issmgslsolver(); 16 md=solve(md,'Transient Solution');16 md=solve(md,'Transient'); 17 17 18 18 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3009.py
r21049 r21056 21 21 md.transient.isgroundingline=False 22 22 md.autodiff.isautodiff=True 23 md=solve(md,'Transient Solution')23 md=solve(md,'Transient') 24 24 25 25 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test301.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Stressbalance Solution');7 md=solve(md,'Stressbalance'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test301.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Stressbalance Solution')16 md=solve(md,'Stressbalance') 17 17 18 18 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3010.m
r21049 r21056 10 10 md.verbose=verbose('autodiff',true); 11 11 md.toolkits.DefaultAnalysis=issmgslsolver(); 12 md=solve(md,'Transient Solution');12 md=solve(md,'Transient'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3010.py
r21049 r21056 17 17 18 18 md.autodiff.isautodiff=True 19 md=solve(md,'Transient Solution')19 md=solve(md,'Transient') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3015.m
r21049 r21056 43 43 md=SetIceShelfBC(md); 44 44 45 md=solve(md,'Masstransport Solution');45 md=solve(md,'Masstransport'); 46 46 V0=md.results.MasstransportSolution.IceVolume; 47 47 … … 54 54 md=SetIceShelfBC(md); 55 55 56 md=solve(md,'Masstransport Solution');56 md=solve(md,'Masstransport'); 57 57 V2=md.results.MasstransportSolution.IceVolume; 58 58 … … 68 68 md=SetIceShelfBC(md); 69 69 70 md=solve(md,'Masstransport Solution');70 md=solve(md,'Masstransport'); 71 71 %retrieve directly 72 72 dVdh_ad=md.results.MasstransportSolution.AutodiffJacobian; -
issm/trunk-jpl/test/NightlyRun/test3015.py
r21049 r21056 59 59 md=SetIceShelfBC(md) 60 60 61 md=solve(md,'Masstransport Solution')61 md=solve(md,'Masstransport') 62 62 V0=md.results.MasstransportSolution.IceVolume 63 63 … … 70 70 md=SetIceShelfBC(md) 71 71 72 md=solve(md,'Masstransport Solution')72 md=solve(md,'Masstransport') 73 73 V2=md.results.MasstransportSolution.IceVolume 74 74 … … 84 84 md=SetIceShelfBC(md) 85 85 86 md=solve(md,'Masstransport Solution')86 md=solve(md,'Masstransport') 87 87 #retrieve directly 88 88 dVdh_ad=md.results.MasstransportSolution.AutodiffJacobian -
issm/trunk-jpl/test/NightlyRun/test3019.m
r21049 r21056 16 16 md.autodiff.driver='fos_reverse'; 17 17 18 md=solve(md,'Transient Solution');18 md=solve(md,'Transient'); 19 19 20 20 %recover jacobian: … … 26 26 md.autodiff.driver='fov_forward'; 27 27 28 md=solve(md,'Transient Solution');28 md=solve(md,'Transient'); 29 29 30 30 %recover jacobian: -
issm/trunk-jpl/test/NightlyRun/test3019.py
r21049 r21056 28 28 md.autodiff.driver='fos_reverse' 29 29 30 md=solve(md,'Transient Solution')30 md=solve(md,'Transient') 31 31 32 32 #recover jacobian: … … 38 38 md.autodiff.driver='fov_forward' 39 39 40 md=solve(md,'Transient Solution')40 md=solve(md,'Transient') 41 41 42 42 #recover jacobian: -
issm/trunk-jpl/test/NightlyRun/test302.m
r21049 r21056 5 5 md=setflowequation(md,'SIA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Stressbalance Solution');7 md=solve(md,'Stressbalance'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test302.py
r21049 r21056 14 14 md=setflowequation(md,'SIA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Stressbalance Solution')16 md=solve(md,'Stressbalance') 17 17 18 18 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3020.m
r21049 r21056 45 45 md=SetIceShelfBC(md); 46 46 47 md=solve(md,'Transient Solution');47 md=solve(md,'Transient'); 48 48 V0=md.results.TransientSolution(end).IceVolume; 49 49 MaxV0=md.results.TransientSolution(end).MaxVel; … … 57 57 md=SetIceShelfBC(md); 58 58 59 md=solve(md,'Transient Solution');59 md=solve(md,'Transient'); 60 60 V2=md.results.TransientSolution(end).IceVolume; 61 61 MaxV2=md.results.TransientSolution(end).MaxVel; … … 73 73 md=SetIceShelfBC(md); 74 74 75 md=solve(md,'Transient Solution');75 md=solve(md,'Transient'); 76 76 %retrieve directly 77 77 dVdh_ad=md.results.TransientSolution(1).AutodiffJacobian(1); -
issm/trunk-jpl/test/NightlyRun/test3020.py
r21049 r21056 61 61 md=SetIceShelfBC(md) 62 62 63 md=solve(md,'Transient Solution')63 md=solve(md,'Transient') 64 64 V0=md.results.TransientSolution[-1].IceVolume 65 65 MaxV0=md.results.TransientSolution[-1].MaxVel … … 73 73 md=SetIceShelfBC(md) 74 74 75 md=solve(md,'Transient Solution')75 md=solve(md,'Transient') 76 76 V2=md.results.TransientSolution[-1].IceVolume 77 77 MaxV2=md.results.TransientSolution[-1].MaxVel … … 89 89 md=SetIceShelfBC(md) 90 90 91 md=solve(md,'Transient Solution')91 md=solve(md,'Transient') 92 92 #retrieve directly 93 93 dVdh_ad=md.results.TransientSolution[0].AutodiffJacobian[0] -
issm/trunk-jpl/test/NightlyRun/test3021.m
r21049 r21056 8 8 md.toolkits.DefaultAnalysis=issmsolver(); 9 9 md.verbose=verbose('all'); 10 md=solve(md,'Stressbalance Solution');10 md=solve(md,'Stressbalance'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test303.m
r21049 r21056 5 5 md=setflowequation(md,'SIA','../Exp/SquareHalfRight.exp','fill','SSA'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Stressbalance Solution');7 md=solve(md,'Stressbalance'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test303.py
r21049 r21056 14 14 md=setflowequation(md,'SIA','../Exp/SquareHalfRight.exp','fill','SSA') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Stressbalance Solution')16 md=solve(md,'Stressbalance') 17 17 18 18 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test304.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test304.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test305.m
r21049 r21056 6 6 md=setflowequation(md,'SIA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test305.py
r21049 r21056 15 15 md=setflowequation(md,'SIA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test306.m
r21049 r21056 6 6 md=setflowequation(md,'SIA','../Exp/SquareHalfRight.exp','fill','SSA'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test306.py
r21049 r21056 15 15 md=setflowequation(md,'SIA','../Exp/SquareHalfRight.exp','fill','SSA') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test307.m
r21049 r21056 6 6 md=setflowequation(md,'HO','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test307.py
r21049 r21056 15 15 md=setflowequation(md,'HO','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test308.m
r21049 r21056 6 6 md=setflowequation(md,'FS','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test308.py
r21049 r21056 15 15 md=setflowequation(md,'FS','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test309.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Masstransport Solution');7 md=solve(md,'Masstransport'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test309.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Masstransport Solution')16 md=solve(md,'Masstransport') 17 17 18 18 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test310.m
r21049 r21056 8 8 md.masstransport.spcthickness=md.geometry.thickness; 9 9 md.cluster=generic('name',oshostname(),'np',3); 10 md=solve(md,'Masstransport Solution');10 md=solve(md,'Masstransport'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test310.py
r21049 r21056 18 18 md.masstransport.spcthickness=md.geometry.thickness 19 19 md.cluster=generic('name',oshostname(),'np',3) 20 md=solve(md,'Masstransport Solution')20 md=solve(md,'Masstransport') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3101.m
r21049 r21056 9 9 md.toolkits.DefaultAnalysis=issmmumpssolver(); 10 10 11 md=solve(md,'Stressbalance Solution');11 md=solve(md,'Stressbalance'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3101.py
r21049 r21056 17 17 18 18 md.autodiff.isautodiff=True 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3102.m
r21049 r21056 9 9 md.toolkits.DefaultAnalysis=issmmumpssolver(); 10 10 md.verbose=verbose('autodiff',true); 11 md=solve(md,'Stressbalance Solution');11 md=solve(md,'Stressbalance'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3102.py
r21049 r21056 17 17 md.autodiff.isautodiff=True 18 18 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3103.m
r21049 r21056 10 10 md.toolkits.DefaultAnalysis=issmmumpssolver(); 11 11 md.verbose=verbose('autodiff',true); 12 md=solve(md,'Stressbalance Solution');12 md=solve(md,'Stressbalance'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3103.py
r21049 r21056 18 18 19 19 md.autodiff.isautodiff=True 20 md=solve(md,'Stressbalance Solution')20 md=solve(md,'Stressbalance') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3104.m
r21049 r21056 9 9 md.toolkits.DefaultAnalysis=issmmumpssolver(); 10 10 md.verbose=verbose('autodiff',true); 11 md=solve(md,'Stressbalance Solution');11 md=solve(md,'Stressbalance'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3104.py
r21049 r21056 17 17 18 18 md.autodiff.isautodiff=True 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3105.m
r21049 r21056 8 8 md.toolkits.DefaultAnalysis=issmmumpssolver(); 9 9 md.verbose=verbose('autodiff',true); 10 md=solve(md,'Masstransport Solution');10 md=solve(md,'Masstransport'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3105.py
r21049 r21056 16 16 17 17 md.autodiff.isautodiff=True 18 md=solve(md,'Masstransport Solution')18 md=solve(md,'Masstransport') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3106.m
r21049 r21056 11 11 md.toolkits.DefaultAnalysis=issmmumpssolver(); 12 12 md.verbose=verbose('autodiff',true); 13 md=solve(md,'Masstransport Solution');13 md=solve(md,'Masstransport'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3106.py
r21049 r21056 20 20 21 21 md.autodiff.isautodiff=True 22 md=solve(md,'Masstransport Solution')22 md=solve(md,'Masstransport') 23 23 24 24 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3107.m
r21049 r21056 9 9 md.verbose=verbose('autodiff',true); 10 10 md.toolkits.DefaultAnalysis=issmmumpssolver(); 11 md=solve(md,'Masstransport Solution');11 md=solve(md,'Masstransport'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3107.py
r21049 r21056 17 17 18 18 md.autodiff.isautodiff=True 19 md=solve(md,'Masstransport Solution')19 md=solve(md,'Masstransport') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3108.m
r21049 r21056 10 10 md.verbose=verbose('autodiff',true); 11 11 md.toolkits.DefaultAnalysis=issmmumpssolver(); 12 md=solve(md,'Thermal Solution');12 md=solve(md,'Thermal'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3108.py
r21049 r21056 18 18 19 19 md.autodiff.isautodiff=True 20 md=solve(md,'Thermal Solution')20 md=solve(md,'Thermal') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3109.m
r21049 r21056 14 14 md.verbose=verbose('autodiff',true); 15 15 md.toolkits.DefaultAnalysis=issmmumpssolver(); 16 md=solve(md,'Transient Solution');16 md=solve(md,'Transient'); 17 17 18 18 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3109.py
r21049 r21056 22 22 23 23 md.autodiff.isautodiff=True 24 md=solve(md,'Transient Solution')24 md=solve(md,'Transient') 25 25 26 26 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test311.m
r21049 r21056 6 6 md=extrude(md,5,0.5); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Masstransport Solution');8 md=solve(md,'Masstransport'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test311.py
r21049 r21056 15 15 md.extrude(5,0.5) 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Masstransport Solution')17 md=solve(md,'Masstransport') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3110.m
r21049 r21056 10 10 md.verbose=verbose('autodiff',true); 11 11 md.toolkits.DefaultAnalysis=issmmumpssolver(); 12 md=solve(md,'Transient Solution');12 md=solve(md,'Transient'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3110.py
r21049 r21056 18 18 19 19 md.autodiff.isautodiff=True 20 md=solve(md,'Transient Solution')20 md=solve(md,'Transient') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3119.m
r21049 r21056 16 16 md.autodiff.driver='fos_reverse'; 17 17 18 md=solve(md,'Transient Solution');18 md=solve(md,'Transient'); 19 19 20 20 %recover jacobian: -
issm/trunk-jpl/test/NightlyRun/test3119.py
r21049 r21056 26 26 md.autodiff.driver='fos_reverse' 27 27 28 md=solve(md,'Transient Solution')28 md=solve(md,'Transient') 29 29 30 30 #recover jacobian: -
issm/trunk-jpl/test/NightlyRun/test312.m
r21049 r21056 7 7 md.timestepping.time_step=0.; 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 md=solve(md,'Thermal Solution');9 md=solve(md,'Thermal'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test312.py
r21049 r21056 16 16 md.timestepping.time_step=0. 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Thermal Solution')18 md=solve(md,'Thermal') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test313.m
r21049 r21056 12 12 md.transient.isthermal=1; 13 13 md.transient.isgroundingline=0; 14 md=solve(md,'Transient Solution');14 md=solve(md,'Transient'); 15 15 16 16 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test313.py
r21049 r21056 21 21 md.transient.isthermal=True 22 22 md.transient.isgroundingline=False 23 md=solve(md,'Transient Solution')23 md=solve(md,'Transient') 24 24 25 25 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test314.m
r21049 r21056 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.transient.requested_outputs={'default','GroundedArea','FloatingArea','IceVolume'}; 8 md=solve(md,'Transient Solution');8 md=solve(md,'Transient'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test314.py
r21049 r21056 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 16 md.transient.requested_outputs=['default','GroundedArea','FloatingArea','IceVolume'] 17 md=solve(md,'Transient Solution')17 md=solve(md,'Transient') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test315.m
r21049 r21056 6 6 md=setflowequation(md,'SIA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Transient Solution');8 md=solve(md,'Transient'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test315.py
r21049 r21056 15 15 md=setflowequation(md,'SIA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Transient Solution')17 md=solve(md,'Transient') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test316.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Transient Solution');7 md=solve(md,'Transient'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test316.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Transient Solution')16 md=solve(md,'Transient') 17 17 18 18 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test317.m
r21049 r21056 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 9 md.transient.requested_outputs={'default','GroundedArea','FloatingArea','TotalFloatingBmb','TotalGroundedBmb'}; 10 md=solve(md,'Transient Solution');10 md=solve(md,'Transient'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test317.py
r21049 r21056 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 18 md.transient.requested_outputs=['default','GroundedArea','FloatingArea','TotalFloatingBmb','TotalGroundedBmb'] 19 md=solve(md,'Transient Solution')19 md=solve(md,'Transient') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test318.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.timestepping.time_step=0; 9 md=solve(md,'Steadystate Solution');9 md=solve(md,'Steadystate'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test318.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 17 md.timestepping.time_step=0 18 md=solve(md,'Steadystate Solution')18 md=solve(md,'Steadystate') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test319.m
r21049 r21056 19 19 20 20 md.cluster=generic('name',oshostname(),'np',3); 21 md=solve(md,'Stressbalance Solution');21 md=solve(md,'Stressbalance'); 22 22 23 23 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test319.py
r21049 r21056 31 31 32 32 md.cluster=generic('name',oshostname(),'np',3) 33 md=solve(md,'Stressbalance Solution')33 md=solve(md,'Stressbalance') 34 34 35 35 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test320.m
r21049 r21056 20 20 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,'Stressbalance Solution');22 md=solve(md,'Stressbalance'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test320.py
r21049 r21056 32 32 33 33 md.cluster=generic('name',oshostname(),'np',3) 34 md=solve(md,'Stressbalance Solution')34 md=solve(md,'Stressbalance') 35 35 36 36 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test321.m
r21049 r21056 20 20 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,'Stressbalance Solution');22 md=solve(md,'Stressbalance'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test321.py
r21049 r21056 32 32 33 33 md.cluster=generic('name',oshostname(),'np',3) 34 md=solve(md,'Stressbalance Solution')34 md=solve(md,'Stressbalance') 35 35 36 36 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test322.m
r21049 r21056 20 20 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,'Stressbalance Solution');22 md=solve(md,'Stressbalance'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test322.py
r21049 r21056 32 32 33 33 md.cluster=generic('name',oshostname(),'np',3) 34 md=solve(md,'Stressbalance Solution')34 md=solve(md,'Stressbalance') 35 35 36 36 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test323.m
r21049 r21056 7 7 md.timestepping.time_adapt=1; 8 8 md.timestepping.final_time=1120.; 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test323.py
r21049 r21056 17 17 md.timestepping.time_adapt=1 18 18 md.timestepping.final_time=1120. 19 md=solve(md,'Transient Solution')19 md=solve(md,'Transient') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test324.m
r21049 r21056 8 8 md.timestepping.time_adapt=1; 9 9 md.timestepping.final_time=16000.; 10 md=solve(md,'Transient Solution');10 md=solve(md,'Transient'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test324.py
r21049 r21056 18 18 md.timestepping.time_adapt=1 19 19 md.timestepping.final_time=16000. 20 md=solve(md,'Transient Solution')20 md=solve(md,'Transient') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test325.m
r21049 r21056 12 12 13 13 md.cluster=generic('name',oshostname(),'np',3); 14 md=solve(md,'Thermal Solution');14 md=solve(md,'Thermal'); 15 15 16 16 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test325.py
r21049 r21056 22 22 23 23 md.cluster=generic('name',oshostname(),'np',3) 24 md=solve(md,'Thermal Solution')24 md=solve(md,'Thermal') 25 25 26 26 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test326.m
r21049 r21056 15 15 md.thermal.isenthalpy=1; 16 16 md.thermal.isdynamicbasalspc=1; 17 md=solve(md,'Transient Solution');17 md=solve(md,'Transient'); 18 18 19 19 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test326.py
r21049 r21056 25 25 md.thermal.isenthalpy=1 26 26 md.thermal.isdynamicbasalspc=1 27 md=solve(md,'Transient Solution')27 md=solve(md,'Transient') 28 28 29 29 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test327.m
r21049 r21056 13 13 md.thermal.isdynamicbasalspc=1; 14 14 md.basalforcings.geothermalflux(:)=5.; 15 md=solve(md,'Transient Solution');15 md=solve(md,'Transient'); 16 16 17 17 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test327.py
r21049 r21056 23 23 md.thermal.isdynamicbasalspc=1 24 24 md.basalforcings.geothermalflux[:]=5. 25 md=solve(md,'Transient Solution')25 md=solve(md,'Transient') 26 26 27 27 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test328.m
r21049 r21056 11 11 md.transient.requested_outputs={'default','TotalSmb'}; 12 12 md.cluster=generic('name',oshostname(),'np',3); 13 md=solve(md,'Transient Solution');13 md=solve(md,'Transient'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test328.py
r21049 r21056 22 22 md.smb.smbref= 1000. - 0.001*md.mesh.x - 0.005*md.mesh.y; 23 23 md.cluster=generic('name',oshostname(),'np',3) 24 md=solve(md,'Transient Solution')24 md=solve(md,'Transient') 25 25 26 26 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test329.m
r21049 r21056 12 12 md.transient.requested_outputs={'default','TotalSmb'}; 13 13 md.cluster=generic('name',oshostname(),'np',3); 14 md=solve(md,'Transient Solution');14 md=solve(md,'Transient'); 15 15 16 16 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test329.py
r21049 r21056 23 23 md.transient.requested_outputs=['default','TotalSmb'] 24 24 md.cluster=generic('name',oshostname(),'np',3) 25 md=solve(md,'Transient Solution')25 md=solve(md,'Transient') 26 26 27 27 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test3300.m
r21049 r21056 49 49 md.timestepping.final_time=8.0; 50 50 51 md=solve(md,'Transient Solution');51 md=solve(md,'Transient'); 52 52 53 53 field_names ={'SedimentWaterHead5','EplWaterHead5','SedimentWaterHead40','EplWaterHead40'}; -
issm/trunk-jpl/test/NightlyRun/test332.m
r21049 r21056 21 21 md.timestepping.time_step=0; 22 22 md.timestepping.final_time=1.0; 23 md=solve(md,'Hydrology Solution');23 md=solve(md,'Hydrology'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test332.py
r21049 r21056 37 37 md.timestepping.time_step=0 38 38 md.timestepping.final_time=1.0 39 md=solve(md,'Hydrology Solution')39 md=solve(md,'Hydrology') 40 40 41 41 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test333.m
r21049 r21056 33 33 %md.verbose.solution=1; 34 34 35 md=solve(md,'Transient Solution');35 md=solve(md,'Transient'); 36 36 37 37 %store=md.constants.g*md.hydrology.sediment_porosity*md.materials.rho_freshwater*((md.hydrology.sediment_compressibility/md.hydrology.sediment_porosity)+md.hydrology.water_compressibility); -
issm/trunk-jpl/test/NightlyRun/test333.py
r21049 r21056 46 46 md.timestepping.final_time=2.0 47 47 48 md=solve(md,'Transient Solution')48 md=solve(md,'Transient') 49 49 50 50 field_names =['SedimentWaterHead1','EplWaterHead1','SedimentHeadResidual1', \ -
issm/trunk-jpl/test/NightlyRun/test334.m
r21049 r21056 22 22 md.timestepping.final_time=1.0; 23 23 md=extrude(md,3,1.1); 24 md=solve(md,'Hydrology Solution');24 md=solve(md,'Hydrology'); 25 25 26 26 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test335.m
r21049 r21056 33 33 %md.verbose.solution=1; 34 34 md=extrude(md,3,1.1); 35 md=solve(md,'Transient Solution');35 md=solve(md,'Transient'); 36 36 37 37 %store=md.constants.g*md.hydrology.sediment_porosity* ... -
issm/trunk-jpl/test/NightlyRun/test336.m
r21049 r21056 20 20 md.transient.isthermal=0; 21 21 22 md=solve(md,'Transient Solution');22 md=solve(md,'Transient'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test336.py
r21049 r21056 30 30 md.transient.isthermal=False 31 31 32 md=solve(md,'Transient Solution')32 md=solve(md,'Transient') 33 33 34 34 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test337.m
r21049 r21056 21 21 md.transient.isthermal=0; 22 22 23 md=solve(md,'Transient Solution');23 md=solve(md,'Transient'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test337.py
r21049 r21056 31 31 md.transient.isthermal=False 32 32 33 md=solve(md,'Transient Solution')33 md=solve(md,'Transient') 34 34 35 35 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test338.m
r21049 r21056 21 21 md.transient.isthermal=0; 22 22 23 md=solve(md,'Transient Solution');23 md=solve(md,'Transient'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test338.py
r21049 r21056 31 31 md.transient.isthermal=False 32 32 33 md=solve(md,'Transient Solution')33 md=solve(md,'Transient') 34 34 35 35 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test339.m
r21049 r21056 22 22 md.transient.isthermal=0; 23 23 24 md=solve(md,'Transient Solution');24 md=solve(md,'Transient'); 25 25 26 26 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test339.py
r21049 r21056 32 32 md.transient.isthermal=False 33 33 34 md=solve(md,'Transient Solution')34 md=solve(md,'Transient') 35 35 36 36 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test340.m
r21049 r21056 19 19 20 20 md.cluster=generic('name',oshostname(),'np',3); 21 md=solve(md,'Stressbalance Solution');21 md=solve(md,'Stressbalance'); 22 22 23 23 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test341.m
r21049 r21056 19 19 20 20 md.cluster=generic('name',oshostname(),'np',3); 21 md=solve(md,'Stressbalance Solution');21 md=solve(md,'Stressbalance'); 22 22 23 23 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test341.py
r21049 r21056 32 32 33 33 md.cluster=generic('name',oshostname(),'np',3); 34 md=solve(md,'Stressbalance Solution');34 md=solve(md,'Stressbalance'); 35 35 36 36 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test342.m
r21049 r21056 13 13 md.thermal.requested_outputs={'default','BasalforcingsGeothermalflux'}; 14 14 md.cluster=generic('name',oshostname(),'np',3); 15 md=solve(md,'Thermal Solution');15 md=solve(md,'Thermal'); 16 16 17 17 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test350.m
r21049 r21056 53 53 md.hydrology.neumannflux(pos,:)=repmat(0.05*(1-sin(2*pi/(1/365)*time)),numel(pos),1); 54 54 55 md=solve(md,'Transient Solution');55 md=solve(md,'Transient'); 56 56 57 57 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test4001.m
r21051 r21056 545 545 546 546 md.cluster=generic('name',oshostname(),'np',2); 547 md=solve(md,'Transient Solution');547 md=solve(md,'Transient'); 548 548 549 549 savemodel(org,md); … … 819 819 md.timestepping.start_time=t; 820 820 md.timestepping.final_time=t+time_step;; 821 md=solve(md,'Transient Solution');821 md=solve(md,'Transient'); 822 822 823 823 base=md.results.TransientSolution(end).Base; -
issm/trunk-jpl/test/NightlyRun/test401.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Stressbalance Solution');7 md=solve(md,'Stressbalance'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test401.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test402.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test402.py
r21049 r21056 16 16 md=setflowequation(md,'SSA','all') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test403.m
r21049 r21056 6 6 md=setflowequation(md,'HO','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test403.py
r21049 r21056 16 16 md=setflowequation(md,'HO','all') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test404.m
r21049 r21056 6 6 md=setflowequation(md,'FS','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test404.py
r21049 r21056 16 16 md=setflowequation(md,'FS','all') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test405.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO','coupling','penalties'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test405.py
r21049 r21056 16 16 md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO','coupling','penalties') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test406.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.timestepping.time_step=0.; 9 md=solve(md,'Thermal Solution');9 md=solve(md,'Thermal'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test406.py
r21049 r21056 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 18 md.timestepping.time_step=0. 19 md=solve(md,'Thermal Solution')19 md=solve(md,'Thermal') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test407.m
r21049 r21056 11 11 md.transient.isthermal=1; 12 12 md.transient.isgroundingline=0; 13 md=solve(md,'Transient Solution');13 md=solve(md,'Transient'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test407.py
r21049 r21056 21 21 md.transient.isthermal=True 22 22 md.transient.isgroundingline=False 23 md=solve(md,'Transient Solution')23 md=solve(md,'Transient') 24 24 25 25 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test408.m
r21049 r21056 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 9 md.transient.requested_outputs={'default','GroundedArea','FloatingArea','TotalFloatingBmb','TotalGroundedBmb','TotalSmb'}; 10 md=solve(md,'Transient Solution');10 md=solve(md,'Transient'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test408.py
r21049 r21056 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 19 md.transient.requested_outputs=['default','GroundedArea','FloatingArea','TotalFloatingBmb','TotalGroundedBmb','TotalSmb'] 20 md=solve(md,'Transient Solution')20 md=solve(md,'Transient') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test409.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',1); 8 8 md.transient.requested_outputs={'default','GroundedArea'}; 9 md=solve(md,'Transient Solution');9 md=solve(md,'Transient'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test409.py
r21049 r21056 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 18 md.transient.requested_outputs=['default','GroundedArea']; 19 md=solve(md,'Transient Solution')19 md=solve(md,'Transient') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test410.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.timestepping.time_step=0; 9 md=solve(md,'Steadystate Solution');9 md=solve(md,'Steadystate'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test410.py
r21049 r21056 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 18 md.timestepping.time_step=0 19 md=solve(md,'Steadystate Solution')19 md=solve(md,'Steadystate') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test411.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.timestepping.time_step=0; 9 md=solve(md,'Steadystate Solution');9 md=solve(md,'Steadystate'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test411.py
r21049 r21056 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 18 md.timestepping.time_step=0. 19 md=solve(md,'Steadystate Solution')19 md=solve(md,'Steadystate') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test412.m
r21049 r21056 46 46 47 47 %solve 48 md=solve(md,'Stressbalance Solution','overwrite','y');48 md=solve(md,'Stressbalance','overwrite','y'); 49 49 50 50 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test413.m
r21049 r21056 44 44 45 45 %solve 46 md=solve(md,'Stressbalance Solution','overwrite','y');46 md=solve(md,'Stressbalance','overwrite','y'); 47 47 48 48 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test414.m
r21049 r21056 61 61 62 62 %solve 63 md=solve(md,'Stressbalance Solution','overwrite','y');63 md=solve(md,'Stressbalance','overwrite','y'); 64 64 md.qmu.results=md.results.dakota; 65 65 -
issm/trunk-jpl/test/NightlyRun/test415.m
r21049 r21056 21 21 22 22 md.cluster=generic('name',oshostname(),'np',3); 23 md=solve(md,'Steadystate Solution');23 md=solve(md,'Steadystate'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test415.py
r21049 r21056 33 33 34 34 md.cluster=generic('name',oshostname(),'np',3) 35 md=solve(md,'Steadystate Solution')35 md=solve(md,'Steadystate') 36 36 37 37 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test416.m
r21049 r21056 21 21 22 22 md.cluster=generic('name',oshostname(),'np',3); 23 md=solve(md,'Steadystate Solution');23 md=solve(md,'Steadystate'); 24 24 25 25 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test416.py
r21049 r21056 33 33 34 34 md.cluster=generic('name',oshostname(),'np',3) 35 md=solve(md,'Steadystate Solution')35 md=solve(md,'Steadystate') 36 36 37 37 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test417.m
r21049 r21056 66 66 md.stressbalance.reltol=10^-5; %tighten for qmu analyses 67 67 68 md=solve(md,'Stressbalance Solution','overwrite','y');68 md=solve(md,'Stressbalance','overwrite','y'); 69 69 70 70 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test419.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test419.py
r21049 r21056 16 16 md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test420.m
r21049 r21056 45 45 46 46 %solve 47 md=solve(md,'Stressbalance Solution','overwrite','y');47 md=solve(md,'Stressbalance','overwrite','y'); 48 48 md.qmu.results=md.results.dakota; 49 49 -
issm/trunk-jpl/test/NightlyRun/test421.m
r21049 r21056 6 6 md=setflowequation(md,'FS','../Exp/SquareHalfRight.exp','fill','HO'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test421.py
r21049 r21056 16 16 md=setflowequation(md,'FS','../Exp/SquareHalfRight.exp','fill','HO') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test422.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.stressbalance.reltol=0.4; 9 md=solve(md,'Stressbalance Solution');9 md=solve(md,'Stressbalance'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test422.py
r21049 r21056 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 18 md.stressbalance.reltol=0.4 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test423.m
r21049 r21056 27 27 %test different grounding line dynamics. 28 28 md.groundingline.migration='AggressiveMigration'; 29 md=solve(md,'Transient Solution');29 md=solve(md,'Transient'); 30 30 element_on_iceshelf_agressive=(md.results.TransientSolution.MaskGroundediceLevelset); 31 31 vel_agressive=(md.results.TransientSolution.Vel); 32 32 33 33 md.groundingline.migration='SoftMigration'; 34 md=solve(md,'Transient Solution');34 md=solve(md,'Transient'); 35 35 element_on_iceshelf_soft=(md.results.TransientSolution.MaskGroundediceLevelset); 36 36 vel_soft=(md.results.TransientSolution.Vel); … … 38 38 md.mask.groundedice_levelset=md.geometry.thickness + md.materials.rho_water/md.materials.rho_ice*md.geometry.bed; 39 39 md.groundingline.migration='SubelementMigration'; 40 md=solve(md,'Transient Solution');40 md=solve(md,'Transient'); 41 41 element_on_iceshelf_subelement=(md.results.TransientSolution.MaskGroundediceLevelset); 42 42 vel_subelement=(md.results.TransientSolution.Vel); 43 43 44 44 md.groundingline.migration='SubelementMigration2'; 45 md=solve(md,'Transient Solution');45 md=solve(md,'Transient'); 46 46 element_on_iceshelf_subelement2=(md.results.TransientSolution.MaskGroundediceLevelset); 47 47 vel_subelement2=(md.results.TransientSolution.Vel); -
issm/trunk-jpl/test/NightlyRun/test423.py
r21049 r21056 38 38 #test different grounding line dynamics. 39 39 md.groundingline.migration='AggressiveMigration' 40 md=solve(md,'Transient Solution')40 md=solve(md,'Transient') 41 41 element_on_iceshelf_agressive=md.results.TransientSolution[0].MaskGroundediceLevelset 42 42 vel_agressive=md.results.TransientSolution[0].Vel 43 43 44 44 md.groundingline.migration='SoftMigration' 45 md=solve(md,'Transient Solution')45 md=solve(md,'Transient') 46 46 element_on_iceshelf_soft=md.results.TransientSolution[0].MaskGroundediceLevelset 47 47 vel_soft=md.results.TransientSolution[0].Vel … … 49 49 md.mask.groundedice_levelset=md.geometry.thickness + md.materials.rho_water/md.materials.rho_ice*md.geometry.bed 50 50 md.groundingline.migration='SubelementMigration' 51 md=solve(md,'Transient Solution')51 md=solve(md,'Transient') 52 52 element_on_iceshelf_subelement=md.results.TransientSolution[0].MaskGroundediceLevelset 53 53 vel_subelement=md.results.TransientSolution[0].Vel 54 54 55 55 md.groundingline.migration='SubelementMigration2' 56 md=solve(md,'Transient Solution')56 md=solve(md,'Transient') 57 57 element_on_iceshelf_subelement2=md.results.TransientSolution[0].MaskGroundediceLevelset 58 58 vel_subelement2=md.results.TransientSolution[0].Vel -
issm/trunk-jpl/test/NightlyRun/test424.m
r21049 r21056 17 17 18 18 md.cluster=generic('name',oshostname(),'np',3); 19 md=solve(md,'Transient Solution');19 md=solve(md,'Transient'); 20 20 21 21 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test424.py
r21049 r21056 27 27 28 28 md.cluster=generic('name',oshostname(),'np',3) 29 md=solve(md,'Transient Solution')29 md=solve(md,'Transient') 30 30 31 31 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test425.m
r21049 r21056 16 16 17 17 md.cluster=generic('name',oshostname(),'np',3); 18 md=solve(md,'Transient Solution');18 md=solve(md,'Transient'); 19 19 20 20 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test425.py
r21049 r21056 26 26 27 27 md.cluster=generic('name',oshostname(),'np',3) 28 md=solve(md,'Transient Solution')28 md=solve(md,'Transient') 29 29 30 30 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test426.m
r21049 r21056 18 18 md.cluster=generic('name',oshostname(),'np',3); 19 19 20 md=solve(md,'Transient Solution');20 md=solve(md,'Transient'); 21 21 22 22 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test426.py
r21049 r21056 28 28 md.cluster=generic('name',oshostname(),'np',3) 29 29 30 md=solve(md,'Transient Solution')30 md=solve(md,'Transient') 31 31 32 32 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test427.m
r21049 r21056 17 17 md.groundingline.migration='SoftMigration'; 18 18 md.cluster=generic('name',oshostname(),'np',3); 19 md=solve(md,'Transient Solution');19 md=solve(md,'Transient'); 20 20 21 21 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test427.py
r21049 r21056 27 27 md.groundingline.migration='SoftMigration' 28 28 md.cluster=generic('name',oshostname(),'np',3) 29 md=solve(md,'Transient Solution')29 md=solve(md,'Transient') 30 30 31 31 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test428.m
r21049 r21056 7 7 md.stressbalance.restol=0.0001; 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 md=solve(md,'Stressbalance Solution');9 md=solve(md,'Stressbalance'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test428.py
r21049 r21056 17 17 md.stressbalance.restol=0.0001 18 18 md.cluster=generic('name',oshostname(),'np',3) 19 md=solve(md,'Stressbalance Solution')19 md=solve(md,'Stressbalance') 20 20 21 21 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test429.m
r21049 r21056 8 8 md.stressbalance.restol=0.0001; 9 9 md.cluster=generic('name',oshostname(),'np',3); 10 md=solve(md,'Stressbalance Solution');10 md=solve(md,'Stressbalance'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test429.py
r21049 r21056 18 18 md.stressbalance.restol=0.0001 19 19 md.cluster=generic('name',oshostname(),'np',3) 20 md=solve(md,'Stressbalance Solution')20 md=solve(md,'Stressbalance') 21 21 22 22 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test431.m
r21049 r21056 11 11 md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1); 12 12 md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1); 13 md=solve(md,'Steadystate Solution');13 md=solve(md,'Steadystate'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test431.py
r21049 r21056 21 21 md.initialization.waterfraction=numpy.zeros((md.mesh.numberofvertices,1)) 22 22 md.initialization.watercolumn=numpy.zeros((md.mesh.numberofvertices,1)) 23 md=solve(md,'Steadystate Solution')23 md=solve(md,'Steadystate') 24 24 25 25 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test432.m
r21049 r21056 10 10 md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1); 11 11 md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1); 12 md=solve(md,'Steadystate Solution');12 md=solve(md,'Steadystate'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test432.py
r21049 r21056 20 20 md.initialization.waterfraction=numpy.zeros((md.mesh.numberofvertices,1)) 21 21 md.initialization.watercolumn=numpy.zeros((md.mesh.numberofvertices,1)) 22 md=solve(md,'Steadystate Solution')22 md=solve(md,'Steadystate') 23 23 24 24 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test433.m
r21049 r21056 28 28 %test different grounding line dynamics. 29 29 md.groundingline.migration='AggressiveMigration'; 30 md=solve(md,'Transient Solution');30 md=solve(md,'Transient'); 31 31 element_on_iceshelf_agressive=(md.results.TransientSolution.MaskGroundediceLevelset); 32 32 33 33 md.groundingline.migration='SoftMigration'; 34 md=solve(md,'Transient Solution');34 md=solve(md,'Transient'); 35 35 element_on_iceshelf_soft=(md.results.TransientSolution.MaskGroundediceLevelset); 36 36 37 37 md.groundingline.migration='SubelementMigration'; 38 md=solve(md,'Transient Solution');38 md=solve(md,'Transient'); 39 39 element_on_iceshelf_subelement=(md.results.TransientSolution.MaskGroundediceLevelset); 40 40 … … 42 42 md.transient.isstressbalance=1; 43 43 md=setflowequation(md,'SSA','all'); 44 md=solve(md,'Transient Solution');44 md=solve(md,'Transient'); 45 45 element_on_iceshelf_subelement2=(md.results.TransientSolution.MaskGroundediceLevelset); 46 46 -
issm/trunk-jpl/test/NightlyRun/test433.py
r21049 r21056 39 39 #test different grounding line dynamics. 40 40 md.groundingline.migration='AggressiveMigration' 41 md=solve(md,'Transient Solution')41 md=solve(md,'Transient') 42 42 element_on_iceshelf_agressive=md.results.TransientSolution[0].MaskGroundediceLevelset 43 43 44 44 md.groundingline.migration='SoftMigration' 45 md=solve(md,'Transient Solution')45 md=solve(md,'Transient') 46 46 element_on_iceshelf_soft=md.results.TransientSolution[0].MaskGroundediceLevelset 47 47 48 48 md.groundingline.migration='SubelementMigration' 49 md=solve(md,'Transient Solution')49 md=solve(md,'Transient') 50 50 element_on_iceshelf_subelement=md.results.TransientSolution[0].MaskGroundediceLevelset 51 51 -
issm/trunk-jpl/test/NightlyRun/test434.m
r21049 r21056 6 6 md=setflowequation(md,'L1L2','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test434.py
r21049 r21056 16 16 md=setflowequation(md,'L1L2','all') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Stressbalance Solution')18 md=solve(md,'Stressbalance') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test435.m
r21049 r21056 44 44 45 45 md.cluster=generic('name',oshostname(),'np',3); 46 md=solve(md,'Transient Solution');46 md=solve(md,'Transient'); 47 47 48 48 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test436.m
r21049 r21056 20 20 21 21 md.materials.rheology_law=i{1}; 22 md=solve(md,'Steadystate Solution');22 md=solve(md,'Steadystate'); 23 23 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vz' i{1}],['Vel' i{1}],['Pressure' i{1}],... 24 24 ['Temperature' i{1}],['Waterfraction' i{1}],['Enthalpy' i{1}]}; -
issm/trunk-jpl/test/NightlyRun/test437.m
r21049 r21056 45 45 md.verbose=verbose(0); 46 46 md.cluster=generic('name',oshostname(),'np',3); 47 md=solve(md,'Transient Solution');47 md=solve(md,'Transient'); 48 48 49 49 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test438.m
r21049 r21056 10 10 md.friction.f=0.8; 11 11 md.cluster=generic('name',oshostname(),'np',3); 12 md=solve(md,'Transient Solution');12 md=solve(md,'Transient'); 13 13 14 14 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test439.m
r21049 r21056 11 11 md.friction.f=0.8; 12 12 md.cluster=generic('name',oshostname(),'np',3); 13 md=solve(md,'Transient Solution');13 md=solve(md,'Transient'); 14 14 15 15 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test440.m
r21051 r21056 45 45 46 46 %solve 47 md=solve(md,'Stressbalance Solution','overwrite','y');47 md=solve(md,'Stressbalance','overwrite','y'); 48 48 md.qmu.results=md.results.dakota; 49 49 -
issm/trunk-jpl/test/NightlyRun/test450.m
r21049 r21056 11 11 for i={'P1bubble','P1bubblecondensed','P2'} 12 12 md.flowequation.fe_SSA=i{1}; 13 md=solve(md,'Stressbalance Solution');13 md=solve(md,'Stressbalance'); 14 14 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]}; 15 15 field_tolerances={field_tolerances{:},1e-12,1e-13,1e-13,1e-13}; -
issm/trunk-jpl/test/NightlyRun/test450.py
r21049 r21056 21 21 for i in ['P1bubble','P1bubblecondensed','P2']: 22 22 md.flowequation.fe_SSA=i 23 md=solve(md,'Stressbalance Solution')23 md=solve(md,'Stressbalance') 24 24 field_names =field_names+['Vx'+i,'Vy'+i,'Vel'+i,'Pressure'+i] 25 25 field_tolerances=field_tolerances+[1e-12,1e-13,1e-13,1e-13] -
issm/trunk-jpl/test/NightlyRun/test455.m
r21049 r21056 12 12 for i={'P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2','P1xP3','P2xP4'} 13 13 md.flowequation.fe_HO=i{1}; 14 md=solve(md,'Stressbalance Solution');14 md=solve(md,'Stressbalance'); 15 15 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vz' i{1}],['Vel' i{1}],['Pressure' i{1}]}; 16 16 field_tolerances={field_tolerances{:},6e-08,6e-08,6e-08,6e-08,3e-13}; -
issm/trunk-jpl/test/NightlyRun/test455.py
r21049 r21056 22 22 for i in ['P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2','P1xP3','P2xP4']: 23 23 md.flowequation.fe_HO=i 24 md=solve(md,'Stressbalance Solution')24 md=solve(md,'Stressbalance') 25 25 field_names =field_names+['Vx'+i,'Vy'+i,'Vz'+i,'Vel'+i,'Pressure'+i] 26 26 field_tolerances=field_tolerances+[6e-08,6e-08,6e-08,6e-08,3e-13] -
issm/trunk-jpl/test/NightlyRun/test460.m
r21049 r21056 19 19 disp(['====== Testing Estar with ' i{1} ' =====']); 20 20 md=setflowequation(md,i{1},'all'); 21 md=solve(md,'Stressbalance Solution');21 md=solve(md,'Stressbalance'); 22 22 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vz' i{1}],['Vel' i{1}],['Pressure' i{1}]}; 23 23 field_tolerances={field_tolerances{:},6e-07,6e-07,2e-06,1e-06,5e-07}; -
issm/trunk-jpl/test/NightlyRun/test501.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Stressbalance Solution');7 md=solve(md,'Stressbalance'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test501.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Stressbalance Solution')16 md=solve(md,'Stressbalance') 17 17 18 18 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test502.m
r21049 r21056 6 6 md=setflowequation(md,'HO','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test502.py
r21049 r21056 15 15 md=setflowequation(md,'HO','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test503.m
r21049 r21056 6 6 md=setflowequation(md,'FS','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Stressbalance Solution');8 md=solve(md,'Stressbalance'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test503.py
r21049 r21056 15 15 md=setflowequation(md,'FS','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Stressbalance Solution')17 md=solve(md,'Stressbalance') 18 18 19 19 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test504.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Transient Solution');7 md=solve(md,'Transient'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test504.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Transient Solution')16 md=solve(md,'Transient') 17 17 18 18 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test505.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Transient Solution');8 md=solve(md,'Transient'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test505.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Transient Solution')17 md=solve(md,'Transient') 18 18 19 19 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test506.m
r21049 r21056 6 6 md=setflowequation(md,'HO','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Transient Solution');8 md=solve(md,'Transient'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test506.py
r21049 r21056 15 15 md=setflowequation(md,'HO','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Transient Solution')17 md=solve(md,'Transient') 18 18 19 19 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test507.m
r21049 r21056 6 6 md=setflowequation(md,'FS','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Transient Solution');8 md=solve(md,'Transient'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test507.py
r21049 r21056 15 15 md=setflowequation(md,'FS','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Transient Solution')17 md=solve(md,'Transient') 18 18 19 19 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test508.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.timestepping.time_step=0.; 9 md=solve(md,'Steadystate Solution');9 md=solve(md,'Steadystate'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test508.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 17 md.timestepping.time_step=0. 18 md=solve(md,'Steadystate Solution')18 md=solve(md,'Steadystate') 19 19 20 20 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test509.m
r21049 r21056 8 8 md.timestepping.time_step=0.; 9 9 md.thermal.penalty_threshold=7; 10 md=solve(md,'Steadystate Solution');10 md=solve(md,'Steadystate'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test509.py
r21049 r21056 17 17 md.timestepping.time_step=0. 18 18 md.thermal.penalty_threshold=7 19 md=solve(md,'Steadystate Solution')19 md=solve(md,'Steadystate') 20 20 21 21 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test510.m
r21049 r21056 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.timestepping.time_step=0.; 9 md=solve(md,'Steadystate Solution');9 md=solve(md,'Steadystate'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test510.py
r21049 r21056 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 17 md.timestepping.time_step=0. 18 md=solve(md,'Steadystate Solution')18 md=solve(md,'Steadystate') 19 19 20 20 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test511.m
r21049 r21056 25 25 26 26 md.cluster=generic('name',oshostname(),'np',1); 27 md=solve(md,'Stressbalance Solution');27 md=solve(md,'Stressbalance'); 28 28 29 29 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test511.py
r21049 r21056 36 36 37 37 md.cluster=generic('name',oshostname(),'np',1) 38 md=solve(md,'Stressbalance Solution')38 md=solve(md,'Stressbalance') 39 39 40 40 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test512.m
r21049 r21056 20 20 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,'Stressbalance Solution');22 md=solve(md,'Stressbalance'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test512.py
r21049 r21056 32 32 33 33 md.cluster=generic('name',oshostname(),'np',3) 34 md=solve(md,'Stressbalance Solution')34 md=solve(md,'Stressbalance') 35 35 36 36 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test513.m
r21049 r21056 22 22 md.thermal.penalty_lock=5; 23 23 md.cluster=generic('name',oshostname(),'np',3); 24 md=solve(md,'Steadystate Solution');24 md=solve(md,'Steadystate'); 25 25 26 26 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test513.py
r21049 r21056 33 33 md.thermal.penalty_lock=5 34 34 md.cluster=generic('name',oshostname(),'np',3) 35 md=solve(md,'Steadystate Solution')35 md=solve(md,'Steadystate') 36 36 37 37 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test515.m
r21049 r21056 12 12 md.transient.isthermal=1; 13 13 md.transient.isgroundingline=0; 14 md=solve(md,'Transient Solution');14 md=solve(md,'Transient'); 15 15 16 16 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test515.py
r21049 r21056 21 21 md.transient.isthermal=True 22 22 md.transient.isgroundingline=False 23 md=solve(md,'Transient Solution')23 md=solve(md,'Transient') 24 24 25 25 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test516.m
r21049 r21056 9 9 md.timestepping.time_step=0; 10 10 md.thermal.penalty_threshold=40; 11 md=solve(md,'Thermal Solution');11 md=solve(md,'Thermal'); 12 12 13 13 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test516.py
r21049 r21056 19 19 md.timestepping.time_step=0 20 20 md.thermal.penalty_threshold=40 21 md=solve(md,'Thermal Solution')21 md=solve(md,'Thermal') 22 22 23 23 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test530.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Balancevelocity Solution');7 md=solve(md,'Balancevelocity'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test530.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Balancevelocity Solution')16 md=solve(md,'Balancevelocity') 17 17 18 18 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test531.m
r21049 r21056 7 7 md=setflowequation(md,'SSA','all'); 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 md=solve(md,'Balancevelocity Solution');9 md=solve(md,'Balancevelocity'); 10 10 11 11 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test531.py
r21049 r21056 16 16 md=setflowequation(md,'SSA','all') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Balancevelocity Solution')18 md=solve(md,'Balancevelocity') 19 19 20 20 # Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test601.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Masstransport Solution');7 md=solve(md,'Masstransport'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test601.py
r21049 r21056 14 14 md=setflowequation(md,'SSA','all') 15 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,'Masstransport Solution')16 md=solve(md,'Masstransport') 17 17 18 18 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test602.m
r21049 r21056 8 8 md.masstransport.spcthickness=md.geometry.thickness; 9 9 md.cluster=generic('name',oshostname(),'np',3); 10 md=solve(md,'Masstransport Solution');10 md=solve(md,'Masstransport'); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test602.py
r21049 r21056 19 19 md.masstransport.spcthickness=md.geometry.thickness 20 20 md.cluster=generic('name',oshostname(),'np',3) 21 md=solve(md,'Masstransport Solution')21 md=solve(md,'Masstransport') 22 22 23 23 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test603.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'Masstransport Solution');8 md=solve(md,'Masstransport'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test603.py
r21049 r21056 16 16 md=setflowequation(md,'SSA','all') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'Masstransport Solution')18 md=solve(md,'Masstransport') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test604.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'SurfaceSlope Solution');7 md=solve(md,'SurfaceSlope'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test604.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'SurfaceSlope Solution')17 md=solve(md,'SurfaceSlope') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test605.m
r21049 r21056 6 6 md=setflowequation(md,'HO','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'SurfaceSlope Solution');8 md=solve(md,'SurfaceSlope'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test605.py
r21049 r21056 16 16 md=setflowequation(md,'HO','all') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'SurfaceSlope Solution')18 md=solve(md,'SurfaceSlope') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test606.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'BedSlope Solution');7 md=solve(md,'BedSlope'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test606.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'BedSlope Solution')17 md=solve(md,'BedSlope') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test607.m
r21049 r21056 6 6 md=setflowequation(md,'SSA','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md=solve(md,'BedSlope Solution');8 md=solve(md,'BedSlope'); 9 9 10 10 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test607.py
r21049 r21056 16 16 md=setflowequation(md,'SSA','all') 17 17 md.cluster=generic('name',oshostname(),'np',3) 18 md=solve(md,'BedSlope Solution')18 md=solve(md,'BedSlope') 19 19 20 20 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test608.m
r21049 r21056 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,'Balancethickness Solution');7 md=solve(md,'Balancethickness'); 8 8 9 9 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test608.py
r21049 r21056 15 15 md=setflowequation(md,'SSA','all') 16 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,'Balancethickness Solution')17 md=solve(md,'Balancethickness') 18 18 19 19 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test611.m
r21049 r21056 20 20 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,'Balancethickness Solution');22 md=solve(md,'Balancethickness'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test611.py
r21049 r21056 30 30 31 31 md.cluster=generic('name',oshostname(),'np',3) 32 md=solve(md,'Balancethickness Solution')32 md=solve(md,'Balancethickness') 33 33 34 34 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test613.m
r21049 r21056 27 27 md.verbose.control=1; 28 28 md.cluster=generic('name',oshostname(),'np',3); 29 md=solve(md,'Balancethickness Solution');29 md=solve(md,'Balancethickness'); 30 30 31 31 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test613.py
r21049 r21056 39 39 md.verbose.control=1 40 40 md.cluster=generic('name',oshostname(),'np',3) 41 md=solve(md,'Balancethickness Solution')41 md=solve(md,'Balancethickness') 42 42 43 43 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test701.m
r21049 r21056 56 56 disp(['====== Testing ' i{1} ' Full-Stokes Finite element =====']); 57 57 md.flowequation.fe_FS=i{1}; 58 md=solve(md,'Stressbalance Solution');58 md=solve(md,'Stressbalance'); 59 59 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]}; 60 60 field_tolerances={field_tolerances{:},9e-5,9e-5,9e-5,1e-10}; -
issm/trunk-jpl/test/NightlyRun/test702.m
r21049 r21056 54 54 disp(['====== Testing ' i{1} ' Full-Stokes Finite element =====']); 55 55 md.flowequation.fe_FS=i{1}; 56 md=solve(md,'Stressbalance Solution');56 md=solve(md,'Stressbalance'); 57 57 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]}; 58 58 field_tolerances={field_tolerances{:},8e-5,8e-5,8e-5,1e-08}; -
issm/trunk-jpl/test/NightlyRun/test703.m
r21049 r21056 61 61 md.cluster=generic('np',3); 62 62 md.stressbalance.shelf_dampening=1; 63 md1=solve(md,'Transient Solution');63 md1=solve(md,'Transient'); 64 64 65 65 md.stressbalance.shelf_dampening=0; 66 md=solve(md,'Transient Solution');66 md=solve(md,'Transient'); 67 67 68 68 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test801.m
r21049 r21056 15 15 md.transient.isgia=0; 16 16 17 md=solve(md,'Transient Solution');17 md=solve(md,'Transient'); 18 18 19 19 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test801.py
r21049 r21056 25 25 md.transient.isgia=False 26 26 27 md=solve(md,'Transient Solution')27 md=solve(md,'Transient') 28 28 29 29 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test802.m
r21049 r21056 20 20 md.transient.isgia=0; 21 21 22 md=solve(md,'Transient Solution');22 md=solve(md,'Transient'); 23 23 24 24 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test802.py
r21049 r21056 30 30 md.transient.isgia=False 31 31 32 md=solve(md,'Transient Solution')32 md=solve(md,'Transient') 33 33 34 34 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test803.m
r21049 r21056 22 22 md.transient.isgia=0; 23 23 24 md=solve(md,'Transient Solution');24 md=solve(md,'Transient'); 25 25 26 26 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test803.py
r21049 r21056 32 32 md.transient.isgia=False 33 33 34 md=solve(md,'Transient Solution')34 md=solve(md,'Transient') 35 35 36 36 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test804.m
r21049 r21056 18 18 md.calving.meltingrate=zeros(md.mesh.numberofvertices,1); 19 19 20 md=solve(md,'Transient Solution');20 md=solve(md,'Transient'); 21 21 22 22 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test804.py
r21049 r21056 28 28 md.calving.meltingrate=numpy.zeros((md.mesh.numberofvertices,1)) 29 29 30 md=solve(md,'Transient Solution')30 md=solve(md,'Transient') 31 31 32 32 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test805.m
r21049 r21056 25 25 md.calving.meltingrate=zeros(md.mesh.numberofvertices,1); 26 26 27 md=solve(md,'Transient Solution');27 md=solve(md,'Transient'); 28 28 29 29 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test805.py
r21049 r21056 35 35 md.calving.meltingrate=numpy.zeros((md.mesh.numberofvertices,1)) 36 36 37 md=solve(md,'Transient Solution')37 md=solve(md,'Transient') 38 38 39 39 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test806.m
r21049 r21056 32 32 md.transient.requested_outputs={'default','StrainRateparallel','StrainRateperpendicular','Calvingratex','Calvingratey','CalvingCalvingrate'}; 33 33 34 md=solve(md,'Transient Solution');34 md=solve(md,'Transient'); 35 35 36 36 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test806.py
r21049 r21056 43 43 md.transient.requested_outputs=['default','StrainRateparallel','StrainRateperpendicular','Calvingratex','Calvingratey','CalvingCalvingrate'] 44 44 45 md=solve(md,'Transient Solution')45 md=solve(md,'Transient') 46 46 47 47 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test807.m
r21049 r21056 29 29 md.levelset.spclevelset=NaN(md.mesh.numberofvertices,1); 30 30 31 md=solve(md,'Transient Solution');31 md=solve(md,'Transient'); 32 32 33 33 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test807.py
r21049 r21056 40 40 md.levelset.spclevelset=numpy.float('NaN')*numpy.ones((md.mesh.numberofvertices,1)) 41 41 42 md=solve(md,'Transient Solution')42 md=solve(md,'Transient') 43 43 44 44 #Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test808.m
r21049 r21056 31 31 md.levelset.reinit_frequency=1; 32 32 33 md=solve(md,'Transient Solution');33 md=solve(md,'Transient'); 34 34 35 35 %Fields and tolerances to track changes
Note:
See TracChangeset
for help on using the changeset viewer.