Changeset 2115
- Timestamp:
- 09/06/09 16:18:41 (15 years ago)
- Location:
- issm/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Qmux/SpawnCoreParallel.cpp
r2112 r2115 175 175 /*Now process the outputs, before computing the dakota responses: */ 176 176 if(debug)_printf_("process results:\n"); 177 177 178 ProcessResults(&processed_results,results,model,analysis_type); 178 179 179 180 /*compute responses on cpu 0: dummy for now! */ 180 181 if(debug)_printf_("compute dakota responses:\n"); -
issm/trunk/src/m/classes/public/loadresultsfromcluster.m
r2009 r2115 12 12 13 13 %What packages are we picking up from remote cluster 14 packages={[md.name '.outlog'],[md.name '.errlog'] , [md.name '.outbin']};14 packages={[md.name '.outlog'],[md.name '.errlog']}; 15 15 if md.qmu_analysis, 16 16 packages{end+1}=[md.name '.qmu.err']; 17 17 packages{end+1}=[md.name '.qmu.out']; 18 packages{end+1}='dakota_tabular.dat'; 18 %packages{end+1}='dakota_tabular.dat'; not for now. 19 else 20 packages{end+1}=[md.name '.outbin']; 19 21 end 20 22 -
issm/trunk/src/m/classes/public/loadresultsfromdisk.m
r2032 r2115 11 11 end 12 12 13 %load result onto model 14 if ~isstruct(md.results), 15 md.results=struct(); 16 end 13 if ~md.qmu_analysis, 14 %load result onto model 15 if ~isstruct(md.results), 16 md.results=struct(); 17 end 17 18 18 structure=parseresultsfromdisk(filename);19 md.results.(structure.analysis_type)=structure;19 structure=parseresultsfromdisk(filename); 20 md.results.(structure.analysis_type)=structure; 20 21 21 %Check result is consistent, only if it exists 22 disp(sprintf('%s\n','checking result consistency')); 23 if ~isresultconsistent(md,md.analysis_type), 24 %it would be very cruel to put an error, it would kill the computed results (even if not consistent...) 25 disp('!! results not consistent correct the model !!') 22 %Check result is consistent, only if it exists 23 disp(sprintf('%s\n','checking result consistency')); 24 if ~isresultconsistent(md,md.analysis_type), 25 %it would be very cruel to put an error, it would kill the computed results (even if not consistent...) 26 disp('!! results not consistent correct the model !!') 27 end 26 28 end 27 29 -
issm/trunk/src/m/solutions/dakota/dakota_in_data.m
r1014 r2115 136 136 137 137 %Write m file 138 dakota_m_write(dmeth.method,dmeth,dvar,dresp,params,filei,package,varargin{:});138 %dakota_m_write(dmeth.method,dmeth,dvar,dresp,params,filei,package,varargin{:}); 139 139 140 140 end
Note:
See TracChangeset
for help on using the changeset viewer.