Changeset 25443


Ignore:
Timestamp:
08/21/20 11:36:12 (5 years ago)
Author:
adhikari
Message:

CHG: extracting geoid height change from the original sesaw solver

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/contrib/adhikari/adhikari2016GMD_slr_solver/SESAWslr.m

    r25440 r25443  
    1 function [eust,rsl,vlm] = SESAWslr(index,lat,long,greens,para)
     1function [eust,rsl,vlm,geoid] = SESAWslr(index,lat,long,greens,para)
    22%SESAWslr :: computes GRD slr due to applied surface loads based on SESAW method.
    33%
     
    55%
    66%   Usage:
    7 %      [eus,rsl]=greensfunctions(md.mesh.elements,md.mesh.lat,md.mesh.long,greens,para)
     7%      [eus,rsl,vlm,geoid]=greensfunctions(md.mesh.elements,md.mesh.lat,md.mesh.long,greens,para)
     8%
     9%      eus = eustatic aka barystatic sea level
     10%      rsl = relative sea level
     11%      vlm = vertical land motion
     12%      geoid = change in geoid height
    813%     
    914%      greens.Grigid = Gravitational Green's function for the rigid planet.
     
    105110end
    106111
    107 % compute bedrock motions (VLM: vertical land motion)
     112% compute bedrock motion aka VLM (vertical land motion) and geoid height change
     113rsl_no_mass_conservation = term1+term2; % eus-term3-term4 is excluded. See Tamisiea, 2011.
    108114if strcmpi(para.solidearth,'rigid')
    109         vlm = 0.0*rsl;   
     115        vlm = 0.0*rsl;
    110116elseif strcmpi(para.solidearth,'elastic')
    111117        % reset Green's function for VLM, i.e. h_l
     
    115121        vlm = term1+term2;
    116122end
     123% now add VLM.
     124geoid = rsl_no_mass_conservation+vlm;
    117125
    118 
Note: See TracChangeset for help on using the changeset viewer.