Changeset 2547
- Timestamp:
- 10/27/09 15:16:20 (15 years ago)
- Location:
- issm/trunk/src/m
- Files:
-
- 1 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/@model/model.m
r2382 r2547 258 258 md.mesh_resolution=NaN; 259 259 260 % Cielosolver string260 %PETSc and MATLAB solver string 261 261 md.solverstring=''; 262 md.solver_type=''; 263 264 %Analysis and sub_analysis 262 265 md.analysis_type=''; 263 266 md.sub_analysis_type=''; … … 290 293 md.qmu_mass_flux_segments=NaN; 291 294 292 %Ice solver string293 md.solver_type='';294 295 295 %output 296 296 md=class(md,'model'); -
issm/trunk/src/m/classes/@model/setdefaultparameters.m
r2354 r2547 217 217 %the value of plot can be set to 1 if the user wants to see 218 218 %the direction and the updated parameter after each control 219 %method iteration (only for cieloserial)219 %method iteration (only for serial) 220 220 md.plot=0; 221 221 -
issm/trunk/src/m/classes/public/collapse.m
r1755 r2547 120 120 %Update mesh type 121 121 md.type='2d'; 122 123 %Tie in with Cielo if requested124 cieloend;125 end -
issm/trunk/src/m/classes/public/display/displayparallel.m
r2226 r2547 20 20 fielddisplay(md,'queue','special queue name on cluster? default is '''' '); 21 21 22 disp(sprintf('\n icesolver options:'));22 disp(sprintf('\n Matlab solver options:')); 23 23 fielddisplay(md,'solver_type','solver type for Ice: ''general'', ''lu'' or ''cholesky'''); 24 disp(sprintf('\n cielosolver options:'));24 disp(sprintf('\n PETSc solver options:')); 25 25 fielddisplay(md,'solverstring','solver string for Petsc. See solversetto... routines. Default is mumps'); -
issm/trunk/src/m/classes/public/marshall.m
r2382 r2547 1 1 function marshall(md) 2 %MARSHALL - output Cielocompatible binary file from @model md, for certain solution type.2 %MARSHALL - output JPL-package compatible binary file from @model md, for certain solution type. 3 3 % 4 % The routine creates a Cielocompatible binary file from @model md5 % 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 6 6 % 7 7 % Usage: -
issm/trunk/src/m/classes/public/process_solve_options.m
r2398 r2547 32 32 % process qmu arguments 33 33 outoptions.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 changed34 outoptions.qmufile=getfieldvalue(options,'qmufile','qmu');% qmufile cannot be changed unless ????script.sh is also changed 35 35 outoptions.ivar=getfieldvalue(options,'ivar',1); 36 36 outoptions.iresp=getfieldvalue(options,'iresp',1); -
issm/trunk/src/m/solutions/cielo/diagnostic_core_nonlinear.m
r2333 r2547 1 1 function [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) 3 6 4 7 % first off! We are going to modify the loads dataset. We need to shield the loads from those changes once we return; … … 76 79 clear soln 77 80 78 %more output might be needed, when running in c ielocontrol.m81 %more output might be needed, when running in control_core.m 79 82 nout=max(nargout,1)-1; 80 83 if nout==2, -
issm/trunk/src/m/solutions/dakota/process_qmu_options.m
r2142 r2547 19 19 end 20 20 21 %package: is there one? default to '' cielo''21 %package: is there one? default to ''JPL'' 22 22 found=0; 23 23 for i=1:size(options,1), … … 28 28 end 29 29 if ~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'; 33 33 end 34 34 … … 73 73 error(['process_qmu_options error message: sub_analysis_type ' sub_analysis_type ' not supported yet!']); 74 74 end 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 end80 81 75 82 76 -
issm/trunk/src/m/utils/Nightly/testsgetfields.m
r2177 r2547 3 3 % 4 4 % 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' 6 6 % 7 7 % Usage: -
issm/trunk/src/m/utils/Nightly/testsgettolerance.m
r2258 r2547 6 6 % 7 7 % 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); 12 9 % 13 10 % See also: RUNME … … 69 66 70 67 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']); 72 69 end 73 70 end
Note:
See TracChangeset
for help on using the changeset viewer.