Changeset 34


Ignore:
Timestamp:
04/24/09 11:16:15 (16 years ago)
Author:
Mathieu Morlighem
Message:

moved icediagnostic -> diagnostic (removed ice from the functions name)

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 model
     1function md=diagnostic(md);
     2%DIAGNOSTIC - compute the velocity field of a model
    33%
    44%   this routine is a Matlab drivn solution
    55%   
    66%   Usage:
    7 %      u_g=icediagnostic_core_linear(m,analysis_type,varargin);
     7%      u_g=diagnostic_core_linear(m,analysis_type,varargin);
    88%
    99%   See also: ICEDIAGNOSTIC2D, ICEDIAGNOSTIC3D, ICEDIAGNOSTIC_CORE_NONLINEAR ICEDIAGNOSTIC_CORE_LINEAR
     10
     11%start timing
     12t1=clock;
    1013
    1114%define global variables
    1215iceglobal
    1316
    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)
    2318fem=struct();
    2419%Figure out which type of elements are present
     
    4843
    4944        %compute solution
    50         u_g=icediagnostic2d(md,fem);
     45        u_g=diagnostic2d(md,fem);
    5146
    5247        %Load results onto model
     
    8378
    8479        %compute solution
    85         u_g=icediagnostic3d(md,fem);
     80        u_g=diagnostic3d(md,fem);
    8681
    8782        %Load results onto model
    8883        md=Loadresults(md,fem,u_g);
    8984end
     85
     86%stop timing
     87t2=clock;
     88disp(sprintf('\n%s\n',['solution converged in ' num2str(etime(t2,t1)) ' seconds']));
  • issm/trunk/src/m/solutions/ice/huttercompute.m

    r1 r34  
    77%define global variables
    88iceglobal
    9 
    10 %determine if run is parallel
    11 if strcmpi(md.cluster,'yes'), cluster=1; else cluster=0;end;
    12 
    13 %for now, only serial support is in
    14 if cluster,
    15         error('icediagnostic error message: parallel support not implemented yet');
    16 end
    179
    1810%setup some parameters to be passed to the core solution
     
    4537slopesurface(2:6:gridset.gsize,1)=md.surface_slopey;
    4638disp(sprintf('\n%s',['computing Hutter''s velocities...']));
    47 u_g=icediagnostic_core_linear(elements,grids,materials,loads,params,ys,'diagnostic_hutter',struct('slopesurface',slopesurface));
     39u_g=diagnostic_core_linear(elements,grids,materials,loads,params,ys,'diagnostic_hutter',struct('slopesurface',slopesurface));
    4840       
    4941md.vx=u_g(1:6:end)*md.yts;
  • issm/trunk/src/m/solutions/ice/slopecompute.m

    r1 r34  
    2929
    3030if 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');
    3333       
    3434        slopex=slopex(1:6:end);
     
    4444       
    4545elseif 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');
    4848               
    4949        slopex=slopex(1:6:end);
Note: See TracChangeset for help on using the changeset viewer.