source: issm/trunk/src/c/parallel/transient.cpp@ 1888

Last change on this file since 1888 was 1888, checked in by Mathieu Morlighem, 16 years ago

bad model used to get u_g

File size: 4.3 KB
RevLine 
[823]1/*!\file: transient.cpp
2 * \brief: transient solution
3 */
4
5#include "../issm.h"
6#include "./parallel.h"
7
8#undef __FUNCT__
9#define __FUNCT__ "transient"
10
11#ifdef HAVE_CONFIG_H
12 #include "config.h"
13#else
14#error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
15#endif
16
17
18int main(int argc,char* *argv){
19
20 /*I/O: */
21 FILE* fid=NULL;
22 char* inputfilename=NULL;
23 char* outputfilename=NULL;
24 char* lockname=NULL;
25 int numberofnodes;
26 int qmu_analysis=0;
27
[1820]28 /*Model: */
29 Model* model=NULL;
[823]30 int dim=-1;
31
32 /*Results: */
33 DataSet* results=NULL;
[1271]34 Result* result=NULL;
[823]35
36 ParameterInputs* inputs=NULL;
37 int waitonlock=0;
38
39 /*inputs: */
40 double* u_g=NULL;
41 double* m_g=NULL;
42 double* a_g=NULL;
43 double dt;
[1719]44 double yts;
[823]45 Param* param=NULL;
46
47 MODULEBOOT();
48
49 #if !defined(_PARALLEL_) || (defined(_PARALLEL_) && !defined(_HAVE_PETSC_))
50 throw ErrorException(__FUNCT__," parallel executable was compiled without support of parallel libraries!");
51 #endif
52
53 PetscInitialize(&argc,&argv,(char *)0,"");
54
55 /*Size and rank: */
56 MPI_Comm_rank(MPI_COMM_WORLD,&my_rank);
57 MPI_Comm_size(MPI_COMM_WORLD,&num_procs);
58
59 _printf_("recover , input file name and output file name:\n");
60 inputfilename=argv[2];
61 outputfilename=argv[3];
62 lockname=argv[4];
63
[1881]64 /*Initialize model structure: */
65 model=new Model();
66
[823]67 /*Open handle to data on disk: */
68 fid=pfopen(inputfilename,"rb");
69
[1820]70 /*Initialize model structure: */
71 model=new Model();
72
[823]73 _printf_("read and create finite element model:\n");
74 _printf_("\n reading diagnostic horiz model data:\n");
[1881]75 model->AddFormulation(fid,DiagnosticAnalysisEnum(),HorizAnalysisEnum());
76
[823]77 _printf_("\n reading diagnostic vert model data:\n");
[1881]78 model->AddFormulation(fid,DiagnosticAnalysisEnum(),VertAnalysisEnum());
79
[823]80 _printf_("\n reading diagnostic stokes model data:\n");
[1881]81 model->AddFormulation(fid,DiagnosticAnalysisEnum(),StokesAnalysisEnum());
82
[823]83 _printf_("\n reading diagnostic hutter model data:\n");
[1881]84 model->AddFormulation(fid,DiagnosticAnalysisEnum(),HutterAnalysisEnum());
85
[823]86 _printf_("\n reading surface and bed slope computation model data:\n");
[1886]87 model->AddFormulation(fid,SlopeComputeAnalysisEnum());
[1881]88
[823]89 _printf_("\n reading prognositc model data:\n");
[1886]90 model->AddFormulation(fid,PrognosticAnalysisEnum());
[823]91
92 /*Do we run in 3d?, in which case we need thermal and melting also:*/
[1881]93 model->FindParam(&dim,"dim");
[823]94 if(dim==3){
95 _printf_("read and create thermal finite element model:\n");
[1881]96 model->AddFormulation(fid,ThermalAnalysisEnum(),TransientAnalysisEnum());
[823]97 _printf_("read and create melting finite element model:\n");
[1881]98 model->AddFormulation(fid,MeltingAnalysisEnum(),TransientAnalysisEnum());
[823]99 }
100
[1887]101 /*recover parameters: */
102 model->FindParam(&waitonlock,"waitonlock");
103 model->FindParam(&qmu_analysis,"qmu_analysis");
104
[823]105 _printf_("initialize inputs:\n");
[1888]106 model->FindParam(&u_g,"u_g",PrognosticAnalysisEnum());
107 model->FindParam(&m_g,"m_g",PrognosticAnalysisEnum());
108 model->FindParam(&a_g,"a_g",PrognosticAnalysisEnum());
[1881]109 model->FindParam(&numberofnodes,"numberofnodes");
110 model->FindParam(&dt,"dt");
111 model->FindParam(&yts,"yts");
[1887]112
[1881]113
[828]114 inputs=new ParameterInputs;
[859]115 inputs->Add("velocity",u_g,3,numberofnodes);
[828]116 inputs->Add("melting",m_g,1,numberofnodes);
117 inputs->Add("accumulation",a_g,1,numberofnodes);
[1719]118 inputs->Add("dt",dt*yts);
[823]119
120 _printf_("initialize results:\n");
121 results=new DataSet(ResultsEnum());
122
123 /*are we running the solution sequence, or a qmu wrapper around it? : */
124 if(!qmu_analysis){
125
126 /*run diagnostic analysis: */
127 _printf_("call computational core:\n");
[1820]128 transient_core(results,model,inputs);
[823]129 }
130 else{
131 /*run qmu analysis: */
132 _printf_("calling qmu analysis on transient core:\n");
133
134 #ifdef _HAVE_DAKOTA_
[1820]135 Qmux(model,inputs,TransientAnalysisEnum(),NoneAnalysisEnum());
[823]136 #else
137 throw ErrorException(__FUNCT__," Dakota not present, cannot do qmu!");
138 #endif
139 }
140
[1271]141 /*Add analysis_type to results: */
142 result=new Result(results->Size()+1,0,1,"analysis_type","transient");
143 results->AddObject(result);
144
[823]145 _printf_("process results:\n");
[1820]146 ProcessResults(&results,model,TransientAnalysisEnum());
[823]147
148 _printf_("write results to disk:\n");
149 OutputResults(results,outputfilename);
150
151 _printf_("write lock file:\n");
152 if (waitonlock){
153 WriteLockFile(lockname);
154 }
155
156 _printf_("closing MPI and Petsc\n");
157 PetscFinalize();
158
159 /*end module: */
160 MODULEEND();
161
162 return 0; //unix success return;
163}
Note: See TracBrowser for help on using the repository browser.