Changeset 4237
- Timestamp:
- 06/25/10 14:56:58 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Container/Inputs.cpp
r4042 r4237 401 401 /*Compute the 3d Strain Rate (6 components): 402 402 * 403 * epsilon=[exx eyy ezz exy exz e uz]403 * epsilon=[exx eyy ezz exy exz eyz] 404 404 */ 405 405 … … 460 460 /*Compute the 3d Blatter/PattynStrain Rate (5 components): 461 461 * 462 * epsilon=[exx eyy exy exz e uz]462 * epsilon=[exx eyy exy exz eyz] 463 463 * 464 464 * with exz=1/2 du/dz -
issm/trunk/src/c/modules/ModelProcessorx/CreateElementsVerticesAndMaterials.cpp
r4236 r4237 38 38 IoModelFetchData(&iomodel->upperelements,NULL,NULL,iomodel_handle,"upperelements"); 39 39 IoModelFetchData(&iomodel->lowerelements,NULL,NULL,iomodel_handle,"lowerelements"); 40 IoModelFetchData(&iomodel->rheology_B,NULL,NULL,iomodel_handle,"rheology_B"); 41 IoModelFetchData(&iomodel->rheology_n,NULL,NULL,iomodel_handle,"rheology_n"); 40 42 41 43 /*Create elements and materials: */ … … 57 59 xfree((void**)&iomodel->upperelements); 58 60 xfree((void**)&iomodel->lowerelements); 61 xfree((void**)&iomodel->rheology_B); 62 xfree((void**)&iomodel->rheology_n); 59 63 60 64 /*Add new constrant material property tgo materials, at the end: */ -
issm/trunk/src/c/objects/Materials/Matice.cpp
r4091 r4237 231 231 } 232 232 233 /*Checks in debugging mode*/ 234 ISSMASSERT(B>0); 235 ISSMASSERT(n>0); 236 ISSMASSERT(viscosity>0); 237 233 238 /*Return: */ 234 239 *pviscosity=viscosity; … … 291 296 } 292 297 } 298 299 /*Checks in debugging mode*/ 300 ISSMASSERT(B>0); 301 ISSMASSERT(n>0); 302 ISSMASSERT(viscosity3d>0); 293 303 294 304 /*Assign output pointers:*/ … … 356 366 } 357 367 368 /*Checks in debugging mode*/ 369 ISSMASSERT(B>0); 370 ISSMASSERT(n>0); 371 ISSMASSERT(viscosity3d>0); 372 358 373 /*Assign output pointers:*/ 359 374 *pviscosity3d=viscosity3d; … … 405 420 viscosity_complement=4.5*pow((double)10,(double)17); 406 421 } 422 423 /*Checks in debugging mode*/ 424 ISSMASSERT(B>0); 425 ISSMASSERT(n>0); 426 ISSMASSERT(viscosity_complement>0); 407 427 408 428 /*Return: */
Note:
See TracChangeset
for help on using the changeset viewer.