Ice Sheet System Model  4.18
Code documentation
Parameters.cpp
Go to the documentation of this file.
1 /*
2  * \file Parameters.cpp
3  * \brief: Implementation of the Parameters class, derived from DataSet class.
4  */
5 
6 /*Headers: {{{*/
7 #ifdef HAVE_CONFIG_H
8  #include <config.h>
9 #else
10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
11 #endif
12 
13 #include <vector>
14 #include <functional>
15 #include <algorithm>
16 #include <iostream>
17 
18 #include "./Parameters.h"
19 #include "./Param.h"
20 
21 #include "./BoolParam.h"
22 #include "./DoubleMatParam.h"
23 #include "./DataSetParam.h"
24 #include "./DoubleParam.h"
25 #include "./DoubleVecParam.h"
26 #include "./IntParam.h"
27 #include "./IntVecParam.h"
28 #include "./IntMatParam.h"
29 #include "./FileParam.h"
30 #include "./MatrixParam.h"
31 #include "./VectorParam.h"
32 #include "./StringArrayParam.h"
33 #include "./StringParam.h"
34 #include "./DoubleMatArrayParam.h"
35 #include "./TransientParam.h"
36 #include "./TransientArrayParam.h"
37 
38 #include "../../shared/shared.h"
39 #include "../../toolkits/toolkits.h"
40 
41 using namespace std;
42 /*}}}*/
43 
44 /*Object constructors and destructor*/
46  for(int i=0;i<NUMPARAMS;i++) this->params[i] = NULL;
47  return;
48 }
49 /*}}}*/
51  for(int i=0;i<NUMPARAMS;i++){
52  if(this->params[i]) delete this->params[i];
53  }
54  return;
55 }
56 /*}}}*/
57 int Parameters::EnumToIndex(int enum_in){/*{{{*/
58 
59  /*Make sure this parameter is at the right place*/
60  #ifdef _ISSM_DEBUG_
61  if(enum_in<=ParametersSTARTEnum) _error_("Enum "<<EnumToStringx(enum_in)<<" should appear after ParametersSTARTEnum");
62  if(enum_in>=ParametersENDEnum) _error_("Enum "<<EnumToStringx(enum_in)<<" should appear before ParametersENDEnum");
63  #endif
64  return enum_in - ParametersSTARTEnum -1;
65 }/*}}}*/
66 
67 void Parameters::AddObject(Param* newparam){/*{{{*/
68 
69  /*Get Enum from Param*/
70  _assert_(newparam);
71  int param_enum = newparam->InstanceEnum();
72 
73  /*Get index in array*/
74  int index = EnumToIndex(param_enum);
75 
76  /*Delete param if it already exists*/
77  if(this->params[index]){
78  delete this->params[index];
79  this->params[index] = NULL;
80  }
81 
82  /*Add param to array*/
83  this->params[index] = newparam;
84 }
85 /*}}}*/
87 
88  Parameters* output = new Parameters();
89 
90  for(int i=0;i<NUMPARAMS;i++){
91  if(this->params[i]){
92  output->params[i]=this->params[i]->copy();
93  }
94  }
95 
96  return output;
97 }
98 /*}}}*/
99 void Parameters::DeepEcho(void){/*{{{*/
100  for(int i=0;i<NUMPARAMS;i++) {
101  if(this->params[i]) this->params[i]->DeepEcho();
102  }
103  return;
104 }
105 /*}}}*/
106 void Parameters::Echo(void){/*{{{*/
107  for(int i=0;i<NUMPARAMS;i++) {
108  if(this->params[i]) this->params[i]->Echo();
109  }
110  return;
111 }
112 /*}}}*/
113 void Parameters::Marshall(char** pmarshalled_data, int* pmarshalled_data_size, int marshall_direction){/*{{{*/
114 
115  int obj_enum=-1;
116  int num_params=0;
117 
119 
120  if(marshall_direction==MARSHALLING_FORWARD || marshall_direction==MARSHALLING_SIZE){
121 
122  /*Marshall num_params first*/
123  for(int i=0;i<NUMPARAMS;i++){
124  if(this->params[i]) num_params++;
125  }
126  MARSHALLING(num_params);
127 
128  /*Marshall Parameters one by one now*/
129  for(int i=0;i<NUMPARAMS;i++){
130  if(this->params[i]){
131  obj_enum = this->params[i]->ObjectEnum();
132  MARSHALLING(obj_enum);
133  this->params[i]->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
134  }
135  }
136  }
137  else{
138 
139  /*Get number of params marshalled*/
140  MARSHALLING(num_params);
141 
142  /*Recover parameters one by one*/
143  for(int i=0;i<num_params;i++){
144 
145  /*Recover enum of object first: */
146  MARSHALLING(obj_enum);
147 
148  if(obj_enum==DoubleParamEnum){
149  DoubleParam* doubleparam=NULL;
150  doubleparam=new DoubleParam();
151  doubleparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
152  this->AddObject(doubleparam);
153  }
154  else if(obj_enum==IntParamEnum){
155  IntParam* intparam=NULL;
156  intparam=new IntParam();
157  intparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
158  this->AddObject(intparam);
159  }
160  else if(obj_enum==IntMatParamEnum){
161  IntMatParam* intmparam=NULL;
162  intmparam=new IntMatParam();
163  intmparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
164  this->AddObject(intmparam);
165  }
166  else if(obj_enum==IntVecParamEnum){
167  IntVecParam* intvparam=NULL;
168  intvparam=new IntVecParam();
169  intvparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
170  this->AddObject(intvparam);
171  }
172  else if(obj_enum==BoolParamEnum){
173  BoolParam* boolparam=NULL;
174  boolparam=new BoolParam();
175  boolparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
176  this->AddObject(boolparam);
177  }
178  else if(obj_enum==DataSetParamEnum){
179  DataSetParam* dsparam=NULL;
180  dsparam=new DataSetParam();
181  dsparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
182  this->AddObject(dsparam);
183  }
184  else if(obj_enum==DoubleMatArrayParamEnum){
185  DoubleMatArrayParam* dmaparam=NULL;
186  dmaparam=new DoubleMatArrayParam();
187  dmaparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
188  this->AddObject(dmaparam);
189  }
190  else if(obj_enum==DoubleMatParamEnum){
191  DoubleMatParam* dmparam=NULL;
192  dmparam=new DoubleMatParam();
193  dmparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
194  this->AddObject(dmparam);
195  }
196  else if(obj_enum==DoubleVecParamEnum){
197  DoubleVecParam* dvparam=NULL;
198  dvparam=new DoubleVecParam();
199  dvparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
200  this->AddObject(dvparam);
201  }
202  else if(obj_enum==FileParamEnum){
203  FileParam* fileparam=NULL;
204  fileparam=new FileParam();
205  fileparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
206  delete fileparam;
207  /* No need to add this object, the pointer is not valid
208  The FemModel should reset all FileParams in the restart function */
209  }
210  else if(obj_enum==StringParamEnum){
211  StringParam* sparam=NULL;
212  sparam=new StringParam();
213  sparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
214  this->AddObject(sparam);
215  }
216  else if(obj_enum==StringArrayParamEnum){
217  StringArrayParam* saparam=NULL;
218  saparam=new StringArrayParam();
219  saparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
220  this->AddObject(saparam);
221  }
222  else if(obj_enum==TransientParamEnum){
223  TransientParam* transparam=NULL;
224  transparam=new TransientParam();
225  transparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
226  this->AddObject(transparam);
227  }
228  else if(obj_enum==TransientArrayParamEnum){
229  TransientArrayParam* transarrayparam=NULL;
230  transarrayparam=new TransientArrayParam();
231  transarrayparam->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
232  this->AddObject(transarrayparam);
233  }
234  else if(obj_enum==GenericParamEnum){
235  /*Skip for now (we don't want to Marhsall Comms)*/
236  }
237  }
238  }
239 }
240 /*}}}*/
241 
242 /*Object management*/
243 void Parameters::Delete(int param_enum){/*{{{*/
244 
245  int index = EnumToIndex(param_enum);
246  if(this->params[index]){
247  delete this->params[index];
248  this->params[index] = NULL;
249  }
250 
251  return;
252 }
253 /*}}}*/
254 bool Parameters::Exist(int param_enum){/*{{{*/
255 
256  int index = EnumToIndex(param_enum);
257  if(this->params[index]) return true;
258 
259  return false;
260 }
261 /*}}}*/
262 void Parameters::FindParam(bool* pbool,int param_enum){ _assert_(this);/*{{{*/
263 
264  int index = EnumToIndex(param_enum);
265  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
266  this->params[index]->GetParameterValue(pbool);
267 }
268 /*}}}*/
269 void Parameters::FindParam(int* pinteger,int param_enum){ _assert_(this);/*{{{*/
270 
271  int index = EnumToIndex(param_enum);
272  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
273  this->params[index]->GetParameterValue(pinteger);
274 }
275 /*}}}*/
276 void Parameters::FindParam(IssmDouble* pscalar,int param_enum){ _assert_(this);/*{{{*/
277  int index = EnumToIndex(param_enum);
278  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
279  this->params[index]->GetParameterValue(pscalar);
280 }
281 /*}}}*/
282 void Parameters::FindParam(IssmDouble* pscalar, int param_enum,IssmDouble time){ _assert_(this);/*{{{*/
283 
284  int index = EnumToIndex(param_enum);
285  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
286  this->params[index]->GetParameterValue(pscalar,time);
287 }
288 /*}}}*/
289 void Parameters::FindParam(IssmDouble* pscalar,int row,IssmDouble time, int param_enum){ _assert_(this);/*{{{*/
290 
291  int index = EnumToIndex(param_enum);
292  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
293  this->params[index]->GetParameterValue(pscalar,row,time);
294 }
295 /*}}}*/
296 void Parameters::FindParam(char** pstring,int param_enum){ _assert_(this);/*{{{*/
297 
298  int index = EnumToIndex(param_enum);
299  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
300  this->params[index]->GetParameterValue(pstring);
301 
302 }
303 /*}}}*/
304 void Parameters::FindParam(char*** pstringarray,int* pM,int param_enum){ _assert_(this);/*{{{*/
305 
306  int index = EnumToIndex(param_enum);
307  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
308  this->params[index]->GetParameterValue(pstringarray,pM);
309 }
310 /*}}}*/
311 void Parameters::FindParam(int** pintarray,int* pM, int param_enum){ _assert_(this);/*{{{*/
312 
313  int index = EnumToIndex(param_enum);
314  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
315  this->params[index]->GetParameterValue(pintarray,pM);
316 
317 }
318 /*}}}*/
319 void Parameters::FindParam(int** pintarray,int* pM,int *pN,int param_enum){ _assert_(this);/*{{{*/
320 
321  int index = EnumToIndex(param_enum);
322  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
323  this->params[index]->GetParameterValue(pintarray,pM,pN);
324 
325 }
326 /*}}}*/
327 void Parameters::FindParam(IssmDouble** pIssmDoublearray,int* pM, int param_enum){ _assert_(this);/*{{{*/
328 
329  int index = EnumToIndex(param_enum);
330 
331  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
332  this->params[index]->GetParameterValue(pIssmDoublearray,pM);
333 
334 }
335 /*}}}*/
336 void Parameters::FindParam(IssmDouble** pIssmDoublearray,int* pM, int* pN,int param_enum){ _assert_(this);/*{{{*/
337 
338  int index = EnumToIndex(param_enum);
339  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
340  this->params[index]->GetParameterValue(pIssmDoublearray,pM,pN);
341 }
342 /*}}}*/
343 void Parameters::FindParam(IssmDouble*** parray,int* pM,int** pmdims_array,int** pndims_array,int param_enum){ _assert_(this);/*{{{*/
344 
345  int index = EnumToIndex(param_enum);
346  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
347  this->params[index]->GetParameterValue(parray,pM,pmdims_array,pndims_array);
348 }
349 /*}}}*/
350 void Parameters::FindParam(Vector<IssmDouble>** pvec,int param_enum){ _assert_(this);/*{{{*/
351 
352  int index = EnumToIndex(param_enum);
353  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
354  this->params[index]->GetParameterValue(pvec);
355 }
356 /*}}}*/
357 void Parameters::FindParam(Matrix<IssmDouble>** pmat,int param_enum){ _assert_(this);/*{{{*/
358 
359  int index = EnumToIndex(param_enum);
360  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
361  this->params[index]->GetParameterValue(pmat);
362 }
363 /*}}}*/
364 void Parameters::FindParam(FILE** pfid,int param_enum){ _assert_(this);/*{{{*/
365 
366  int index = EnumToIndex(param_enum);
367  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
368  this->params[index]->GetParameterValue(pfid);
369 }
370 /*}}}*/
371 void Parameters::FindParam(DataSet** pdataset,int param_enum){ /*{{{*/
372  _assert_(this);
373 
374  int index = EnumToIndex(param_enum);
375  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
376  this->params[index]->GetParameterValue(pdataset);
377 }
378 /*}}}*/
379 void Parameters::FindParamAndMakePassive(IssmPDouble* pscalar,int param_enum){ _assert_(this);/*{{{*/
380 
381  /*Get "active" parameter*/
382  IssmDouble intermediary;
383  int index = EnumToIndex(param_enum);
384  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
385  this->params[index]->GetParameterValue(&intermediary);
386 
387  /*cast to "passive"*/
388  *pscalar=reCast<IssmPDouble>(intermediary);
389 }
390 /*}}}*/
391 void Parameters::FindParamAndMakePassive(IssmPDouble** pvec,int* pM, int param_enum){ _assert_(this);/*{{{*/
392 
393  int index = EnumToIndex(param_enum);
394 
395  /*Output*/
396  int n;
397  IssmDouble* vector = NULL;
398 
399  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
400  this->params[index]->GetParameterValue(&vector,&n);
401 
402  /*Make output passive*/
403  IssmPDouble* output = xNew<IssmPDouble>(n);
404  for(int i=0;i<n;i++) output[i] = reCast<IssmPDouble>(vector[i]);
405 
406  /*assign output pointers*/
407  if(pvec) *pvec = output;
408  if(pM) *pM = n;
409 }/*}}}*/
410 void Parameters::FindParamInDataset(IssmDouble** pIssmDoublearray,int* pM,int* pN,int dataset_type,int enum_type){/*{{{*/
411  _assert_(this);
412 
413  int index = EnumToIndex(dataset_type);
414  if(!this->params[index]) _error_("Parameter " << EnumToStringx(dataset_type) <<" not set");
415  if(this->params[index]->ObjectEnum()!=DataSetParamEnum) _error_("Parameter " << EnumToStringx(dataset_type) <<" is not a DataSetParam!");
416 
417  DataSetParam* dataset_param = xDynamicCast<DataSetParam*>(this->params[index]);
418  for( vector<Object*>::iterator object=dataset_param->value->objects.begin() ; object < dataset_param->value->objects.end(); object++ ){
419  Param* param = xDynamicCast<Param*>(*object);
420  if(param->InstanceEnum()==enum_type){
421  param->GetParameterValue(pIssmDoublearray,pM,pN);
422  return;
423  }
424  }
425 
426  /*Error out if we reached this point*/
427  _error_("Could not find Enum "<<EnumToStringx(enum_type)<<" in dataset param "<<EnumToStringx(dataset_type));
428 }
429 /*}}}*/
430 IssmDouble Parameters::FindParam(int param_enum){ _assert_(this);/*{{{*/
431 
432  int index = EnumToIndex(param_enum);
433  if(!this->params[index]) _error_("Parameter " << EnumToStringx(param_enum) <<" not set");
434 
435  IssmDouble value;
436  this->params[index]->GetParameterValue(&value);
437  return value;
438 }
439 /*}}}*/
440 
441 void Parameters::SetParam(bool boolean,int enum_type){/*{{{*/
442 
443  Param* param=NULL;
444 
445  /*first, figure out if the param has already been created: */
446  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
447 
448  if(param) param->SetValue(boolean); //already exists, just set it.
449  else this->AddObject(new BoolParam(enum_type,boolean)); //just add the new parameter.
450 }
451 /*}}}*/
452 void Parameters::SetParam(int integer,int enum_type){/*{{{*/
453 
454  Param* param=NULL;
455 
456  /*first, figure out if the param has already been created: */
457  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
458 
459  if(param) param->SetValue(integer); //already exists, just set it.
460  else this->AddObject(new IntParam(enum_type,integer)); //just add the new parameter.
461 }
462 /*}}}*/
463 void Parameters::SetParam(IssmDouble scalar,int enum_type){/*{{{*/
464 
465  Param* param=NULL;
466 
467  /*first, figure out if the param has already been created: */
468  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
469  if(param) param->SetValue(scalar); //already exists, just set it.
470  else this->AddObject(new DoubleParam(enum_type,scalar)); //just add the new parameter.
471 }
472 /*}}}*/
473 void Parameters::SetParam(char* string,int enum_type){/*{{{*/
474 
475  Param* param=NULL;
476 
477  /*first, figure out if the param has already been created: */
478  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
479 
480  if(param) param->SetValue(string); //already exists, just set it.
481  else this->AddObject(new StringParam(enum_type,string)); //just add the new parameter.
482 }
483 /*}}}*/
484 void Parameters::SetParam(char** stringarray,int M, int enum_type){/*{{{*/
485 
486  Param* param=NULL;
487 
488  /*first, figure out if the param has already been created: */
489  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
490 
491  if(param) param->SetValue(stringarray,M); //already exists, just set it.
492  else this->AddObject(new StringArrayParam(enum_type,stringarray,M)); //just add the new parameter.
493 }
494 /*}}}*/
495 void Parameters::SetParam(IssmDouble* IssmDoublearray,int M, int enum_type){/*{{{*/
496 
497  Param* param=NULL;
498 
499  /*first, figure out if the param has already been created: */
500  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
501 
502  if(param) param->SetValue(IssmDoublearray,M); //already exists, just set it.
503  else this->AddObject(new DoubleVecParam(enum_type,IssmDoublearray,M)); //just add the new parameter.
504 }
505 /*}}}*/
506 void Parameters::SetParam(IssmDouble* IssmDoublearray,int M, int N, int enum_type){/*{{{*/
507 
508  Param* param=NULL;
509 
510  /*first, figure out if the param has already been created: */
511  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
512 
513  if(param) param->SetValue(IssmDoublearray,M,N); //already exists, just set it.
514  else this->AddObject(new DoubleMatParam(enum_type,IssmDoublearray,M,N)); //just add the new parameter.
515 }
516 /*}}}*/
517 void Parameters::SetParam(int* intarray,int M, int enum_type){/*{{{*/
518 
519  Param* param=NULL;
520 
521  /*first, figure out if the param has already been created: */
522  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
523 
524  if(param) param->SetValue(intarray,M); //already exists, just set it.
525  else this->AddObject(new IntVecParam(enum_type,intarray,M)); //just add the new parameter.
526 }
527 /*}}}*/
528 void Parameters::SetParam(int* intarray,int M, int N, int enum_type){/*{{{*/
529 
530  Param* param=NULL;
531 
532  /*first, figure out if the param has already been created: */
533  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
534 
535  if(param) param->SetValue(intarray,M,N); //already exists, just set it.
536  else this->AddObject(new IntMatParam(enum_type,intarray,M,N)); //just add the new parameter.
537 }
538 /*}}}*/
539 void Parameters::SetParam(Vector<IssmDouble>* vector,int enum_type){/*{{{*/
540 
541  Param* param=NULL;
542 
543  /*first, figure out if the param has already been created: */
544  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
545 
546  if(param) param->SetValue(vector); //already exists, just set it.
547  else this->AddObject(new VectorParam(enum_type,vector)); //just add the new parameter.
548 }
549 /*}}}*/
550 void Parameters::SetParam(Matrix<IssmDouble>* matrix,int enum_type){/*{{{*/
551 
552  Param* param=NULL;
553 
554  /*first, figure out if the param has already been created: */
555  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
556 
557  if(param) param->SetValue(matrix); //already exists, just set it.
558  else this->AddObject(new MatrixParam(enum_type,matrix)); //just add the new parameter.
559 }
560 /*}}}*/
561 void Parameters::SetParam(FILE* fid,int enum_type){/*{{{*/
562 
563  Param* param=NULL;
564 
565  /*first, figure out if the param has already been created: */
566  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
567 
568  if(param) param->SetValue(fid); //already exists, just set it.
569  else this->AddObject(new FileParam(enum_type,fid)); //just add the new parameter.
570 }
571 /*}}}*/
572 void Parameters::SetParam(DataSet* dataset,int enum_type){/*{{{*/
573 
574  Param* param=NULL;
575 
576  /*first, figure out if the param has already been created: */
577  param=xDynamicCast<Param*>(this->FindParamObject(enum_type));
578 
579  if(param){
580  param->SetValue(dataset); //already exists, just set it.
581  }
582  else{
583  this->AddObject(new DataSetParam(enum_type,dataset)); //just add the new parameter.
584  }
585 }
586 /*}}}*/
587 
588 Param* Parameters::FindParamObject(int param_enum){/*{{{*/
589 
590  return this->params[EnumToIndex(param_enum)];
591 }
592 /*}}}*/
593 
594 /*Methods relating to parameters: */
595 char* OptionsFromAnalysis(char** pouttoolkit,Parameters* parameters,int analysis_type){ /*{{{*/
596 
597  /* figure out ISSM options for current analysis, return a string. */
598 
599  /*output: */
600  char *outstring = NULL;
601  char *outtoolkit = NULL;
602 
603  /*intermediary: */
604  int dummy;
605  int *analyses = NULL;
606  char **strings = NULL;
607  char *string = NULL;
608  char **toolkits = NULL;
609  char *toolkit = NULL;
610  int numanalyses;
611  int found = -1;
612  int i;
613 
614  parameters->FindParam(&strings,&numanalyses,ToolkitsOptionsStringsEnum);
615  parameters->FindParam(&toolkits,&dummy,ToolkitsTypesEnum); _assert_(dummy==numanalyses);
616  parameters->FindParam(&analyses,&dummy,ToolkitsOptionsAnalysesEnum); _assert_(dummy==numanalyses);
617 
618  if(numanalyses==0)return NULL; //we did not find petsc options, don't bother.
619 
620  /*ok, go through analyses and figure out if it corresponds to our analysis_type: */
621  for(i=0;i<numanalyses;i++){
622  if(analyses[i]==analysis_type){
623  found=i;
624  break;
625  }
626  }
627  if(found==-1){
628  /*still haven't found a list of petsc options, go find the default one, for analysis type DefaultAnalysisEnum: */
629  for(i=0;i<numanalyses;i++){
630  if(analyses[i]==DefaultAnalysisEnum){
631  found=i;
632  break;
633  }
634  }
635  }
636  if(found==-1){
637  _error_("could find neither a default analysis nor analysis " << EnumToStringx(analysis_type));
638  }
639 
640  /*1. Grab the option toolkit: */
641  outtoolkit=xNew<char>(strlen(toolkits[found])+1);
642  strcpy(outtoolkit,toolkits[found]);
643  *pouttoolkit = outtoolkit;
644 
645  /*2. Grab the option string: */
646  outstring=xNew<char>(strlen(strings[found])+1);
647  strcpy(outstring,strings[found]);
648 
649  /*Free ressources*/
650  for(i=0;i<numanalyses;i++){
651  xDelete<char>(toolkits[i]);
652  xDelete<char>(strings[i]);
653  }
654  xDelete<char*>(toolkits);
655  xDelete<char*>(strings);
656  xDelete<int>(analyses);
657  return outstring;
658 }
659 /*}}}*/
660 void ToolkitsOptionsFromAnalysis(Parameters* parameters,int analysis_type){ /*{{{*/
661 
669  char* options = NULL;
670  char* toolkit = NULL;
671 
672  /*Recover first the options string for this analysis: */
673  options=OptionsFromAnalysis(&toolkit,parameters,analysis_type);
674 
675  /*Initialize our Toolkit Options: */
676  ToolkitOptions::Init(toolkit,options);
677 
678  #ifdef _HAVE_PETSC_
679  /*In case we are using PETSC, we do not rely on issmoptions. Instead, we dump issmoptions into the Petsc
680  * options database: */
681  #if (_PETSC_MINOR_>=7)
682  PetscOptionsSetFromOptions(NULL);
683  PetscOptionsClear(NULL);
684  int ierr = PetscOptionsInsertString(NULL,options);
685  //int ierr = PetscOptionsInsertString(NULL,"-mat_type mpiaij -ksp_type preonly -pc_type lu -pc_factor_mat_solver_package mumps -mat_mumps_icntl_14 120 -mat_mumps_icntl_28 2 -mat_mumps_icntl_29 2");
686  //int ierr = PetscOptionsInsertString(NULL,"-mat_type mpiaij -ksp_type preonly -pc_type lu -pc_factor_mat_solver_package mumps -mat_mumps_icntl_14 120");
687  #else
688  PetscOptionsSetFromOptions();
689  PetscOptionsClear();
690  int ierr = PetscOptionsInsertString(options);
691  #endif
692 
693  if(ierr) _error_("Could not enter PETSc options");
694 
695  #endif
696 
697  xDelete<char>(options);
698  xDelete<char>(toolkit);
699 }
700 /*}}}*/
Matrix< IssmDouble >
VectorParam
Definition: VectorParam.h:20
ToolkitsTypesEnum
@ ToolkitsTypesEnum
Definition: EnumDefinitions.h:441
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
Param
Definition: Param.h:21
StringParamEnum
@ StringParamEnum
Definition: EnumDefinitions.h:1292
TransientParam.h
: header file for triavertexinput object
Parameters::Exist
bool Exist(int enum_type)
Definition: Parameters.cpp:254
BoolParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: BoolParam.cpp:50
DoubleMatParam.h
: header file for triavertexinput object
DoubleMatArrayParam.h
: header file for object holding an array of serial matrices
Parameters
Declaration of Parameters class.
Definition: Parameters.h:18
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
NUMPARAMS
#define NUMPARAMS
Definition: Parameters.h:12
DataSet::objects
std::vector< Object * > objects
Definition: DataSet.h:19
OptionsFromAnalysis
char * OptionsFromAnalysis(char **pouttoolkit, Parameters *parameters, int analysis_type)
Definition: Parameters.cpp:595
ToolkitsOptionsFromAnalysis
void ToolkitsOptionsFromAnalysis(Parameters *parameters, int analysis_type)
MARSHALLING_SIZE
@ MARSHALLING_SIZE
Definition: Marshalling.h:11
ParametersEnum
@ ParametersEnum
Definition: EnumDefinitions.h:1212
IntVecParamEnum
@ IntVecParamEnum
Definition: EnumDefinitions.h:1129
IntVecParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: IntVecParam.cpp:72
DataSetParam.h
: header file for triavertexinput object
TransientArrayParam
Definition: TransientArrayParam.h:20
StringParam.h
: header file for triavertexinput object
Param::copy
virtual Param * copy()=0
TransientParamEnum
@ TransientParamEnum
Definition: EnumDefinitions.h:1316
IntVecParam
Definition: IntVecParam.h:20
Parameters::Copy
Parameters * Copy(void)
Definition: Parameters.cpp:86
Parameters::AddObject
void AddObject(Param *newparam)
Definition: Parameters.cpp:67
TransientArrayParamEnum
@ TransientArrayParamEnum
Definition: EnumDefinitions.h:1313
IntParamEnum
@ IntParamEnum
Definition: EnumDefinitions.h:1128
DefaultAnalysisEnum
@ DefaultAnalysisEnum
Definition: EnumDefinitions.h:1032
Parameters.h
BoolParam.h
: header file for triavertexinput object
Parameters::SetParam
void SetParam(bool boolean, int enum_type)
Definition: Parameters.cpp:441
DoubleParam
Definition: DoubleParam.h:20
Parameters::DeepEcho
void DeepEcho()
Definition: Parameters.cpp:99
IntMatParam
Definition: IntMatParam.h:20
DoubleParam.h
: header file for triavertexinput object
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
StringParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: StringParam.cpp:52
ParametersENDEnum
@ ParametersENDEnum
Definition: EnumDefinitions.h:461
IntVecParam.h
: header file for triavertexinput object
Parameters::Parameters
Parameters()
Definition: Parameters.cpp:45
StringArrayParam
Definition: StringArrayParam.h:20
Param.h
abstract class for Param object
IntParam.h
: header file for triavertexinput object
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
Parameters::EnumToIndex
int EnumToIndex(int enum_in)
Definition: Parameters.cpp:57
Parameters::FindParamInDataset
void FindParamInDataset(IssmDouble **pIssmDoublearray, int *pM, int *pN, int dataset_type, int enum_type)
Definition: Parameters.cpp:410
IntParam
Definition: IntParam.h:20
FileParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: FileParam.cpp:51
DoubleVecParamEnum
@ DoubleVecParamEnum
Definition: EnumDefinitions.h:1048
DoubleParamEnum
@ DoubleParamEnum
Definition: EnumDefinitions.h:1047
BoolParamEnum
@ BoolParamEnum
Definition: EnumDefinitions.h:998
Parameters::FindParamAndMakePassive
void FindParamAndMakePassive(IssmPDouble *pscalar, int enum_type)
Definition: Parameters.cpp:379
Parameters::params
Param * params[NUMPARAMS]
Definition: Parameters.h:21
StringArrayParam.h
: header file for triavertexinput object
DataSetParam::value
DataSet * value
Definition: DataSetParam.h:26
FileParam
Definition: FileParam.h:20
IntMatParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: IntMatParam.cpp:69
DataSetParam
Definition: DataSetParam.h:20
FileParam.h
: header file for triavertexinput object
DoubleMatArrayParamEnum
@ DoubleMatArrayParamEnum
Definition: EnumDefinitions.h:1044
ToolkitsOptionsAnalysesEnum
@ ToolkitsOptionsAnalysesEnum
Definition: EnumDefinitions.h:439
Parameters::~Parameters
~Parameters()
Definition: Parameters.cpp:50
IntMatParamEnum
@ IntMatParamEnum
Definition: EnumDefinitions.h:1127
FileParamEnum
@ FileParamEnum
Definition: EnumDefinitions.h:1065
Parameters::Delete
void Delete(int enum_type)
Definition: Parameters.cpp:243
IntMatParam.h
: header file for triavertexinput object
StringArrayParamEnum
@ StringArrayParamEnum
Definition: EnumDefinitions.h:1290
DataSetParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DataSetParam.cpp:54
Parameters::Echo
void Echo()
Definition: Parameters.cpp:106
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
Parameters::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: Parameters.cpp:113
MatrixParam.h
: header file for MatrixParam object
MatrixParam
Definition: MatrixParam.h:20
GenericParamEnum
@ GenericParamEnum
Definition: EnumDefinitions.h:1083
DoubleVecParam
Definition: DoubleVecParam.h:20
TransientArrayParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: TransientArrayParam.cpp:75
DoubleMatParamEnum
@ DoubleMatParamEnum
Definition: EnumDefinitions.h:1046
StringParam
Definition: StringParam.h:20
DataSetParamEnum
@ DataSetParamEnum
Definition: EnumDefinitions.h:1029
MARSHALLING_FORWARD
@ MARSHALLING_FORWARD
Definition: Marshalling.h:9
Parameters::FindParam
void FindParam(bool *pinteger, int enum_type)
Definition: Parameters.cpp:262
TransientParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: TransientParam.cpp:70
DoubleParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DoubleParam.cpp:48
DoubleVecParam.h
: header file for triavertexinput object
DoubleMatParam
Definition: DoubleMatParam.h:20
BoolParam
Definition: BoolParam.h:20
StringArrayParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: StringArrayParam.cpp:75
ToolkitsOptionsStringsEnum
@ ToolkitsOptionsStringsEnum
Definition: EnumDefinitions.h:440
VectorParam.h
: header file for triavertexinput object
IssmPDouble
IssmDouble IssmPDouble
Definition: types.h:38
Parameters::FindParamObject
Param * FindParamObject(int enum_type)
Definition: Parameters.cpp:588
Param::SetValue
virtual void SetValue(bool boolean)=0
DataSet
Declaration of DataSet class.
Definition: DataSet.h:14
IntParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: IntParam.cpp:51
TransientParam
Definition: TransientParam.h:20
ToolkitOptions::Init
static void Init(void)
Definition: ToolkitOptions.cpp:25
Vector< IssmDouble >
Param::InstanceEnum
virtual int InstanceEnum()=0
TransientArrayParam.h
: header file for triavertexinput object
DoubleMatParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DoubleMatParam.cpp:75
DoubleMatArrayParam
Definition: DoubleMatArrayParam.h:20
DoubleVecParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DoubleVecParam.cpp:61
DoubleMatArrayParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DoubleMatArrayParam.cpp:118
Param::GetParameterValue
virtual void GetParameterValue(bool *pbool)=0
ParametersSTARTEnum
@ ParametersSTARTEnum
Definition: EnumDefinitions.h:10