function md=transient2d(md); %ICETRANSIENT2D - transient solution of 2d models % % Usage: % md=transient2d(md) global gridset %Create fem structure (input of diagnostic2d) fem=struct(); %Figure out which type of elements are present [fem.ishutter,fem.ismacayealpattyn,fem.isstokes]=DiagnosticSolutionType(md.elements_type); %First, build elements,grids,loads, etc ... for horizontal model if fem.ishutter, fem.m_ss=CreateFemModel(md,'surface_slope_compute'); fem.m_dhu=CreateFemModel(md,'diagnostic_hutter'); end if fem.ismacayealpattyn, fem.m_dh=CreateFemModel(md,'diagnostic_horiz'); end m_p=CreateFemModel(md,'prognostic'); %initialize (velocity,pressure) solution.u_g=zeros(m_p.gridset.gsize,1); if ~isnan(md.vx), solution.u_g(1:6:m_p.gridset.gsize)=md.vx/md.yts; end if ~isnan(md.vy), solution.u_g(2:6:m_p.gridset.gsize)=md.vy/md.yts; end %initialize geometry and time solution.thickness=zeros(m_p.gridset.gsize,1);solution.thickness(1:6:m_p.gridset.gsize)=md.thickness; solution.surface=zeros(m_p.gridset.gsize,1);solution.surface(1:6:m_p.gridset.gsize)=md.surface; solution.bed=zeros(m_p.gridset.gsize,1);solution.bed(1:6:m_p.gridset.gsize)=md.bed; solution.time=0; %melting and accumulation are taken constant for all iterations melting=zeros(m_p.gridset.gsize,1); accumulation=zeros(m_p.gridset.gsize,1); melting(1:6:end)=md.melting/md.yts; %from m/yr to m/s accumulation(1:6:end)=md.accumulation/md.yts; %from m/yr to m/s %build constant inputs fem.inputs=struct(); fem.inputs.accumulation=accumulation; fem.inputs.melting=melting; fem.inputs.dt=md.dt; %first time step is given by model. dt=md.dt; finaltime=md.ndt; time=dt; n=1; %counter while time