Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields
DependentObject Class Reference

#include <DependentObject.h>

Inheritance diagram for DependentObject:
Object

Public Member Functions

 DependentObject ()
 
 DependentObject (char *name, int type, int index)
 
 DependentObject (char *name, int type, int index, IssmDouble in_response)
 
 ~DependentObject ()
 
Objectcopy (void)
 
void DeepEcho ()
 
void Echo ()
 
int Id ()
 
int ObjectEnum ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
int NumDependents (void)
 
void Responsex (IssmDouble *poutput_value, FemModel *femmodel)
 
IssmDouble GetValue (void)
 
void AddValue (IssmDouble in_value)
 
void ResetResponseValue (void)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Data Fields

char * name
 
int type
 
int index
 
IssmDouble response_value
 

Detailed Description

Definition at line 15 of file DependentObject.h.

Constructor & Destructor Documentation

◆ DependentObject() [1/3]

DependentObject::DependentObject ( )

Definition at line 16 of file DependentObject.cpp.

16  {/*{{{*/
17  this->name=NULL;
18  this->type=0;
19  this->index=-1;
20  this->response_value=0.;
21 }

◆ DependentObject() [2/3]

DependentObject::DependentObject ( char *  name,
int  type,
int  index 
)

Definition at line 23 of file DependentObject.cpp.

23  {/*{{{*/
24 
25  this->name=xNew<char>(strlen(in_name)+1); xMemCpy<char>(this->name,in_name,strlen(in_name)+1);
26  this->type=in_type;
27  this->index=in_index;
28  if(in_type!=0 && in_type!=1)_error_("cannot create an DependentObject of type " << in_type);
29  if(in_type==1)_error_("not implemented yet!");
30  this->response_value=0.;
31 
32 }

◆ DependentObject() [3/3]

DependentObject::DependentObject ( char *  name,
int  type,
int  index,
IssmDouble  in_response 
)

Definition at line 34 of file DependentObject.cpp.

34  {/*{{{*/
35 
36  this->name=xNew<char>(strlen(in_name)+1); xMemCpy<char>(this->name,in_name,strlen(in_name)+1);
37  this->type=in_type;
38  this->index=in_index;
39  if(in_type!=0 && in_type!=1)_error_("cannot create an DependentObject of type " << in_type);
40  if(in_type==1)_error_("not implemented yet!");
41  this->response_value=in_response;
42 
43 }

◆ ~DependentObject()

DependentObject::~DependentObject ( )

Definition at line 45 of file DependentObject.cpp.

45  { //destructor/*{{{*/
46  xDelete<char>(this->name);
47 }

Member Function Documentation

◆ copy()

Object * DependentObject::copy ( void  )
virtual

Implements Object.

Definition at line 51 of file DependentObject.cpp.

51  { /*{{{*/
53 } /*}}}*/

◆ DeepEcho()

void DependentObject::DeepEcho ( void  )
virtual

Implements Object.

Definition at line 54 of file DependentObject.cpp.

54  {/*{{{*/
55  this->Echo();
56 }

◆ Echo()

void DependentObject::Echo ( void  )
virtual

Implements Object.

Definition at line 58 of file DependentObject.cpp.

58  {/*{{{*/
59 
60  _printf_("DependentObject:\n");
61  _printf_(" name: " << this->name << "\n");
62  if(this->type==0)
63  _printf_(" type: scalar\n");
64  else if(this->type==1)
65  _printf_(" type: vertex\n");
66  else
67  _error_(" unknown type: " << this->type);
68  if(this->index>=0) _printf_(" index: " << this->index << "\n");
69 }

◆ Id()

int DependentObject::Id ( void  )
virtual

Implements Object.

Definition at line 71 of file DependentObject.cpp.

71 { return -1; }/*{{{*/

◆ ObjectEnum()

int DependentObject::ObjectEnum ( void  )
virtual

Implements Object.

Definition at line 73 of file DependentObject.cpp.

73  {/*{{{*/
74 
75  return DependentObjectEnum;
76 
77 }

◆ Marshall()

void DependentObject::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
inlinevirtual

Implements Object.

Definition at line 36 of file DependentObject.h.

36 {_error_("not implemented yet!"); };

◆ NumDependents()

int DependentObject::NumDependents ( void  )

Definition at line 81 of file DependentObject.cpp.

81  {/*{{{*/
82 
83  /*Branch according to the type of variable: */
84  if(type==0){ /*scalar:*/
85  return 1;
86  }
87  else if(type==1){ /* vector:*/
88  _error_("not implemented yet!");
89  }
90  else _error_("should not have a type of " << type);
91 }

◆ Responsex()

void DependentObject::Responsex ( IssmDouble poutput_value,
FemModel femmodel 
)

Definition at line 93 of file DependentObject.cpp.

93  {/*{{{*/
94 
95  /*Is this some special type of response for which we need to go in the output definitions? :*/
96  if (StringToEnumx(this->name,false)==-1){
97  *poutput_value=OutputDefinitionsResponsex(femmodel,this->name);
98  }
99  else femmodel->Responsex(poutput_value,this->name);
100 }

◆ GetValue()

IssmDouble DependentObject::GetValue ( void  )

Definition at line 102 of file DependentObject.cpp.

102  {/*{{{*/
103  return this->response_value;
104 }

◆ AddValue()

void DependentObject::AddValue ( IssmDouble  in_value)

Definition at line 106 of file DependentObject.cpp.

106  {/*{{{*/
107  this->response_value+=in_value;
108 }

◆ ResetResponseValue()

void DependentObject::ResetResponseValue ( void  )

Definition at line 110 of file DependentObject.cpp.

110  {/*{{{*/
111  this->response_value=0.;
112 }

Field Documentation

◆ name

char* DependentObject::name

Definition at line 19 of file DependentObject.h.

◆ type

int DependentObject::type

Definition at line 20 of file DependentObject.h.

◆ index

int DependentObject::index

Definition at line 21 of file DependentObject.h.

◆ response_value

IssmDouble DependentObject::response_value

Definition at line 22 of file DependentObject.h.


The documentation for this class was generated from the following files:
DependentObject::Echo
void Echo()
Definition: DependentObject.cpp:58
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
DependentObject::type
int type
Definition: DependentObject.h:20
DependentObject::name
char * name
Definition: DependentObject.h:19
FemModel::Responsex
void Responsex(IssmDouble *presponse, int response_descriptor_enum)
Definition: FemModel.cpp:2558
StringToEnumx
int StringToEnumx(const char *string_in, bool notfounderror=true)
Definition: StringToEnumx.cpp:14
DependentObject::response_value
IssmDouble response_value
Definition: DependentObject.h:22
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
DependentObject::DependentObject
DependentObject()
Definition: DependentObject.cpp:16
OutputDefinitionsResponsex
IssmDouble OutputDefinitionsResponsex(FemModel *femmodel, int output_enum)
Definition: OutputDefinitionsResponsex.cpp:38
DependentObject::index
int index
Definition: DependentObject.h:21
DependentObjectEnum
@ DependentObjectEnum
Definition: EnumDefinitions.h:1035
femmodel
FemModel * femmodel
Definition: esmfbinders.cpp:16