Changeset 22970
- Timestamp:
- 07/17/18 14:44:49 (7 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/slr.m
r22955 r22970 6 6 classdef slr 7 7 properties (SetAccess=public) 8 deltathickness = NaN;9 sealevel = NaN;10 spcthickness = NaN;11 maxiter = 0;12 reltol = 0;13 abstol = 0;14 love_h = 0; %provided by PREM model15 love_k = 0; %ideam16 love_l = 0; %ideam17 tide_love_k = 0; %ideam18 tide_love_h = 0; %ideam19 fluid_love = 0;20 equatorial_moi = 0;21 polar_moi = 0;22 angular_velocity = 0;23 rigid = 0;24 elastic = 0;25 rotation = 0;26 ocean_area_scaling = 0;27 steric_rate = 0; %rate of ocean expansion from steric effects.28 geodetic_run_frequency 29 geodetic = 0; %compute geodetic SLR? (in addition to steric?)30 degacc = 0;31 loop_increment = 0;32 horiz = 0;33 Ngia = 0;34 Ugia = 0;8 deltathickness = NaN; 9 sealevel = NaN; 10 spcthickness = NaN; 11 maxiter = 0; 12 reltol = 0; 13 abstol = 0; 14 love_h = 0; %provided by PREM model 15 love_k = 0; %ideam 16 love_l = 0; %ideam 17 tide_love_k = 0; %ideam 18 tide_love_h = 0; %ideam 19 fluid_love = 0; 20 equatorial_moi = 0; 21 polar_moi = 0; 22 angular_velocity = 0; 23 rigid = 0; 24 elastic = 0; 25 rotation = 0; 26 ocean_area_scaling = 0; 27 steric_rate = 0; %rate of ocean expansion from steric effects. 28 geodetic_run_frequency = 1; %how many time steps we skip before we run the geodetic part of the solver during transient 29 geodetic = 0; %compute geodetic SLR? (in addition to steric?) 30 degacc = 0; 31 loop_increment = 0; 32 horiz = 0; 33 Ngia = NaN; 34 Ugia = NaN; 35 35 requested_outputs = {}; 36 transitions = {};36 transitions = {}; 37 37 end 38 38 methods -
issm/trunk-jpl/test/NightlyRun/test2002.m
r22109 r22970 59 59 md.materials.rheology_n=3*ones(md.mesh.numberofelements,1); 60 60 61 %New stuff 62 md.slr.spcthickness = NaN(md.mesh.numberofvertices,1); 63 md.slr.Ngia = zeros(md.mesh.numberofvertices,1); 64 md.slr.Ugia = zeros(md.mesh.numberofvertices,1); 65 61 66 %Miscellaneous 62 67 md.miscellaneous.name='test2002'; -
issm/trunk-jpl/test/NightlyRun/test2003.m
r21753 r22970 60 60 md.miscellaneous.name='test2003'; 61 61 62 %New stuff 63 md.slr.spcthickness = NaN(md.mesh.numberofvertices,1); 64 md.slr.Ngia = zeros(md.mesh.numberofvertices,1); 65 md.slr.Ugia = zeros(md.mesh.numberofvertices,1); 66 62 67 %Solution parameters 63 68 md.slr.reltol=NaN; -
issm/trunk-jpl/test/NightlyRun/test2010.m
r21947 r22970 66 66 % }}} 67 67 68 %New stuff 69 md.slr.spcthickness = NaN(md.mesh.numberofvertices,1); 70 md.slr.Ngia = zeros(md.mesh.numberofvertices,1); 71 md.slr.Ugia = zeros(md.mesh.numberofvertices,1); 72 68 73 %eustatic + rigid + elastic run: 69 74 md.slr.rigid=1; md.slr.elastic=1; md.slr.rotation=1; -
issm/trunk-jpl/test/NightlyRun/test2111.m
r22350 r22970 47 47 % }}} 48 48 49 %New stuff 50 md.slr.spcthickness = NaN(md.mesh.numberofvertices,1); 51 md.slr.Ngia = zeros(md.mesh.numberofvertices,1); 52 md.slr.Ugia = zeros(md.mesh.numberofvertices,1); 53 49 54 %solve esa: {{{ 50 55 md.esa.requested_outputs = {'EsaUmotion','EsaNmotion','EsaEmotion','EsaXmotion','EsaYmotion'}; -
issm/trunk-jpl/test/NightlyRun/test2112.m
r22350 r22970 47 47 % }}} 48 48 49 %New stuff 50 md.slr.spcthickness = NaN(md.mesh.numberofvertices,1); 51 md.slr.Ngia = zeros(md.mesh.numberofvertices,1); 52 md.slr.Ugia = zeros(md.mesh.numberofvertices,1); 53 49 54 %solve esa: {{{ 50 55 md.esa.requested_outputs = {'EsaUmotion','EsaNmotion','EsaEmotion','EsaXmotion','EsaYmotion'}; -
issm/trunk-jpl/test/NightlyRun/test2113.m
r22350 r22970 48 48 % }}} 49 49 50 %New stuff 51 md.slr.spcthickness = NaN(md.mesh.numberofvertices,1); 52 md.slr.Ngia = zeros(md.mesh.numberofvertices,1); 53 md.slr.Ugia = zeros(md.mesh.numberofvertices,1); 54 50 55 %solve esa: {{{ 51 56 md.esa.requested_outputs = {'EsaUmotion','EsaNmotion','EsaEmotion'};
Note:
See TracChangeset
for help on using the changeset viewer.