source: issm/trunk-jpl/src/c/classes/Constraints/SpcStatic.cpp@ 25508

Last change on this file since 25508 was 25508, checked in by Mathieu Morlighem, 5 years ago

CHG: Marshall2 -> Marshall

File size: 4.5 KB
RevLine 
[9285]1/*!\file SpcStatic.c
2 * \brief: implementation of the SpcStatic object
[3683]3 */
4
5#ifdef HAVE_CONFIG_H
[9320]6 #include <config.h>
[3683]7#else
8#error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
9#endif
10
[15012]11#include "../classes.h"
12#include "./Constraint.h"
13#include "../../shared/shared.h"
[3683]14
[9285]15/*SpcStatic constructors and destructor*/
[18064]16SpcStatic::SpcStatic(){/*{{{*/
[3683]17 return;
18}
[12365]19/*}}}*/
[22361]20SpcStatic::SpcStatic(int spc_id,int spc_nodeid, int spc_dof,IssmDouble spc_value,int spc_analysis_type){/*{{{*/
[3683]21
[22361]22 id = spc_id;
[15448]23 nodeid = spc_nodeid;
24 dof = spc_dof;
25 value = spc_value;
26 analysis_type = spc_analysis_type;
[18388]27 penalty = false;
[3683]28
29 return;
30}
[12365]31/*}}}*/
[18064]32SpcStatic::~SpcStatic(){/*{{{*/
[3683]33 return;
34}
[12365]35/*}}}*/
[13622]36
[4248]37/*Object virtual functions definitions:*/
[18931]38Object* SpcStatic::copy() {/*{{{*/
[23066]39
[18931]40 SpcStatic* spcstat = new SpcStatic(*this);
[4248]41
[22361]42 spcstat->id=this->id;
[18931]43 spcstat->nodeid=this->nodeid;
44 spcstat->dof=this->dof;
45 spcstat->value=this->value;
46 spcstat->analysis_type=this->analysis_type;
47
48 return (Object*) spcstat;
49}
50/*}}}*/
51void SpcStatic::DeepEcho(void){/*{{{*/
52
[15104]53 _printf_("SpcStatic:\n");
[22361]54 _printf_(" id: " << id << "\n");
[15100]55 _printf_(" nodeid: " << nodeid << "\n");
56 _printf_(" dof: " << dof << "\n");
57 _printf_(" value: " << value << "\n");
58 _printf_(" analysis_type: " << EnumToStringx(analysis_type) << "\n");
[4248]59 return;
[18931]60}
[12365]61/*}}}*/
[18931]62void SpcStatic::Echo(void){/*{{{*/
[4248]63
[15104]64 _printf_("SpcStatic:\n");
[22361]65 _printf_(" id: " << id << "\n");
[15100]66 _printf_(" nodeid: " << nodeid << "\n");
67 _printf_(" dof: " << dof << "\n");
68 _printf_(" value: " << value << "\n");
69 _printf_(" analysis_type: " << EnumToStringx(analysis_type) << "\n");
[4248]70 return;
[18931]71}
[12365]72/*}}}*/
[22361]73int SpcStatic::Id(void){ return id; }/*{{{*/
[12365]74/*}}}*/
[25508]75void SpcStatic::Marshall(MarshallHandle* marshallhandle){ /*{{{*/
[25506]76
77 int object_enum = SpcStaticEnum;
78 marshallhandle->call(object_enum);
79
80 marshallhandle->call(this->id);
81 marshallhandle->call(this->nodeid);
82 marshallhandle->call(this->dof);
83 marshallhandle->call(this->value);
84 marshallhandle->call(this->analysis_type);
85 marshallhandle->call(this->penalty);
86
87}
88/*}}}*/
[20810]89int SpcStatic::ObjectEnum(void){/*{{{*/
[19216]90
[20810]91 return SpcStaticEnum;
92
93}
94/*}}}*/
95
[9002]96/*Constraint virtual functions definitions: */
[18388]97void SpcStatic::ActivatePenaltyMethod(void){/*{{{*/
98 this->penalty = true;
99}
100/*}}}*/
[18064]101void SpcStatic::ConstrainNode(Nodes* nodes,Parameters* parameters){/*{{{*/
[9002]102
[9285]103 /*Chase through nodes and find the node to which this SpcStatic applys: */
[22200]104 Node* node=(Node*)nodes->GetObjectById(NULL,nodeid);
[9002]105
106 /*Apply constraint: */
[24712]107 if(!this->penalty && node){ //in case the spc is dealing with a node on another cpu
[9002]108 node->ApplyConstraint(dof,value);
109 }
110}
111/*}}}*/
[22200]112void SpcStatic::InputUpdateFromVectorDakota(IssmDouble* vector,Nodes* nodes,int name,int type){/*{{{*/
[9002]113
[22202]114 /*Only update if this is a constraint parameter*/
115 if(name != BalancethicknessSpcthicknessEnum) return;
116
[24106]117 /*Chase through nodes and find the node to which this SpcStatic applies: */
[22200]118 Node* node=(Node*)nodes->GetObjectById(NULL,nodeid);
119
120 /*Apply constraint: */
121 if(node){ //in case the spc is dealing with a node on another cpu
122 int sid = node->Sid();
123 this->value = vector[sid];
124 _assert_(!xIsNan<IssmDouble>(this->value));
125 }
126}
127/*}}}*/
[24712]128void SpcStatic::PenaltyDofAndValue(int* pdof,IssmDouble* pvalue,Nodes* nodes,Parameters* parameters){/*{{{*/
[22200]129
[24712]130 if(!this->penalty) _error_("cannot return dof and value for non penalty constraint");
131
132 IssmDouble value_out = this->value;
133 int gdof;
134
135 /*Chase through nodes and find the node to which this SpcTransient applys: */
136 Node* node=(Node*)nodes->GetObjectById(NULL,nodeid);
137
138 if(node){ //in case the spc is dealing with a node on another cpu
139
140 /*Get gdof */
141 gdof = node->GetDof(dof,GsetEnum);
142 if(xIsNan<IssmDouble>(value_out)) gdof = -1;
143 }
144 else{
145 value_out = NAN;
146 gdof = -1;
147 }
148
149 /*Assign output pointers*/
150 *pdof = gdof;
151 *pvalue = value_out;
152}
153/*}}}*/
154
[25468]155void SpcStatic::UpdateSpcThicknessAD(IssmDouble* vector,Nodes* nodes){/*{{{*/
156
157 /*Chase through nodes and find the node to which this SpcStatic applies: */
158 Node* node=(Node*)nodes->GetObjectById(NULL,nodeid);
159
160 /*Apply constraint: */
161 if(node){ //in case the spc is dealing with a node on another cpu
162 int sid = node->Sid();
163 this->value = vector[sid];
164 _assert_(!xIsNan<IssmDouble>(this->value));
165 }
166}
167/*}}}*/
168
[9285]169/*SpcStatic functions*/
[18931]170int SpcStatic::GetDof(){/*{{{*/
[3683]171 return dof;
172}
[12365]173/*}}}*/
[18931]174int SpcStatic::GetNodeId(){/*{{{*/
[13622]175
[3683]176 return nodeid;
177}
[12365]178/*}}}*/
[18064]179IssmDouble SpcStatic::GetValue(){/*{{{*/
[12529]180 _assert_(!xIsNan<IssmDouble>(value));
[3683]181 return value;
182}
[12365]183/*}}}*/
Note: See TracBrowser for help on using the repository browser.