Changeset 972
- Timestamp:
- 06/12/09 20:30:55 (16 years ago)
- Location:
- issm/trunk/src/m/solutions/cielo
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/solutions/cielo/diagnostic.m
r971 r972 41 41 %process results 42 42 if ~isstruct(md.results), md.results=struct(); end 43 md.results.diagnostic=processresults( results,models);43 md.results.diagnostic=processresults(models,results); 44 44 else 45 45 %launch dakota driver for diagnostic core solution -
issm/trunk/src/m/solutions/cielo/modelsize.m
r940 r972 13 13 %get max dof 14 14 for i=1:length(modelsname); 15 if ~isempty(models.(modelsname{i}).nodesets), 16 dof=max(dof,models.(modelsname{i}).nodesets.fsize); 15 if ~strcmpi(modelsname,'analysis_type'), 16 if ~isempty(models.(modelsname{i}).nodesets), 17 dof=max(dof,models.(modelsname{i}).nodesets.fsize); 18 end 17 19 end 18 20 end -
issm/trunk/src/m/solutions/cielo/processresults.m
r971 r972 1 function newresults=processresults( results,models)1 function newresults=processresults(models,results) 2 2 %PROCESSRESULTS - process results from core solution 3 3 % -
issm/trunk/src/m/solutions/cielo/prognostic.m
r971 r972 31 31 displaystring(md.debug,'\n%s',['load results...']); 32 32 if ~isstruct(md.results), md.results=struct(); end 33 md.results.prognostic=processresults( results,models);33 md.results.prognostic=processresults(models, results); 34 34 35 35 %stop timing -
issm/trunk/src/m/solutions/cielo/thermal.m
r971 r972 32 32 %plug onto the model 33 33 if ~isstruct(md.results), md.results=struct(); end 34 md.results.thermal=processresults( results,models);34 md.results.thermal=processresults(models,results); 35 35 36 36 %stop timing -
issm/trunk/src/m/solutions/cielo/transient3d.m
r971 r972 139 139 %process results 140 140 if ~isstruct(md.results), md.results=struct(); end 141 md.results.transient=processresults( results,models);141 md.results.transient=processresults(models, results);
Note:
See TracChangeset
for help on using the changeset viewer.