Changeset 17159 for issm/trunk-jpl/src/c/analyses/ExtrapolationAnalysis.cpp
- Timestamp:
- 01/22/14 16:14:20 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/ExtrapolationAnalysis.cpp
r17144 r17159 11 11 /*}}}*/ 12 12 void ExtrapolationAnalysis::UpdateParameters(Parameters* parameters,IoModel* iomodel,int solution_enum,int analysis_enum){/*{{{*/ 13 _error_("not implemented yet");13 //do nothing for now 14 14 } 15 15 /*}}}*/ … … 29 29 } 30 30 } 31 iomodel->FetchDataToInput(elements,ExtrapolationVariableEnum);//FIXME: is this the correct way?32 31 } 33 32 /*}}}*/ … … 38 37 /*}}}*/ 39 38 void ExtrapolationAnalysis::CreateConstraints(Constraints* constraints,IoModel* iomodel){/*{{{*/ 40 41 _error_("not implemented yet"); 42 39 // do nothing for now 43 40 } 44 41 /*}}}*/ 45 42 void ExtrapolationAnalysis::CreateLoads(Loads* loads, IoModel* iomodel){/*{{{*/ 46 47 _error_("not implemented yet"); 48 43 // do nothing for now 49 44 }/*}}}*/ 50 45 … … 52 47 void ExtrapolationAnalysis::Core(FemModel* femmodel){/*{{{*/ 53 48 49 /* Intermediaries */ 50 bool save_results; 54 51 /*activate formulation: */ 55 52 femmodel->SetCurrentConfiguration(ExtrapolationAnalysisEnum); … … 58 55 UpdateConstraints(femmodel->elements); 59 56 solutionsequence_linear(femmodel); 57 58 /*recover parameters: */ 59 femmodel->parameters->FindParam(&save_results,SaveResultsEnum); 60 if(save_results){ 61 if(VerboseSolution()) _printf0_(" Warning: Adding extrapolated variable to results\n"); 62 63 int outputs; 64 femmodel->parameters->FindParam(&outputs, ExtrapolationVariableEnum); 65 femmodel->RequestedOutputsx(&femmodel->results,&outputs,1); 66 } 60 67 61 68 }/*}}}*/ … … 248 255 Node* node = NULL; 249 256 250 /* Get furtherparameters */257 /* Get parameters */ 251 258 element->FindParam(&extvar_enum, ExtrapolationVariableEnum); 252 259 253 260 Input* levelset_input=element->GetInput(MaskIceLevelsetEnum); _assert_(levelset_input); 254 261 Input* extvar_input=element->GetInput(extvar_enum); _assert_(extvar_input); 255 256 Gauss Penta* gauss=new GaussPenta();262 263 Gauss* gauss=element->NewGauss(); 257 264 for(int in=0;in<numnodes;in++){ 258 265 gauss->GaussNode(element->GetElementType(),in); 259 266 node=element->GetNode(in); 260 267 levelset_input->GetInputValue(&phi,gauss); 261 extvar_input->GetInputValue(&value,gauss);262 268 if(phi<=0.){ 263 269 /* if ice, set dirichlet BC */ 270 extvar_input->GetInputValue(&value,gauss); 264 271 node->ApplyConstraint(1,value); 265 272 }
Note:
See TracChangeset
for help on using the changeset viewer.