Changeset 19216
- Timestamp:
- 03/20/15 16:48:58 (10 years ago)
- Location:
- issm/trunk-jpl/src/c/classes
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Constraints/SpcStatic.cpp
r18931 r19216 79 79 } 80 80 /*}}}*/ 81 void SpcStatic::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/ 82 83 MARSHALLING_ENUM(SpcStaticEnum); 84 85 MARSHALLING(sid); 86 MARSHALLING(nodeid); 87 MARSHALLING(dof); 88 MARSHALLING(value); 89 MARSHALLING(analysis_type); 90 MARSHALLING(penalty); 91 92 } 93 /*}}}*/ 81 94 82 95 /*Constraint virtual functions definitions: */ -
issm/trunk-jpl/src/c/classes/Constraints/SpcStatic.h
r19198 r19216 34 34 int ObjectEnum(); 35 35 Object* copy(); 36 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction) { _error_("not implemented yet!"); };36 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction); 37 37 /*}}}*/ 38 38 /*Constraint virtual functions definitions: {{{*/ -
issm/trunk-jpl/src/c/classes/Elements/TriaRef.h
r19215 r19216 33 33 int TensorInterpolation(int fe_stokes); 34 34 int VelocityInterpolation(int fe_stokes); 35 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ _error_("not implemented yet!");};35 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*do nothing */}; 36 36 37 37 }; -
issm/trunk-jpl/src/c/classes/Materials/Matice.cpp
r18946 r19216 122 122 } 123 123 /*}}}*/ 124 void Matice::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/ 125 126 if(marshall_direction==MARSHALLING_BACKWARD)helement=new Hook(); 127 128 MARSHALLING_ENUM(MaticeEnum); 129 MARSHALLING(mid); 130 MARSHALLING(isdamaged); 131 this->helement->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 132 133 134 } 135 /*}}}*/ 124 136 125 137 /*Matice management*/ -
issm/trunk-jpl/src/c/classes/Materials/Matice.h
r19198 r19216 40 40 int ObjectEnum(); 41 41 Object* copy(); 42 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction) { _error_("not implemented yet!"); };42 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction); 43 43 /*}}}*/ 44 44 /*Update virtual funictions definitions: {{{*/ -
issm/trunk-jpl/src/c/classes/Materials/Matpar.cpp
r19200 r19216 208 208 209 209 return matpar; 210 } 211 /*}}}*/ 212 void Matpar::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/ 213 214 MARSHALLING_ENUM(MatparEnum); 215 216 MARSHALLING(mid); 217 MARSHALLING(rho_ice); 218 MARSHALLING(rho_water); 219 MARSHALLING(rho_freshwater); 220 MARSHALLING(mu_water); 221 MARSHALLING(heatcapacity); 222 MARSHALLING(thermalconductivity); 223 MARSHALLING(temperateiceconductivity); 224 MARSHALLING(latentheat); 225 MARSHALLING(beta); 226 MARSHALLING(meltingpoint); 227 MARSHALLING(referencetemperature); 228 MARSHALLING(mixed_layer_capacity); 229 MARSHALLING(thermal_exchange_velocity); 230 MARSHALLING(g); 231 MARSHALLING(omega); 232 MARSHALLING(desfac); 233 MARSHALLING(s0p); 234 MARSHALLING(s0t); 235 MARSHALLING(rlaps); 236 MARSHALLING(rlapslgm); 237 MARSHALLING(dpermil); 238 239 /*hydrology Dual Porous Continuum: */ 240 MARSHALLING(sediment_compressibility); 241 MARSHALLING(sediment_porosity); 242 MARSHALLING(sediment_thickness); 243 MARSHALLING(water_compressibility); 244 245 MARSHALLING(epl_compressibility); 246 MARSHALLING(epl_porosity); 247 MARSHALLING(epl_init_thickness); 248 MARSHALLING(epl_colapse_thickness); 249 MARSHALLING(epl_max_thickness); 250 MARSHALLING(epl_conductivity); 251 252 /*gia: */ 253 MARSHALLING(lithosphere_shear_modulus); 254 MARSHALLING(lithosphere_density); 255 MARSHALLING(mantle_shear_modulus); 256 MARSHALLING(mantle_density); 257 258 /*Sea ice*/ 259 MARSHALLING(poisson); 260 MARSHALLING(young_modulus); 261 MARSHALLING(ridging_exponent); 262 MARSHALLING(cohesion); 263 MARSHALLING(internal_friction_coef); 264 MARSHALLING(compression_coef); 265 MARSHALLING(traction_coef); 266 MARSHALLING(time_relaxation_stress); 267 MARSHALLING(time_relaxation_damage); 268 210 269 } 211 270 /*}}}*/ -
issm/trunk-jpl/src/c/classes/Materials/Matpar.h
r19198 r19216 79 79 int ObjectEnum(); 80 80 Object *copy(); 81 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction) { _error_("not implemented yet!"); };81 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction); 82 82 /*}}}*/ 83 83 /*Update virtual functions resolution: {{{*/ -
issm/trunk-jpl/src/c/classes/Params/BoolParam.cpp
r18064 r19216 54 54 } 55 55 /*}}}*/ 56 void BoolParam::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/ 57 58 MARSHALLING_ENUM(BoolParamEnum); 59 60 MARSHALLING(enum_type); 61 MARSHALLING(value); 62 63 } 64 /*}}}*/ 65 66 -
issm/trunk-jpl/src/c/classes/Params/BoolParam.h
r19198 r19216 36 36 int ObjectEnum(); 37 37 Object* copy(); 38 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction) { _error_("not implemented yet!"); };38 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction); 39 39 /*}}}*/ 40 40 /*Param vritual function definitions: {{{*/
Note:
See TracChangeset
for help on using the changeset viewer.