Changeset 19282
- Timestamp:
- 04/09/15 17:09:13 (10 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Element.h
r19237 r19282 122 122 void LinearFloatingiceMeltingRate(); 123 123 void MigrateGroundingLine(IssmDouble* sheet_ungrounding); 124 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction,int numanalyses);125 124 ElementMatrix* NewElementMatrix(int approximation_enum=NoneApproximationEnum); 126 125 ElementMatrix* NewElementMatrixCoupling(int number_nodes,int approximation_enum=NoneApproximationEnum); … … 228 227 virtual void JacobianDeterminantSurface(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss)=0; 229 228 virtual void JacobianDeterminantTop(IssmDouble* Jdet,IssmDouble* xyz_list_base,Gauss* gauss)=0; 229 virtual void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction,int numanalyses); 230 230 virtual IssmDouble Masscon(IssmDouble* levelset)=0; 231 231 virtual IssmDouble MassFlux(IssmDouble* segment)=0; -
issm/trunk-jpl/src/c/classes/FemModel.cpp
r19261 r19282 764 764 } 765 765 766 / *Reset current configuration: */766 //Reset current configuration: 767 767 analysis_type=this->analysis_type_list[analysis_counter]; 768 768 SetCurrentConfiguration(analysis_type); -
issm/trunk-jpl/src/c/classes/Materials/Matice.cpp
r19254 r19282 30 30 this->helement=NULL; 31 31 this->element=NULL; 32 this->isdamaged=false; 32 33 return; 33 34 } -
issm/trunk-jpl/src/c/classes/Materials/Matpar.cpp
r19216 r19282 18 18 /*}}}*/ 19 19 Matpar::Matpar(int matpar_mid, IoModel* iomodel){/*{{{*/ 20 21 rho_ice=0; 22 rho_water=0; 23 rho_freshwater=0; 24 mu_water=0; 25 heatcapacity=0; 26 thermalconductivity=0; 27 temperateiceconductivity=0; 28 latentheat=0; 29 beta=0; 30 meltingpoint=0; 31 referencetemperature=0; 32 mixed_layer_capacity=0; 33 thermal_exchange_velocity=0; 34 g=0; 35 omega=0; 36 desfac=0; 37 s0p=0; 38 s0t=0; 39 rlaps=0; 40 rlapslgm=0; 41 dpermil=0; 42 43 sediment_compressibility=0; 44 sediment_porosity=0; 45 sediment_thickness=0; 46 water_compressibility=0; 47 48 epl_compressibility=0; 49 epl_porosity=0; 50 epl_init_thickness=0; 51 epl_colapse_thickness=0; 52 epl_max_thickness=0; 53 epl_conductivity=0; 54 55 lithosphere_shear_modulus=0; 56 lithosphere_density=0; 57 mantle_shear_modulus=0; 58 mantle_density=0; 59 60 poisson=0; 61 young_modulus=0; 62 ridging_exponent=0; 63 cohesion=0; 64 internal_friction_coef=0; 65 compression_coef=0; 66 traction_coef=0; 67 time_relaxation_stress=0; 68 time_relaxation_damage=0; 20 69 21 70 bool isefficientlayer; … … 151 200 } 152 201 /*}}}*/ 153 int 154 /*}}}*/ 155 int Matpar::ObjectEnum(void){/*{{{*/202 int Matpar::Id(void){ return mid; }/*{{{*/ 203 /*}}}*/ 204 int Matpar::ObjectEnum(void){/*{{{*/ 156 205 157 206 return MatparEnum; … … 237 286 MARSHALLING(dpermil); 238 287 239 / *hydrology Dual Porous Continuum: */288 //hydrology Dual Porous Continuum: 240 289 MARSHALLING(sediment_compressibility); 241 290 MARSHALLING(sediment_porosity); … … 250 299 MARSHALLING(epl_conductivity); 251 300 252 / *gia: */301 //gia: 253 302 MARSHALLING(lithosphere_shear_modulus); 254 303 MARSHALLING(lithosphere_density); … … 256 305 MARSHALLING(mantle_density); 257 306 258 / *Sea ice*/307 //Sea ice: 259 308 MARSHALLING(poisson); 260 309 MARSHALLING(young_modulus); -
issm/trunk-jpl/src/c/datastructures/DataSet.cpp
r19261 r19282 29 29 sorted=0; 30 30 numsorted=0; 31 presorted=0; 32 enum_type=-1; 31 33 sorted_ids=NULL; 32 34 id_offsets=NULL; … … 38 40 39 41 sorted=0; 42 numsorted=0; 43 presorted=0; 40 44 sorted_ids=NULL; 41 45 id_offsets=NULL; … … 87 91 88 92 /*Specific methods*/ 89 void DataSet::Marshall(char** pmarshalled_data, int* pmarshalled_data_size, int marshall_direction){ /*{{{*/93 void DataSet::Marshall(char** pmarshalled_data, int* pmarshalled_data_size, int marshall_direction){ /*{{{*/ 90 94 91 95 vector<Object*>::iterator obj;
Note:
See TracChangeset
for help on using the changeset viewer.