Changeset 34
- Timestamp:
- 04/24/09 11:16:15 (16 years ago)
- Location:
- issm/trunk/src/m/solutions/ice
- Files:
-
- 18 added
- 25 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/solutions/ice/diagnostic.m
r1 r34 1 function md= icediagnostic(md);2 % ICEDIAGNOSTIC - compute the velocity field of a model1 function md=diagnostic(md); 2 %DIAGNOSTIC - compute the velocity field of a model 3 3 % 4 4 % this routine is a Matlab drivn solution 5 5 % 6 6 % Usage: 7 % u_g= icediagnostic_core_linear(m,analysis_type,varargin);7 % u_g=diagnostic_core_linear(m,analysis_type,varargin); 8 8 % 9 9 % See also: ICEDIAGNOSTIC2D, ICEDIAGNOSTIC3D, ICEDIAGNOSTIC_CORE_NONLINEAR ICEDIAGNOSTIC_CORE_LINEAR 10 11 %start timing 12 t1=clock; 10 13 11 14 %define global variables 12 15 iceglobal 13 16 14 %determine if run is parallel 15 if strcmpi(md.cluster,'yes'), cluster=1; else cluster=0;end; 16 17 %for now, only serial support is in 18 if cluster, 19 error('icediagnostic error message: parallel support not implemented yet'); 20 end 21 22 %Create fem structure (input of icediagnostic3d) 17 %Create fem structure (input of diagnostic3d) 23 18 fem=struct(); 24 19 %Figure out which type of elements are present … … 48 43 49 44 %compute solution 50 u_g= icediagnostic2d(md,fem);45 u_g=diagnostic2d(md,fem); 51 46 52 47 %Load results onto model … … 83 78 84 79 %compute solution 85 u_g= icediagnostic3d(md,fem);80 u_g=diagnostic3d(md,fem); 86 81 87 82 %Load results onto model 88 83 md=Loadresults(md,fem,u_g); 89 84 end 85 86 %stop timing 87 t2=clock; 88 disp(sprintf('\n%s\n',['solution converged in ' num2str(etime(t2,t1)) ' seconds'])); -
issm/trunk/src/m/solutions/ice/huttercompute.m
r1 r34 7 7 %define global variables 8 8 iceglobal 9 10 %determine if run is parallel11 if strcmpi(md.cluster,'yes'), cluster=1; else cluster=0;end;12 13 %for now, only serial support is in14 if cluster,15 error('icediagnostic error message: parallel support not implemented yet');16 end17 9 18 10 %setup some parameters to be passed to the core solution … … 45 37 slopesurface(2:6:gridset.gsize,1)=md.surface_slopey; 46 38 disp(sprintf('\n%s',['computing Hutter''s velocities...'])); 47 u_g= icediagnostic_core_linear(elements,grids,materials,loads,params,ys,'diagnostic_hutter',struct('slopesurface',slopesurface));39 u_g=diagnostic_core_linear(elements,grids,materials,loads,params,ys,'diagnostic_hutter',struct('slopesurface',slopesurface)); 48 40 49 41 md.vx=u_g(1:6:end)*md.yts; -
issm/trunk/src/m/solutions/ice/slopecompute.m
r1 r34 29 29 30 30 if strcmpi(field, 'bed'), 31 slopex= icediagnostic_core_linear(m_bs,'bed_slope_compute_x');32 slopey= icediagnostic_core_linear(m_bs,'bed_slope_compute_y');31 slopex=diagnostic_core_linear(m_bs,'bed_slope_compute_x'); 32 slopey=diagnostic_core_linear(m_bs,'bed_slope_compute_y'); 33 33 34 34 slopex=slopex(1:6:end); … … 44 44 45 45 elseif strcmpi(field, 'surface'), 46 slopex= icediagnostic_core_linear(m_ss,'surface_slope_compute_x');47 slopey= icediagnostic_core_linear(m_ss,'surface_slope_compute_y');46 slopex=diagnostic_core_linear(m_ss,'surface_slope_compute_x'); 47 slopey=diagnostic_core_linear(m_ss,'surface_slope_compute_y'); 48 48 49 49 slopex=slopex(1:6:end);
Note:
See TracChangeset
for help on using the changeset viewer.