[1881] | 1 | /*!\file FemModel.c
|
---|
| 2 | * \brief: implementation of the FemModel object
|
---|
| 3 | */
|
---|
| 4 |
|
---|
[3982] | 5 |
|
---|
[1881] | 6 | #ifdef HAVE_CONFIG_H
|
---|
[9320] | 7 | #include <config.h>
|
---|
[1881] | 8 | #else
|
---|
| 9 | #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
|
---|
| 10 | #endif
|
---|
| 11 |
|
---|
[9320] | 12 | #include <stdio.h>
|
---|
[4236] | 13 | #include "../Container/Container.h"
|
---|
[4009] | 14 | #include "../modules/ModelProcessorx/ModelProcessorx.h"
|
---|
[9761] | 15 | #include "../io/io.h"
|
---|
[3982] | 16 | #include "./objects.h"
|
---|
[3775] | 17 | #include "../include/include.h"
|
---|
[3982] | 18 | #include "../EnumDefinitions/EnumDefinitions.h"
|
---|
| 19 | #include "../modules/modules.h"
|
---|
[1881] | 20 |
|
---|
[3982] | 21 | /*Object constructors and destructor*/
|
---|
| 22 | /*FUNCTION FemModel::constructor {{{1*/
|
---|
[6372] | 23 | FemModel::FemModel(char* inputfilename, char* outputfilename, const int in_solution_type,const int* analyses,const int nummodels){
|
---|
| 24 | #ifdef _PARALLEL_
|
---|
[1881] | 25 |
|
---|
[4001] | 26 | /*intermediary*/
|
---|
| 27 | int i;
|
---|
[4004] | 28 | int analysis_type;
|
---|
[6372] | 29 | FILE* IOMODEL;
|
---|
[9761] | 30 | extern int my_rank;
|
---|
[4001] | 31 |
|
---|
[6372] | 32 | /*Open input file on cpu 0: */
|
---|
| 33 | if(my_rank==0) IOMODEL= pfopen(inputfilename ,"rb");
|
---|
| 34 |
|
---|
[4028] | 35 | /*Initialize internal data: */
|
---|
[4004] | 36 | this->nummodels=nummodels;
|
---|
[4028] | 37 | this->solution_type=in_solution_type;
|
---|
[4063] | 38 | this->analysis_counter=nummodels-1; //point to last analysis_type carried out.
|
---|
[6372] | 39 | this->results=new Results(); //not initialized by CreateDataSets
|
---|
[3982] | 40 |
|
---|
| 41 | /*Dynamically allocate whatever is a list of length nummodels: */
|
---|
| 42 | analysis_type_list=(int*)xmalloc(nummodels*sizeof(int));
|
---|
[1881] | 43 |
|
---|
[4004] | 44 | /*Initialize: */
|
---|
| 45 | for(i=0;i<nummodels;i++)analysis_type_list[i]=analyses[i];
|
---|
[3982] | 46 |
|
---|
[6273] | 47 | /*create datasets for all analyses*/
|
---|
[4063] | 48 | ModelProcessorx(&this->elements,&this->nodes,&this->vertices,&this->materials,&this->constraints,&this->loads,&this->parameters,IOMODEL,this->solution_type,nummodels,analyses);
|
---|
[4004] | 49 |
|
---|
[4063] | 50 | /*do the post-processing of the datasets to get an FemModel that can actually run analyses: */
|
---|
[4004] | 51 | for(i=0;i<nummodels;i++){
|
---|
| 52 |
|
---|
[8224] | 53 | _printf_(VerboseMProcessor()," Processing finite element model of analysis %s:\n",EnumToStringx(analysis_type_list[i]));
|
---|
[4004] | 54 | analysis_type=analysis_type_list[i];
|
---|
[4356] | 55 | this->SetCurrentConfiguration(analysis_type);
|
---|
[4004] | 56 |
|
---|
[6231] | 57 | if(i==0){
|
---|
[11237] | 58 | _printf_(VerboseMProcessor()," creating vertex degrees of freedom\n");
|
---|
[6231] | 59 | VerticesDofx(vertices,parameters); //only call once, we only have one set of vertices
|
---|
| 60 | }
|
---|
[5772] | 61 |
|
---|
[11237] | 62 | _printf_(VerboseMProcessor()," resolving node constraints\n");
|
---|
[9002] | 63 | SpcNodesx(nodes,constraints,parameters,analysis_type);
|
---|
| 64 |
|
---|
[11237] | 65 | _printf_(VerboseMProcessor()," creating nodal degrees of freedom\n");
|
---|
[4229] | 66 | NodesDofx(nodes,parameters,analysis_type);
|
---|
[5772] | 67 |
|
---|
[6412] | 68 | _printf_(VerboseMProcessor()," configuring element and loads\n");
|
---|
[4034] | 69 | ConfigureObjectsx(elements, loads, nodes, vertices, materials,parameters);
|
---|
[4004] | 70 | }
|
---|
[6372] | 71 |
|
---|
| 72 | /*Close input file descriptors: */
|
---|
| 73 | if(my_rank==0) pfclose(IOMODEL,inputfilename);
|
---|
| 74 |
|
---|
| 75 | /*Add output file name to parameters: */
|
---|
[8926] | 76 | this->parameters->AddObject(new StringParam(OutputfilenameEnum,outputfilename));
|
---|
[6372] | 77 |
|
---|
| 78 | #endif
|
---|
| 79 |
|
---|
[1881] | 80 | }
|
---|
[6372] | 81 |
|
---|
[3982] | 82 | /*}}}1*/
|
---|
| 83 | /*FUNCTION FemModel::destructor {{{1*/
|
---|
[1881] | 84 | FemModel::~FemModel(){
|
---|
| 85 |
|
---|
[4001] | 86 | /*Intermediary*/
|
---|
[3982] | 87 | int i;
|
---|
| 88 |
|
---|
| 89 | /*Delete all the datasets: */
|
---|
| 90 | xfree((void**)&analysis_type_list);
|
---|
[1881] | 91 | delete elements;
|
---|
| 92 | delete nodes;
|
---|
[3417] | 93 | delete vertices;
|
---|
[3982] | 94 | delete constraints;
|
---|
[1881] | 95 | delete loads;
|
---|
| 96 | delete materials;
|
---|
| 97 | delete parameters;
|
---|
[4050] | 98 | delete results;
|
---|
[3982] | 99 |
|
---|
[1881] | 100 | }
|
---|
[3982] | 101 | /*}}}1*/
|
---|
| 102 |
|
---|
| 103 | /*Object management*/
|
---|
| 104 | /*FUNCTION FemModel::Echo {{{1*/
|
---|
| 105 | void FemModel::Echo(void){
|
---|
| 106 |
|
---|
| 107 | printf("FemModel echo: \n");
|
---|
| 108 | printf(" number of fem models: %i\n",nummodels);
|
---|
| 109 | printf(" analysis_type_list: \n");
|
---|
[8224] | 110 | for(int i=0;i<nummodels;i++)printf(" %i: %s\n",i,EnumToStringx(analysis_type_list[i]));
|
---|
[3982] | 111 | printf(" current analysis_type: \n");
|
---|
[8224] | 112 | printf(" %i: %s\n",analysis_counter,EnumToStringx(analysis_type_list[analysis_counter]));
|
---|
[3982] | 113 |
|
---|
| 114 | }
|
---|
[4001] | 115 | /*}}}*/
|
---|
[3982] | 116 |
|
---|
| 117 | /*Numerics: */
|
---|
[4422] | 118 | /*FUNCTION FemModel::SetCurrentConfiguration(int configuration_type,int analysis_type){{{1*/
|
---|
[4356] | 119 | void FemModel::SetCurrentConfiguration(int configuration_type,int analysis_type){
|
---|
[4055] | 120 |
|
---|
[4356] | 121 | /*Use configuration_type to setup the analysis counter, the configurations of objects etc ... but use
|
---|
| 122 | * analysis_type to drive the element numerics. This allows for use of 1 configuration_type for several
|
---|
| 123 | * analyses. For example: do a SurfaceSlopeX, SurfaceSlopeY, BedSlopeX and BedSlopeY analysis using the
|
---|
[4402] | 124 | * Slope configuration.*/
|
---|
[4356] | 125 |
|
---|
[3982] | 126 | int found=-1;
|
---|
[4001] | 127 | for(int i=0;i<nummodels;i++){
|
---|
[4356] | 128 | if (analysis_type_list[i]==configuration_type){
|
---|
[3982] | 129 | found=i;
|
---|
| 130 | break;
|
---|
| 131 | }
|
---|
| 132 | }
|
---|
[4001] | 133 | if(found!=-1) analysis_counter=found;
|
---|
[8224] | 134 | else _error_("Could not find alias for analysis_type %s in list of FemModel analyses",EnumToStringx(configuration_type));
|
---|
[4055] | 135 |
|
---|
[4059] | 136 | /*Now, plug analysis_counter and analysis_type inside the parameters: */
|
---|
| 137 | this->parameters->SetParam(analysis_counter,AnalysisCounterEnum);
|
---|
| 138 | this->parameters->SetParam(analysis_type,AnalysisTypeEnum);
|
---|
[4356] | 139 | this->parameters->SetParam(configuration_type,ConfigurationTypeEnum);
|
---|
[4573] | 140 |
|
---|
| 141 | /*configure elements, loads and nodes, for this new analysis: */
|
---|
[4575] | 142 | this->elements->SetCurrentConfiguration(elements,loads, nodes,vertices, materials,parameters);
|
---|
| 143 | this->nodes->SetCurrentConfiguration(elements,loads, nodes,vertices, materials,parameters);
|
---|
| 144 | this->loads->SetCurrentConfiguration(elements, loads, nodes,vertices, materials,parameters);
|
---|
[4573] | 145 |
|
---|
[8263] | 146 | /*take care of petsc options, that depend on this analysis type (present only after model processor)*/
|
---|
| 147 | if(this->parameters->Exist(PetscOptionsStringsEnum)){
|
---|
| 148 | PetscOptionsFromAnalysis(this->parameters,analysis_type);
|
---|
| 149 | _printf_(VerboseSolver()," petsc Options set for analysis type: %s\n",EnumToStringx(analysis_type));
|
---|
| 150 | }
|
---|
[6014] | 151 |
|
---|
[3982] | 152 | }
|
---|
| 153 | /*}}}1*/
|
---|
[4422] | 154 | /*FUNCTION FemModel::SetCurrentConfiguration(int configuration_type){{{1*/
|
---|
[4356] | 155 | void FemModel::SetCurrentConfiguration(int configuration_type){
|
---|
[4059] | 156 |
|
---|
[4356] | 157 | /*overload: analysis_type = configuration_type: */
|
---|
| 158 | this->SetCurrentConfiguration(configuration_type,configuration_type);
|
---|
[4055] | 159 | }
|
---|
| 160 | /*}}}1*/
|
---|