Changeset 3887 for issm/trunk/src/c/Qmux/SpawnCoreParallel.cpp
- Timestamp:
- 05/21/10 14:51:20 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Qmux/SpawnCoreParallel.cpp
r3775 r3887 92 92 _printf_("qmu iteration: %i\n",counter); 93 93 94 //initialize results:95 results=new DataSet(ResultsEnum);96 97 94 /*Modify core inputs in objects contained in model, to reflect the dakota variables inputs: */ 98 95 model->UpdateFromDakota(variables,variables_descriptors,numvariables,model->GetFormulation(DiagnosticAnalysisEnum,HorizAnalysisEnum)->parameters,qmu_part,qmu_npart); //diagnostic horiz model is the one holding the parameters for Dakota. … … 103 100 if(verbose)_printf_("Starting diagnostic core\n"); 104 101 105 diagnostic_core(results,model);102 results=diagnostic_core(model); 106 103 107 104 } … … 109 106 110 107 if(verbose)_printf_("Starting thermal core\n"); 111 thermal_core(results,model);108 results=thermal_core(model); 112 109 113 110 } … … 115 112 116 113 if(verbose)_printf_("Starting prognostic core\n"); 117 prognostic_core(results,model);114 results=prognostic_core(model); 118 115 119 116 } … … 121 118 122 119 if(verbose)_printf_("Starting transient core\n"); 123 transient_core(results,model);120 results=transient_core(model); 124 121 125 122 }
Note:
See TracChangeset
for help on using the changeset viewer.