Changeset 2547


Ignore:
Timestamp:
10/27/09 15:16:20 (15 years ago)
Author:
Mathieu Morlighem
Message:

removed 'cielo' from src/m

Location:
issm/trunk/src/m
Files:
1 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/@model/model.m

    r2382 r2547  
    258258        md.mesh_resolution=NaN;
    259259
    260         %Cielo solver string
     260        %PETSc and MATLAB solver string
    261261        md.solverstring='';
     262        md.solver_type='';
     263
     264        %Analysis and sub_analysis
    262265        md.analysis_type='';
    263266        md.sub_analysis_type='';
     
    290293        md.qmu_mass_flux_segments=NaN;
    291294
    292         %Ice solver string
    293         md.solver_type='';
    294 
    295295        %output
    296296        md=class(md,'model');
  • issm/trunk/src/m/classes/@model/setdefaultparameters.m

    r2354 r2547  
    217217%the value of plot can be set to 1 if the user wants to see
    218218%the direction and the updated parameter after each control
    219 %method iteration (only for cielo serial)
     219%method iteration (only for serial)
    220220md.plot=0;
    221221
  • issm/trunk/src/m/classes/public/collapse.m

    r1755 r2547  
    120120%Update mesh type
    121121md.type='2d';
    122 
    123 %Tie in with Cielo if requested
    124 cieloend;
    125 end
  • issm/trunk/src/m/classes/public/display/displayparallel.m

    r2226 r2547  
    2020fielddisplay(md,'queue','special queue name on cluster? default is '''' ');
    2121
    22 disp(sprintf('\n      ice solver options:'));
     22disp(sprintf('\n      Matlab solver options:'));
    2323fielddisplay(md,'solver_type','solver type for Ice: ''general'', ''lu'' or ''cholesky''');
    24 disp(sprintf('\n      cielo solver options:'));
     24disp(sprintf('\n      PETSc solver options:'));
    2525fielddisplay(md,'solverstring','solver string for Petsc. See solversetto... routines. Default is mumps');
  • issm/trunk/src/m/classes/public/marshall.m

    r2382 r2547  
    11function marshall(md)
    2 %MARSHALL - output Cielo compatible binary file from @model md, for certain solution type.
     2%MARSHALL - output JPL-package compatible binary file from @model md, for certain solution type.
    33%
    4 %   The routine creates a Cielo compatible binary file from @model md
    5 %   This binary file will be used for parallel runs in cielo.
     4%   The routine creates a JPL-package compatible binary file from @model md
     5%   This binary file will be used for parallel runs in JPL-package
    66%
    77%   Usage:
  • issm/trunk/src/m/classes/public/process_solve_options.m

    r2398 r2547  
    3232%  process qmu arguments
    3333outoptions.qmudir=getfieldvalue(options,'qmudir','qmu');  % qmudir =['qmu_' datestr(now,'yyyymmdd_HHMMSS')];
    34 outoptions.qmufile=getfieldvalue(options,'qmufile','qmu');% qmufile cannot be changed unless cielo_ice_script.sh is also changed
     34outoptions.qmufile=getfieldvalue(options,'qmufile','qmu');% qmufile cannot be changed unless ????script.sh is also changed
    3535outoptions.ivar=getfieldvalue(options,'ivar',1);
    3636outoptions.iresp=getfieldvalue(options,'iresp',1);
  • issm/trunk/src/m/solutions/cielo/diagnostic_core_nonlinear.m

    r2333 r2547  
    11function [u_g varargout]=diagnostic_core_nonlinear(m,inputs,analysis_type,sub_analysis_type)
    2 %INPUT function [ru_g varargout]=cielodiagnostic_core_nonlinear(m,inputs)
     2%DIAGNOSTIC_CORE_NONLINEAR - core solution of diagnostic non-linear
     3%
     4%   Usage:
     5%      [u_g varargout]=diagnostic_core_nonlinear(m,inputs,analysis_type,sub_analysis_type)
    36       
    47%   first off! We are going to modify the loads dataset. We need to shield the loads from those changes once we return;
     
    7679        clear soln
    7780
    78         %more output might be needed, when running in cielocontrol.m
     81        %more output might be needed, when running in control_core.m
    7982        nout=max(nargout,1)-1;
    8083        if nout==2,
  • issm/trunk/src/m/solutions/dakota/process_qmu_options.m

    r2142 r2547  
    1919end
    2020
    21 %package: is there one? default to ''cielo''
     21%package: is there one? default to ''JPL''
    2222found=0;
    2323for i=1:size(options,1),
     
    2828end
    2929if ~found,
    30         disp('recover_qmu_options info message: no ''package'' was provided, defaulting to ''cielo''');
    31         options(end+1,:)={'package' 'cielo'};
    32         package='cielo';
     30        disp('recover_qmu_options info message: no ''package'' was provided, defaulting to ''JPL''');
     31        options(end+1,:)={'package' 'JPL'};
     32        package='JPL';
    3333end
    3434
     
    7373        error(['process_qmu_options error message: sub_analysis_type ' sub_analysis_type ' not supported yet!']);
    7474end
    75 if ~(strcmpi(package,'cielo') |  ...
    76                 strcmpi(package,'ice') |  ...
    77                 strcmpi(package,'macayeal') ),
    78         error(['process_qmu_options error message: package ' package ' not supported yet!']);
    79 end
    80 
    8175
    8276
  • issm/trunk/src/m/utils/Nightly/testsgetfields.m

    r2177 r2547  
    33%
    44%   This routine is used by nightly runs (runme.m and updatearchive.m).
    5 %   for an input analysis 'prognostic', it will output 'cielo'
     5%   for an input analysis 'prognostic', it will output 'prognostic.thickness'
    66%
    77%   Usage:
  • issm/trunk/src/m/utils/Nightly/testsgettolerance.m

    r2258 r2547  
    66%
    77%   Usage:
    8 %      tolerance=testsgettolerance(md,package,analysis_type,field),
    9 %
    10 %   Example:
    11 %      tolerance=testsgettolerance(md,'cielo','diagnostic','vel'),
     8%      tolerance=testsgettolerance(md,sequence,field);
    129%
    1310%   See also: RUNME
     
    6966
    7067        else
    71                 error(['testsgettolerance error message: analysis_type '  analysis_type ' not supported yet with package cielo_parallel']);
     68                error(['testsgettolerance error message: analysis_type '  analysis_type ' not supported yet with package parallel solution']);
    7269        end
    7370end
Note: See TracChangeset for help on using the changeset viewer.