source:
issm/oecreview/Archive/25834-26739/ISSM-26082-26083.diff
Last change on this file was 26740, checked in by , 3 years ago | |
---|---|
File size: 1.4 KB |
-
../trunk-jpl/src/m/classes/frictioncoulomb2.m
11 11 effective_pressure = NaN; 12 12 effective_pressure_limit = 0; 13 13 end 14 methods (Static) 15 function self = loadobj(self) % {{{ 16 if isstruct(self) 17 disp('Recovering frictioncoulomb2 from older version'); 18 if isfield(self,'coefficient') 19 self.C = self.coefficient; 20 end 21 self = structtoobj(frictioncoulomb2(),self); 22 end 23 end% }}} 24 end 14 25 methods 15 26 function self = extrude(self,md) % {{{ 16 27 self.C=project3d(md,'vector',self.C,'type','node','layer',1); -
../trunk-jpl/src/m/classes/model.m
132 132 md.settings.solver_residue_threshold = 1e-6; 133 133 end 134 134 end 135 %2017 April 10th136 if isa(md.gia,'gia'), md.gia=giamme(); end137 135 %2017 May 4th 138 136 if isa(md.amr,'double'); md.amr=amr(); end 139 137 %2017 Aug 29th … … 176 174 end 177 175 end 178 176 %2019 Dec 16 179 if isa(md.dsl,'double') | isempty(md.dsl.compute_fingerprints)177 if isa(md.dsl,'double') 180 178 md.dsl=dsl(); 181 179 end 182 180 %2020 April 24
Note:
See TracBrowser
for help on using the repository browser.