Ice Sheet System Model  4.18
Code documentation
Vertex.cpp
Go to the documentation of this file.
1 
5 /*Include files: {{{*/
6 #ifdef HAVE_CONFIG_H
7  #include <config.h>
8 #else
9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
10 #endif
11 
12 #include <string.h>
13 #include "classes.h"
14 #include "shared/shared.h"
15 /*}}}*/
16 
17 /*Vertex constructors and destructor:*/
18 Vertex::Vertex(){/*{{{*/
19  return;
20 }
21 /*}}}*/
22 Vertex::Vertex(int vertex_id, int vertex_sid,bool vertex_clone, IoModel* iomodel,bool isamr){/*{{{*/
23 
24  /*Checks in debugging mode*/
25  _assert_(vertex_sid>=0 && vertex_sid<iomodel->numberofvertices);
26 
27  /*IDs*/
28  this->id = vertex_id;
29  this->sid = vertex_sid;
30  this->pid = -1; /*Assigned later*/
31  this->lid = -1; /*Assigned later*/
32  this->clone = vertex_clone;
33 
34  /*Properties from iomodel*/
36  this->connectivity = iomodel->numbernodetoelementconnectivity[vertex_sid];
37  this->domaintype = iomodel->domaintype;
38 
39  /*Coordinates, only if not AMR*/
40  if(!isamr){
41  _assert_(iomodel->Data("md.mesh.x") && iomodel->Data("md.mesh.y") && iomodel->Data("md.mesh.z"));
42  this->x = iomodel->Data("md.mesh.x")[vertex_sid];
43  this->y = iomodel->Data("md.mesh.y")[vertex_sid];
44  this->z = iomodel->Data("md.mesh.z")[vertex_sid];
45  if(iomodel->Data("md.mesh.lat") && iomodel->Data("md.mesh.long")){
46  this->latitute = iomodel->Data("md.mesh.lat")[vertex_sid];
47  this->longitude = iomodel->Data("md.mesh.long")[vertex_sid];
48  }
49 
50  switch(iomodel->domaintype){
51  case Domain3DEnum:
52  _assert_(iomodel->Data("md.geometry.base") && iomodel->Data("md.geometry.thickness"));
53  this->sigma = (iomodel->Data("md.mesh.z")[vertex_sid]-iomodel->Data("md.geometry.base")[vertex_sid])/(iomodel->Data("md.geometry.thickness")[vertex_sid]);
54  break;
56  _assert_(iomodel->Data("md.mesh.lat") && iomodel->Data("md.mesh.long") && iomodel->Data("md.mesh.r"));
57  this->latitute = iomodel->Data("md.mesh.lat")[vertex_sid];
58  this->longitude = iomodel->Data("md.mesh.long")[vertex_sid];
59  this->R = iomodel->Data("md.mesh.r")[vertex_sid];
60  break;
62  this->sigma = 0.;
63  break;
65  _assert_(iomodel->Data("md.geometry.base") && iomodel->Data("md.geometry.thickness"));
66  this->sigma = (iomodel->Data("md.mesh.y")[vertex_sid]-iomodel->Data("md.geometry.base")[vertex_sid])/(iomodel->Data("md.geometry.thickness")[vertex_sid]);
67  break;
68  }
69  }
70  else{
71  this->x = 0.;
72  this->y = 0.;
73  this->z = 0.;
74  this->latitute = 0.;
75  this->longitude = 0.;
76  this->R = 0.;
77  this->sigma = 0.;
78  }
79 
80 }/*}}}*/
81 Vertex::~Vertex(){/*{{{*/
82  return;
83 }
84 /*}}}*/
85 
86 /*Object virtual functions definitions:*/
87 Object* Vertex::copy() {/*{{{*/
88 
89  return new Vertex(*this);
90 
91 }
92 /*}}}*/
93 void Vertex::DeepEcho(void){/*{{{*/
94  this->Echo();
95 }
96 /*}}}*/
97 void Vertex::Echo(void){/*{{{*/
98 
99  _printf_("Vertex:\n");
100  _printf_(" id: " << id << "\n");
101  _printf_(" sid: " << sid << "\n");
102  _printf_(" pid: " << pid << "\n");
103  _printf_(" lid: " << lid << "\n");
104  _printf_(" x: " << x << "\n");
105  _printf_(" y: " << y << "\n");
106  _printf_(" z: " << z << "\n");
107  _printf_(" sigma: " << sigma << "\n");
108  _printf_(" connectivity: " << connectivity << "\n");
109  _printf_(" clone: " << clone << "\n");
110 
111  return;
112 }
113 /*}}}*/
114 int Vertex::Id(void){ return id; }/*{{{*/
115 /*}}}*/
116 void Vertex::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
117 
121  MARSHALLING(id);
122  MARSHALLING(sid);
123  MARSHALLING(pid);
124  MARSHALLING(lid);
125  MARSHALLING(x);
126  MARSHALLING(y);
127  MARSHALLING(z);
130 
131 }
132 /*}}}*/
133 int Vertex::ObjectEnum(void){/*{{{*/
134  return VertexEnum;
135 }/*}}}*/
136 
137 /*Vertex management: */
138 int Vertex::Connectivity(void){return connectivity;}/*{{{*/
139 /*}}}*/
141  return this->latitute;
142 }
143 /*}}}*/
145  return this->longitude;
146 }
147 /*}}}*/
149  return this->R;
150 }
151 /*}}}*/
153  return this->x;
154 }
155 /*}}}*/
157  return this->y;
158 }
159 /*}}}*/
161  return this->z;
162 }
163 /*}}}*/
164 int Vertex::Pid(void){ return pid; }/*{{{*/
165 /*}}}*/
166 int Vertex::Lid(void){ return lid; }/*{{{*/
167 /*}}}*/
168 int Vertex::Sid(void){ return sid; }/*{{{*/
169 /*}}}*/
171 
172  IssmDouble oldy,newy,vely;
173  IssmDouble oldz,newz,velz;
174  IssmDouble dt;
175 
176  /*Get time stepping*/
177  parameters->FindParam(&dt,TimesteppingTimeStepEnum);
178 
179  /*sigma remains constant. z=bed+sigma*thickness*/
180  switch(this->domaintype){
182  /*Nothing*/
183  return;
185  oldy = this->y;
186  newy = bed[this->pid]+sigma*(surface[this->pid] - bed[this->pid]);
187  vely = (newy-oldy)/dt;
188  this->y = newy;
189  vy->SetValue(this->pid,vely,INS_VAL);
190  _assert_(!xIsNan<IssmDouble>(vely));
191  return;
192  case Domain3DEnum:
193  oldz = this->z;
194  newz = bed[this->pid]+sigma*(surface[this->pid] - bed[this->pid]);
195  velz = (newz-oldz)/dt;
196  this->z = newz;
197  vz->SetValue(this->pid,velz,INS_VAL);
198  _assert_(!xIsNan<IssmDouble>(velz));
199  return;
200  default:
201  _error_("not implemented");
202  }
203 }
204 /*}}}*/
206 
207  if(this->clone==true) return;
208 
209  if(!spherical){
210  vx->SetValue(this->sid,this->x,INS_VAL);
211  vy->SetValue(this->sid,this->y,INS_VAL);
212  vz->SetValue(this->sid,this->z,INS_VAL);
213  }
214  else{
215  vx->SetValue(this->sid,this->latitute,INS_VAL);
216  vy->SetValue(this->sid,this->longitude,INS_VAL);
217  vz->SetValue(this->sid,this->R,INS_VAL);
218  }
219 
220  return;
221 }
222 /*}}}*/
223 
224 /*Methods relating to Vertex, but not internal methods: */
225 void GetVerticesCoordinates(IssmDouble* xyz,Vertex** vertices, int numvertices,bool spherical){ /*{{{*/
226 
227  _assert_(vertices);
228  _assert_(xyz);
229 
230  if(!spherical){
231  for(int i=0;i<numvertices;i++) {
232  xyz[i*3+0]=vertices[i]->GetX();
233  xyz[i*3+1]=vertices[i]->GetY();
234  xyz[i*3+2]=vertices[i]->GetZ();
235  }
236  }
237  else{
238  for(int i=0;i<numvertices;i++) {
239  xyz[i*3+0]=vertices[i]->GetLatitude();
240  xyz[i*3+1]=vertices[i]->GetLongitude();
241  xyz[i*3+2]=vertices[i]->GetRadius();
242  }
243  }
244 }/*}}}*/
Vertex::z
IssmDouble z
Definition: Vertex.h:30
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
Vertex::GetLongitude
IssmDouble GetLongitude(void)
Definition: Vertex.cpp:144
IssmDouble
double IssmDouble
Definition: types.h:37
Vertex::GetRadius
IssmDouble GetRadius(void)
Definition: Vertex.cpp:148
IoModel::numbernodetoelementconnectivity
int * numbernodetoelementconnectivity
Definition: IoModel.h:92
Vertex::Pid
int Pid(void)
Definition: Vertex.cpp:164
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
Parameters
Declaration of Parameters class.
Definition: Parameters.h:18
Vertex::domaintype
int domaintype
Definition: Vertex.h:23
Vertex::clone
bool clone
Definition: Vertex.h:22
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
TimesteppingTimeStepEnum
@ TimesteppingTimeStepEnum
Definition: EnumDefinitions.h:433
gov_nasa_jpl_issm::xyz
double * xyz
Definition: Main.cpp:16
Vertex::Vertex
Vertex()
Definition: Vertex.cpp:18
Vertex::x
IssmDouble x
Definition: Vertex.h:28
Vertex::Lid
int Lid(void)
Definition: Vertex.cpp:166
Vertex::longitude
IssmDouble longitude
Definition: Vertex.h:32
Vertex::id
int id
Definition: Vertex.h:24
Vertex::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: Vertex.cpp:116
Vertex::UpdatePosition
void UpdatePosition(Vector< IssmDouble > *vx, Vector< IssmDouble > *vy, Vector< IssmDouble > *vz, Parameters *parameters, IssmDouble *thickness, IssmDouble *bed)
Definition: Vertex.cpp:170
Vertex::GetY
IssmDouble GetY(void)
Definition: Vertex.cpp:156
Domain2DhorizontalEnum
@ Domain2DhorizontalEnum
Definition: EnumDefinitions.h:534
Vertex::pid
int pid
Definition: Vertex.h:26
Vertex::latitute
IssmDouble latitute
Definition: Vertex.h:31
Object
Definition: Object.h:13
Vertex::GetX
IssmDouble GetX(void)
Definition: Vertex.cpp:152
Domain3DsurfaceEnum
@ Domain3DsurfaceEnum
Definition: EnumDefinitions.h:1039
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
INS_VAL
@ INS_VAL
Definition: toolkitsenums.h:14
GetVerticesCoordinates
void GetVerticesCoordinates(IssmDouble *xyz, Vertex **vertices, int numvertices, bool spherical)
Definition: Vertex.cpp:225
Domain3DEnum
@ Domain3DEnum
Definition: EnumDefinitions.h:536
Vertex::Connectivity
int Connectivity(void)
Definition: Vertex.cpp:138
VertexEnum
@ VertexEnum
Definition: EnumDefinitions.h:1322
IoModel::Data
IssmDouble * Data(const char *data_name)
Definition: IoModel.cpp:437
Vertex::copy
Object * copy()
Definition: Vertex.cpp:87
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
Vertex::ObjectEnum
int ObjectEnum()
Definition: Vertex.cpp:133
Vertex::GetLatitude
IssmDouble GetLatitude(void)
Definition: Vertex.cpp:140
Vertex::VertexCoordinates
void VertexCoordinates(Vector< IssmDouble > *vx, Vector< IssmDouble > *vy, Vector< IssmDouble > *vz, bool spherical=false)
Definition: Vertex.cpp:205
Vertex::DeepEcho
void DeepEcho()
Definition: Vertex.cpp:93
Vertex::lid
int lid
Definition: Vertex.h:27
Vertex::R
IssmDouble R
Definition: Vertex.h:33
Parameters::FindParam
void FindParam(bool *pinteger, int enum_type)
Definition: Parameters.cpp:262
Vertex::Echo
void Echo()
Definition: Vertex.cpp:97
Vertex::y
IssmDouble y
Definition: Vertex.h:29
Vertex::GetZ
IssmDouble GetZ(void)
Definition: Vertex.cpp:160
Vertex
Definition: Vertex.h:19
IoModel
Definition: IoModel.h:48
Vertex::~Vertex
~Vertex()
Definition: Vertex.cpp:81
IoModel::domaintype
int domaintype
Definition: IoModel.h:78
Domain2DverticalEnum
@ Domain2DverticalEnum
Definition: EnumDefinitions.h:535
shared.h
Vertex::connectivity
int connectivity
Definition: Vertex.h:35
Vector< IssmDouble >
Vertex::sigma
IssmDouble sigma
Definition: Vertex.h:34
Vertex::Id
int Id()
Definition: Vertex.cpp:114
classes.h
Vector::SetValue
void SetValue(int dof, doubletype value, InsMode mode)
Definition: Vector.h:163
Vertex::sid
int sid
Definition: Vertex.h:25
Vertex::Sid
int Sid(void)
Definition: Vertex.cpp:168